pyplot: Can I set a global marker size parameter?

前端 未结 1 716
刺人心
刺人心 2021-01-23 05:58

Is there a command I can use to globally set the size of all scatter plot points, throughout my program?

1条回答
  •  醉话见心
    2021-01-23 06:53

    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

    0 讨论(0)
提交回复
热议问题