Seaborn Introduction


This entry is part 1 of 3 in the series Seaborn

What is seaborn? Seaborn is a visualization library for making statistical graphics in Python. It builds on top of matplotlib and integrates closely with pandas data structures.

Here is the website for seaborn.

Seaborn can help with visualizing your data in exploratory data analysis (EDA). Its plotting functions operate on DataFrames and arrays containing whole datasets. Typically you will be importing data into a Python project by reading a CSV file, for example. You will be reading that into a pandas DataFrame, which has rows and columns like a spreadsheet.

The seaborn website says “[seaborn is a] dataset-oriented, declarative API lets you focus on what the different elements of your plots mean, rather than on the details of how to draw them.”

Series NavigationTips Dataset in Seaborn >>

Leave a Reply