用法:
Series.update(other)
使用傳遞的係列中的值修改係列。使用傳遞的 Series 中的非 NA 值進行更新。在索引上對齊。
- other:係列,或可強製轉換為係列的對象
參數:
例子:
>>> import cudf >>> s = cudf.Series([1, 2, 3]) >>> s 0 1 1 2 2 3 dtype: int64 >>> s.update(cudf.Series([4, 5, 6])) >>> s 0 4 1 5 2 6 dtype: int64 >>> s = cudf.Series(['a', 'b', 'c']) >>> s 0 a 1 b 2 c dtype: object >>> s.update(cudf.Series(['d', 'e'], index=[0, 2])) >>> s 0 d 1 b 2 e dtype: object >>> s = cudf.Series([1, 2, 3]) >>> s 0 1 1 2 2 3 dtype: int64 >>> s.update(cudf.Series([4, 5, 6, 7, 8])) >>> s 0 4 1 5 2 6 dtype: int64
如果
other
包含 NaN,則原始係列中的相應值不會更新。>>> s = cudf.Series([1, 2, 3]) >>> s 0 1 1 2 2 3 dtype: int64 >>> s.update(cudf.Series([4, np.nan, 6], nan_as_null=False)) >>> s 0 4 1 2 2 6 dtype: int64
other
也可以是可強製轉換為係列的非係列對象類型>>> s = cudf.Series([1, 2, 3]) >>> s 0 1 1 2 2 3 dtype: int64 >>> s.update([4, np.nan, 6]) >>> s 0 4 1 2 2 6 dtype: int64 >>> s = cudf.Series([1, 2, 3]) >>> s 0 1 1 2 2 3 dtype: int64 >>> s.update({1: 9}) >>> s 0 1 1 9 2 3 dtype: int64
相關用法
- Python cudf.Series.unique用法及代碼示例
- Python cudf.Series.ceil用法及代碼示例
- 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用法及代碼示例
- 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用法及代碼示例
- Python cudf.Series.apply用法及代碼示例
注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cudf.Series.update。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。