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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/cat_adoption.R
\docType{data}
\name{cat_adoption}
\alias{cat_adoption}
\title{Cat Adoption}
\source{
\url{https://data.longbeach.gov/explore/dataset/animal-shelter-intakes-and-outcomes/information/}
on 2024-06-17
}
\value{
tibble
}
\description{
A subset of the cats at the animal shelter in Long Beach, California, USA.
}
\details{
A data frame with 2257 rows and 19 columns:
\describe{
\item{time}{The time the cat spent at the shelter.}
\item{event}{The event of interest is the cat being homed or returned to
its original location (i.e., owner or community). The non-event is the cat
being transferred to another shelter or dying. Zero indicates a non-event
(censored), and one corresponds to the event occurring.}
\item{sex}{The sex of the cat.}
\item{neutered}{Whether the cat is neutered.}
\item{intake_condition}{The intake condition of the cat.}
\item{intake_type}{The type of intake.}
\item{latitude}{Latitude of the intersection/cross street of intake or capture.}
\item{longitude}{Longitude of the intersection/cross street of intake or capture.}
\item{black,brown,brown_tabby,calico,cream,gray,gray_tabby,orange,orange_tabby,tan,tortie,white}{Indicators for the color/pattern of the cat's fur.}
}
}
\examples{
str(cat_adoption)
}
\keyword{datasets}
|