Description Usage Arguments Note Source Examples
View source: R/dt.define.variable.R
A function that an user can re-define the variables. Users have freedom to set the variable name and the the values. The values could be either expression, direct code(data.table format), or character. For details, please see the examples.
1 2 3 4 5 6 7 | dt.define.variable(
dat,
variable.name,
the.values,
specification = "by.value",
the.filter = NULL
)
|
dat |
a data.frame object |
variable.name |
a character value specifying the name of the new column |
the.values |
a vector of data specifying the values of the new column. |
specification |
Defaults to "by.value" unless the.values is set to be an expression or a vector, then specification should be set as "by.expression". |
the.filter |
a character value, logical value, or expression stating the logical operations to be performed in filtering the data prior to calculating the.function. Defaults to "NULL" unless specified. |
the data.frame dat will be converted to a data.table object to facilitate adding the new column by reference (e.g. efficiently with regard to the usage of memory)
DTwrappers::create.filter.expression
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | age.name = "Age"
income.name = "Income"
region.name = "Region"
snack.dat <- dt.define.variable(dat = formulaic::snack.dat,
variable.name = "Age Decade",
the.values = formulaic::snack.dat[, floor(get(age.name) / 10)])
snack.dat[1:10, .SD, .SDcols = c(age.name, "Age Decade")]
snack.dat <- dt.define.variable(dat = formulaic::snack.dat,
variable.name = "Income in Thousands",
the.values = expression(floor(get(income.name) / 10^3)),
specification = "by.expression")
snack.dat[1:10, .SD, .SDcols = c(income.name, "Income in Thousands")]
snack.dat <- dt.define.variable(dat = formulaic::snack.dat,
variable.name = "Income in Thousands",
the.values = "floor(get(income.name) / 10^3)",
specification = "by.expression")
snack.dat[1:10, .SD, .SDcols = c(income.name, "Income in Thousands")]
snack.dat <- dt.define.variable(dat = formulaic::snack.dat,
variable.name = "Region and Country",
the.values = expression(sprintf('%s, USA', get(region.name))),
specification = "by.expression")
snack.dat[1:10, .SD, .SDcols = c(region.name, "Region and Country")]
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.