快捷方式

torcharrow.Column.fill_null

Column.fill_null(fill_value: Union[int, float, bool, str, Dict])

使用指定的方法填充空值。

参数::

fill_value (int, float, bool, or str) –

另请参阅

icolumn.drop_null

返回删除了某行的列/帧,其中某行

示例

>>> import torcharrow as ta
>>> s = ta.column([1,2,None,4])
>>> s.fill_null(999)
0    1
1    2
2  999
3    4
dtype: int64, length: 4, null_count: 0

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

获取面向初学者和高级开发者的深入教程

查看教程

资源

查找开发资源并获得问题的解答

查看资源