Visualization can be helpful to easily understand complex patterns and concepts. It represents the insights in pictorial format. In the preceding sections, we have learned about Matplotlib for visualization. Now, we will explore the new Seaborn library for high-level and advanced statistical plots. Seaborn is an open source Python library for high-level interactive and attractive statistical visualization. Seaborn uses Matplotlib as a base library and offers more simple, easy-to-understand, interactive, and attractive visualizations.
In the Anaconda software suite, you can install the Seaborn library in the following way:
Install Seaborn with pip:
pip install seaborn
For Python 3, use the following command:
pip3 install seaborn
You can simply install Seaborn from your terminal or Command Prompt using the following:
conda install seaborn
If you are installing it into the Jupyter Notebook, then you need to put the ! sign before the pip command...