python matplotlib各种基础图汇总

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python matplotlib各种基础图汇总相关的知识,希望对你有一定的参考价值。

from matplotlib.pyplot import *

# 输入样本数据
x = [1, 2, 3, 4]
y = [5, 4, 3, 2]

# 创建一个新图像
figure()

# 将图像分为2 * 3的表格, 同时选定绘图区1, 绘制一个条形图
subplot(231)
plot(x, y)

# 选定绘图区2, 并绘制条形图
subplot(232)
bar(x, y)

# 水平条形图
subplot(233)
barh(x, y)

# 创建层叠条形图, 首先绘制底部数据
subplot(234)
bar(x, y)
# 然后绘制上部数据, 指定该条形图底部为y, 并且本条形图的颜色为红色
y1 = [7, 8, 5, 3]
bar(x, y1, bottom=y, color="r")

# 绘制箱型图 TODO 箱型图有什么用?
subplot(235)
boxplot(x)

# 散点图
subplot(236)
scatter(x, y)

# 统一显示图像
show()

以上是关于python matplotlib各种基础图汇总的主要内容,如果未能解决你的问题,请参考以下文章

Python Matplotlib画图基础介绍

matplotlib

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

python matplotlib 画图神器

Matplotlib中的颜色、线条、标记样式汇总

Windows系统中python3.7安装数据可视化模块Matplotlibnumpy的各种方法汇总