EDA with seaborn and pandas
Exploratory Data Analysis (EDA) is an approach to analyzing datasets to summarize their main characteristics, often with visual methods. It is used to understand the data, get some context regarding it, understand the variables and the relationships between them, and formulate hypotheses that could be useful when building predictive models.
Understanding the seaborn library
Seaborn is a library that makes attractive and informative graphics that include statistics in Python. Matplotlib was used to build this library. It is also integrated with Python's data science stack. It also has support for NumPy and pandas
, as well as SciPy's statistical routines and stats models.
Note
To know more about seaborn and its features, please visit https://www.datasciencecentral.com/profiles/blogs/opensource-python-visualization-libraries.
The following is the import statement for the seaborn library:
# standard import statement for seaborn import seaborn as sns