赞
踩
pandas库时间处理函数
获取当前时间,并返回出年月日规范格式。形如 2017-01-04
常用的方法有:
pd.date_range() 生成一个时间段pd.bdate_range() 生成一个时间段,跟date_range()不同,可见下面代码df.asfreq() 生成以一定时间间隔的序列
pd.date_range(start, end, freq) 生成一个时间段
freq参数由英文(M D H Min 。。。)、英文数字结合。D表示一天,M表示一月如20D表示20天,5M表示5个月。
#生成20171011-20171030pd.date_range('20171011', '20171030',freq='5D')
DatetimeIndex(['2017-10-11', '2017-10-16', '2017-10-21', '2017-10-26'], dtype='datetime64[ns]', freq='5D')
pd.date_range(日期字符串, periods=5, freq='T') 生成一个时间段
periods :时间段长度,整数类型
freq: 时间单位。月日时分秒。M D H ...
import pandas as pd#20171231 12:50时间点开始,生成以月为间隔,长度为5的时间段tm_rng = pd.date_range('20171231 12:50',periods=5,freq='M')print(type(tm_rng))print(tm_rng)
<class 'pandas.core.indexes.datetimes.DatetimeIndex'>DatetimeIndex(['2017-12-31 12:50:00', '2018-01-31 12:50:00','2018-02-28 12:50:00', '2018-03-31 12:50:00','2018-04-30 12:50:00'],dtype='datetime64[ns]', freq='M')
我们发现date_range()生成的是index,那么我们就可以索引为日期类型的dateframe
#生成一个Series,时间段为索引tm_series = pd.Series(range(len(tm_rng)),index=tm_rng)tm_series
2017-12-31 12:50:00 02018-01-31 12:50:00 12018-02-28 12:50:00 22018-03-31 12:50:00 32018-04-30 12:50:00 4Freq: M, dtype: int64
pd.bdate_range(end,periods,freq) 根据end时间点开始,以freq为单位,向前生成周期为period的时间序列
pd.bdate_range(start,periods,freq) 根据start时间点开始,以freq为单位,向后生成周期为period的时间序列
#向前5天print(pd.bdate_range(end='20180101',periods=5,freq='D'))
DatetimeIndex(['2017-12-28', '2017-12-29', '2017-12-30', '2017-12-31','2018-01-01'],dtype='datetime64[ns]', freq='D')
#向后5天print(pd.bdate_range(start='20180101',periods=5,freq='D'))
DatetimeIndex(['2018-01-01', '2018-01-02', '2018-01-03', '2018-01-04','2018-01-05'],dtype='datetime64[ns]', freq='D')
对dateframe或者series对象操作,更改对象中时间的时间间隔。dateframe.asfreq(freq='时间间隔',method='填充方式',fill_value='对Nan值进行填充')freq格式:M D H Min 。。。与数字结合。如20D表示20天,5M表示5个月。method:有pad、backfill两种填充方式fill_value:缺失值更改为fill_value的值。
#改变时间间隔,以20天为间隔tm_series.asfreq('20D',method='pad')
2017-12-31 12:50:00 02018-01-20 12:50:00 02018-02-09 12:50:00 12018-03-01 12:50:00 22018-03-21 12:50:00 22018-04-10 12:50:00 32018-04-30 12:50:00 4Freq: 20D, dtype: int64
#改变时间间隔,以20天为间隔tm_series.asfreq('20D',method='backfill')
2017-12-31 12:50:00 02018-01-20 12:50:00 12018-02-09 12:50:00 22018-03-01 12:50:00 32018-03-21 12:50:00 32018-04-10 12:50:00 42018-04-30 12:50:00 4Freq: 20D, dtype: int64
#改变时间间隔,以100小时为间隔tm_series.asfreq('100H')
2017-12-31 12:50:00 0.02018-01-04 16:50:00 NaN2018-01-08 20:50:00 NaN2018-01-13 00:50:00 NaN.....2018-04-10 12:50:00 NaN2018-04-14 16:50:00 NaN2018-04-18 20:50:00 NaN2018-04-23 00:50:00 NaN2018-04-27 04:50:00 NaNFreq: 100H, dtype: float64
#改变时间间隔,以100小时为间隔tm_series.asfreq('100H',fill_value='缺失值')
2017-12-31 12:50:00 02018-01-04 16:50:00 缺失值2018-01-08 20:50:00 缺失值2018-01-13 00:50:00 缺失值.....2018-04-14 16:50:00 缺失值2018-04-18 20:50:00 缺失值2018-04-23 00:50:00 缺失值2018-04-27 04:50:00 缺失值Freq: 100H, dtype: object
data = pd.Series(['May 20, 2017','2017-07-12','20170930','2017/10/11','2017 12 11'])pd.to_datetime(data)
0 2017-05-201 2017-07-122 2017-09-303 2017-10-114 2017-12-11dtype: datetime64[ns]
如下tm_rng是以5小时时间间隔,生成了20个数据。我们只要2018-01-02的数据。对Series或Dataframe都可以使用日期字符串操作,选取指定时间范围的数据。
import pandas as pdimport numpy as nptm_rng = pd.date_range('2017-12-31 12:00:00',periods=20,freq='5H')tm_series = pd.Series(np.random.randn(len(tm_rng)), index=tm_rng)print(type(tm_series))print(tm_series)
<class 'pandas.core.series.Series'>2017-12-31 12:00:00 0.6184652017-12-31 17:00:00 -0.9636312017-12-31 22:00:00 -0.782348.....2018-01-04 06:00:00 -0.6811232018-01-04 11:00:00 -0.710626Freq: 5H, dtype: float64
#我们只要tm_series中是2018-01-02的数据tm_series['2018-01-02']
2018-01-02 04:00:00 0.2939412018-01-02 09:00:00 -1.4373632018-01-02 14:00:00 -0.5272752018-01-02 19:00:00 1.140872Freq: 5H, dtype: float64
#我们要2018年的数据,结果全保留tm_series['2018']
2018-01-01 03:00:00 -0.3630192018-01-01 08:00:00 0.4269222018-01-01 13:00:00 -1.1184252018-01-01 18:00:00 0.956300.....2018-01-03 20:00:00 -1.9678392018-01-04 01:00:00 -0.6540292018-01-04 06:00:00 -0.6811232018-01-04 11:00:00 -0.710626Freq: 5H, dtype: float64
dft = pd.DataFrame(np.random.randn(len(tm_rng)), index=tm_rng)print(type(dft))print(dft)
<class 'pandas.core.frame.DataFrame'> 2017-12-31 12:00:00 0.2133312017-12-31 17:00:00 1.9201312017-12-31 22:00:00 -1.6086452018-01-01 03:00:00 -0.2264392018-01-01 08:00:00 -0.558741.....2018-01-03 20:00:00 0.8668222018-01-04 01:00:00 -0.3619022018-01-04 06:00:00 0.9027172018-01-04 11:00:00 -0.431569
#对dataframe中的时间操作,只要2018-01-04日的数据print(type(dft['2018-01-04']))print(dft['2018-01-04'])
<class 'pandas.core.frame.DataFrame'> 2018-01-04 01:00:00 -0.3619022018-01-04 06:00:00 0.9027172018-01-04 11:00:00 -0.431569
近期文章
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。