Visualization

Learn how to visualize data with Plotly.

Learn

Quiz

When is a heatmap useful?

To visualize three-dimensional data, a heat map is very useful.

Write Plotly code to render a bar chart

import plotly.express as px
data_canada = px.data.gapminder().query("country == 'Canada'")
fig = px.bar(data_canada, x='year', y='pop')
fig.show()

Previous
Next