matplot绘图

Matplotlib

Matplotlib 是一个 Python 的 2D绘图库,通过 Matplotlib,开发者可以仅需要几行代码,便可以生成绘图,直方图,功率谱,条形图,错误图,散点图等。

http://matplotlib.org

  • 用于创建出版质量图表的绘图工具库
  • 目的是为Python构建一个Matlab式的绘图接口
  • import matplotlib.pyplot as plt
  • pyplot模块包含了常用的matplotlib API函数

figure

  • Matplotlib的图像均位于figure对象中
  • 创建figure:fig = plt.figure()

示例代码:

# 引入matplotlib包
import matplotlib.pyplot as plt
import numpy as np

%matplotlib inline #在jupyter notebook 里需要使用这一句命令

# 创建figure对象
fig = plt.figure()

运行结果:会弹出一个figure窗口,如下图所示

subplot

fig.add_subplot(a, b, c)

  • a,b 表示将fig分割成 a*b 的区域
  • c 表示当前选中要操作的区域,
  • 注意:从1开始编号(不是从0开始)
  • plot 绘图的区域是最后一次指定subplot的位置 (jupyter notebook里不能正确显示)

示例代码:

# 指定切分区域的位置
ax1 = fig.add_subplot(2,2,1)
ax2 = fig.add_subplot(2,2,2)
ax3 = fig.add_subplot(2,2,3)
ax4 = fig.add_subplot(2,2,4)

# 在subplot上作图
random_arr = np.random.randn(100)
#print random_arr

# 默认是在最后一次使用subplot的位置上作图,但是在jupyter notebook 里可能显示有误
plt.plot(random_arr)

# 可以指定在某个或多个subplot位置上作图
# ax1 = fig.plot(random_arr)
# ax2 = fig.plot(random_arr)
# ax3 = fig.plot(random_arr)

# 显示绘图结果
plt.show()

运行结果:仅右下角有图

直方图:hist

示例代码:

import matplotlib.pyplot as plt
import numpy as np

plt.hist(np.random.randn(100), bins=10, color=‘b‘, alpha=0.3)
plt.show()

散点图:scatter

示例代码:

import matplotlib.pyplot as plt
import numpy as np

# 绘制散点图
x = np.arange(50)
y = x + 5 * np.random.rand(50)
plt.scatter(x, y)
plt.show()

柱状图:bar

示例代码:

import matplotlib.pyplot as plt
import numpy as np

# 柱状图
x = np.arange(5)
y1, y2 = np.random.randint(1, 25, size=(2, 5))
width = 0.25
ax = plt.subplot(1,1,1)
ax.bar(x, y1, width, color=‘r‘)
ax.bar(x+width, y2, width, color=‘g‘)
ax.set_xticks(x+width)
ax.set_xticklabels([‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘])
plt.show()


矩阵绘图:plt.imshow()

  • 混淆矩阵,三个维度的关系

示例代码:

import matplotlib.pyplot as plt
import numpy as np

# 矩阵绘图
m = np.random.rand(10,10)
print(m)
plt.imshow(m, interpolation=‘nearest‘, cmap=plt.cm.ocean)
plt.colorbar()
plt.show()

plt.subplots()

  • 同时返回新创建的figure和subplot对象数组
  • 生成2行2列subplot:fig, subplot_arr = plt.subplots(2,2)
  • 在jupyter里可以正常显示,推荐使用这种方式创建多个图表

示例代码:

import matplotlib.pyplot as plt
import numpy as np

fig, subplot_arr = plt.subplots(2,2)
# bins 为显示个数,一般小于等于数值个数
subplot_arr[1,0].hist(np.random.randn(100), bins=10, color=‘b‘, alpha=0.3)
plt.show()

运行结果:左下角绘图

颜色、标记、线型

  • ax.plot(x, y, ‘r--’)

    等价于ax.plot(x, y, linestyle=‘--’, color=‘r’)

示例代码:

import matplotlib.pyplot as plt
import numpy as np

fig, axes = plt.subplots(2)
axes[0].plot(np.random.randint(0, 100, 50), ‘ro--‘)
# 等价
axes[1].plot(np.random.randint(0, 100, 50), color=‘r‘, linestyle=‘dashed‘, marker=‘o‘)

  • 常用的颜色、标记、线型

    颜色

    • b: blue
    • g: grean
    • r: red
    • c: cyan
    • m: magenta
    • y: yellow
    • k: black
    • w: white

标记

    • .: point
    • ,: pixel
    • o: circle
    • v: triangle_down
    • ^: triangle_up
    • <: tiiangle_left

线型

    • ‘-‘ or ‘solid‘: solid lint
    • ‘--‘ or ‘dashed‘: dashed line
    • ‘-.‘ or ‘dashdot‘: dash-dotted line
    • ‘:‘ or ‘dotted‘: dotted line
    • ‘None‘: draw nothing
    • ‘ ‘: draw nothing
    • ‘‘: draw nothing

刻度、标签、图例

  • 设置刻度范围

    plt.xlim(), plt.ylim()

    ax.set_xlim(), ax.set_ylim()

  • 设置显示的刻度

    plt.xticks(), plt.yticks()

    ax.set_xticks(), ax.set_yticks()

  • 设置刻度标签

    ax.set_xticklabels(), ax.set_yticklabels()

  • 设置坐标轴标签

    ax.set_xlabel(), ax.set_ylabel()

  • 设置标题

    ax.set_title()

  • 图例

    ax.plot(label=‘legend’)

    ax.legend(), plt.legend()
    loc=‘best’:自动选择放置图例最佳位置

