[R] How to draw the graph???

David Winsemius dwinsemius at comcast.net
Fri Oct 26 01:58:45 CEST 2012


On Oct 25, 2012, at 2:24 PM, Rlotus wrote:

> 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)
> }
> 
> 

Set up the plot before the loo and then use the points function inside the loop. 

> 
> 
> --
> 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 at 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.

David Winsemius, MD
Alameda, CA, USA




More information about the R-help mailing list