本文簡要介紹
pyspark.pandas.Series.tail
的用法。用法:
Series.tail(n: int = 5) → pyspark.pandas.series.Series
返回最後
n
行。此函數根據位置返回對象的最後
n
行。它對於快速驗證數據很有用,例如,在排序或追加行之後。對於
n
的負值,此函數返回除前n
行之外的所有行,相當於df[n:]
。- n:整數,默認 5
要選擇的行數。
- 調用者類型
調用者對象的最後
n
行。
參數:
返回:
例子:
>>> psser = ps.Series([1, 2, 3, 4, 5]) >>> psser 0 1 1 2 2 3 3 4 4 5 dtype: int64
>>> psser.tail(3) 2 3 3 4 4 5 dtype: int64
相關用法
- Python pyspark Series.take用法及代碼示例
- Python pyspark Series.to_frame用法及代碼示例
- Python pyspark Series.truediv用法及代碼示例
- Python pyspark Series.to_pandas用法及代碼示例
- Python pyspark Series.to_numpy用法及代碼示例
- Python pyspark Series.to_csv用法及代碼示例
- Python pyspark Series.to_dict用法及代碼示例
- Python pyspark Series.to_excel用法及代碼示例
- Python pyspark Series.to_clipboard用法及代碼示例
- Python pyspark Series.to_markdown用法及代碼示例
- Python pyspark Series.transform用法及代碼示例
- Python pyspark Series.to_json用法及代碼示例
- Python pyspark Series.to_latex用法及代碼示例
- Python pyspark Series.truncate用法及代碼示例
- Python pyspark Series.to_string用法及代碼示例
- Python pyspark Series.asof用法及代碼示例
- 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用法及代碼示例
注:本文由純淨天空篩選整理自spark.apache.org大神的英文原創作品 pyspark.pandas.Series.tail。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。