是否有可能在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()
答案 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')