Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Pandas
- 시각화
- 파이썬
- 파이썬 시각화
- 리눅스
- Tistory
- 월간결산
- SQL
- 텐서플로
- MATLAB
- 서평단
- Google Analytics
- 매틀랩
- Python
- Linux
- 한빛미디어
- MySQL
- Ga
- python visualization
- matplotlib
- Blog
- tensorflow
- 한빛미디어서평단
- 티스토리
- 블로그
- 통계학
- Visualization
- 독후감
- 딥러닝
- 서평
Archives
- Today
- Total
목록GridSpec (1)
pbj0812의 코딩 일기
[PYTHON] GridSpec 을 이용한 여러 그래프를 같이 그리기
0. 목표 - GridSpec 을 이용한 여러 그래프를 같이 그리기 1. 실습 1) library 호출 import seaborn as sns import matplotlib.pyplot as plt from matplotlib import gridspec 2) 데이터 생성 flights_long = sns.load_dataset("flights") 3) heatmap 용 데이터 flights = flights_long.pivot("month", "year", "passengers") 4) barplot 용 데이터 year_df = flights_long.groupby(by = 'year').agg({'passengers' : 'sum'}) month_df = flights_long.groupby(by ..
ComputerLanguage_Program/PYTHON
2021. 8. 17. 02:11