Reputation: 8117
I have a scatter plot:
using Plots
scatter(rand(1000), rand(1000))
How can I reduce the alpha of the points?
Upvotes: 1
Views: 851
Reputation: 8117
You can add the keyword alpha
scatter(rand(1000), rand(1000), alpha = 0.1)
Upvotes: 1