View source: R/bart_package_data_preprocessing.R
dummify_data | R Documentation |
Create a data frame with factors converted to dummies.
dummify_data(data)
data |
Data frame to be dummified. |
The column names of the dummy variables are given by the “FactorName_LevelName” and are augmented to the end of the design matrix. See the example below.
Returns a data frame with factors converted to dummy indicator variables.
BART handles dummification internally. This function is provided as a utility function.
Adam Kapelner and Justin Bleich
## Not run:
#generate data
set.seed(11)
x1 = rnorm(20)
x2 = as.factor(ifelse(x1 > 0, "A", "B"))
x3 = runif(20)
X = data.frame(x1,x2,x3)
#dummify data
X_dummified = dummify_data(X)
print(X_dummified)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.