Zoo Animal Classification
Use Machine Learning Methods to Correctly Classify Animals Based Upon Attributes
@kaggle.uciml_zoo_animal_classification
Use Machine Learning Methods to Correctly Classify Animals Based Upon Attributes
@kaggle.uciml_zoo_animal_classification
CREATE TABLE class (
"class_number" BIGINT,
"number_of_animal_species_in_class" BIGINT,
"class_type" VARCHAR,
"animal_names" VARCHAR
);
CREATE TABLE zoo (
"animal_name" VARCHAR,
"hair" BIGINT,
"feathers" BIGINT,
"eggs" BIGINT,
"milk" BIGINT,
"airborne" BIGINT,
"aquatic" BIGINT,
"predator" BIGINT,
"toothed" BIGINT,
"backbone" BIGINT,
"breathes" BIGINT,
"venomous" BIGINT,
"fins" BIGINT,
"legs" BIGINT,
"tail" BIGINT,
"domestic" BIGINT,
"catsize" BIGINT,
"class_type" BIGINT
);
Anyone who has the link will be able to view this.