Description Usage Arguments Value See Also Examples
View source: R/harmonize_values.R
Harmonize the values and labels of labelled vectors
1 2 3 4 5 6 7 8 9 10 11 |
x |
A labelled vector |
harmonize_label |
A character vector of 1L containing the new,
harmonize variable label. Defaults to |
harmonize_labels |
A list of harmonization values |
na_values |
A named vector of |
na_range |
A min, max range of |
id |
A survey ID, defaults to |
name_orig |
The original name of the variable. If left |
remove |
Defaults to |
perl |
Use perl-like regex? Defaults to FALSE. |
A labelled vector that contains in its metadata attributes the original labelling, the original numeric coding and the current labelling, with the numerical values representing the harmonized coding.
Other variable label harmonization functions:
harmonize_waves()
,
label_normalize()
,
na_range_to_values()
Other harmonization functions:
collect_val_labels()
,
harmonize_na_values()
,
harmonize_var_names()
,
label_normalize()
,
suggest_permanent_names()
,
suggest_var_names()
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | var1 <- labelled::labelled_spss(
x = c(1,0,1,1,0,8,9),
labels = c("TRUST" = 1,
"NOT TRUST" = 0,
"DON'T KNOW" = 8,
"INAP. HERE" = 9),
na_values = c(8,9))
harmonize_values (
var1,
harmonize_labels = list (
from = c("^tend\\sto|^trust", "^tend\\snot|not\\strust", "^dk|^don", "^inap"),
to = c("trust", "not_trust", "do_not_know", "inap"),
numeric_values = c(1,0,99997, 99999)),
na_values = c("do_not_know" = 99997,
"inap" = 99999),
id = "survey_id"
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.