gpt4 book ai didi

python - 已知 x、y 的条形图

转载 作者:太空宇宙 更新时间:2023-11-03 18:23:16 25 4
gpt4 key购买 nike

我想绘制以下内容:

x = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I']
y = [10, 20, 1, 8, 7, 2, 3, 7, 11]

作为条形图(条形宽度可以是任何数字,只要它们可见即可)

当我这样做时:

plt.figure()
plt.bar(x, y)

我得到:

TypeError: cannot concatenate 'str' and 'float' objects
为什么?我怎样才能看到它的条形图?

最佳答案

该错误意味着您传递了错误的类型。

猜测,假设这是 pyplot,bar 命令有参数:

left, height, width=0.8, bottom=None, hold=None, **kwargs

您正在为“left”传递一个字符串数组,但您需要一个标量数字类型数组。 'left' 不是标签,而是坐标。

关于python - 已知 x、y 的条形图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23689711/

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