pandas pivot_table #dataframe pivot_table 썸네일형 리스트형 [Python] dataframe의 pivot_table DataFrame의 pivot_table 사용에 대해서 알아보겠습니다. 데이터 수집 삼성전자 2022-01-01~2022-09-30 데이터를 수집했습니다. import pandas as pd import FinanceDataReader as fdr from IPython.display import display code='005930' startdate='2022-01-01' enddate='2022-09-30' df=fdr.DataReader(code,startdate,enddate) pivot_table에서 월별 집계를 하기 위해 년월의 정보로 column을 생성하겠습니다. df['yearmonth']=df.index.strftime('%Y%m') df pivot_table사용 이 중에서 values.. 더보기 이전 1 다음