Zoo Animals Extended Dataset
More than 101 zoo animals to apply classification
@kaggle.agajorte_zoo_animals_extended_dataset
More than 101 zoo animals to apply classification
@kaggle.agajorte_zoo_animals_extended_dataset
The Zoo Animal Classification Dataset originally consists of 101 animals in a zoo and 16 variables with several features that describe them (the attributes), besides the class to which each animal belongs (the target).
That original dataset is often used in Machine Learning, as it is a complete and yet simple example to practice classification problems with multi-label classes. However, as it provides only a hundred rows, some ML algorithms might not perform well. That is exactly where this extended dataset fits in.
As an addition to the original Zoo Animal Classification Dataset, this given dataset provides:
CREATE TABLE zoo2 (
"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
);CREATE TABLE zoo3 (
"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.