I have his code. I wanna draw the graph according to x and y. But at the end when I run the code it gives me only one dot.......it is strange cuz from the loop it has to give 20 dots. Help me plz to draw a graph(((
for (i in seq(1:20)) {rsidpVector= rsidp(1) x<-mean(rsidpVector) y<-length(number) plot(y,x,ylab="sample mean",xlab="sample size") print (rsidpVector) print(x) } rsidp<-function(x){ i=0 {y<-sample(number,x), replace=TRUE} return(y) } -- View this message in context: http://r.789695.n4.nabble.com/How-to-draw-the-graph-tp4647464.html Sent from the R help mailing list archive at Nabble.com. ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.