checkAlias: Check for alias structures in a dataframe, and throw an error...

Description Usage Arguments Value Examples

View source: R/F_checkAlias.R

Description

Check for alias structures in a dataframe, and throw an error when one is found

Usage

1
checkAlias(datFrame, covariatesNames)

Arguments

datFrame

the data frame to be checked for alias structure

covariatesNames

The names of the variables to be considered

Value

Throws an error when an alias structure is detected, returns invisible otherwise

Examples

1
2
3
4
5
#Make a dataframe with aliased variables
df = data.frame(foo = rnorm(10), baa = rep(c(TRUE, FALSE), each = 5),
foo2 = factor(rep(c("male", "female"), each = 5)))
checkAlias(df, c("foo", "baa"))
#Check test files for the error being thrown

RCM documentation built on Nov. 8, 2020, 5:22 p.m.

Related to checkAlias in RCM...