pandas_时间序列

Posted chengege

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pandas_时间序列相关的知识,希望对你有一定的参考价值。

In [24]: pd.Series(range(1000), pd.date_range("20170101", periods=1000))
Out[24]:
2017-01-01 0
2017-01-02 1
2017-01-03 2
2017-01-04 3
2017-01-05 4
...
2019-09-23 995
2019-09-24 996
2019-09-25 997
2019-09-26 998
2019-09-27 999
Freq: D, Length: 1000, dtype: int64

  生成时间序列

生产的这个Serice 下有resample() 方法。 可以用以从新采样。  如果Service的index是DatetimeIndex序列的话。 可以时候  W H min A 等方式采样。就可以统计出以每星期 小时 分钟 年 为一组的数据出来()

 

In [30]: print(sr.resample("A").sum())
2017-12-31 66430
2018-12-31 199655
2019-12-31 233415
Freq: A-DEC, dtype: int64

以上是关于pandas_时间序列的主要内容,如果未能解决你的问题,请参考以下文章

pandas_时间序列和常用操作

pandas_时间序列和常用操作

从 pandas 的时间序列范围中查找最小和最大日期

Pandas .corr() 返回“__”

pandas--时间序列与删除数据

如何找到已安装的 pandas 版本