daft.DataFrame.show#
- DataFrame.show(n: int = 8) None [source]#
Executes enough of the DataFrame in order to display the first
n
rowsIf 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 Pythonprint
.Note
This call is blocking and will execute the DataFrame when called
- Parameters:
n – number of rows to show. Defaults to 8.