Author name: Vivek Jadhav

Decision Tree Classifier in Python Using scikit-learn

In this tutorial, we are going to learn the Decision Tree Classifier in Python. What is the Decision Tree Classifier in Python? A Decision Tree is a supervised learning model that can be applied in classification and regression tasks. It represents decisions and possible consequences in a simple tree structure to read and understand. In …

Decision Tree Classifier in Python Using scikit-learn Read More »

Build a Linear Regression Model in Python Using scikit-learn

In this tutorial, we are going to learn about linear regression and its implementation. What is Linear Regression? Linear regression is one of the simplest and most important machine learning algorithms. It predicts continuous values (e.g., house prices, temperatures, sales revenue). It deals with numerical outputs. So, it is a supervised learning algorithm specifically used …

Build a Linear Regression Model in Python Using scikit-learn Read More »

Data Preprocessing Using Pandas and NumPy

In this tutorial, we are going to learn and understand data preprocessing using pandas and numPy Why is Data pre-processing important? Data preprocessing is a crucial task in machine learning because often raw dataset contains inconsistency, noise, missing value, and redundant information. This kind of problem may impact on the performance of the model. Preprocessing …

Data Preprocessing Using Pandas and NumPy Read More »

Scroll to Top