C3. Visualization with DearPyGUI

30 min

Prerequisite

  1. Learn how to do numerical integration/simulaiton

Coding

We are going to visualize the state transtion of the Lorenz system with aid of DearPyGUI.

Lorenz System

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()

Previous