Skip to content
Prev 366991 / 398506 Next

Change (merge) vector by row names.

I wouldn't waste time looking for it... It goes something like

fullnames <- ...
extended <- matrix(0,length(fullnames),1)
rownames(extended) <- fullnames
extended[rownames(reduced),] <- reduced

where, presumably, you can find fullnames fromm the fit of a full model.

-pd