add_index {tidycomm} | R Documentation |
Add index
Description
Add a rowwise mean or sum index of specific variables to the dataset.
Usage
add_index(data, name, ..., type = "mean", na.rm = TRUE, cast.numeric = FALSE)
Arguments
data |
|
name |
Name of the index column to compute. |
... |
Variables used for the index. |
type |
Type of index to compute. Either "mean" (default) or "sum". |
na.rm |
a logical value indicating whether |
cast.numeric |
a logical value indicating whether all variables selected
for index computation should be converted to numeric. Useful if computing
indices from factor variables. Defaults to |
Value
a tdcmm model
See Also
get_reliability()
to compute reliability estimates of added index
variables.
Examples
WoJ %>% add_index(ethical_flexibility, ethics_1, ethics_2, ethics_3, ethics_4)
WoJ %>% add_index(ethical_flexibility, ethics_1, ethics_2, ethics_3, ethics_4, type = "sum")
[Package tidycomm version 0.4.1 Index]