gpt4 book ai didi

python - 在 matplotlib 图例中设置 numpoints 不起作用

转载 作者:太空狗 更新时间:2023-10-29 17:45:55 24 4
gpt4 key购买 nike

我正在按照建议 here 尝试在图例上获得单个数据点它似乎不起作用:

from pylab import scatter
import pylab
import matplotlib.pyplot as plt

fig = plt.figure()
ax = plt.gca()
ax.scatter(1,2,c = 'blue', marker = 'x')
ax.scatter(2,3, c= 'red', marker = 'o')
ax.legend(('1','2'), loc = 2, numpoints = 1)
plt.show()

code output

我是不是在做一些完全愚蠢的事情?一些附加信息:

In [147]:  import matplotlib 
print matplotlib.__version__

Out [147]: 1.1.1rc

最佳答案

对于散点图,使用 scatterpoints参数:

import matplotlib.pyplot as plt

fig, ax = plt.subplots()
ax.scatter(1, 2, c='blue', marker='x')
ax.scatter(2, 3, c='red', marker='o')
ax.legend(('1', '2'), loc=2, scatterpoints=1)
plt.show()

enter image description here

关于python - 在 matplotlib 图例中设置 numpoints 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23233290/

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