Animal Shelter Analytics
Practice Exploratory Data Analysis with Animal Shelter Data
@kaggle.jackdaoud_animal_shelter_analytics
Practice Exploratory Data Analysis with Animal Shelter Data
@kaggle.jackdaoud_animal_shelter_analytics
I was reading Every Nose Counts: Using Metrics in Animal Shelters when I got inspired to conduct an EDA on animal shelter data. I looked online for data and found this dataset which is curated by Austin Animal Center. The data can be found on https://data.austintexas.gov.
This data can be utilized for EDA practice. So go ahead and help animal shelters with your EDA powers by completing this task!
The data set contains three CSVs:
Austin_Animal_Center_Intakes.csvAustin_Animal_Center_Outcomes.csvAustin_Animal_Center_Stray_Map.csvMore TBD!
Thank you Austin Animal Center for all the animal protection you provide to stray & owned animals. Also, thank you for making your data accessible to the public.
CREATE TABLE austin_animal_center_intakes (
"animal_id" VARCHAR,
"name" VARCHAR,
"datetime" VARCHAR,
"monthyear" VARCHAR,
"found_location" VARCHAR,
"intake_type" VARCHAR,
"intake_condition" VARCHAR,
"animal_type" VARCHAR,
"sex_upon_intake" VARCHAR,
"age_upon_intake" VARCHAR,
"breed" VARCHAR,
"color" VARCHAR
);CREATE TABLE austin_animal_center_outcomes (
"animal_id" VARCHAR,
"name" VARCHAR,
"datetime" VARCHAR,
"monthyear" VARCHAR,
"date_of_birth" TIMESTAMP,
"outcome_type" VARCHAR,
"outcome_subtype" VARCHAR,
"animal_type" VARCHAR,
"sex_upon_outcome" VARCHAR,
"age_upon_outcome" VARCHAR,
"breed" VARCHAR,
"color" VARCHAR
);CREATE TABLE austin_animal_center_stray_map (
"animal_id" VARCHAR,
"found_location" VARCHAR,
"at_aac" VARCHAR,
"intake_date" TIMESTAMP,
"type" VARCHAR,
"looks_like" VARCHAR,
"color" VARCHAR,
"sex" VARCHAR,
"age" VARCHAR,
"image_link" VARCHAR
);Anyone who has the link will be able to view this.