您好,登錄后才能下訂單哦!
小編給大家分享一下pandas對python3時間進(jìn)行修改的示例,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
1.查數(shù)據(jù)的類型
dataframe.dtype()
2.修改數(shù)據(jù)類型
df['launched']=pd.to_datetime(df.launched) df['deadline ']=pd.to_datetime(df.deadline)
然后再次打印他們的類型,我們就會發(fā)現(xiàn)他們類型的變化;
3.刪除時分秒
在type為object的狀態(tài)下轉(zhuǎn)化將 2015-04-07 08:35:00 轉(zhuǎn)化為2015-04-07
#cut the datetime df['launched'] = df.launched.str.slice(0, 11) print(df['launched'].head()) print() # change the type of column[launched] into datetime; df['launched']=pd.to_datetime(df.launched, dayfirst=True) print(df['launched'].head()) print('----------------------------------------------------------------') print() df['deadline']=pd.to_datetime(df.deadline, dayfirst=True) print(df['deadline'].head())
看完了這篇文章,相信你對pandas對python3時間進(jìn)行修改的示例有了一定的了解,想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。