MatchVarNames: MatchVarNames

Description Usage Arguments Value Examples

View source: R/setAndGetTotal.R

Description

MatchVarNames

Usage

1
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

1
2
3
4
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)

CalibrateSSB documentation built on Aug. 5, 2020, 1:07 a.m.