Posts by Alokesh Bora

Author Biographical Info: Not available

Plotting Violin Plots in Python using the Seaborn Library

By Alokesh Bora

This tutorial will show you how to use violin plots in Python. To do this, we use the Seaborn Library. Violin plots are a way of plotting numeric data. They can be considered as a .... Read More

Implementing Radix Sort in Python

By Alokesh Bora

This tutorial will show you how to implement Radix sort on a list in Python. Radix sort is a type of ‘counting-based‘ sorting algorithm, as opposed to ‘comparison.... Read More

Plotting a line plot (lmplot) in Python using the Seaborn library

By Alokesh Bora

This tutorial will teach you how to plot one of the most basic plots. To do this, we will be using Seaborn and matplotlib. Importing the libraries In this step, we import the requi.... Read More

Python Program to find N largest numbers in a list

By Alokesh Bora

This tutorial will show you how to find the ‘n’ largest numbers in a list using Python. We are taking inputs from the user. But if you wish to do this without taking in.... Read More

Shell Sort in Python | Implementation

By Alokesh Bora

This tutorial will teach you how to implement Shell Sort on a list of numbers using Python. I am sure you must be quite familiar with Insertion Sort. If not, you can check out the .... Read More

Adding a title to a Seaborn line plot (lmplot)

By Alokesh Bora

This tutorial will teach you how to add a title to a lineplot (lmplot) in the Seaborn library. To perform this, we require two libraries – Seaborn and matplotlib.pyplot. Pypl.... Read More

Adding custom labels to axes in a seaborn plot in Python

By Alokesh Bora

This tutorial will teach you how to create your own custom labels for the axes of graphs in Python seaborn plot. To do this, we will be creating a graph using seaborn, change its a.... Read More

Adding a horizontal line in a Seaborn plot in Python

By Alokesh Bora

This tutorial will teach you how to add a horizontal line to any plot created using Seaborn in Python. For this purpose, we will be using the seaborn and matplotlib libraries. Seab.... Read More

Related Posts