The enable_ui option specifies whether to display exploratory data analysis UI when DataFrame is printed or not. When set to True, EDA UI is displayed, otherwise it is disabled.
By default, display.enable_ui is set to True.
Example 1: Set the option to display the titanic DataFrame
df = DataFrame("titanic")
df
Example 2: Set the option to hide the titanic DataFrame
display.enable_ui=False df