How to color points in scatter plot by value?

In plots.jl there is the option of using marker_z.

using Plots
x= rand(10)
y= rand(10)
z= rand(10)
scatter(x,y,marker_z=z)
7 Likes