When using the R package MuMIn (v1.9.5), and the command dredge
, the beta = TRUE
switch no longer functions as expected.
# load Cement data set with MuMIn package
data(Cement)
# build global model
fmd <- lm(y ~ X1 + X2 + X3 + X4, data = Cement)
# dredge global model without returning standardized coefficients (default);
# WORKING
ms1 <- dredge(fmd)
# dredge global model and return standardized coefficients;
# NOT WORKING
ms1 <- dredge(fmd, beta = TRUE)
The latter returns:
Error in dimnames(ret) <- list(names(model$coefficients), c("Estimate", :
length of 'dimnames' [1] not equal to array extent
Using R v3.0.0