本文简要介绍
pyspark.pandas.Series.last
的用法。用法:
Series.last(offset: Union[str, pandas._libs.tslibs.offsets.DateOffset]) → pyspark.pandas.series.Series
根据日期偏移选择时间序列数据的最终期间。
当有一个以日期为索引的系列时,此函数可以根据日期偏移选择最后几个元素。
- offset:str 或 DateOffset
将选择的数据的偏移长度。例如,“3D”将显示过去 3 天内具有索引的所有行。
- Series
调用者的子集。
- TypeError
如果索引不是
DatetimeIndex
参数:
返回:
抛出:
例子:
>>> index = pd.date_range('2018-04-09', periods=4, freq='2D') >>> psser = ps.Series([1, 2, 3, 4], index=index) >>> psser 2018-04-09 1 2018-04-11 2 2018-04-13 3 2018-04-15 4 dtype: int64
获取过去 3 天的行:
>>> psser.last('3D') 2018-04-13 3 2018-04-15 4 dtype: int64
请注意,返回了最后 3 个日历日的数据,而不是数据集中最后 3 个观察天的数据,因此未返回 2018-04-11 的数据。
相关用法
- Python pyspark Series.last_valid_index用法及代码示例
- Python pyspark Series.loc用法及代码示例
- Python pyspark Series.lt用法及代码示例
- Python pyspark Series.le用法及代码示例
- Python pyspark Series.asof用法及代码示例
- Python pyspark Series.to_frame用法及代码示例
- Python pyspark Series.rsub用法及代码示例
- Python pyspark Series.mod用法及代码示例
- Python pyspark Series.str.join用法及代码示例
- Python pyspark Series.str.startswith用法及代码示例
- Python pyspark Series.dt.is_quarter_end用法及代码示例
- Python pyspark Series.dropna用法及代码示例
- Python pyspark Series.sub用法及代码示例
- Python pyspark Series.sum用法及代码示例
- Python pyspark Series.gt用法及代码示例
- Python pyspark Series.iloc用法及代码示例
- Python pyspark Series.explode用法及代码示例
- Python pyspark Series.str.slice_replace用法及代码示例
- Python pyspark Series.dt.is_month_end用法及代码示例
- Python pyspark Series.plot.barh用法及代码示例
- Python pyspark Series.between用法及代码示例
- Python pyspark Series.floordiv用法及代码示例
- Python pyspark Series.describe用法及代码示例
- Python pyspark Series.ndim用法及代码示例
- Python pyspark Series.str.rjust用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.pandas.Series.last。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。