用法:
Series.head(n=5)
返回前
n
行。此函數根據位置返回對象的前n
行。它對於快速測試您的對象中是否包含正確類型的數據很有用。對於n
的負值,此函數返回除最後n
行之外的所有行,相當於df[:-n]
。- n:整數,默認 5
要選擇的行數。
- DataFrame或Series
調用者對象的前
n
行。
參數:
返回:
例子:
Series
>>> ser = cudf.Series(['alligator', 'bee', 'falcon', ... 'lion', 'monkey', 'parrot', 'shark', 'whale', 'zebra']) >>> ser 0 alligator 1 bee 2 falcon 3 lion 4 monkey 5 parrot 6 shark 7 whale 8 zebra dtype: object
查看前 5 行
>>> ser.head() 0 alligator 1 bee 2 falcon 3 lion 4 monkey dtype: object
查看前
n
行(在本例中為三行)>>> ser.head(3) 0 alligator 1 bee 2 falcon dtype: object
對於
n
的負值>>> ser.head(-3) 0 alligator 1 bee 2 falcon 3 lion 4 monkey 5 parrot dtype: object
DataFrame
>>> df = cudf.DataFrame() >>> df['key'] = [0, 1, 2, 3, 4] >>> df['val'] = [float(i + 10) for i in range(5)] # insert column >>> df.head(2) key val 0 0 10.0 1 1 11.0
相關用法
- Python cudf.Series.hash_values用法及代碼示例
- Python cudf.Series.has_nulls用法及代碼示例
- Python cudf.Series.ceil用法及代碼示例
- Python cudf.Series.update用法及代碼示例
- Python cudf.Series.max用法及代碼示例
- Python cudf.Series.reindex用法及代碼示例
- Python cudf.Series.interleave_columns用法及代碼示例
- Python cudf.Series.min用法及代碼示例
- Python cudf.Series.nlargest用法及代碼示例
- Python cudf.Series.to_frame用法及代碼示例
- Python cudf.Series.mask用法及代碼示例
- Python cudf.Series.notnull用法及代碼示例
- Python cudf.Series.isnull用法及代碼示例
- Python cudf.Series.rmod用法及代碼示例
- Python cudf.Series.map用法及代碼示例
- Python cudf.Series.nsmallest用法及代碼示例
- Python cudf.Series.data用法及代碼示例
- Python cudf.Series.lt用法及代碼示例
- Python cudf.Series.product用法及代碼示例
- Python cudf.Series.add用法及代碼示例
注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cudf.Series.head。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。