Skip to content

Regression with sparse matricies

3 messages · Robin Jeffries, Frank E Harrell Jr, Douglas Bates

#
On 05/22/2010 02:19 PM, Robin Jeffries wrote:
Robin,

It is doubtful that fixed effects are appropriate for your situation, 
but if you do want to use them there is experimental code in the lrm 
function in the rms package to handle "strat" (strata) factors that 
makes use of the sparse matrix representation.  Not sure if it handles 
more than one factor, and you'll have to play with the code to make sure 
this method is activated.  Take a look at lrm.fit.strat.s that comes 
with the source package, the see what is needed in lrm to use it.

Frank
#
As Frank mentioned in his reply, expecting to estimate tens of
thousands of fixed-effects parameters in a logistic regression is
optimistic.  You could start with a generalized linear mixed model
instead

library(lme4)
fm1 <- glmer(resp ~ 1 + (1|f1) + (1|f2) + (1|f1:f2), mydata, binomial))

If you have difficulty with that it might be best to switch the
discussion to the R-SIG-Mixed-Models at R-project.org mailing list.
On Sat, May 22, 2010 at 2:19 PM, Robin Jeffries <rjeffries at ucla.edu> wrote: