Skip to content Skip to sidebar Skip to footer

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

And here are the default styles

Post a Comment for "Pyplot: Can I Set A Global Marker Size Parameter?"