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