Baselight

Diet Analysis , Predict The Weight

Analyzing diet, exercise, and lifestyle effects on weight change

@kaggle.abdullah0a_comprehensive_weight_change_prediction

Weight Change Dataset
@kaggle.abdullah0a_comprehensive_weight_change_prediction.weight_change_dataset

  • 14.12 KB
  • 100 rows
  • 13 columns
participant_id

Participant ID

age

Age

gender

Gender

current_weight_lbs

Current Weight (lbs)

bmr_calories

BMR (Calories)

daily_calories_consumed

Daily Calories Consumed

daily_caloric_surplus_deficit

Daily Caloric Surplus/Deficit

weight_change_lbs

Weight Change (lbs)

duration_weeks

Duration (weeks)

physical_activity_level

Physical Activity Level

sleep_quality

Sleep Quality

stress_level

Stress Level

final_weight_lbs

Final Weight (lbs)

156M228.43102.33916813.70.21SedentaryExcellent6228.6
246F165.42275.538231547.52.46Very ActiveExcellent6167.8
332F142.82119.42785.46661.47SedentaryGood3144.2
425F145.52181.32587.34060.88SedentaryFair2146.3
538M155.52463.83312.8849210Lightly ActiveGood1157.5
656F152.92100.62262.4161.9-12.5134981229796559SedentaryPoor6140.4
736M107.31991.32933.4942.1-2.43730695743346852Moderately ActivePoor5104.9
840M207.92977.940001022.1-35.6781152679361111Moderately ActivePoor9172.2
928F169.52406.93890.21483.4-8.47663298393586110Very ActivePoor1161
1028F169.22403.32485.882.52SedentaryExcellent7169.2

CREATE TABLE weight_change_dataset (
  "participant_id" BIGINT,
  "age" BIGINT,
  "gender" VARCHAR,
  "current_weight_lbs" DOUBLE,
  "bmr_calories" DOUBLE,
  "daily_calories_consumed" DOUBLE,
  "daily_caloric_surplus_deficit" DOUBLE,
  "weight_change_lbs" DOUBLE,
  "duration_weeks" BIGINT,
  "physical_activity_level" VARCHAR,
  "sleep_quality" VARCHAR,
  "stress_level" BIGINT,
  "final_weight_lbs" DOUBLE
);

Share link

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