Python时间序列--时间段(一)

Posy ·
更新时间:2024-11-10
· 798 次阅读

时间序列

时间戳(timestamp) 固定周期(period) 时间间隔(interval) import pandas as pd import numpy as np

date_range

可以指定开始时间与周期

H:小时 D:天 M:月 Y:年 # TIMES #2020 Apr 27 4/27/2020 27/4/2020 2020-4-27 2020/04/27 rng = pd.date_range('2020-04-27', periods = 10, freq = '3D') rng

在这里插入图片描述
生成以时间为索引的时间序列

import datetime as dt time=pd.Series(np.random.randn(20), index=pd.date_range(dt.datetime(2020,1,1),periods=20)) print(time)

原创文章 31获赞 120访问量 4773 关注 私信 展开阅读全文
作者:Python数分与数挖



时间段 Python

需要 登录 后方可回复, 如果你还没有账号请 注册新账号