在Pandas或Matplotlib中绘制单个图表中的多个箱线图


要在PandasMatplotlib中的单个图表中绘制多个箱线图,我们可以采取以下步骤 -

步骤

  • 设置图形大小,并调整子图之间和周围的填充。

  • 制作一个包含两列的Pandas数据帧。

  • 使用plot()方法和kind='boxplot'绘制数据帧。

  • 若要显示图形,请使用show()方法。

示例

import pandas as pd
import numpy as np
from matplotlib import pyplot as plt

# Set the figure size
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

# Pandas dataframe
data = pd.DataFrame({"Box1": np.random.rand(10), "Box2": np.random.rand(10)})

# Plot the dataframe
ax = data[['Box1', 'Box2']].plot(kind='box', title='boxplot')

# Display the plot
plt.show()

输出

将产生以下输出 -

更新于: 13-9-2023

34K+ 查看次数

开启您的 职业生涯

完成课程后获得认证

开始工作
广告