python 数据分析----matplotlib

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 数据分析----matplotlib相关的知识,希望对你有一定的参考价值。

Matplotlib是一个强大的Python绘图和数据可视化的工具包。

安装方法:pip install matplotlib

引用方法:import matplotlib.pyplot as plt

绘图函数:plt.plot()

显示图像:plt.show()

简单示例:

In [268]: import matplotlib.pyplot as plt

In [269]: x = np.linspace(5,15,1000)

In [270]: y = x*x

In [271]: plt.plot(x,y)
Out[271]: [<matplotlib.lines.Line2D at 0x10bdbd198>]

In [272]: plt.show()

图像如图:

技术分享

plot函数:

  • 线型linestyle(-,-.,--,..)
  • 点型marker(v,^,s,*,H,+,x,D,o,…)
  • 颜色color(b,g,r,y,k,w,…)
  • plot函数绘制多条曲线
  • 标题:set_title
  • x轴:set_xlabel
  • y轴:y_label
  • 其他类型图像:
    • hist 频数直方图

画布与图:

画布:figure

  • fig = plt.figure()

图:subplot

  • ax1 = fig.add_subplot(2,2,1) #2行2列放第一个位置

调节子图间距:

  • subplots_adjust(left, bottom, right, top, wspace, hspace)

以上是关于python 数据分析----matplotlib的主要内容,如果未能解决你的问题,请参考以下文章

python 数据分析----matplotlib

Python库-Matplotlib

python数据分析scipy和matplotlib

python数据分析007_使用Matplotlib绘图

Python数据可视化之Matplotlib实现各种图表

python数据可视化(matplotlib)