How to Adjust Marker Size and Border Thickness in Scatter Plots in Julia
Code1
The keyword makersize controls the marker size. The supplied value is the marker radius, with units in pixels. The abbreviations ms and msize may be used.
The keyword markerstrokewidth controls the marker’s stroke width. The unit is pixels and the abbreviations msw and mswidth may be used. Below are example code and its result.
p1 = scatter([1,2,3], [0], msize=[10,20,30])
p2 = scatter([1,2,3], [0], msw=[5,10,15], ms=[30])
plot(p1, p2)

