Python Bokeh
pip3 install bokeh
bokeh ejemplos
más ejemplos en Python Pandas
from bokeh.plotting import figure, output_file, show p=figure(width=500,height=400, tools='pan') p.title.text="Cool Data" p.title.text_color="Gray" p.title.text_font="times" p.title.text_font_style="bold" p.xaxis.minor_tick_line_color=None p.yaxis.minor_tick_line_color=None p.xaxis.axis_label="Date" p.yaxis.axis_label="Intensity" p.line([1,2,3],[4,5,6]) output_file("graph.html") show(p)