Converts a `coding` object into a named vector to be used in the `labels` parameter for `haven::labelled()`.

coding_to_haven_labels(coding)

Arguments

coding

A coding object

Value

A named vector representation of the coding

Examples

cdng <- coding(code("Yes", 1), code("No", 0))
coding_to_haven_labels(cdng)
#> Yes  No 
#>   1   0