Practical solutions

Seaborn Howto's How-To Guides

Solve the problem. Keep building. Collection of Python Seaborn how-to articles

Find the answer you need

Browse practical solutions, grouped by the task you're working on.

__COUNT__ entries on this page

How to Create Seaborn Histogram PlotThis article will discuss making a histogram with the Seaborn histplot() function. We will also examine why the distplot() function throws an error. We will then learn how to group multiple plots in Seaborn. How to Create Seaborn Count PlotThis article discusses the Seaborn count plot and the difference between the count plot and a bar plot. We will also look at Python options for the countplot() function. How to Change Seaborn Plot SizeThis tutorial demonstrates how to change the size of a seaborn plot in Python. How to Remove Legend From Seaborn Plots in PythonExplore methods to remove legends from Seaborn plots in Python, enhancing data visualization clarity. Learn to use the legend parameter, legend() function, and the remove() method. Master Seaborn remove legend techniques for diverse plot scenarios, empowering your research effort in data analysis. How to Increase Heatmap Font Size in SeabornWe start this article with the basics of the heatmap. We will learn what a heatmap is and how to annotate our heatmap. We will also look at how to change our tick labels font size in a Seaborn heatmap. How to Add and Customized Legend in Seaborn PlotThis tutorial demonstrates how to add or customize the legend of a seaborn plot. How to Rotate Axis Tick Labels of Seaborn PlotsThis tutorial demonstrates how to rotate tick labels on the axis of seaborn plots in Python How to Plot Time Series Data in SeabornThis tutorial demonstrates how to plot time series data in Python using the seaborn module How to Create Violin Plot Using SeabornThis tutorial demonstrates how to create violin plot using seaborn module in python How to Create Correlation Heatmap in SeabornThis tutorial demonstrates how to plot correlation matrix using seaborn heatmap in Python How to Set Size of Seaborn HeatmapThis tutorial introduces how to set the size for seaborn heatmap plots in python How to Create Seaborn SwarmplotThis tutorial introduces how to create a swarm plot in python How to Create Seaborn BoxPlotThis tutorial demonstrates how to create box plots using seaborn module in python How to Create Seaborn Pie ChartOne can create a pie chart using the pie attribute of Matplotlib and the color pallets of Seaborn. How to Create Seaborn Confusion Matrix PlotOne can plot the confusion matrix using the heatmap() function of Seaborn in Python. How to Create Multiple Line Plot SeabornCreate a multiple line plot using the lineplot() function of Seaborn. How to Create a Contour Plot in SeabornWith this discussion, we will see how to create a contour plot with the help of the kdeplot function in Seaborn. How to Set the Legend Outside of the Figure in SeabornThis article is all about the legend of a figure in Seaborn. We will also share with you several different tips such as how to put the legend outside of the figure and make a horizontal legend in Seaborn. How to Create Linear Regression in SeabornThe purpose of this article is to learn about linear regression in detail and see how we can create linear regression with the help of the regplot method in Seaborn. How to Create a ClusterMap in SeabornIn this demonstration about cluster maps, we will learn what a cluster map is and how we can create and use it for multiple options. How to Create Seaborn Boxplot Without OutliersThe purpose of this article is to demonstrate boxplot and outliers and how to create a modified boxplot and see how to utilize five number summary to remove outliers in Seaborn. How to Create Different Color Palette Using SeabornIn this article, we will explore the different options for the Seaborn color palettes. We will also show you how to create your own custom color palette in Seaborn. How to Create a 3D Plot Using Seaborn and MatplotlibIn this explanation, we will have a look at what a 3D plot is. We also will learn how we can create several different 3D plots with the help of Seaborn and Matplotlib. Seaborn Set_xticklabels FunctionThis tutorial demonstrates how to use the set_xticklabels function for seaborn plots in Python