How to plot circles with given radii using Plots

I’m not sure what the desired outcome is but, just in case this might be helpful, you can pass a vector to the markersize keyword argument:

using Plots

diameters = rand(5.0:0.2:15.0, 10)

scatter(rand(10),markersize=diameters,legend=false)

radii

1 Like