How to control stem markers size in matplotlib?

Viewed 4108
1 Answers
markerline, stemline, baseline, = ax.stem(x,y,linefmt='k-',markerfmt='ko',basefmt='k.')
plt.setp(stemline, linewidth = 1.25)
plt.setp(markerline, markersize = 5)

While the first two code lines are taken from the link in my question, the third code line changes the marker's size.

Related