In this Plotly tutorial, you will learn how to use Plotly animations in Python.
# Import Plotly Module
import plotly.express as px
# Import Dataset
dataset = px.data.gapminder().query("continent=='Asia'")
# Animation
plot = px.scatter(dataset, x="gdpPercap", y="lifeExp", animation_frame="year", animation_group="country", size="pop", color="country", hover_name="country", log_x=True, size_max=55, range_x=[100,100000], range_y=[25,90])
# Show the Plot
plot.show()Output:



