'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?



Solution 1:[1]

You can add the keyword alpha

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

enter image description here

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Georgery