gpt4 book ai didi

python - 使用 matplotlib 绘制箱线图

转载 作者:行者123 更新时间:2023-11-28 21:19:39 25 4
gpt4 key购买 nike

是否可以用matplotlib绘制这种图表?

Plot

最佳答案

在我看来,这很像箱线图。我创建了一个简单的图形,因为当我这样展示我的数据时,同事们经常问我这个问题

enter image description here

如果这正是您要查找的内容,则示例代码为

import matplotlib.pyplot as plt

x1 = [-0.46,-1.25,-2.62,0.22]
x2 = [0.24,1.88,-0.49,-0.73,-0.49]
x3 = [-0.44,0.93,0.19,-4.36,-0.88]

fig = plt.figure(figsize=(8,6))

plt.boxplot([x for x in [x1, x2, x3]], 0, 'rs', 1)
plt.xticks([y+1 for y in range(len([x1, x2, x3]))], ['x1', 'x2', 'x3'])
plt.xlabel('measurement x')
t = plt.title('Box plot')
plt.show()

enter image description here

我把它当作 IPython 笔记本放在这儿:https://github.com/rasbt/matplotlib-gallery

关于python - 使用 matplotlib 绘制箱线图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24337726/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com