Baselight

Dog Breeds Details

Dogs breed tabular data

@kaggle.warcoder_dog_breeds_details

Dog Breeds
@kaggle.warcoder_dog_breeds_details.dog_breeds

  • 21.02 KB
  • 97 rows
  • 23 columns
name

Name

min_life_expectancy

Min Life Expectancy

max_life_expectancy

Max Life Expectancy

max_height_male

Max Height Male

max_height_female

Max Height Female

max_weight_male

Max Weight Male

max_weight_female

Max Weight Female

min_height_male

Min Height Male

min_height_female

Min Height Female

min_weight_male

Min Weight Male

min_weight_female

Min Weight Female

good_with_children

Good With Children

good_with_other_dogs

Good With Other Dogs

shedding

Shedding

grooming

Grooming

drooling

Drooling

coat_length

Coat Length

good_with_strangers

Good With Strangers

playfulness

Playfulness

protectiveness

Protectiveness

trainability

Trainability

energy

Energy

barking

Barking

Golden Retriever10122424756523236555554221543531
Dachshund1216993232881616342222444435
Labrador Retriever101224.524.5807022.522.56555554221553553
Great Dane71032321751403030140110333141345343
Boxer10122525806523236550532231444443
Dalmatian11132424707019194545334221444443
Poodle (Miniature)10181515151510101010531411553544
Bullmastiff7927271301202525110100333131335441
Beagle10151615203014131520553211342344
Border Collie12152222555519193030333311453554

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

Share link

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