Author name: Kalpesh Patel

How to Split Data into Training and Testing Sets in Python

In this article, we’ll explore method to split data using train_test_split and discuss key parameters. When building machine learning models it is one of the important step, so that model learns from one part of the data and is evaluated on unseen data. What is train_test_split and how to use it? The train_test_split function, which …

How to Split Data into Training and Testing Sets in Python Read More »

Using Pandas for Exploratory Data Analysis in Machine Learning

In this article, we will discuss about Pandas library and the important steps of EDA (Exploratory Data Analysis) using Pandas. Further we would dive deep in data cleaning, visualization and statistical analysis. Introduction to Pandas Pandas, a powerful open-source library in Python, widely supports data manipulation. It features 2 primary data structures – Series (for …

Using Pandas for Exploratory Data Analysis in Machine Learning Read More »

How to Build and Evaluate a Decision Tree Classifier in Python

In this article, you will gain a deep understanding of the Decision Tree Classifier. Furthermore, it will guide you through steps for building and evaluating Decision Tree Classifer and techniques to improve its performance. By the end of this article, you will not only learn what is Decision Tree Classifier but also learn how to …

How to Build and Evaluate a Decision Tree Classifier in Python Read More »

Scroll to Top