示例代码:

import matplotlib.pyplot as plt
import numpy as np

fig, ax = plt.subplots(1)
ax.plot(np.random.randn(1000).cumsum(), label=‘line0‘)

# 设置刻度
#plt.xlim([0,500])
ax.set_xlim([0, 800])

# 设置显示的刻度
#plt.xticks([0,500])
ax.set_xticks(range(0,500,100))

# 设置刻度标签
ax.set_yticklabels([‘Jan‘, ‘Feb‘, ‘Mar‘])

# 设置坐标轴标签
ax.set_xlabel(‘Number‘)
ax.set_ylabel(‘Month‘)

# 设置标题
ax.set_title(‘Example‘)

# 图例
ax.plot(np.random.randn(1000).cumsum(), label=‘line1‘)
ax.plot(np.random.randn(1000).cumsum(), label=‘line2‘)
ax.legend()
ax.legend(loc=‘best‘)
#plt.legend()

原文地址:https://blog.51cto.com/tobeys/2443880

时间: 2024-11-08 21:50:17

matplot绘图的相关文章

matplot绘图无法显示中文的问题

手动添加: 1 from pylab import * 2 mpl.rcParams['font.sans-serif'] = ['SimHei'] #指定默认字体 3 mpl.rcParams['axes.unicode_minus'] = False #解决保存图像是负号'-'显示为方块的问题 原文地址:https://www.cnblogs.com/hfdkd/p/8353431.html

matplot绘图(五)

b3D图形绘制 # 导包:from mpl_toolkits.mplot3d.axes3d import Axes3Dimport matplotlib.pyplot as plt%matplotlib inlineimport numpy as np 画3D散点图 fig= plt.figure()                        # 二维axes3D = Axes3D(fig)            # 二维变成三维,生成三维坐标系x =np.random.randint(0,

机器学习二 逻辑回归作业

作业在这,http://speech.ee.ntu.edu.tw/~tlkagk/courses/ML_2016/Lecture/hw2.pdf 是区分spam的. 57维特征,2分类问题.采用逻辑回归方法.但是上述数据集在kaggle中没法下载,于是只能用替代的方法了,下了breast-cancer-wisconsin数据集. 链接在这http://archive.ics.uci.edu/ml/machine-learning-databases/breast-cancer-wisconsin

用Python玩微信跳一跳详细使用教程

github地址:https://github.com/wangshub/wechat_jump_game 工具介绍 Python 3 Android 手机 Adb 驱动 Python Matplot绘图 python3安装 安装pip 安装依赖包 在github地址将源码下载下来解压后,使用cd命令进入项目目录, 执行命令 pip install -r requirements.txt.会将依赖包下载下来. 下载好之后执行命令python -m pip list 安装adb驱动 下载adb驱动

R语言绘图——Graphics包

先给出一下参考说明: R绘图 http://www.cnblogs.com/holbrook/archive/2013/05/13/3075777.html R语言中颜色对照表 http://wenku.baidu.com/link?url=PnCsIjv3e_OGw2COt4AEo3_tHTisOYoHLGf9bf-jjzkfGIJhFZpEQrS6CAELUypnR82Wdj6VclURzzACwbUOszZVHoPnNt27RiM-Uv1B4z3 参考书<R语言核心技术手册> 我只是个勤

Python matplot的使用(一)

其实,使用它的直接原因是因为matlab太大了,不方便.另外,就是它是免费的. 在安装这个库的时候,会需要安装一些它所依赖的库,比如six等.从sourceforge上下载,只需按照提示安装完成就行了. 下边是第一个matplot的绘图实例,其中,数学方便的东西主要用到了numpy的东西. 很简单! 跟matlab太像了~~ 1 import numpy as np 2 import matplotlib.pyplot as plt 3 4 x = np.linspace(0, 10, 1000

Python--matplotlib绘图可视化知识点整理

Python--matplotlib绘图可视化知识点整理 强烈推荐ipython 原文:http://michaelxiang.me/2016/05/14/python-matplotlib-basic/ 无论你工作在什么项目上,IPython都是值得推荐的.利用ipython --pylab,可以进入PyLab模式,已经导入了matplotlib库与相关软件包(例如Numpy和Scipy),额可以直接使用相关库的功能. 本文作为学习过程中对matplotlib一些常用知识点的整理,方便查找.

Python Matplot中文显示完美解决方案

原因与现象 Matplot是一个功能强大的Python图表绘制库,很遗憾目前版本自带的字体库中并不支持中文字体.所以如果在绘制内容中需要显示中文,那么就会显示为方格字符. 解决办法 有一个较为完美的解决方案,通过扫描Matplot自带字体库以及系统字体库,寻找能够支持的中文字体,如果能够找到的话,就设置第一个为Matplot的字体熟悉. 代码如下: import matplotlib.pyplot as plt from matplotlib.font_manager import FontMa

Python进阶(四十)-数据可视化の使用matplotlib进行绘图

Python进阶(四十)-数据可视化の使用matplotlib进行绘图 前言 ??matplotlib是基于Python语言的开源项目,旨在为Python提供一个数据绘图包.我将在这篇文章中介绍matplotlib API的核心对象,并介绍如何使用这些对象来实现绘图.实际上,matplotlib的对象体系严谨而有趣,为使用者提供了巨大的发挥空间.用户在熟悉了核心对象之后,可以轻易的定制图像.matplotlib的对象体系也是计算机图形学的一个优秀范例.即使你不是Python程序员,你也可以从文中