30 min
Prerequisite
- Learn how to do numerical integration/simulaiton
Coding
We are going to visualize the state transtion of the Lorenz system with aid of DearPyGUI.
Quiz
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()