반응형 pandas operation1 Pandas Operations 본 포스팅은 Pandas 패키지 라이브러리 원문을 기반으로 하여 작성하였습니다. 1. 통계 일반적으로 계산은 missing data를 제외합니다. 기술 통계 수행 df.mean() 다른 축에서 동일한 작업 df.mean(1) 차원이 다르고 정렬이 필요한 개체로 작업합니다. 또한 pandas는 지정된 차원을 따라 자동으로 브로드캐스트 합니다. s = pd.Series([1, 3, 5, np.nan, 6, 8], index=dates).shift(2) s df.sub(s, axis="index") 2. Apply 데이터에 함수 적용 df.apply(np.cumsum) df.apply(lambda x: x.max() - x.min()) 3. Histogramming s = pd.Series(np.random... 2021. 9. 16. 이전 1 다음 반응형