Table of Contents
SEABORN FOR DATA VISUALIZATION TUTORIAL part_02:
Want to learn Seaborn for Data Visualization part02 Tutorial?
Hello everyone, today I have write a post related to Seaborn for Data Visualization. this is second part of this blog post. if you want to see first part then please see my blog post. so Let’s start friends:
Hello everyone, today I have write a post related to Seaborn for Data Visualization. this is second part of this blog post. if you want to see first part then please see my blog post. so Let’s start friends:
In this blog post I have covered the Grid, Regression plos, markers and size aspect Ratio.
(NOTE THIS: For detailed please open drive link)
Grid
Grid are general types of plots that allow you to map plot types to rows and columns of a grid, this helps you create similar plots separated by features.
PairGrids
Pairgrids is a subplot grid for plotting pairwise relationships in a dataset.
pairplots
pairplots is a simpler version of PairGrid (you’ll use quite often)
Facet Grids
FacetGrids is the general way to create grids of plots based off of a feature:
JointGrids
JointGrids is the general version for jointplot() type grids, for a quick example:
Regression Plot
also see : python numpy, matplotlib and pandas tutorials
Seaborn has many built-in capabilities for regression plots, however we won’t really discuss regression until the machine learning section of the course, so we will only cover the lmplot() function for now.
lmplot allows you to display linear model, but it also conveniently allow you to split up those plots based off of features, as well as coloring the hue based off of feature.
Let’s explore how this works:
Working with Markers
![]() |
fig 01) seaborn for data visualization tutorial |
lmplot kwargs get passed through to **regplot** which is a more general form of lmplot(). regplots has a scatter_kws parameter that get passed to plt.scatter. So you want to set the parameter in that dictionary, which corresponds (a bit confusingly) to the squared markersize. In other words you end up passing a dictionary with the base matplotlib arguments, in this case, s for size of a scatter plot. In general, you probably won not remember this off the top of your head, but instead reference the documentation.
Summary :
In this article we saw data visualization in python using seaborn function so about this section you have any query then free to ask me
BEST OF LUCK !!!
1 thought on “data visualization in python using seaborn function”