1. Microsoft Learn. (2023). Visualize data in Microsoft Fabric notebooks.
Section: display() command
Content: "The display() command allows you to turn Spark and Pandas DataFrames into rich data visualizations. To use the display() command
call the display(df) function in a notebook cell. The notebook automatically renders a rich plot of the DataFrame." This section explicitly states that display() is the function that enables the rich visualization features
including the chart view.
2. Microsoft Learn. (2023). Explore data in a notebook with Microsoft Fabric.
Section: Visualize data
Content: This tutorial demonstrates the use of display(df) to generate a table that can then be switched to a chart view. It contrasts this with df.show()
which only prints a text representation. The document states
"While the show method is useful for viewing the schema and a sample of the data
a more graphical visualization is often a better way to explore the data. You can do this using the display function..."