1. ホーム
  2. パイソン

[解決済み】pandas resampleのドキュメント

2022-04-18 14:05:51

質問

の使い方は完全に理解しています。 リサンプル しかし、ドキュメントではオプションについてうまく説明されていません。

そのため resample 関数は、この2つを除けば、とても簡単なものです。

  • rule : 対象の変換を表すオフセット文字列またはオブジェクト
  • how : 文字列、ダウンまたは再サンプリングの方法、デフォルトは 'mean' です。

ネットで見つけたできるだけ多くの例を見てみると、ルールとして次のようなことができることがわかります。 'D' を日にち指定します。 'xMin' を分単位で表示します。 'xL' はミリ秒ですが、それしか見つけられませんでした。

をどのように見たか。 'first' , np.max , 'last' , 'mean' および 'n1n2n3n4...nx' ここで、nxは各列のインデックスの最初の文字である。

ということは、私が見落としているドキュメントのどこかに pandas.resample のルールと入力方法を教えてください。もしそうなら、どこにあるのでしょうか?ない場合。 そのためのオプションは何ですか?

解決方法は?

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, BY    business year end frequency
AS, YS    year start frequency
BAS, BYS  business year start frequency
BH        business hour frequency
H         hourly frequency
T, min    minutely frequency
S         secondly frequency
L, ms     milliseconds
U, us     microseconds
N         nanoseconds

をご覧ください。 回シリーズ ドキュメント . のリストが含まれています。 オフセット (そして アンカー付き」オフセット についてのセクションがあります。 リサンプリング .

すべての異なる how というのも、NumPyの配列関数や、NumPyの配列の中で グループバイディスパッチ に渡すことができます。 how を名前で指定します。