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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/data.R
\docType{data}
\name{alligators}
\alias{alligators}
\title{Alligator food choice data}
\format{
A data frame with 80 rows and 5 variables:
\itemize{
\item \code{foodchoice}: primary food type, in volume, found in an alligator’s stomach, with levels \code{fish}, \code{invertebrate},\code{reptile}, \code{bird}, \code{other}
\item \code{lake}: lake of capture with levels \code{Hancock}, \code{Oklawaha}, \code{Trafford}, \code{George}.
\item \code{gender}: gender of the alligator with levels \code{Male} and \code{Female}
\item \code{size}: size of the alligator with levels \verb{<=2.3} meters long and \verb{>2.3} meters long
\item \code{freq}: number of alligators for each foodchoice, lake, gender and size combination
}
}
\source{
The alligators data set is analyzed in Agresti (2002, Subsection 7.1.2).
}
\usage{
alligators
}
\description{
Alligator food choice data
}
\references{
Agresti A (2002). \emph{Categorical Data Analysis}. Wiley Series in
Probability and Statistics. Wiley.
}
\seealso{
\code{\link[=brmultinom]{brmultinom()}}
}
\keyword{datasets}
|