時間轉換方面的

2022-05-07 11:51:10 字數 1583 閱讀 9225

可以把包含 日期+時間格式 的,轉換成 日期格式,即去掉時間部分

df["

訂單建立時間

"]=pd.to_datetime(df_pre["

訂單建立時間

"]).dt.normalize()

#

no-21, how to convert a series of date-strings to a timeseries

ser = pd.series(['

01 jan 2010

', '

02-02-2011

', '

20120303

', '

2013/04/04

', '

2014-05-05

', '

2015-06-06t12:20'])

print

(ser)

#轉換成標準時間的三種形式

mask=ser.astype(dtype=np.datetime64)

mask2=pd.to_datetime(ser)

from dateutil.parser import

parse

mask3=ser.map(lambda

x:parse(x))

print

(mask)

print

(mask2)

print(mask3)

結果:

end

#

no-22

ser = pd.series(['

01 jan 2010

', '

02-02-2011

', '

20120303

', '

2013/04/04

', '

2014-05-05

', '

2015-06-06t12:20'])

mask0=pd.to_datetime(ser)

#為了節省顯示結果的空間,使用了tolist()

mask=mask0.dt.day.tolist()

mask2=mask0.dt.weekofyear.tolist()

mask3=mask0.dt.dayofyear.tolist()

mask4=mask0.dt.dayofweek.tolist()

mask5=mask0.dt.weekday_name.tolist()

print

(mask)

print

(mask2)

print

(mask3)

print

(mask4)

print(mask5)

結果:

end

金融方面的證書

個人收集的一些金融方面的證書,還有一些由於精力有限未能收集,比如金融英語考試等等.希望對你有所幫助.1 從業資格證書。此為入門證書,是進入 行業的必要證書。共考五科 基礎,交 易,發行與承銷,技術分析和 2 註冊國際投資分析師 ciia 考試簡介 註冊國際投資分析師 certified intern...

指標方面的題目

試題 void test1 試題2 void test2 strcpy string,str1 試題3 void test3 char str1 編寫乙個標準 strcpy 函式 為了 實現鏈式操作,將目的位址返回 char strcpy char strdest,const char strsrc...

linux方面的雜談

1.在shell指令碼中會用到if判斷,事實上就是test加引數執行的結果,比如 if test f then yyy fi,但是還有另一種寫法,那就是if abc then yyy,實際上 也是乙個命令,用whereis 可以證實,該 程式中必然要有乙個 作為引數,然後判斷 1到 之間的引數的正確...