用法:
Series.last(offset)
根据日期偏移选择时间序列数据的最终期间。
对于具有排序的 DatetimeIndex 的 DataFrame,此函数根据日期偏移选择最后几行。
- offset:str, DateOffset, dateutil.relativedelta
将选择的数据的偏移长度。例如,“3D”将显示过去 3 天内具有索引的所有行。
- Series或DataFrame
调用者的子集。
- TypeError
如果索引不是
DatetimeIndex
参数:
返回:
抛出:
例子:
>>> i = pd.date_range('2018-04-09', periods=4, freq='2D') >>> ts = pd.DataFrame({'A':[1, 2, 3, 4]}, index=i) >>> ts A 2018-04-09 1 2018-04-11 2 2018-04-13 3 2018-04-15 4
获取过去 3 天的行:
>>> ts.last('3D') A 2018-04-13 3 2018-04-15 4
请注意,返回了最后 3 个日历日的数据,而不是数据集中最后 3 个观察天的数据,因此未返回 2018-04-11 的数据。
相关用法
- Python pandas.Series.le用法及代码示例
- Python pandas.Series.lt用法及代码示例
- Python pandas.Series.loc用法及代码示例
- Python pandas.Series.add_prefix用法及代码示例
- Python pandas.Series.map用法及代码示例
- Python pandas.Series.max用法及代码示例
- Python pandas.Series.str.isdecimal用法及代码示例
- Python pandas.Series.str.get用法及代码示例
- Python pandas.Series.to_csv用法及代码示例
- Python pandas.Series.dt.day_name用法及代码示例
- Python pandas.Series.sample用法及代码示例
- Python pandas.Series.head用法及代码示例
- Python pandas.Series.eq用法及代码示例
- Python pandas.Series.plot.line用法及代码示例
- Python pandas.Series.to_pickle用法及代码示例
- Python pandas.Series.between_time用法及代码示例
- Python pandas.Series.reindex_like用法及代码示例
- Python pandas.Series.dt.is_year_end用法及代码示例
- Python pandas.Series.repeat用法及代码示例
- Python pandas.Series.str.replace用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.last。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。