Calories Burnt Prediction Project using Machine Learning

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.

Other Projects

Russia-Ukraine War Data Analysis Project using Python

Stress Detection Project using Machine Learning

Restaurant Recommendation System using Machine Learning

Hotel Sentiment Analysis using NLP

Credit Card Fraud Detection using Machine Learning

Breast Cancer Detection Project using ML

End to End Project Multiple Disease Detection using ML

End to End Project Laptop Price Prediction using Machine Learning

Sales Analysis Project using Python

Netflix Data Analysis Project using Python

Spotify Data Analysis Project using Python

Zomato Data Analysis Project using Python

Uber Data Analysis Project using Python

Popular Posts

Spread the knowledge
 
  

Leave a Reply

Your email address will not be published. Required fields are marked *