本文簡要介紹
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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。