Notice
Recent Posts
Recent Comments
Tags
- jupyter notebook shell commands
- tistory 목차
- tistory toc
- matplotlib 객제 지향 방식
- TOC
- fig ax 사용
- NewYork Times 읽기
- 티스토리 자동 목차
- magic command
- 티스토리 목차
07-03 06:18
Archives
목록matplotlib 객제 지향 방식 (1)
develop myself

객체 지향 방식을 사용해야 하는 이유 2022 PyCon 이제현 님 발표: https://youtu.be/ZTRKojTLE8M 사용 예제 fig, axes = plt.subplots(ncols=5, figsize=(8,4)) for i, col in enumerate(['Temperature','Humidity','Light','CO2','HumidityRatio']): sns.boxplot(data=rooms[col],ax = axes[i]) axes[i].set_title(col) fig.tight_layout() fig.subplots_adjust(top=0.8) fig.suptitle("Room Occupancy") fig.set_facecolor("lightgray") plt.show() fig..
DataScience/Python
2023. 1. 27. 14:56