Update the mapping between values and labels in a
labelled
vector. These functions allow you to
simultaneously update data values and the existing value labels.
Modifying data values directly does not result in updated value labels.
Use lbl_relabel()
to manually specify new value/label mappings. This
allows for the addition of new labels.
Use lbl_collapse()
to collapse detailed labels into more general
categories. Values can be grouped together and associated with individual
labels that already exist in the labelled
vector.
Unlabelled values will be converted to NA
.
Arguments
- x
A
labelled
vector- ...
Arbitrary number of two-sided formulas.
The left hand side should be a label placeholder created with
lbl()
or a value that already exists in the data.The right hand side should be a function taking
.val
and.lbl
arguments that evaluates toTRUE
for all cases that should receive the label specified on the left hand side.Can be provided as an anonymous function or formula. See Details section.
- .fun
A function taking
.val
and.lbl
arguments that returns the value associated with an existing label in the vector. Input values to this function will be relabeled with the label of the function's output value.Can be provided as an anonymous function or formula. See Details section.
Value
A labelled
vector
Details
Several lbl_*()
functions include arguments that can be passed a function
of .val
and/or .lbl
. These refer to the existing values and
labels in the input vector, respectively.
Use .val
to refer to the values in the vector's value labels.
Use .lbl
to refer to the label names in the vector's value labels.
Note that not all lbl_*()
functions support both of these arguments.
See also
Other lbl_helpers:
lbl()
,
lbl_add()
,
lbl_clean()
,
lbl_define()
,
lbl_na_if()
,
zap_ipums_attributes()
Examples
x <- haven::labelled(
c(10, 10, 11, 20, 21, 30, 99, 30, 10),
c(
Yes = 10, `Yes - Logically Assigned` = 11,
No = 20, Unlikely = 21, Maybe = 30, NIU = 99
)
)
# Convert cases with value 11 to value 10 and associate with 10's label
lbl_relabel(x, 10 ~ .val == 11)
#> <labelled<double>[9]>
#> [1] 10 10 10 20 21 30 99 30 10
#>
#> Labels:
#> value label
#> 10 Yes
#> 20 No
#> 21 Unlikely
#> 30 Maybe
#> 99 NIU
lbl_relabel(x, lbl("Yes") ~ .val == 11)
#> <labelled<double>[9]>
#> [1] 10 10 10 20 21 30 99 30 10
#>
#> Labels:
#> value label
#> 10 Yes
#> 20 No
#> 21 Unlikely
#> 30 Maybe
#> 99 NIU
# To relabel using new value/label pairs, use `lbl()` to define a new pair
lbl_relabel(
x,
lbl(10, "Yes/Yes-ish") ~ .val %in% c(10, 11),
lbl(90, "???") ~ .val == 99 | .lbl == "Maybe"
)
#> <labelled<double>[9]>
#> [1] 10 10 10 20 21 90 90 90 10
#>
#> Labels:
#> value label
#> 10 Yes/Yes-ish
#> 20 No
#> 21 Unlikely
#> 90 ???
# Collapse labels to create new label groups
lbl_collapse(x, ~ (.val %/% 10) * 10)
#> <labelled<double>[9]>
#> [1] 10 10 10 20 20 30 90 30 10
#>
#> Labels:
#> value label
#> 10 Yes
#> 20 No
#> 30 Maybe
#> 90 NIU
# These are equivalent
lbl_collapse(x, ~ ifelse(.val == 10, 11, .val))
#> <labelled<double>[9]>
#> [1] 11 11 11 20 21 30 99 30 11
#>
#> Labels:
#> value label
#> 11 Yes - Logically Assigned
#> 20 No
#> 21 Unlikely
#> 30 Maybe
#> 99 NIU
lbl_relabel(x, 11 ~ .val == 10)
#> <labelled<double>[9]>
#> [1] 11 11 11 20 21 30 99 30 11
#>
#> Labels:
#> value label
#> 11 Yes - Logically Assigned
#> 20 No
#> 21 Unlikely
#> 30 Maybe
#> 99 NIU