enable_ui | Display Options | teradataml - enable_ui - Teradata VantageCloud Lake

Lake - Analyze Your Data with ClearScape Analytics™

Deployment
VantageCloud
Edition
Lake
Product
Teradata VantageCloud Lake
Release Number
Published
February 2025
ft:locale
en-US
ft:lastEdition
2026-02-20
dita:mapPath
tcl1683670667798.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
tcl1683670667798

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

enable_ui set to True

Example 2: Set the option to hide the titanic DataFrame

display.enable_ui=False
df

enable_ui set to False