Georgery
Georgery

Reputation: 8117

Point Alpha in Julia Scatter Plot

I have a scatter plot:

using Plots
scatter(rand(1000), rand(1000))

enter image description here

How can I reduce the alpha of the points?

Upvotes: 1

Views: 851

Answers (1)

Georgery
Georgery

Reputation: 8117

You can add the keyword alpha

scatter(rand(1000), rand(1000), alpha = 0.1)

enter image description here

Upvotes: 1

Related Questions