Skip to content

featurebyte.ObservationTable.describe

describe(
size: int=0,
seed: int=1234
) -> DataFrame

Description

Returns descriptive statistics of the observation table.

Parameters

  • size: int
    default: 0
    Maximum number of rows to sample. If 0, all rows will be used.

  • seed: int
    default: 1234
    Seed to use for random sampling.

Returns

  • DataFrame
    Summary of the table.

Examples

>>> observation_table = catalog.get_observation_table("observation_table_name")
>>> observation_table.describe()