python—可视化绘图
Posted 文城清枫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python—可视化绘图相关的知识,希望对你有一定的参考价值。
#numpy使用matplotlib实现可视化绘图
import numpy as np
import matplotlib.pyplot as plt
#线性图
x= np.linspace(-10,10,100)
y = np.sin(x)
plt.plot(x,y)
plt.show()
#饼状图
arr=np.array([15,30,45,10])
lables=np.array([‘apple‘,‘orange‘,‘grape‘,‘strawberry‘])
plt.pie(arr,labels=lables,autopct=‘%1.1f%%‘)
plt.show()
#直方图
arr=np.array([15,30,45,10])
lables=np.array([‘apple‘,‘orange‘,‘grape‘,‘strawberry‘])
plt.bar(lables,arr)
plt.show()
以上是关于python—可视化绘图的主要内容,如果未能解决你的问题,请参考以下文章
Python基础——matplotlib库的使用与绘图可视化
Python进阶(四十)-数据可视化の使用matplotlib进行绘图
Python可视化——3D绘图解决方案pyechartsmatplotlibopenpyxl