Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 896
kilojoules Avatar asked Mar 31 '26 23:03

kilojoules


1 Answers

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

like image 163
damio Avatar answered Apr 03 '26 12:04

damio