cowmesh-network-test/line_plot.py

5 lines
162 B
Python
Raw Normal View History

2023-06-16 15:34:55 +00:00
import plotly.express as px
df = px.data.gapminder().query("continent == 'Oceania'")
fig = px.line(df, x='date', y='mbps', color='test', markers=True)
fig.show()