初学 Matplotlib之Pyplot - 2

继续上一篇的内容,还是学习pyplot

这里下一种图形是柱状图

import numpy as np
import matplotlib.pyplot as plt

names = ['group_a', 'group_b', 'group_c']  
values = [1, 10, 100]     

plt.figure(figsize=(9, 3))  

plt.subplot(131)
plt.bar(names, values)
plt.subplot(132)
plt.scatter(names, values)
plt.subplot(133)
plt.plot(names, values)
plt.suptitle('Categorical Plotting')
plt.show()

firgure是表示这个画图板的尺寸,以inch为单位. 这个案例中就是宽9,高3

初学 Matplotlib之Pyplot - 2_第1张图片
图板尺寸

然后看到三个subplot,里面是131,132,133,并不是随便取的名字或序号,需要遵循以下规律,索引数字是从1开始,切记

初学 Matplotlib之Pyplot - 2_第2张图片
子图位置

初学 Matplotlib之Pyplot - 2_第3张图片
效果图

你可能感兴趣的:(初学 Matplotlib之Pyplot - 2)