daft.DataFrame.collect

daft.DataFrame.collect#

DataFrame.collect(num_preview_rows: Optional[int] = 8) DataFrame[source]#

Executes the entire DataFrame and materializes the results

Note

This call is blocking and will execute the DataFrame when called

Parameters:

num_preview_rows – Number of rows to preview. Defaults to 8.

Returns:

DataFrame with materialized results.

Return type:

DataFrame