在matplotlib图例中设置数字点不起作用 [英] Setting numpoints in matplotlib legend does not work

查看:121
本文介绍了在matplotlib图例中设置数字点不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在按照建议此处,但似乎不起作用:

I am trying to have a single data point on a plot legend by following the suggestions here and it does not seem to work:

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()

我在这里做的事完全是愚蠢的吗?一些其他信息:

Am I doing something completely stupid here? Some additional information:

In [147]:  import matplotlib 
           print matplotlib.__version__

Out [147]: 1.1.1rc   

推荐答案

对于散点图,请使用

For scatterplots, use the scatterpoints parameter:

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()

这篇关于在matplotlib图例中设置数字点不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