I made the following commands in the R:
setwd:(###)
data1<-read.table("scatter1.txt",header=T)
head(data1)
tail(data1)
summary(data1)
str(data1)
names(data1)
plot(xv,ys,col="red")
And the message below appeared:
Error in eval (predvars, data, env): object 'xv' not found
What could be wrong?