首页 > 编程语言 > 详细

Python可视化工具

时间:2017-09-19 22:19:26      阅读:311      评论:0      收藏:0      [点我收藏+]

http://pbpython.com/visualization-tools-1.html

 

https://bokeh.pydata.org/en/latest/

 

https://github.com/bokeh/bokeh

 

http://biobits.org/bokeh-jupyter-embed.html

 

import pandas as pd
from bokeh.plotting import figure, show
from bokeh.io import output_notebook, output_file

power = pd.read_csv(‘power.csv‘)

time = power[‘time‘].tolist()
current = power[‘current‘].tolist()

plot = figure(title=‘Power Curve‘, plot_width=1900, plot_height=500)
plot.line(x=time, y=current, color=‘green‘)
output_notebook()
#show(plot)

Python可视化工具

原文:http://www.cnblogs.com/arnoldlu/p/7553978.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!