I need to add new series to a scatter plot and am using plots. I
’ plt=scatter(x,y,color=“red”)’
’ push!(plt, a,b)’
x,y,a,b, are all random 100x1 integer arrays. When I use the push! as noted above only a[1],b[1] is plotted. and it is int he same color. How do I add another series and specify its color?
Been playing with this a lot and cant seem to find my way around the plots documentation site to figure it out.
Also, with v1 upon us, what are the plotting packages of choice?