MatchVarNames {CalibrateSSB} | R Documentation |
MatchVarNames
Description
MatchVarNames
Usage
MatchVarNames(x, y, sep = ":", makeWarning = FALSE)
Arguments
x |
x |
y |
y |
sep |
sep |
makeWarning |
Warning when matching by reordering |
Value
An integer vector giving the position in y of the first match if there is a match, otherwise NA.
Examples
z <- data.frame(A = factor(c("a", "b", "c")), B = factor(1:2), C = 1:6)
x <- colnames(model.matrix(~B * C * A, z))
y <- colnames(model.matrix(~A * B + A:B:C, z))
MatchVarNames(x, y)
[Package CalibrateSSB version 1.3.0 Index]