Posts from Python

Identify Skewness in Box Plots in Python

By Isha Bansal

Hey fellow Python coder! In this tutorial, we will learn about skewness and also learn how to identify the same in Boxplots using Python. Let’s start by understanding what we.... Read More

Contour Plot using Seaborn in Python

By Pranit Sawant

In this tutorial, we will learn about what is contour plot and how to install Seaborn Library. We will also learn about different methods to plot contour plots. What is a contour p.... Read More

Side by side Boxplots in Python

By Isha Bansal

ddubgHey Fellow Python coder! In this tutorial, we will be learning about Side-by-Side box plots and then how to implement them in Python programming. If you aren’t aware of .... Read More

Get all layers of the model in PyTorch

By Pranit Sawant

In this tutorial, we will learn about how to get all layers of the deep learning model in PyTorch.We will learn about the different methods we can use to access each layer in the m.... 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

How to add the marker to the folium map in Python

By Pranit Sawant

In this tutorial, we will learn how to visualize data and add markers to the folium map in Python. What is Folium? Folium is a Python library. It helps us to visualize geospatial d.... 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

Set folium map marker color based on a value in Python

By Pranit Sawant

In this tutorial, we will learn how to Add markers to the map using folium. We will also learn about how to set and change the color of the marker in the Folium map using Python. U.... Read More

Related Posts