복붙노트

[PYTHON] pandas resample documentation [닫힘]

PYTHON

pandas resample documentation [닫힘]

그래서 나는 리샘플링 (resample)을 사용하는 방법을 완전히 이해하고 있지만, 문서는 옵션을 잘 설명하지 못한다.

따라서 리샘플링 함수의 대부분의 옵션은 다음 두 가지 경우를 제외하고는 매우 간단합니다.

따라서 온라인에서 볼 수있는 많은 예제를 살펴보면 하루 동안 'D', 몇 분 동안 'xMin', 밀리 초 동안 'xL'을 할 수있는 규칙을 볼 수 있지만 그게 전부입니다.

'first', np.max, 'last', 'mean'및 'n1n2n3n4 ... nx'여기서 nx는 각 열 인덱스의 첫 번째 문자입니다.

거기에 문서의 어딘가에 pandas.resample의 규칙에 대한 모든 옵션과 입력 방법이 표시됩니다. 그렇다면 어디에서 찾을 수 없습니까? 그렇지 않다면, 그 (것)들을위한 모든 선택권은 무엇입니까?

해결법

  1. ==============================

    1.

    B       business day frequency
    C       custom business day frequency (experimental)
    D       calendar day frequency
    W       weekly frequency
    M       month end frequency
    SM      semi-month end frequency (15th and end of month)
    BM      business month end frequency
    CBM     custom business month end frequency
    MS      month start frequency
    SMS     semi-month start frequency (1st and 15th)
    BMS     business month start frequency
    CBMS    custom business month start frequency
    Q       quarter end frequency
    BQ      business quarter endfrequency
    QS      quarter start frequency
    BQS     business quarter start frequency
    A       year end frequency
    BA      business year end frequency
    AS      year start frequency
    BAS     business year start frequency
    BH      business hour frequency
    H       hourly frequency
    T       minutely frequency
    S       secondly frequency
    L       milliseonds
    U       microseconds
    N       nanoseconds
    

    timeseries 문서를 참조하십시오. 여기에는 오프셋 (및 '앵커'오프셋) 목록과 리샘플링에 대한 섹션이 포함됩니다.

    NumPy 배열 함수가 될 수 있고 groupby 디스패치를 ​​통해 사용할 수있는 모든 함수를 이름으로 전달할 수 있기 때문에 모든 다른 how 옵션 목록이 없습니다.

  2. ==============================

    2.이보다 더 많은 것이 있지만 아마도이 목록을 원할 것입니다.

    이보다 더 많은 것이 있지만 아마도이 목록을 원할 것입니다.

    B   business day frequency
    C   custom business day frequency (experimental)
    D   calendar day frequency
    W   weekly frequency
    M   month end frequency
    BM  business month end frequency
    MS  month start frequency
    BMS business month start frequency
    Q   quarter end frequency
    BQ  business quarter endfrequency
    QS  quarter start frequency
    BQS business quarter start frequency
    A   year end frequency
    BA  business year end frequency
    AS  year start frequency
    BAS business year start frequency
    H   hourly frequency
    T   minutely frequency
    S   secondly frequency
    L   milliseconds
    U   microseconds
    

    출처 : http://pandas.pydata.org/pandas-docs/stable/timeseries.html#offset-aliases

  3. from https://stackoverflow.com/questions/17001389/pandas-resample-documentation by cc-by-sa and MIT license