按下面的代码画图,画出来之后(见下图),怎么修改蓝色箭头指的横线,改成原点之类的?
setwd("/Users/mashengwei/Desktop/RMSW/")
jpeg(file="myplot.jpeg")
srna<- read.table(file="Clean2.txt",header=TRUE)
names(srna)
str(srna)
plot(x=srna$Length,y=srna$V1,type="o",pch=16)
lines(x=srna$Length,y=srna$V1,pch=16)