mirror of
https://github.com/agdamsbo/REDCapCAST.git
synced 2024-11-22 05:20:23 +01:00
25 lines
559 B
Plaintext
25 lines
559 B
Plaintext
|
% Generated by roxygen2: do not edit by hand
|
||
|
% Please edit documentation in R/ds2dd_detailed.R
|
||
|
\name{haven_all_levels}
|
||
|
\alias{haven_all_levels}
|
||
|
\title{Finish incomplete haven attributes substituting missings with values}
|
||
|
\usage{
|
||
|
haven_all_levels(data)
|
||
|
}
|
||
|
\arguments{
|
||
|
\item{data}{haven labelled variable}
|
||
|
}
|
||
|
\value{
|
||
|
named vector
|
||
|
}
|
||
|
\description{
|
||
|
Finish incomplete haven attributes substituting missings with values
|
||
|
}
|
||
|
\examples{
|
||
|
ds <- structure(c(1, 2, 3, 2, 10, 9),
|
||
|
labels = c(Unknown = 9, Refused = 10),
|
||
|
class = "haven_labelled"
|
||
|
)
|
||
|
ds |> haven_all_levels()
|
||
|
}
|