gpt4 book ai didi

python - 在 pyplot 中绘制没有 y 值的 x 值

转载 作者:行者123 更新时间:2023-11-30 22:28:06 25 4
gpt4 key购买 nike

在 pyplot 中绘制 y 值很容易,给定一个 y_values = [0, 1, 4, 9] 列表,pyplot 会自动使用它来绘制它

plt.plot(y_values)
plt.show()

pyplot 使用 [0,1,2,3] 自动枚举这些。但是,给定一个 x_values 列表,有没有办法在不提供 y 值的情况下自动绘制这些值?例如让 pyplot 自动枚举它们?

我已经尝试过

plt.plot(x=x_values); plt.plot(xdata=x_values)

但是这些似乎都不起作用。当然,一种方法是翻转轴,但是有没有一种我忽略的更简单的方法?

最佳答案

pyplot.plot(*args, **kwargs) 中的 x 和 y 参数是位置参数。根据文档,例如

plot(x, y)        # plot x and y using default line style and color
plot(x, y, 'bo') # plot x and y using blue circle markers
plot(y) # plot y using x as index array 0..N-1

现在,pyplot 如何知道如果您指定单个参数,您希望将其解释为纵坐标而不是坐标?函数的编写方式根本不可能。

根据某个列表绘制索引的解决方案是将索引作为 y 参数提供:

import matplotlib.pyplot as plt
x_values = [0, 1, 4, 9]
plt.plot(x_values, range(len(x_values)))
plt.show()

关于python - 在 pyplot 中绘制没有 y 值的 x 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46726621/

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