featurebyte.SourceTable.preview¶
preview(
limit: int=10,
after_cleaning: bool=False
) -> DataFrameDescription¶
Returns a DataFrame that contains a selection of rows of the table.
Parameters¶
- limit: int
default: 10
Maximum number of return rows. - after_cleaning: bool
default: False
Whether to apply cleaning operations.
Returns¶
- DataFrame
Preview rows of the table.
Examples¶
Preview 3 rows of the table.
See Also¶
- Table.sample: Retrieve a sample of a table.
- Table.describe: Retrieve a summary of a table.