pandas 对时间与日期处理
Posted wuzaipei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pandas 对时间与日期处理相关的知识,希望对你有一定的参考价值。
1、先把字符串时间转为时间类型:
def func(x): y =pd.Timestamp(x) return y data.index = data.发博时间.apply(lambda x : func(x))
2、对时间进行排序:
data = data.sort_index()
data.head()
以上是关于pandas 对时间与日期处理的主要内容,如果未能解决你的问题,请参考以下文章