All docs
Column·
method
Column.is_null
a bool column, true where the value is null
Python
is_null() -> Column
Returns Column — a boolean Column, true where the value is null
Example#
Python
t.filter(t["score"].is_null()) # keep only the rows missing a score
Notes#
Produces a boolean Column (a mask) you pass to filter. It is the
exact complement of is_valid. For a per-column count of nulls
across the whole table, use Table.null_report.
See also#
API: is_valid · Table.filter · Table.null_report
Guides: Tables & data flow · Clean a CSV
By LSD Team · Last updated Jul 17, 2026
Ask on Discord
View as Markdown