2017-11-10 13 views
0

パンダで周波数をTime Series/Date functionalityに設定するときは、大文字または小文字を使用するのと同じですか?パンダの時系列/日付機能を設定する

freq = 'd'またはfreq = 'D'を使用すると同じですか?

Offset Aliases 

A number of string aliases are given to useful common time series frequencies. We will refer to these aliases as offset aliases. 

Alias Description 
B business day frequency 
C custom business day frequency 
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 end frequency 
QS quarter start frequency 
BQS business quarter start frequency 
A, Y 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 
+0

あなたは、彼らが異なっている考えさせられましたか?あなたが直面した特定の事件?私の試練ごとに同じです。 – Dark

+0

私にOffset Aliasesのリストを渡した友人 – gabboshow

答えて

1

文書ではすべてoffset-aliasesを確認してください。

それが同じであれば、私は小さなチェックをしてみてください。

L= ['B','D','W','M','Q','H','T','S'] 

rng = pd.date_range('2017-04-03', periods=10) 
df = pd.DataFrame({'a': range(10)}, index=rng) 
print (df) 

for x in L: 
    a = df.resample(x.lower()).ffill() 
    b = df.resample(x).ffill() 
    print ((a == b).all()) 

a True 
dtype: bool 
a True 
dtype: bool 
a True 
dtype: bool 
a True 
dtype: bool 
a True 
dtype: bool 
a True 
dtype: bool 
a True 
dtype: bool 
a True 
dtype: bool 
+0

...彼らは彼らが首都だと思っていましたが、いつも小さいものを使っていました。それが私がチェックしていた理由です。同じ... – gabboshow

+1

私はそうだと思いますが、おそらく最高の値は文書 - 大文字で保持されています。 – jezrael

関連する問題