mirror of
https://github.com/agdamsbo/REDCapCAST.git
synced 2024-11-22 13:30:23 +01:00
35 lines
788 B
R
35 lines
788 B
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/as_factor.R
|
|
\name{named_levels}
|
|
\alias{named_levels}
|
|
\title{Get named vector of factor levels and values}
|
|
\usage{
|
|
named_levels(data, label = "labels", na.label = NULL, na.value = 99)
|
|
}
|
|
\arguments{
|
|
\item{data}{factor}
|
|
|
|
\item{label}{character string of attribute with named vector of factor labels}
|
|
|
|
\item{na.label}{character string to refactor NA values. Default is NULL.}
|
|
|
|
\item{na.value}{new value for NA strings. Ignored if na.label is NULL.
|
|
Default is 99.}
|
|
}
|
|
\value{
|
|
named vector
|
|
}
|
|
\description{
|
|
Get named vector of factor levels and values
|
|
}
|
|
\examples{
|
|
\dontrun{
|
|
structure(c(1, 2, 3, 2, 10, 9),
|
|
labels = c(Unknown = 9, Refused = 10),
|
|
class = "haven_labelled"
|
|
) |>
|
|
as_factor() |>
|
|
named_levels()
|
|
}
|
|
}
|