You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fixed-effect model matrix is rank deficient so dropping 7 columns / coefficients.
Result with add_ci/add_pi
Error in X %*% vcovBetaHat : non-conformable arguments
Likely what is happening is that lmer is taking your specified model, noticing that the covariance matrix won't properly invert, and is thus dropping some columns so that it behaves better. When ciTools tries to do the same thing, it attempts to use the original, un-reduced matrix and thus produces the above error.
The text was updated successfully, but these errors were encountered:
Warning message produced by lme4::lmer
Result with add_ci/add_pi
Likely what is happening is that lmer is taking your specified model, noticing that the covariance matrix won't properly invert, and is thus dropping some columns so that it behaves better. When ciTools tries to do the same thing, it attempts to use the original, un-reduced matrix and thus produces the above error.
The text was updated successfully, but these errors were encountered: