featurebyte.ViewColumn.sample¶
sample(
size: int=10,
seed: int=1234,
from_timestamp: Union[datetime, str, NoneType]=None,
to_timestamp: Union[datetime, str, NoneType]=None,
**kwargs: Any
) -> DataFrameDescription¶
Returns a Series that contains a random selection of rows of the view column based on a specified time range, size, and seed for sampling control. The materialization process occurs after any cleaning operations that were defined either at the table level or during the view's creation.
Parameters¶
- size: int
default: 10
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
Sampled rows of the data.
Examples¶
Sample 3 rows of a column.
>>> catalog.get_view("GROCERYPRODUCT")["ProductGroup"].sample(3)
ProductGroup
0 Épices
1 Chat
2 Pains
Sample 3 rows of a column with timestamp.
See Also¶
- ViewColumn.preview: Retrieve a preview of a ViewColumn.
- ViewColumn.sample: Retrieve a sample of a ViewColumn.