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
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.