美文网首页
time.month and S.dt.month

time.month and S.dt.month

作者: 晨阳ouc | 来源:发表于2021-11-08 21:47 被阅读0次

#相同结果

aa = pd.date_range("2018-3-5 00:23:34","2038-3-5 00:23:34",freq="3d") #DatetimeIndex类型

bb = aa.month

aa = pd.Series(pd.date_range("2018-3-5 00:23:34","2038-3-5 00:23:34",freq="3d"))  #Series,时间序列

bb = aa.dt.month

时间属性见网址:https://www.gairuo.com/p/pandas-time-attributes

相关文章

网友评论

      本文标题:time.month and S.dt.month

      本文链接:https://www.haomeiwen.com/subject/ihupzltx.html