Skip to content

featurebyte.ViewColumn.is_numeric

is_numeric: bool

Description

Returns whether the view column has a numeric data type.

Returns

  • bool

Examples

>>> view = fb.Table.get("GROCERYINVOICE").get_view()
>>> print(view["Amount"].is_numeric)
True
>>> print(view["Timestamp"].is_numeric)
False