Skip to content

featurebyte.ViewColumn.notnull

notnull( ) -> FrozenSeriesT

Description

Returns a boolean Series indicating whether each element is not null.

Returns

  • FrozenSeriesT
    Column or Feature with boolean values

Examples

Filter a View by removing rows where a column has null values:

>>> view = catalog.get_view("GROCERYINVOICE")
>>> view_filtered = view[view["Amount"].notnull()]