Posts by Yathartha Rana

Author Biographical Info: Not available

Find row with value in Pandas DataFrame

By Yathartha Rana

In this tutorial, we will learn how to find row/s with the desired value in Pandas DataFrame using Python. Let’s first import all the necessary libraries and the dataset. I w.... Read More

Calculate Mean, Median and Mode in Pandas DataFrame – Python

By Yathartha Rana

In this tutorial, you will learn how to calculate the Mean, Median, and Mode in Pandas DataFrame using Python. These metrics are important to calculate as they measure central tend.... Read More

Replace specific column values using pandas in Python

By Yathartha Rana

In this tutorial, I will discuss replacing the values from your dataframe using Pandas in Python. There are various ways to do it but the easiest and simplest way is using the func.... Read More

Delete empty pages from pdf file in Python

By Yathartha Rana

In this tutorial, we will see how to delete the empty pages from a pdf file using Python. Step 1: Installing and Importing Libraries I am using the PyMuPDF library in this tutorial.... Read More

ROC for Multiclass Classification in Python

By Yathartha Rana

This tutorial will explore how you can generate ROC for multiclass datasets in Python. As you know, ROC is generated for binary classification only, so we will extend the same conc.... Read More

Calculate AUC With sklearn in Python

By Yathartha Rana

In this tutorial, we will explore the AUC (Area under the ROC Curve) and its significance in evaluating the Machine Learning model. We will also calculate AUC in Python using sklea.... Read More

Calculate F1 Score using sklearn in Python

By Yathartha Rana

In this tutorial, I will guide you through what the F1 score is, what is the need to use it, and how to calculate the F1 score. F1 Score Before you study what the F1 score means, l.... Read More

OneHotEncoder() function of sklearn – usage with example

By Yathartha Rana

In this tutorial, I will guide you through what One Hot Encoder is, when it is used, and how it is to be used. Using One Hot Encoder comes under Data Preprocessing, a crucial stage.... Read More

Related Posts