Calories Burnt Prediction Project using Machine Learning
- Naveen
- 0
In this article, we will learn how to develop a machine learning model using Python which can predict the number of calories a person has burnt during a workout based on some biological measures.
You can download Calories dataset from here and Exercise dataset from here.
we will import all the necessary libraries and also warnings which we take care of any future warning.
We will now read our dataset using pandas read_csv function and check the top 5 rows with the help of head() function.
We will combine our dataframe with the help of concat function, as we have two different dataframes.
We will now check the shape of our dataset and will check some information about our data.
We will check if our dataset contains null values
We will get some statistical information about the data.
To check the distribution of our column we will be using seaborn’s countplot.
We will check if our columns have positive correlation or negative correlation.
We will now train our model and evaluate on test data.