featurebyte.BatchFeatureTable.preview¶ preview( limit: int=10 ) -> DataFrame Description¶ Returns a DataFrame that contains a selection of rows of the batch feature table. Parameters¶ limit: int default: 10 Maximum number of return rows. Returns¶ DataFrame Preview rows of the table. Examples¶ >>> batch_feature_table = catalog.get_batch_feature_table( ... "batch_feature_table_name" ... ) # doctest: +SKIP >>> preview_df = batch_feature_table.preview()