[R] Help plz to fix it

Rlotus yerlan_ at hotmail.com
Mon Oct 22 20:41:29 CEST 2012


I have an array of probabilities....it is p. So if user types x=1 then
probability is p1=1/10. 
If user types x=2 it means that p2= p1+p2
if user types x=3 it means that p3=p1+p2+p3....and so on.
So i created a code..... but it doesnt work properly. Help me plz to fix it)
Thank u in advance.

psidp=function(x){
  p<-(1/10 2/5 2/5 2/5 2/5 1/10 1/10 1/10 1/10 1/10)
   i==0;
   if (x!=0){ 
   	for (i in 1 to x)
   	{p[i]=p[i]+p[i-1]
   	p[i]
   		}

}
   	
   	   	   	
   		




--
View this message in context: http://r.789695.n4.nabble.com/Help-plz-to-fix-it-tp4647051.html
Sent from the R help mailing list archive at Nabble.com.



More information about the R-help mailing list