bigframes._config.DisplayOptions.repr_mode#

DisplayOptions.repr_mode: Literal['head', 'deferred', 'anywidget'] = 'head'#

Determines how to display a DataFrame or Series. Default “head”.

head

Execute, download, and display results (limited to head) from Dataframe and Series objects during repr.

deferred

Prevent executions from repr statements in DataFrame and Series objects. Instead, estimated bytes processed will be shown. DataFrame and Series objects can still be computed with methods that explicitly execute and download results.