DatetimeIndex 时间序列

Posted parsonbf

tags:

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

# 直接生成时间索引,支持str, datetime.datetime
rng=pd.DatetimeIndex([12/1/2017,12/2/2017,12/3/2017,12/4/2017,12/5/2017])
print(rng,type(rng))
print(rng[0],type(rng[0]))
print(
)

# 单个时间为Timestamp,  多个时间为 DatetimeIndex
st = pd.Series(np.random.rand(len(rng)),index=rng)
print(st,type(st))
print(st.index)


st= pd.Series(np.random.rand(1),index=[pd.Timestamp("2001,10,2")])
print(st,type(st))

 

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

pandas使用pd.DatetimeIndex函数将混合格式的日期数据数据转化为时间索引数据DatetimeIndex通过index参数为Series数据指定时间对象索引

DatetimeIndex 时间序列

Pandas - 如何将 RangeIndex 转换为 DateTimeIndex

如何舍入 Pandas `DatetimeIndex`?

Python Dataframe.resample() 从 datetimeindex 中删除时间

从 RangeIndex 到 DatetimeIndex