daft.DataFrame.show

Contents

daft.DataFrame.show#

DataFrame.show(n: int = 8) None[source]#

Executes enough of the DataFrame in order to display the first n rows

If IPython is installed, this will use IPython’s display utility to pretty-print in a notebook/REPL environment. Otherwise, this will fall back onto a naive Python print.

Note

This call is blocking and will execute the DataFrame when called

Parameters:

n – number of rows to show. Defaults to 8.