我在X轴上有点,我想从每个点到另一点(X2,Y2)做直线。

该代码用于从Y = 35到X点(P)的蓝线,并且可以正常工作

pos_fixed = np.array([0, TR])
lines = np.array([[[pos, 0], pos_fixed] for pos in P])
line_coll = LineCollection(lines)

fig, ax = plt.subplots()
ax.add_collection(line_coll)

plt.xlim([0, lines[:,:,0].max()])
plt.ylim([0, lines[:,:,1].max()])
plt.xlabel('Oś')
plt.ylabel('Promień')
plt.show()


这是应该按照我一开始描述的代码:


for s in range(len(P)-1):
    position = np.array([P[s], 0])
    lines = np.array([[position, [x2[s], y2[s]]]])
    line_coll = LineCollection(lines)
    fig, ax = plt.subplots()
    ax.add_collection(line_coll)
    plt.xlim([0, lines[:,:,0].max()])
    plt.ylim([0, lines[:,:,1].max()])
plt.show()



我的期望值附在图片上(我有红色和紫色的点,我不知道如何做绿线)。

此代码(第二个代码)显示数十个图表(每个绿线分别),并且不包括(我希望)以前的代码/上一个图表。

python - Python:绘制从x轴上的点(X1,0)到点(X2,Y2)的线时出现问题-LMLPHP

最佳答案

您正在每个循环上创建一个图形。您可以先设置图形,然后在for循环中添加线条。
重新排列您的代码,如下所示:

# create the figure
fig, ax = plt.subplots()
plt.xlim([0, lines[:,:,0].max()])
plt.ylim([0, lines[:,:,1].max()])

# lines from the first part of the question
pos_fixed = np.array([0, TR])
lines = np.array([[[pos, 0], pos_fixed] for pos in P])
line_coll = LineCollection(lines,colors='blue')
ax.add_collection(line_coll)
plt.xlabel('Oś')
plt.ylabel('Promień')


# lines for the second part
for s in range(len(P)-1):
    position = np.array([P[s], 0])
    lines = np.array([[position, [x2[s], y2[s]]]])
    line_coll = LineCollection(lines,colors='green')
    ax.add_collection(line_coll)

plt.show()

关于python - Python:绘制从x轴上的点(X1,0)到点(X2,Y2)的线时出现问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55678968/

10-11 08:53