In [2]:
from bokeh.plotting import *
import ext_datos
output_notebook()
#prepare some data
x = ext_datos.tiempo
y = ext_datos.busVoltage
# output to static HTML file
output_file("lines.html", title="Bus Voltage")
# Plot a `line` renderer setting the color, line thickness, title, and legend value.
p = figure(title="Bus Voltage")
p.line(x, y, legend="Volts", x_axis_label='Segundos', y_axis_label='Voltaje')
show(p)
In [4]:
In [ ]:
In [6]:
In [ ]: