반응형
안녕하세요, pandas 에 있는 rolling 함수에 대해서 간략하게 포스팅 남깁니다.
pd.concat([df['volume'], df['volume'].rolling(window=5).mean(), df['volume'].shift(1), df['volume'].shift(1).rolling(window=5).mean()], axis=1)
첫번째 컬럼 : volume row data
두번째 컬럼 : rolling(window=5) 평균값
세번째 컬럼 : volume row data 의 shift(1)
네번째 컬럼 : volume row data 의 shift(1) 의 rolling(window=5) 평균값
'SW개발 > python' 카테고리의 다른 글
[pandas] 그룹별 누적합 집계하는 방법 (0) | 2022.07.31 |
---|---|
[python] pandas read_csv 데이터 읽을 때 날짜/시간 파싱 하기 (0) | 2022.06.01 |
[python] 딕셔너리 Dictionary 구조 활용 (0) | 2021.11.17 |
[python] pandas pivot_table 데이터프레임을 다루는 방법 (0) | 2021.11.07 |
[python] slack bot 메시지 보내는 법 (0) | 2021.10.06 |