Skip to Content
DocsCoursesEE275C3. Visualization with DearPyGUI

C3. Visualization with DearPyGUI

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()
Last updated on