Pyplot: Can I Set A Global Marker Size Parameter?
Is there a command I can use to globally set the size of all scatter plot points, throughout my program?
Solution 1:
You can define your own stylesheet oroverride the defaults by hand
import matplotlib as mpl
mpl.rcParams['lines.markersize'] = 10
Post a Comment for "Pyplot: Can I Set A Global Marker Size Parameter?"