plot bar chart using python
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了plot bar chart using python相关的知识,希望对你有一定的参考价值。
Example
import matplotlib.pyplot as plt import plotly.plotly as py # Learn about API authentication here: https://plot.ly/python/getting-started # Find your api_key here: https://plot.ly/settings/api y = [3, 10, 7, 5, 3, 4.5, 6, 8.1] N = len(y) x = range(N) width = 1/1.5 plt.bar(x, y, width, color="blue") fig = plt.gcf() #plot_url = py.plot_mpl(fig, filename=‘mpl-basic-bar‘) plt.show()
以上是关于plot bar chart using python的主要内容,如果未能解决你的问题,请参考以下文章
Python使用matplotlib可视化条形图(bar plot)自定义在条形图的顶部添加数值标签(Bar Chart)