Just a quick question: I'm trying to plot in R, and I told how to do it, but how to delete the line I just created? For instance:
x <- c(1, 2, 4, 5, 6.7, 7, 8, 10 )
y <- c(40, 30, 10, 20, 53, 20, 10, 5)
plot(x,y,main="X vs Y", xlab="X", ylab="Y")
lines(x,y,col="black",lty="dotted")
This gives a good schedule. However, let's say I would like to delete the line I created earlier (or maybe the dots?), How should I do this?
source
share