gpt4 book ai didi

python - 相同的符号出现在 Matplotlib 图例中

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

我正在 couseera 学习机器学习类(class)。我为数据绘制了一个图并试图制作一个图例。我在网上引用过,用过这种格式

plt.figure(1)
plt.title('input data plot')
plt.xlabel('Exam 1 marks')
plt.ylabel('Exam 2 marks')
plt.plot(X[temp0,0],X[temp0,1],'or')
plt.plot(X[temp1,0],X[temp1,1],'xb')
plt.plot(x_boundary,y_boundary,'-g')
plt.legend(['Not admitted','Admitted','Decision Boundary'],numpoints=1)
plt.show()

所有类型的输出都具有相同的符号same legend

然后我使用下面给出的另一种格式

plt.figure(1)
plt.title('input data plot')
plt.xlabel('Exam 1 marks')
plt.ylabel('Exam 2 marks')
plt.plot(X[temp0,0],X[temp0,1],'or',label='Not admitted')
plt.plot(X[temp1,0],X[temp1,1],'xb',label='Admitted')
plt.plot(x_boundary,y_boundary,'-g',label='Decision Boundary')
plt.legend()
plt.show()

结果是所有数据的图例 many legends

谁能帮我解决这个问题。提前谢谢你。

最佳答案

如果没有更多信息,我不能肯定地说,但我强烈怀疑您的问题出在您的数据上。如果您的值数组包含在另一个数组中,您将获得在第二个示例中看到的行为。

查看此示例以了解不同之处:

import matplotlib.pyplot as plt
import random

# Note the extra array brackets. This is not good.
X = [[random.randint(0,10) for i in range(0,5)]]
Y = [[random.randint(0,10) for i in range(0,5)]]

X1 = [random.randint(0,10)for i in range(0,5)]
Y1 = [random.randint(0,10)for i in range(0,5)]

plt.plot(X,Y,'or',label='Double Array')
plt.plot(X1,Y1,'xb',label='Single Array')

plt.legend()
plt.show()

Example of double array's messing up legends

关于python - 相同的符号出现在 Matplotlib 图例中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52852326/

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