Seaborn which is a Python data visualization library based on matplotlib. It provides a high-level interface for drawing attractive and informative statistical graphics.Easiest way to install seaborn is to use pip.
The libraries used here are pandas, numpy, scipy, matplotlib, seaborn.To import random numbers and apply visulisation to them numpy.randm library is used it imports the random values, the number of values we need we have to state in advance.
The visualisation technique to be used depends upon the variables, number of variables, and information we want to extract from the raw data. Incase of single variable the techniques used are:-
- Dotchart
- Barplot
- Histogram
The visualisation technique for multiple variables are:-
- Heat map
- Boxplot
- Violin Plot
- Regression
- KDE
There are 2 datasets which has been used one is flight.csv and the other diamond.csv both of them have been used from seaborn-data.The Diamond.csv has been ussed to plot regression plot,scatter plot, violin plot, whereas the flight.csv has been used to plot heat maps and cluster maps. All of these visualisation techniques are multiple variable tools or techniques, i.e. when there are more than 2 variables or columns in a data set and we want to find the inter relation betweeen them.