featurebyte.ViewColumn.describe¶
describe(
size: int=0,
seed: int=1234,
from_timestamp: Union[datetime, str, NoneType]=None,
to_timestamp: Union[datetime, str, NoneType]=None,
**kwargs: Any
) -> DataFrameDescription¶
Returns descriptive statistics of the view column. The statistics are computed after any cleaning operations that were defined either at the table level or during the view's creation have been applied.
Parameters¶
- size: int
default: 0
Maximum number of rows to sample. - seed: int
default: 1234
Seed to use for random sampling. - from_timestamp: Union[datetime, str, NoneType]
Start of date range to sample from. - to_timestamp: Union[datetime, str, NoneType]
End of date range to sample from. - **kwargs: Any
Additional keyword parameters.
Returns¶
- DataFrame
Summary of the view.