美文网首页我爱编程
Pandas 处理时间戳索引

Pandas 处理时间戳索引

作者: Manchangdx | 来源:发表于2018-04-19 10:12 被阅读0次
1、对时间序列的处理:
In [193]: from datetime import datetime

In [194]: dates = [
     ...:     datetime(2000, 1, 1),
     ...:     datetime(2000, 1, 2),
     ...:     datetime(2000, 1, 3)
     ...: ]

In [195]: dates      # datetime 列表
Out[195]: 
[datetime.datetime(2000, 1, 1, 0, 0),
 datetime.datetime(2000, 1, 2, 0, 0),
 datetime.datetime(2000, 1, 3, 0, 0)]

In [196]: s = Series(np.random.randn(3), index=dates)

In [197]: s          # 时间戳作为索引的一维数组
Out[197]: 
2000-01-01    0.536546
2000-01-02    0.226604
2000-01-03    0.487324
dtype: float64

In [198]: s.index    # 时间戳索引
Out[198]: DatetimeIndex(['2000-01-01', '2000-01-02', '2000-01-03'], 
dtype='datetime64[ns]', freq=None)

In [199]: s.index[0] # 时间戳( datetime 数据类型作索引后,自动转换为时间戳类型 )
Out[199]: Timestamp('2000-01-01 00:00:00')
2、pandas 的 Timestamp 方法生成时间戳:
In [64]: pd.Timestamp('2011/1/1')
Out[64]: Timestamp('2011-01-01 00:00:00')

In [65]: pd.Timestamp('2011-1-1')
Out[65]: Timestamp('2011-01-01 00:00:00')

In [66]: pd.Timestamp(2012,1,2)
Out[66]: Timestamp('2012-01-02 00:00:00')

In [67]: pd.Timestamp('1999-2-2 11:22:33')
Out[67]: Timestamp('1999-02-02 11:22:33')
3、pandas 的 to_datetime 方法生成时间戳索引:
# 格式很灵活
In [74]: pd.to_datetime(['1999/1/1', '1999-2-2', '2222-3-4 12:34:56'])
Out[74]: 
DatetimeIndex(['1999-01-01 00:00:00', '1999-02-02 00:00:00',
               '2222-03-04 12:34:56'],
              dtype='datetime64[ns]', freq=None)

In [75]: pd.to_datetime(['Dec 23, 2011', '1-2-1999', None])
Out[75]: DatetimeIndex(['2011-12-23', '1999-01-02', 'NaT'], 
dtype='datetime64[ns]', freq=None)

# 这是欧洲风格,把第一个数当作日,第二个数当作月
In [76]: pd.to_datetime(['1-2-1999'], dayfirst=True)  
Out[76]: DatetimeIndex(['1999-02-01'], dtype='datetime64[ns]', freq=None)

# pd.to_datetime(Series/DataFrame) 返回值是 Series 数据类型,不是时间戳索引
# 注意,这个返回值的每个元素的数据类型仍然是 Timestamp
In [96]: s = Series(['2011', '2012-3-4'])

In [97]: pd.to_datetime(s)
Out[97]: 
0   2011-01-01
1   2012-03-04
dtype: datetime64[ns]

# year month day 这三项必须有
In [98]: df = DataFrame({
     ...:    'year': [2011, 1987],
     ...:    'month': [1, 2],
     ...:    'day': [3, 4],
     ...:    'hour': [5, 6]
     ...: })

In [99]: pd.to_datetime(df)
Out[99]: 
0   2011-01-03 05:00:00
1   1987-02-04 06:00:00
dtype: datetime64[ns]

In [100]: type(pd.to_datetime(df))
Out[100]: pandas.core.series.Series

In [125]: type(pd.to_datetime(df)[0])
Out[125]: pandas._libs.tslibs.timestamps.Timestamp
4、pandas 的 date_range 方法生成时间戳索引:
# 三个参数依次为:开始时间、结束时间、频率,默认时间戳时刻为每月最后一天零时零分零秒
# Q 表示每季度,M 表示每月,D 表示每天,H 表示每小时,T/MIN 表示每分钟,S 表示每秒
# MS 表示每月第一天,BM 表示每月最后一天
# 5M 表示 5 个月,1h30min 表示 1 小时 30 分钟
# 第三个参数 freq 可以不写,默认频率是 D
In [201]: pd.date_range('1999-1-1', '2000', freq='M')
Out[201]: 
DatetimeIndex(['1999-01-31', '1999-02-28', '1999-03-31', '1999-04-30',
               '1999-05-31', '1999-06-30', '1999-07-31', '1999-08-31',
               '1999-09-30', '1999-10-31', '1999-11-30', '1999-12-31'],
              dtype='datetime64[ns]', freq='M')

