Baselight

Obesity Classification Dataset

Multiple Classification Dataset

@kaggle.sujithmandala_obesity_classification_dataset

Obesity Classification
@kaggle.sujithmandala_obesity_classification_dataset.obesity_classification

  • 6.49 KB
  • 108 rows
  • 7 columns
id

ID

age

Age

gender

Gender

height

Height

weight

Weight

bmi

BMI

label

Label

125Male1758025.3Normal Weight
230Female1606022.5Normal Weight
335Male1809027.3Overweight
440Female1505020Underweight
545Male19010031.2Obese
650Female1404016.7Underweight
755Male20011034.2Obese
860Female1303013.3Underweight
965Male21012037.2Obese
1070Female1202010Underweight

CREATE TABLE obesity_classification (
  "id" BIGINT,
  "age" BIGINT,
  "gender" VARCHAR,
  "height" BIGINT,
  "weight" BIGINT,
  "bmi" DOUBLE,
  "label" VARCHAR
);

Share link

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