Skip to content
Prev 79 / 20628 Next

large dataset - lmer2 vector size specified is too large

On 3/1/07, florian bw <florian.bw at gmail.com> wrote:
Do you know that this formula is equivalent to

expr ~ 1 + (affyID*sex|cephID)

I think you meant

expr ~ affyID * sex + (affyID|cephID)

but even that formula means that you are estimating 448 fixed effects
for which the model matrix is of size 448 * 43680 * 8 bytes (about 150
MB).  In addition you are attempting to estimate

(224 * (224 + 1))/2 = 25200

variance-covariance components from 43680 observations.

I suggest that you reconsider the model specification.  The readers of
this list will be able to help with the interpretation of the model
specification if you want to discuss it.