helper_indicator {whomds} | R Documentation |
Create indicators from data frame
Description
Create indicators from data frame
Usage
helper_indicator(
df,
vars_indicators,
mapvalues_from,
mapvalues_to,
make_factor = TRUE
)
Arguments
df |
a data frame |
vars_indicators |
a character vector of the variables from |
mapvalues_from |
vector to pass to |
mapvalues_to |
vector to pass to |
make_factor |
a logical indicating whether resulting indicators should be factors. Default is |
Value
a data frame with new columns that are the indicators from vars_indicators
, with the same names pasted with "_ind"
.
Examples
helper_indicator(df = df_adults,
vars_indicators = c("EF1", "EF2", "EF3"),
mapvalues_from = 1:5,
mapvalues_to = c(0,0,0,1,1))
[Package whomds version 1.1.1 Index]