Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Python 教程

Python 主页 Python 简介 Python 入门 Python 语法 Python 注释 Python 变量 Python 数据类型 Python 数字 Python 类型转换 Python 字符串 Python 布尔值 Python 运算符 Python 列表 Python 元组 Python 集合 Python 字典 Python If...Else Python While 循环 Python For 循环 Python 函数 Python Lambda Python 数组 Python 类/对象 Python 继承 Python 迭代器 Python 多态 Python 作用域 Python 模块 Python 日期 Python 数学 Python JSON Python 正则表达式 Python PIP Python Try...Except Python 用户输入 Python 字符串格式化

文件处理

Python 文件处理 Python 读取文件 Python 写入/创建文件 Python 删除文件

Python 模块

NumPy 教程 Pandas 教程 SciPy 教程 Django 教程

Python Matplotlib

Matplotlib 简介 Matplotlib 入门 Matplotlib Pyplot Matplotlib 绘图 Matplotlib 标记 Matplotlib 线 Matplotlib 标签 Matplotlib 网格 Matplotlib 子图 Matplotlib 散点图 Matplotlib 柱状图 Matplotlib 直方图 Matplotlib 饼图

机器学习

入门 平均值 中位数 众数 标准差 百分位数 数据分布 正态数据分布 散点图 线性回归 多项式回归 多元回归 缩放 训练/测试 决策树 混淆矩阵 层次聚类 逻辑回归 网格搜索 分类数据 K-均值 自助聚合 交叉验证 AUC - ROC 曲线 K 近邻

Python MySQL

MySQL 入门 MySQL 创建数据库 MySQL 创建表 MySQL 插入 MySQL 选择 MySQL Where MySQL 排序 MySQL 删除 MySQL 删除表 MySQL 更新 MySQL 限制 MySQL 连接

Python MongoDB

MongoDB 入门 MongoDB 创建数据库 MongoDB 集合 MongoDB 插入 MongoDB 查找 MongoDB 查询 MongoDB 排序 MongoDB 删除 MongoDB 删除集合 MongoDB 更新 MongoDB 限制

Python 参考

Python 概述 Python 内置函数 Python 字符串方法 Python 列表方法 Python 字典方法 Python 元组方法 Python 集合方法 Python 文件方法 Python 关键字 Python 异常 Python 词汇表

模块参考

随机模块 请求模块 统计模块 数学模块 cMath 模块

Python 如何

删除列表重复项 反转字符串 添加两个数字

Python 例子

Python 例子 Python 编译器 Python 练习 Python 测验 Python 服务器 Python 面试问答 Python 集训营 Python 证书

Matplotlib 饼图


创建饼图

使用 Pyplot,您可以使用 pie() 函数绘制饼图

示例

一个简单的饼图

import matplotlib.pyplot as plt
import numpy as np

y = np.array([35, 25, 25, 15])

plt.pie(y)
plt.show() 

结果

自己试试 »

如您所见,饼图为数组中的每个值绘制一个部分(称为扇区)(在本例中为 [35, 25, 25, 15])。

默认情况下,第一个扇区的绘制从 x 轴开始,并以 逆时针 方向移动

注意: 每个扇区的大小是通过将值与所有其他值进行比较来确定的,使用以下公式

值除以所有值的总和:x/sum(x)



标签

使用 labels 参数在饼图上添加标签。

labels 参数必须是一个数组,每个扇区对应一个标签

示例

一个简单的饼图

import matplotlib.pyplot as plt
import numpy as np

y = np.array([35, 25, 25, 15])
mylabels = ["Apples", "Bananas", "Cherries", "Dates"]

plt.pie(y, labels = mylabels)
plt.show() 

结果

自己试试 »

起始角度

如前所述,默认起始角度在 x 轴,但您可以通过指定 startangle 参数来更改起始角度。

startangle 参数用度数定义,默认角度为 0

示例

从 90 度开始绘制第一个扇区

import matplotlib.pyplot as plt
import numpy as np

y = np.array([35, 25, 25, 15])
mylabels = ["Apples", "Bananas", "Cherries", "Dates"]

plt.pie(y, labels = mylabels, startangle = 90)
plt.show() 

结果

自己试试 »

分离

您可能希望其中一个扇区突出显示?该 explode 参数允许您做到这一点。

如果指定了 explode 参数且不为 None,则它必须是一个数组,每个楔形图对应一个值。

每个值表示每个楔形图相对于饼图中心的偏移距离。

示例

将“苹果”楔形图从饼图中心拉出 0.2 个单位。

import matplotlib.pyplot as plt
import numpy as np

y = np.array([35, 25, 25, 15])
mylabels = ["Apples", "Bananas", "Cherries", "Dates"]
myexplode = [0.2, 0, 0, 0]

plt.pie(y, labels = mylabels, explode = myexplode)
plt.show() 

结果

自己试试 »

阴影

通过将 shadows 参数设置为 True 为饼图添加阴影。

示例

添加阴影

import matplotlib.pyplot as plt
import numpy as np

y = np.array([35, 25, 25, 15])
mylabels = ["Apples", "Bananas", "Cherries", "Dates"]
myexplode = [0.2, 0, 0, 0]

plt.pie(y, labels = mylabels, explode = myexplode, shadow = True)
plt.show() 

结果

自己试试 »

颜色

您可以使用 colors 参数设置每个楔形图的颜色。

如果指定了 colors 参数,则它必须是一个数组,每个楔形图对应一个值。

示例

为每个楔形图指定一个新的颜色。

import matplotlib.pyplot as plt
import numpy as np

y = np.array([35, 25, 25, 15])
mylabels = ["Apples", "Bananas", "Cherries", "Dates"]
mycolors = ["black", "hotpink", "b", "#4CAF50"]

plt.pie(y, labels = mylabels, colors = mycolors)
plt.show() 

结果

自己试试 »

您可以使用 十六进制颜色值、任何 140 种支持的颜色名称 或以下快捷方式。

'r' - 红色
'g' - 绿色
'b' - 蓝色
'c' - 青色
'm' - 洋红色
'y' - 黄色
'k' - 黑色
'w' - 白色


图例

要添加每个楔形图的解释列表,请使用 legend() 函数。

示例

添加图例

import matplotlib.pyplot as plt
import numpy as np

y = np.array([35, 25, 25, 15])
mylabels = ["Apples", "Bananas", "Cherries", "Dates"]

plt.pie(y, labels = mylabels)
plt.legend()
plt.show() 

结果

自己试试 »

带标题的图例

要添加图例标题,请将 title 参数添加到 legend 函数。

示例

添加带标题的图例

import matplotlib.pyplot as plt
import numpy as np

y = np.array([35, 25, 25, 15])
mylabels = ["Apples", "Bananas", "Cherries", "Dates"]

plt.pie(y, labels = mylabels)
plt.legend(title = "Four Fruits:")
plt.show() 

结果

自己试试 »

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.