scross7 / Bootcamp-Project-1

Austin Animal Center Anaylsis

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Austin Animal Center Data Analysis

Team Members:

Amy Koldeway, Sarah Cross, Cynthia Juarez

Project Outline

Our project will uncover patterns of behaviors related to abandoned animals entering the Austin Animal Center. We will examine the kinds of animals entering the facility, the frequency they are being admitted and the reasons why. We will establish any trends or patterns based on gender, age, breed, etc. We’ll also look into the outcomes of these intakes - adoption, euthanasia, returned to owner, etc.

Data Sources

Data Collection & Cleaning Methodology

  • Animal Intakes and Outcomes are separate .csv files downloaded from the Austin City website for
  • Data was cleaned to parse intake and outcome dates into separate Month and Year columns, Sex on Intake was parsed into a normalized Gender column, and Age upon Intake was parsed into a new Intake Age in Months column (performed in aacdata.py script)
  • Intakes and Outcomes cleaned dataset were merged into one file. Duplicate animals (those that appeared in center more than once) were separated out from unique animals. In combined dataset, new columns were added to calculate number of days animal spent in the center (performed in aacdata.py script)
  • Cleaned combined file was filtered by animal type to separate data specific to dogs. Dog breed information was cleaned to simplify descriptions and combined all mixed breed dogs into one breed type. Data was sorted to find top five dog breeds admitted to the facility.
  • Unique list of intakes and outcomes for stray cats and dogs was parsed and latitude/longitudes were found for addresses with more than just a city name.

Questions

What type of animals are brought into the Austin Animal Center (AAC) and for what reasons?

The Austin Animal Center is an open-intake facility where animals from all of Travis County in need are accepted regardless of age, health, species or breed. With such an wide-open policy, we wanted to see what types of animals have been brought into the center.

IntakesByAnimalType

  • Dogs and Cats are the most common types of animal brought to the AAC representing 94.3% of all intakes.
  • True to their mission Birds, Livestock and 'Other' types of animals are also accepted but are admitted at a significantly lower rate than Cats or Dogs.

IntakesByIntakeType

  • A large majority of animals brought into the center are Strays representing 70% of all intakes.
  • Owner Surrender is the second most common reason for acceptance into the shelter however at 19% of all intakes.
  • Despite being a kill-free shelter, a very small number of animals (less than 1% of all intakes) were brought in with a Euthanasia Request.

What type of dog is most likely to be admitted to the facility?

IntakesByDogBreed

  • The majority of dogs did not fall into a single breed as there as there were over 2,000 unique entires. The top single breed dogs types were: Pit Bull, Chihuahua, Labs and German Shepards.
  • Using these percentages as a baseline, can we observe any correlation to intake reason, outcomes, adoption rate, or animals that have been returned more than once based on breed?

IntakesByBreed_total

  • Filtering intake data for the top 5 dog breeds shows the same magnitude and trend for each intake category as all animals admitted to the facility. This shows correlation between overall dog intakes and overall animal intakes. Dog breed does not have an impact on intake reason.

IntakesByBreed_percent

  • Normalizing the data by intake reason shows the same relative percentage of breed for each intake reason with a slight increase in Pitbulls admitted for euthanasia and public assist.
  • This further supports that breed does not have an impact on intake reason.

When is an animal most likely to be admitted to the Center?

Note: Data set is from Oct 2013 thru Aug 2019

IntakesOverTime

  • Reviewing the total intakes by month year over year, we find the late spring months of May and June tend to have the most intakes while winter months of December, January and February have the lowest of intakes.

IntakesByIntakeCondition

  • A significant majority of all animals - over 87% - are brought to the center in a Normal condition.
  • A small number of animals - under 10% - are brought to the center likely requiring medical attention to do age, injury, illness or pregnancy.

Are there certain areas within Austin that have higher Stray intakes?

AustinMap

  • Observing all the stray intake locations, it can be noted that there's mainly an evenly distribution of the places where the strays were found
  • Some of the places with a higher density intake include areas that are located to main access roads such as South Congress, South East Austin and US 183
  • Based on these locations, it can be noted that most of the households located in these areas are mainly non-family type households which could be significant to abandonment of these strays.

What are the outcomes for animals brought to the center?

The AAC's mission is to provide a live outcome of at least 90% of sheltered animals through a variety of placement services

OutcomesByOutcomeType

  • A majority of all outcomes are considered "good" outcomes such as adoption, returned to owner or transfer to another shelter or foster home. With 91.69% reflecting those good outcomes, AAC is meeting their mission.
  • Despite being a no-kill shelter, nearly 7% of all outcomes result in euthanasia from 2013-2019. Austin adopted the No Kill policy in 2011 with a goal of saving more than 90% of animals brought into the center.
  • The center has a high pecentage of animals transfered due to programs like Austin Pets Alive. This is a significant contributor to how Austin in maintaining it's No Kill status.

DogEuthCond

  • Over half of the animals with a euthanasia outcome were in normal condition indicating that the center may not have had enough reasources to serve all the animals taken in.

BreedCond

  • Looking further into the euthanasia data, Pit Bulls also represent a larger overall portion of the dogs in normal condition that were euthanized. (55% of Euthanized Population vs. 12% of Intake Population)

In a previous chart, we showed the number of intakes by month. We wondered if a similar pattern would be found in the number of outcomes.

IntakesVsOutcomesByMonth

  • Outcomes tend to follow the peaks of Incomes but at a slight delay which may be indicative of the animal's stay in the center.

Does age play a factor in how quickly a Cat or Dog is adopted?

Since cats and dogs make up about 94% of all intakes to the center, we wanted to know if age played a factor in how long it took before an animal was adopted.

AdoptionAgeVsTimeInCenter

  • Scatter plot of all cats and dogs adopted by age shows that younger animals tend to spend the least amount of time in the shelter.

The scatter plot is quite busy with a few hot spots, so let's take a look at the average number of days spent in the center by animal type grouped by age range.

AvgDaysByAgeRange

  • For both cats and dogs, the average days spent in the center before climb from ages less than 1 year to 6 years.
  • Cats 15 years and older spend the longest time in the center before adoption.
  • Dogs 9-12 years spend the longest time in the center before adoption.

  • Mixed Breed dogs represent the largest population of dogs adopted. All of the top five breeds of dog are the same as intakes; however, there is a lower rate of adoption for Pit Bulls.

  • All of the top five breeds are consitient with intake, again with Pit Bulls being returened the most often.

Does breed contribute to outcomes for Dogs?

  • If a dog is classified as a Pit Bull, it has a higher likely hood of being euthanized or returned and a lower likelyhood of being adopted; therefore, breed does impact the outcome for dogs.
  • It is also noteworthy that the same breeds appear in the top five for all breed analysis indicating that these breeds do not play an impact on the outcome of the dog, rather, they are the most common dog breeds in the shelter.

About

Austin Animal Center Anaylsis


Languages

Language:Jupyter Notebook 99.7%Language:Python 0.3%