用法:
Series.dropna(axis=0, inplace=False, how=None)
返回刪除空值的係列。
- axis:{0 或 ‘index’},默認 0
隻有一個軸可以從中刪除值。
- inplace:布爾值,默認為 False
如果為 True,則在原地執行操作並返回 None。
- how:str,可選
未使用。保持兼容性。
- Series
從中刪除了具有空條目的係列。
參數:
返回:
例子:
>>> import cudf >>> ser = cudf.Series([1, 2, None]) >>> ser 0 1 1 2 2 <NA> dtype: int64
從係列中刪除空值。
>>> ser.dropna() 0 1 1 2 dtype: int64
將具有有效條目的係列保留在同一變量中。
>>> ser.dropna(inplace=True) >>> ser 0 1 1 2 dtype: int64
空字符串不被視為空值。
None
被視為空值。>>> ser = cudf.Series(['', None, 'abc']) >>> ser 0 1 <NA> 2 abc dtype: object >>> ser.dropna() 0 2 abc dtype: object
相關用法
- Python cudf.Series.drop_duplicates用法及代碼示例
- Python cudf.Series.drop用法及代碼示例
- Python cudf.Series.data用法及代碼示例
- Python cudf.Series.dt用法及代碼示例
- Python cudf.Series.div用法及代碼示例
- Python cudf.Series.diff用法及代碼示例
- Python cudf.Series.digitize用法及代碼示例
- Python cudf.Series.divide用法及代碼示例
- Python cudf.Series.dot用法及代碼示例
- Python cudf.Series.describe用法及代碼示例
- Python cudf.Series.ceil用法及代碼示例
- Python cudf.Series.update用法及代碼示例
- Python cudf.Series.max用法及代碼示例
- Python cudf.Series.head用法及代碼示例
- 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用法及代碼示例
注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cudf.Series.dropna。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。