In this post we will see examples of how to change axis labels, how to increase the size of axis labels and how to set title for the plot made using Seaborn in Python. These three are most basic customizations a plot needs to make it useful. Let us load the packages we need to … [Read more...] about Change Axis Labels, Set Title and Figure Size to Plots with Seaborn
Seaborn
How to Make Pairplot with Seaborn in Python?
When you have multiple variables you might want to quickly look at how each variable is distributed and how each variable is related to other variables. Basically, we are interested in histograms of each variable and scatter plots for all pairs of variables. Seaborn's … [Read more...] about How to Make Pairplot with Seaborn in Python?
How To Make Boxplots with Seaborn in Python?
Boxplot is a way to visualize quantitative/numeric variable, in a concise way using quartiles of a data distribution. Here, we will see examples of making simple boxplots using Seaborn in Python. Let us first load packages needed for making boxplot. We will use weather … [Read more...] about How To Make Boxplots with Seaborn in Python?