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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
\name{Socatt}
\alias{Socatt}
\docType{data}
\title{Social Attitudes Survey}
\description{
These data come from the British Social Attitudes (BSA) Survey started
in 1983. The eligible persons were all adults aged 18 or over living
in private households in Britain. The data consist of completed
results of 264 respondents out of 410.
}
\usage{data(Socatt)}
\format{
A data frame with 1056 observations on the following 9 variables.
\describe{
\item{district}{District ID - a factor}
\item{respond}{Respondent code (within district) - a factor}
\item{year}{A factor with levels \code{1983}, \code{1984},
\code{1985}, and \code{1986}}
\item{numpos}{An ordered factor giving the number of positive answers to
seven questions.}
\item{party}{Political party chosen - a factor. Levels are
\code{conservative}, \code{labour}, \code{Lib/SDP/Alliance},
\code{others}, and \code{none}.}
\item{class}{Self assessed social class - a factor. Levels are
\code{middle}, \code{upper working}, and \code{lower working}.}
\item{gender}{Respondent's sex. (1=male, 2=female)}
\item{age}{Age in years}
\item{religion}{Religion - a factor. Levels are \code{Roman
Catholic}, \code{Protestant/Church of England}, \code{others},
and \code{none}.}
}
}
\details{
These data are provided as an example of multilevel data with a
multinomial response.
}
\source{
\url{http://www.bristol.ac.uk/cmm/learning/mmsoftware/data-rev.html}
}
\references{
McGrath, K. and Waterton, J. (1986). \emph{British Social Attitudes
1983-1986 panel survey.} London, Social and Community Planning
Research.
}
\examples{
str(Socatt)
summary(Socatt)
}
\keyword{datasets}
|