1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/tools.R
\name{get.lang}
\alias{get.lang}
\title{Show Default Label Language}
\usage{
get.lang(dat, print = T)
}
\arguments{
\item{dat}{\emph{data.frame.} Data.frame created by \code{read.dta13}.}
\item{print}{\emph{logical.} If \code{TRUE}, print available languages and
default language.}
}
\value{
Returns a list with two components:
\describe{
\item{languages:}{Vector of label languages used in the dataset}
\item{default:}{Name of the actual default label language, otherwise NA}
}
}
\description{
Displays informations about the defined label languages.
}
\details{
Stata allows to define multiple label sets in different languages.
This functions reports the available languages and the selected default
language.
}
\author{
Jan Marvin Garbuszus \email{jan.garbuszus@ruhr-uni-bochum.de}
Sebastian Jeworutzki \email{sebastian.jeworutzki@ruhr-uni-bochum.de}
}
|