ray.data.Dataset.show#

Dataset.show(limit: int = 20) None[source]#

Print up to the given number of records from the dataset.

Note

This operation will trigger execution of the lazy transformations performed on this dataset, and will block until execution completes.

Time complexity: O(limit specified)

Parameters

limit – The max number of records to print.