Noey Ignacio commited on
Commit
9dca55d
·
verified ·
1 Parent(s): 8e01a5e

docs: add more information about the dataset

Browse files
Files changed (1) hide show
  1. README.md +37 -1
README.md CHANGED
@@ -20,4 +20,40 @@ configs:
20
  - split: train
21
  path:
22
  - "raw_exercise.csv"
23
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  - split: train
21
  path:
22
  - "raw_exercise.csv"
23
+ ---
24
+
25
+ # Calorie Burnt 15k
26
+
27
+ A comprehensive dataset combining exercise and calorie records for approximately 15,000 entries. It is intended for research and analysis on physical activity, calorie expenditure, biometric tracking, and health patterns.
28
+
29
+ **Description**
30
+
31
+ This dataset collates two sources:
32
+
33
+ - **Exercise Data**: Contains user demographics and biometric measurements during exercise sessions.
34
+ - **Calories Data**: Logs calorie burn totals per user corresponding to activities tracked in the exercise dataset.
35
+
36
+ This unified dataset supports detailed epidemiological, machine learning, or personal tracking studies to correlate biometric and demographic features with calorie expenditure.
37
+
38
+ **Columns & definitions**
39
+
40
+ From Exercise Data (`raw_exercise.csv`):
41
+
42
+ - `User_ID`: Unique numerical ID for each individual.
43
+ - `Gender`: Participant's gender (e.g., 'male', 'female').
44
+ - `Age`: Age of participant (years).
45
+ - `Height`: Height in centimeters.
46
+ - `Weight`: Weight in kilograms.
47
+ - `Duration`: Duration of exercise (minutes).
48
+ - `Heart_Rate`: Heart rate measured during or after exercise (beats per minute).
49
+ - `Body_Temp`: Body temperature measured during or after exercise (degrees Celsius).
50
+
51
+ From Calorie Burn Data (`raw_calories.csv`):
52
+ - `User_ID`: Unique numerical ID (to match/merge with above).
53
+ - `Calories`: Calories burned as recorded/calculated for each session.
54
+
55
+ **Usage notes**
56
+
57
+ - **Merging**: Merge by `User_ID` for a complete record per exercise session.
58
+ - **Applications**: Useful for regression, classification, health analytics, personalized fitness algorithms, and educational demos.
59
+ - **Preprocessing**: Check for duplicates/missing values when merging. Normalize units if using for modeling.