Visualize and explore data
Overview
Amazon SageMaker Unified Studio notebooks provide rich data visualization and exploration capabilities. Data frames automatically render as interactive tables, and you can create dedicated chart cells for custom visualizations.
On the left navigation, the data explorer provides access to your data catalog for discovering and accessing datasets. The variable explorer shows all active variables in your notebook session, including their data types and schemas.
Procedure
To view data in interactive tables:
Execute a Python or SQL cell that returns a data frame – compatible types include pandas, pyarrow, pyspark. Note: There is a limit of 20,000 rows for loading on the interactive tables and charts.
The results automatically display as an interactive table below the cell.
Use the table controls to filter, sort, and explore the data.
Click column headers to see data distribution visualizations.
To create custom charts:
Click the Charts button to add a chart cell.
Select the data frame you want to visualize from the dropdown.
Choose your chart type and configure the axes.
The chart renders automatically based on your selections.
To explore variables:
Open the variable explorer panel in the notebook interface.
View all active variables, their types, and memory usage.
Click on data frame variables to expand and see their schema.
Use variable names to reference data in new cells.
To access the data catalog:
Open the data explorer panel.
Navigate through your available data catalogs and databases.
Use the actions menu to read data directly into your notebook.
Generate code to access specific tables or datasets.