Revision d4cb3e7e9238e92df8bca607c6f7afd82c8efb52 authored by Daniel Luedecke on 14 August 2014, 18:06:29 UTC, committed by cran-robot on 14 August 2014, 18:06:29 UTC
1 parent 1338a2d
Raw File
sju.recode.Rd
% Generated by roxygen2 (4.0.1): do not edit by hand
\name{sju.recode}
\alias{sju.recode}
\title{Recode variable values.}
\usage{
sju.recode(...)
}
\arguments{
\item{...}{parameters, see \code{\link{recode}} function from the \code{car} package.}
}
\value{
A variable with recoded values.
}
\description{
Recodes the categories of a variables. Wrapper function that calls
               the \code{\link{recode}} function from the \code{car} package.
}
\examples{
data(efc)
table(efc$e42dep)
table(sju.recode(efc$e42dep, "1:2=1;3:4=2"))
}

back to top