Austin Animal Center Shelter Intakes And Outcomes
80,000 Shelter Animal Intakes and Resulting Outcomes
@kaggle.aaronschlegel_austin_animal_center_shelter_intakes_and_outcomes
80,000 Shelter Animal Intakes and Resulting Outcomes
@kaggle.aaronschlegel_austin_animal_center_shelter_intakes_and_outcomes
The Austin Animal Center is the largest no-kill animal shelter in the United States that provides care and shelter to over 18,000 animals each year. As part of the AAC's efforts to help and care for animals in need, the organization makes available its accumulated data and statistics as part of the city of Austin's Open Data Initiative.
The data contains intakes and outcomes of animals entering the Austin Animal Center from the beginning of October 2013 to the present day. The datasets are also freely available on the Socrata Open Data Access API and are updated daily.
The following are links to the datasets hosted on Socrata's Open Data:
The data contained in this dataset is the outcomes and intakes data as noted above, as well as a combined dataset. The merging of the outcomes and intakes data was done on a unique key that is a combination of the given Animal ID and the intake number. Several of the animals in the dataset have been taken into the shelter multiple times, which creates duplicate Animal IDs that causes problems when merging the two datasets.
Copied from the description of the Shelter Outcomes dataset, here are some definitions of the outcome types:
The data presented here is only possible through the hard work and dedication of the Austin Animal Center in saving and caring for animal lives.
Following from the first dataset I posted to Kaggle, Austin Animal Shelter Outcomes, which was initially filtered for just cats as part of an analysis I was performing, I wanted to post the complete outcome and complementing intake datasets. My hope is the great users of Kaggle will find this data interesting and want to explore shelter animal statistics further and perhaps get more involved in the animal welfare community. The analysis of this data and other shelter animal provided datasets helps uncover useful insights that have the potential to save lives directly.
CREATE TABLE aac_intakes (
"age_upon_intake" VARCHAR,
"animal_id" VARCHAR,
"animal_type" VARCHAR,
"breed" VARCHAR,
"color" VARCHAR,
"datetime" TIMESTAMP,
"datetime2" TIMESTAMP,
"found_location" VARCHAR,
"intake_condition" VARCHAR,
"intake_type" VARCHAR,
"name" VARCHAR,
"sex_upon_intake" VARCHAR
);CREATE TABLE aac_intakes_outcomes (
"age_upon_outcome" VARCHAR,
"animal_id_outcome" VARCHAR,
"date_of_birth" TIMESTAMP,
"outcome_subtype" VARCHAR,
"outcome_type" VARCHAR,
"sex_upon_outcome" VARCHAR,
"age_upon_outcome_days" BIGINT -- Age Upon Outcome (days),
"age_upon_outcome_years" DOUBLE -- Age Upon Outcome (years),
"age_upon_outcome_age_group" VARCHAR,
"outcome_datetime" TIMESTAMP,
"outcome_month" BIGINT,
"outcome_year" BIGINT,
"outcome_monthyear" TIMESTAMP,
"outcome_weekday" VARCHAR,
"outcome_hour" BIGINT,
"outcome_number" DOUBLE,
"dob_year" BIGINT,
"dob_month" BIGINT,
"dob_monthyear" TIMESTAMP,
"age_upon_intake" VARCHAR,
"animal_id_intake" VARCHAR,
"animal_type" VARCHAR,
"breed" VARCHAR,
"color" VARCHAR,
"found_location" VARCHAR,
"intake_condition" VARCHAR,
"intake_type" VARCHAR,
"sex_upon_intake" VARCHAR,
"count" BIGINT,
"age_upon_intake_days" BIGINT -- Age Upon Intake (days),
"age_upon_intake_years" DOUBLE -- Age Upon Intake (years),
"age_upon_intake_age_group" VARCHAR,
"intake_datetime" TIMESTAMP,
"intake_month" BIGINT,
"intake_year" BIGINT,
"intake_monthyear" TIMESTAMP,
"intake_weekday" VARCHAR,
"intake_hour" BIGINT,
"intake_number" DOUBLE,
"time_in_shelter" VARCHAR,
"time_in_shelter_days" DOUBLE
);CREATE TABLE aac_outcomes (
"age_upon_outcome" VARCHAR,
"animal_id" VARCHAR,
"animal_type" VARCHAR,
"breed" VARCHAR,
"color" VARCHAR,
"date_of_birth" TIMESTAMP,
"datetime" TIMESTAMP,
"monthyear" TIMESTAMP,
"name" VARCHAR,
"outcome_subtype" VARCHAR,
"outcome_type" VARCHAR,
"sex_upon_outcome" VARCHAR
);Anyone who has the link will be able to view this.