Baselight

Zoo Animals Extended Dataset

More than 101 zoo animals to apply classification

@kaggle.agajorte_zoo_animals_extended_dataset

Loading...
Loading...

About this Dataset

Zoo Animals Extended Dataset

Context

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.

Content

As an addition to the original Zoo Animal Classification Dataset, this given dataset provides:

  • 43 animals from several classes except Mammals and Birds (as these latter classes are very frequent in the original dataset);
  • 70 animals from species maintained by São Paulo Zoo, being primarily animals of the Brazilian fauna in danger of extinction.

Tables

Zoo2

@kaggle.agajorte_zoo_animals_extended_dataset.zoo2
  • 12.75 KB
  • 43 rows
  • 18 columns
Loading...

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
);

Zoo3

@kaggle.agajorte_zoo_animals_extended_dataset.zoo3
  • 13.41 KB
  • 70 rows
  • 18 columns
Loading...

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
);

Share link

Anyone who has the link will be able to view this.