Where can I find the plotly examples used in the animation section?

When I look at the animation example page Intro to animations in Python the examples use some data. Can I find these data used in the example, so I can run them through?

hi @alex134356
:wave: Welcome to the community.

You can find all the built-in Plotly data sets here.

if you would like to explore each dataset, you can either use a print statement or save them as csv sheets:

  1. Print data in terminal
df = px.data.gapminder()
print(df.head())
  1. Save data as CSV:
import plotly.express as px
import pandas as pd
df = px.data.gapminder()
df.to_csv("mydata.csv")