Python可视化工具
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python可视化工具相关的知识,希望对你有一定的参考价值。
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可视化工具的主要内容,如果未能解决你的问题,请参考以下文章
[Python系列-9]:Python之人工智能 - 基本工具 -3- 函数可视化工具matplotlib