search for: n_100

Displaying 2 results from an estimated 2 matches for "n_100".

Did you mean: 0_100
2000 Apr 07
4
Bug in qbinom? (PR#511)
n_10;p_0.5;jjx_0:n;qbinom(pbinom(jjx,n,p),n,p) # This one works as expected n_100;p_0.5;jjx_0:n;qbinom(pbinom(jjx,n,p),n,p) # This one causes severe problems I cannot interrupt using ESC and I finally have to resort to the Windows Task manager to kill the R session. A friend of mine told me that he faced similar problems under Unix. --please do not edit the information belo...
2000 Feb 19
1
problem with glm (PR#452)
...ate the problem on my Linux PC). I have the same problem whether I use a version of R built with the native C-compiler or a version compiled with gcc. In both cases I've built with g77. I want to do some simulations with a call to glm in each rep. A simplified version would be something like: N_100; NREPS_100; lam.e_5; logit.inv_function(x){ exp(x)/(1+exp(x)) } for(i in (1:NREPS)) { cat(paste("REP",i,"\n")) T_rexp(N,(lam.e)) Delta_rbinom(N,1,logit.inv(1+T)) ff_glm(Delta ~ T,family=binomial(logit)) } It often completes all reps, but I occasionally get errors r...