Dog Breeds Details
Dogs breed tabular data
@kaggle.warcoder_dog_breeds_details
Dogs breed tabular data
@kaggle.warcoder_dog_breeds_details
The dataset contains 97 unique dog breeds and their various attributes.
The first column represents the breed name.
The following 2 columns indicate the general life expectancy.
Then the following 8 columns are the weight and height of the male and female gender.
After that, there are 12 columns that represent different attributes of dog breeds like coat length, playfulness, and trainability. These columns have values ranging from 0 to 5. Example: A breed with energy value 5 shows that the corresponding breeds have very high energy.
CREATE TABLE dog_breeds (
"name" VARCHAR,
"min_life_expectancy" BIGINT,
"max_life_expectancy" BIGINT,
"max_height_male" DOUBLE,
"max_height_female" DOUBLE,
"max_weight_male" DOUBLE,
"max_weight_female" DOUBLE,
"min_height_male" DOUBLE,
"min_height_female" DOUBLE,
"min_weight_male" DOUBLE,
"min_weight_female" DOUBLE,
"good_with_children" BIGINT,
"good_with_other_dogs" BIGINT,
"shedding" BIGINT,
"grooming" BIGINT,
"drooling" BIGINT,
"coat_length" BIGINT,
"good_with_strangers" BIGINT,
"playfulness" BIGINT,
"protectiveness" BIGINT,
"trainability" BIGINT,
"energy" BIGINT,
"barking" BIGINT
);Anyone who has the link will be able to view this.