반응형 pandas plotting1 Pandas Plotting 본 포스팅은 Pandas 패키지 라이브러리 원문을 기반으로 하여 작성하였습니다. matplotlib API를 참조하기 위해 표준 규칙을 사용합니다. import matplotlib.pyplot as plt plt.close("all") close() 메서드는 Figure 창을 닫는 데 사용됩니다. ts = pd.Series(np.random.randn(1000), index=pd.date_range("1/1/2000", periods=1000)) ts = ts.cumsum() ts.plot(); DataFrame에서 plot() 메서드는 레이블이 있는 모든 열을 플롯 하는 데 편리합니다. df = pd.DataFrame(np.random.randn(1000, 4), index=ts.index, colum.. 2021. 9. 22. 이전 1 다음 반응형