■ DataFrame 클래스의 plot 속성을 사용해 AREA 차트를 그리는 방법을 보여준다.
▶ main.py
1 2 3 4 5 6 7 8 9 10 11 12 |
import pandas as pd import matplotlib.pyplot as plt dataFrame = pd.read_csv("air_quality_no2.csv", index_col = 0, parse_dates = True) plotAccessor = dataFrame.plot plotAccessor.area(figsize = (12, 4), subplots = True) plt.show() |
▶ requirements.txt
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
contourpy==1.3.0 cycler==0.12.1 fonttools==4.54.1 kiwisolver==1.4.7 matplotlib==3.9.2 numpy==2.1.2 packaging==24.1 pandas==2.2.3 pillow==11.0.0 pyparsing==3.2.0 python-dateutil==2.9.0.post0 pytz==2024.2 six==1.16.0 tzdata==2024.2 |
※ pip install pandas matplotlib 명령을 실행했다.