featurebyte.TableColumn.preview¶
preview( 
limit: int=10, 
after_cleaning: bool=False
) -> DataFrameDescription¶
Returns a DataFrame that contains a selection of rows of the table column. 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 column.
Examples¶
Preview a table without cleaning operations.
>>> event_table = catalog.get_table("GROCERYINVOICE")
>>> description = event_table.preview(limit=5)