Skip to content

featurebyte.ObservationTable.preview

preview(
limit: int=10
) -> DataFrame

Description

Returns a DataFrame that contains a selection of rows of the observation table.

Parameters

  • limit: int
    default: 10
    Maximum number of return rows.

Returns

  • DataFrame
    Preview rows of the table.

Examples

>>> observation_table = catalog.get_observation_table(
...     "observation_table_name"
... )  # doctest: +SKIP
>>> observation_table.preview()