Mokhless Hajji Project
Mokhless Hajji Project
1. Data Exploration
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 1698 entries, 0 to 1697
Data columns (total 19 columns):
# Column Non-Null Count Dtype
--- ------ -------------- -----
0 Ages 1698 non-null int64
1 Gender 1698 non-null object
2 Height 1698 non-null int64
3 Weight 1698 non-null int64
4 Activity Level 1698 non-null object
5 Dietary Preference 1698 non-null object
6 Daily Calorie Target 1698 non-null int64
7 Protein 1698 non-null int64
8 Sugar 1698 non-null float64
9 Sodium 1698 non-null float64
10 Calories 1698 non-null int64
11 Carbohydrates 1698 non-null int64
12 Fiber 1698 non-null float64
13 Fat 1698 non-null int64
14 Breakfast Suggestion 1698 non-null object
15 Lunch Suggestion 1698 non-null object
16 Dinner Suggestion 1698 non-null object
17 Snack Suggestion 1698 non-null object
18 Disease 1698 non-null object
dtypes: float64(3), int64(8), object(8)
memory usage: 252.2+ KB
Dataset Description:
[8 rows x 11 columns]
Ages 0
Gender 0
Height 0
Weight 0
Activity Level 0
Dietary Preference 0
Daily Calorie Target 0
Protein 0
Sugar 0
Sodium 0
Calories 0
Carbohydrates 0
Fiber 0
Fat 0
Breakfast Suggestion 0
Lunch Suggestion 0
Dinner Suggestion 0
Snack Suggestion 0
Disease 0
dtype: int64
3. Data Transformation
Added BMI feature: BMI = Weight / (Height in meters)^2
Duplicates Remaining: 0