Fills null values in the Expression with the provided fill_value.
Returns:
| Name | Type | Description |
Expression | Expression | Expression with null values filled with the provided fill_value |
Examples:
| >>> import daft
>>> from daft.functions import fill_null
>>>
>>> df = daft.from_pydict({"data": [1, None, 3]})
>>> df = df.select(fill_null(df["data"], 2))
>>> df.collect()
|
╭───────╮
│ data │
│ --- │
│ Int64 │
╞═══════╡
│ 1 │
├╌╌╌╌╌╌╌┤
│ 2 │
├╌╌╌╌╌╌╌┤
│ 3 │
╰───────╯
(Showing first 3 of 3 rows)
Source code in daft/functions/misc.py
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336 | def fill_null(expr: Expression, fill_value: Expression) -> Expression:
"""Fills null values in the Expression with the provided fill_value.
Returns:
Expression: Expression with null values filled with the provided fill_value
Examples:
>>> import daft
>>> from daft.functions import fill_null
>>>
>>> df = daft.from_pydict({"data": [1, None, 3]})
>>> df = df.select(fill_null(df["data"], 2))
>>> df.collect()
╭───────╮
│ data │
│ --- │
│ Int64 │
╞═══════╡
│ 1 │
├╌╌╌╌╌╌╌┤
│ 2 │
├╌╌╌╌╌╌╌┤
│ 3 │
╰───────╯
<BLANKLINE>
(Showing first 3 of 3 rows)
"""
expr = Expression._to_expression(expr)
fill_value = Expression._to_expression(fill_value)
return Expression._from_pyexpr(expr._expr.fill_null(fill_value._expr))
|