addFactorVariables {exceldata} | R Documentation |
Create factor variables from data dictionary
Description
This function will replace the code and category variables with factors based on the factor levels provided in the data dictionary. The original variables are retained with the suffix '_orig'
Usage
addFactorVariables(data, dictionary, keepOriginal = TRUE)
Arguments
data |
A data frame returned by readExcelData |
dictionary |
A data frame returned by readDataDict |
keepOriginal |
Boolean indicating if the original character variables should be kept, default is TRUE with _original appended to variable names |
Value
A data frame with the updated factor variables
Examples
## Not run:
exampleDataFile <- system.file("extdata", "exampleData.xlsx", package = "exceldata")
dictionary <- readDataDict(exampleDataFile, dictionarySheet = 'DataDictionary')
data <- readExcelData(exampleDataFile,dictionary,dataSheet='DataEntry')
factorData <- addFactorVariables(data,dictionary,keepOriginal = TRUE)
## End(Not run)
[Package exceldata version 0.1.1.3 Index]