featurebyte.Table.preview¶
Description¶
Returns a DataFrame that contains a selection of rows of the table. By default, the materialization process occurs before any cleaning operations that were defined at the table level.
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 a table without cleaning operations.
>>> event_table = catalog.get_table("GROCERYINVOICE")
>>> description = event_table.preview(limit=5)