In [202]: pd.date_range('1999-1-1', '2000', freq='MS')
Out[202]: 
DatetimeIndex(['1999-01-01', '1999-02-01', '1999-03-01', '1999-04-01',
               '1999-05-01', '1999-06-01', '1999-07-01', '1999-08-01',
               '1999-09-01', '1999-10-01', '1999-11-01', '1999-12-01',
               '2000-01-01'],
              dtype='datetime64[ns]', freq='MS')

# 两个参数为:开始时间、数量
# periods 表示生成多少个时间戳,默认频率为 D
In [226]: pd.date_range('1999.11.1', periods=3)
Out[226]: DatetimeIndex(['1999-11-01', '1999-11-02', '1999-11-03'], 
dtype='datetime64[ns]', freq='D')

# 三个参数依次为:开始时间、数量、频率
In [227]: pd.date_range('1999.11.1', periods=3, freq='M')
Out[227]: DatetimeIndex(['1999-11-30', '1999-12-31', '2000-01-31'], 
dtype='datetime64[ns]', freq='M')
5、时间戳作为索引的 Series 数组用 resample 方法统计数据

resample 就是“重采样”的意思

In [229]: dates = pd.date_range('1999.11.1', periods=9, freq='10D')

In [230]: s = Series(np.arange(1, len(dates)+1), index=dates)

In [231]: s
Out[231]: 
1999-11-01    1
1999-11-11    2
1999-11-21    3
1999-12-01    4
1999-12-11    5
1999-12-21    6
1999-12-31    7
2000-01-10    8
2000-01-20    9
Freq: 10D, dtype: int64

In [232]: s.resample('M').sum()    # 按月重采样求和
Out[232]: 
1999-11-30     6
1999-12-31    22
2000-01-31    17
Freq: M, dtype: int64

In [234]: s.resample('M').mean()   # 按月重采样求平均值
Out[234]: 
1999-11-30    2.0
1999-12-31    5.5
2000-01-31    8.5
Freq: M, dtype: float64

# 按月重采样求平均值后再按天重采样求平均值
In [235]: s.resample('M').mean().resample('D').mean()
Out[235]: 
1999-11-30    2.0
1999-12-01    NaN
1999-12-02    NaN
1999-12-03    NaN
        ...
2000-01-29    NaN
2000-01-30    NaN
2000-01-31    8.5
Freq: D, Length: 63, dtype: float64

# 同上操作用 ffill 处理缺失值 NaN
In [236]: s.resample('M').mean().resample('D').mean().ffill()
Out[236]: 
1999-11-30    2.0
1999-12-01    2.0
1999-12-02    2.0
        ...
2000-01-29    5.5
2000-01-30    5.5
2000-01-31    8.5
Freq: D, Length: 63, dtype: float64

In [269]: s
Out[269]: 
2011-01-01    0
2011-01-11    1
2011-01-21    2
2011-01-31    3
2011-02-10    4
2011-02-20    5
2011-03-02    6
2011-03-12    7
2011-03-22    8
2011-04-01    9
Freq: 10D, dtype: int64

# 按照月份进行降采样,并将每月的数据的原值、最大值、最小值、以及临近值列出
# ohlc:open high low close
In [270]: s.resample('m').ohlc()
Out[270]: 
            open  high  low  close
2011-01-31     0     3    0      3
2011-02-28     4     5    4      5
2011-03-31     6     8    6      8
2011-04-30     9     9    9      9
6、与时间戳对应的时间间隔和时间间隔索引,时间间隔就是时间段,使用 pd.Periodpd.period_range 方法:
# 生成时间间隔
In [45]: pd.Period('2011')
Out[45]: Period('2011', 'A-DEC')

In [46]: pd.Period('2011-1')
Out[46]: Period('2011-01', 'M')

# 生成时间间隔索引,参数与 date_range 类似
In [47]: pd.period_range('2011', '2012', freq='m')
Out[47]: 
PeriodIndex(['2011-01', '2011-02', '2011-03', '2011-04', '2011-05', 
             '2011-06', '2011-07', '2011-08', '2011-09', '2011-10', 
             '2011-11', '2011-12', '2012-01'],
            dtype='period[M]', freq='M')

In [65]: pd.period_range('2011-11', periods=10, freq='M')
Out[65]: 
PeriodIndex(['2011-11', '2011-12', '2012-01', '2012-02', '2012-03', 
             '2012-04', '2012-05', '2012-06', '2012-07', '2012-08'],
            dtype='period[M]', freq='M')

相关文章

网友评论

    本文标题:Pandas 处理时间戳索引

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