# pip install plotly
19 Plotly
import plotly.express as px
import pandas as pd
= '../data/Temixco_2018_10Min.csv'
f = pd.read_csv(f)
tmx tmx.columns
Index(['time', 'Ib', 'Ig', 'To', 'RH', 'WS', 'WD', 'P'], dtype='object')
= px.line(tmx, x="time",y="Ig")
fig fig.show()
= px.line(tmx, x="time",y=["Ig","Ib"])
fig fig.show()
= px.line(tmx, x="time",y=tmx.columns)
fig fig.show()