| track_values | R Documentation | 
Builds lists of observed unique character values of varlist variables from the data frame.
track_values(dframe, varlist)
dframe | 
 Data frame to learn treatments from (training data), must have at least 1 row.  | 
varlist | 
 Names of columns to treat (effective variables).  | 
named list of values seen.
prepare.treatmentplan, novel_value_summary
set.seed(23525)
zip <- c(NA, paste('z', 1:100, sep = "_"))
N <- 500
d <- data.frame(zip = sample(zip, N, replace=TRUE),
                zip2 = sample(zip, N, replace=TRUE),
                y = runif(N))
dSample <- d[1:300, , drop = FALSE]
tplan <- designTreatmentsN(dSample, 
                           c("zip", "zip2"), "y", 
                           verbose = FALSE)
trackedValues <- track_values(dSample, c("zip", "zip2"))
# don't normally want to catch warnings,
# doing it here as this is an example 
# and must not have unhandled warnings.
tryCatch(
  prepare(tplan, d, trackedValues = trackedValues),
  warning = function(w) { cat(paste(w, collapse = "\n")) })
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.