在matplotlib中更改标记的大小

时间:2013-11-13 08:21:32

标签: python matplotlib

是否有可能在matplotlib中更改标记大小?

from pylab import *    
x = [5,7,5,9,11,14]
y = [4,5,3,11,15,14]
scatter(x, y,color='green',marker='h')
show()

1 个答案:

答案 0 :(得分:5)

使用s关键字参数指定:

scatter(x, y, s=500, color='green', marker='h')
#             ^^^^^

您还可以通过传递列表来指定单个标记大小:

scatter(x, y, s=[5, 50, 500, 1000, 1500, 2000], color='green', marker='h')

请参阅matplotlib.pyplot.scatter