PYTHON LIBRARY
PYTHON LIBRARY - SEABORN
By :- Dibakar Bera
Overview
- Seaborn is a popular data visualization library for Python.
- Seaborn combines aesthetic appeal and technical insights – two crucial cogs in a data science project.
- Learn how it works and the different plots you can generate using seaborn.
Installing Seaborn
Before using Seaborn, we need to install it and here I am going to show various ways of installing it on your computer.
- Using Pip Installer
pip install seaborn
- Using Anaconda
conda install seaborn
- You can also install the development version of Seaborn directly from GitHub by using this command in the command prompt.
pip install git+https://github.com/mwaskom/seaborn.git#egg=seaborn
Usage Of Seaborn
- Data visualization
- Use to show data as a line plot.
- Use to create high level informative and attractive plots to show the data.
Load Data

Conclusion
Seaborn is basically used for data visualization as we have a large amount of data that needs to be represented to the user in a readable format. Seaborn provides a variety of visualisation patterns. It uses fewer syntax and has easily interesting default themes.
Source :-
1. https://seaborn.pydata.org/
2. https://www.wikipedia.org/
Comments
Post a Comment