Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to generate 300 Binomial-Logit Normal datasets where the porbability of outcome is a function of covariates. I used the following code to generate the data. Now I need to add in the covariates. Should I be using the package lnLME? Any help is appreciated.

set.seed(111)  
k<-20
n<-60
x<-NULL
eta<-rnorm(k,-3.32,.860)# equating moments to BB(3,3)
p<-exp(eta)/(1+exp(eta))
for(i in 1:k)
x<-cbind(x,rbinom(300,n,p[i])) 
share|improve this question
I would really appreciate any thoughts on this. – user1560215 Aug 9 '12 at 20:25

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.