fig, ax = plt.subplots(figsize=(9.63, 8.4)) ax.pie(size, labels=label, autopct='%1.1f%%', textprops={'fontsize': 20})怎么修改
时间: 2024-02-28 10:52:26 浏览: 70
如果你想修改饼图的字体大小,可以在 `textprops` 参数中指定字体大小,例如:
```python
import matplotlib.pyplot as plt
# 生成数据
labels = ['苹果', '香蕉', '橙子', '梨']
sizes = [30, 20, 25, 25]
# 绘制饼图
fig, ax = plt.subplots(figsize=(9.63, 8.4))
ax.pie(sizes, labels=labels, autopct='%1.1f%%', textprops={'fontsize': 20})
# 显示图形
plt.show()
```
在这个示例中,我们将 `textprops` 参数设为 `{'fontsize': 20}`,表示字体大小为 20。你可以根据需要设置不同的字体大小。
相关问题
fig,ax=plt.subplots(figsize=(12,8))
As an AI language model, I cannot display the visualizations. However, the above code creates a figure with a size of 12 inches in width and 8 inches in height using the subplots() function in Matplotlib. This figure can be used to plot various charts and graphs.
fig, ax = plt.subplots(figsize=(15, 9))
这段代码使用 Matplotlib 库创建一个新的图表,并返回一个 Figure 对象和一个 AxesSubplot 对象。其中 figsize 参数用于设置图表的尺寸,以英寸为单位。因此,这段代码创建的图表大小为 15 英寸(宽)x 9 英寸(高)。
可以使用返回的 Figure 对象和 AxesSubplot 对象来添加图形元素,如线条、文本、标题等。例如:
```
import matplotlib.pyplot as plt
fig, ax = plt.subplots(figsize=(15, 9))
x = [1, 2, 3, 4]
y = [1, 4, 9, 16]
ax.plot(x, y)
ax.set_title('My Plot')
ax.set_xlabel('X Axis')
ax.set_ylabel('Y Axis')
plt.show()
```
这将创建一个大小为 15 英寸 x 9 英寸的图表,并绘制一个简单的线条图,添加标题和轴标签。
阅读全文