gpt4 book ai didi

python - 如何从 matplotlib ginput 中切片列表

转载 作者:太空宇宙 更新时间:2023-11-04 02:54:36 25 4
gpt4 key购买 nike

我有一个 Python 值列表,我正在使用 matplotlib 绘制它。然后我尝试在 matplotlib 中使用 ginput 单击图形上的两个点,从中获取 X 坐标,在它们之间切分我的原始列表。但是,我似乎无法找到执行此操作的方法。

我已经有一个名为 MIList 的号码列表,但以下代码对我不起作用:

startinput = plt.ginput(2)
print("clicked", startinput)
startinputxvalues = [x[0] for x in startinput]
print(startinputxvalues)
x1 = startinputxvalues[0]
print(x1)
x2 = startinputxvalues[1]
print(x2)
slicedMIList = [MIList[int(x1):int(x2)]]
plt.plot(slicedMIList)

这给了我一个数组,但它没有在我的图表上绘制这些值 - 有人对我做错了什么有任何意见吗?

谢谢

最佳答案

要点是,一旦对 Canvas 进行了更改,您就需要重新绘制 Canvas 。因此,为了让新情节变得可见,您可以调用

plt.gcf().canvas.draw()

这是一个完整的工作代码:

import matplotlib.pyplot as plt
import numpy as np

X = np.arange(10)
Y = np.sin(X)
plt.plot(X, Y)

startinput = plt.ginput(2)
x, y = zip(*startinput)

Ysliced = Y[int(x[0]):int(x[1])+1]
Xsliced = X[int(x[0]):int(x[1])+1]
plt.plot(Xsliced, Ysliced, color="C3", linewidth=3)

#draw the canvas, such that the new plot becomes visible
plt.gcf().canvas.draw()

plt.show()

enter image description here

关于python - 如何从 matplotlib ginput 中切片列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42833413/

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