当前位置:   article > 正文

matplotlib-python两个子图在同一个画布上_python一幅画布上两幅图片参数调整

python一幅画布上两幅图片参数调整

Matplotlib中最基础的模块是pyplot。matplotlib和matplotlib.pyplot的惯用别名分别是mpl和plt。

import matplotlib as mpl
import matplotlib.pyplot as plt
  • 1
  • 2

在Matplotlib中,画图时有两个常用概念,一个是平时画图蹦出的窗口,叫做figure。figure相当于一个大的画布,在每个figure中,又可以存在多个子图,这种子图叫做axes。顾名思义,有了横纵轴就是一幅简单的图表。
在下面代码中,先把figure定义成一个1行2列的大画布,然后通过“fig.add_subplot()”加入两个新的子图。subplot的定义格式很有趣,数字的前两位分别定义行数和列数,最后一位定义新加入子图的所处顺序。

import numpy as np
import matplotlib.pyplot as plt

mpl.rcParams['axes.titlesize'] = 10  #子图的标题大小
mpl.rcParams['axes.labelsize'] = 10  #子图的标签大小
mpl.rcParams['xtick.labelsize'] = 8  #横轴字体大小
mpl.rcParams['ytick.labelsize'] = 8  #纵轴字体大小
mpl.rcParams['xtick.major.size'] = 0  #x轴最大刻度大小
mpl.rcParams['ytick.major.size'] = 0  #y轴最大刻度大小

fig = plt.figure('Bar chart & Pie chart')  #整体图的标题
speed_map = {
    'dog': (48, '#7199cf'),
    'cat': (45, '#4fc4aa'),
    'cheetah': (120, '#e1a7a2')
}

#①在121位置上添加柱图,通过fig.add_subplot()加入子图
ax = fig.add_subplot(121)  
ax.set_title('Running speed - bar chart')  #子图标题
xticks = np.arange(3)  #生成x轴每个元素的位置
speeds = [x[0] for x in speed_map.values()]  #奔跑速度
bar_width = 0.5  #定义柱状图每个柱的宽度

#设置x、y轴的范围
ax.set_xlim([bar_width/2-1, 3-bar_width/2])
ax.set_ylim([0, 125])
#设置x轴标签
animals = speed_map.keys()  
ax.set_xticklabels(animals) 
ax.set_xticks(xticks)  #设置x轴上每个标签的具体位置
#设置y轴的标签
ax.set_ylabel('Speed(km/h)')  

bars = ax.bar(xticks, speeds, width=bar_width, edgecolor='none')  #设置柱的边缘为透明
colors = [x[1] for x in speed_map.values()]  #对应颜色
for bar, color in zip(bars, colors):  #给每个bar分配指定的颜色
    bar.set_color(color)
    
    
#②在122位置加入饼图
ax = fig.add_subplot(122)
ax.set_title('Running speed - pie chart')
# 生成同时包含名称和速度的标签
labels = ['{}\n{} km/h'.format(animal, speed) for animal, speed in zip(animals, speeds)]
# 画饼状图,并指定标签和对应颜色
ax.pie(speeds, labels=labels, colors=colors)
ax.axis('equal')   #保证饼图不变形
 
    
plt.savefig('Bar chart & Pie chart.png')  #保存为图片
plt.show()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/612703
推荐阅读
相关标签
  

闽ICP备14008679号