featurebyte.BatchFeatureTable.describe¶ describe( size: int=0, seed: int=1234 ) -> DataFrame Description¶ Returns descriptive statistics of the batch feature table. Parameters¶ size: int default: 0 Maximum number of rows to sample. If 0, all rows will be used. seed: int default: 1234 Seed to use for random sampling. Returns¶ DataFrame Summary of the table. Examples¶ >>> batch_feature_table = catalog.get_batch_feature_table("batch_feature_table_name") >>> summary_df = batch_feature_table.describe()