I have been using the tutorials for R on clclismo and I am now at this point, where I am trying to plot points on to another plot using the instructions on the tutorial.
> plot(x,y,xlab="Independent",ylab="Dependent",main="Random Stuff")
> points(x1,y1,col=2,pch=3)
> points(x2,y2,col=4,pch=5)
The first plots as expected, but the latter two do not. The plot simply remains as is. No error is thrown up either. Any ideas?