19  Plotly

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

Noten el tamaño del archivo final