featurebyte.BatchRequestTable.preview¶ preview( limit: int=10 ) -> DataFrame Description¶ Returns a DataFrame that contains a selection of rows of the batch request table. Parameters¶ limit: int default: 10 Maximum number of return rows. Returns¶ DataFrame Preview rows of the table. Examples¶ >>> batch_request_table = catalog.get_batch_request_table( ... "my_batch_request_table" ... ) # doctest: +SKIP >>> batch_request_table.preview()