使用Matplotlib从字典创建在同一图上的多个箱线图
要在同一图上从字典创建多个箱线图,我们可以执行以下步骤:
- 设置图的大小并调整子图之间和周围的填充。
- 创建一个具有两列的 dict 。
- 创建一个图和一组子图。
- 创建一个箱线图。
- 使用 set_xticklabels() 方法设置 xticks 标签。
- 使用 show() 方法显示图。
示例
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
data = {'col1': [3, 5, 2, 9, 1], 'col2': [2, 6, 1, 3, 4]}
fig, ax = plt.subplots()
ax.boxplot(data.values())
ax.set_xticklabels(data.keys())
plt.show()