You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can make it look prettier with `seaborn`, much more easily than fixing components manually with `matplotlib`. [`Seaborn`](https://seaborn.pydata.org) is a Python data visualization library based on `matplotlib`. It provides a high-level interface for drawing attractive and informative statistical graphics. `Seaborn` comes with Anaconda; to make it available in our python session we need to import it.
163
+
We can make it look prettier with Seaborn, much more easily than fixing components manually with Matplotlib.
164
+
[Seaborn](https://seaborn.pydata.org) is a Python data visualization library based on Matplotlib.
165
+
It provides a high-level interface for drawing attractive and informative statistical graphics.
166
+
Seaborn comes with Anaconda; to make it available in our Python session we need to import it.
164
167
165
168
~~~
166
169
import seaborn as sns
@@ -199,8 +202,10 @@ not through Pandas. First we need to import it.
199
202
200
203
## Customising our plots with Matplotlib
201
204
202
-
We can further customise our plots with `matplotlib` directly. First we need to import it.
203
-
The `matplotlib` library can be imported using any of the import techniques we have seen. As `pandas` is generally imported with `import pandas as pd`, you will find that `matplotlib` is most commonly imported with `import matplotlib.pylab as plt` where `plt` is the alias.
205
+
We can further customise our plots with Matplotlib directly. First we need to import it.
206
+
The Matplotlib library can be imported using any of the import techniques we have seen.
207
+
As Pandas is generally imported with `import pandas as pd`, you will find that `matplotlib` is most commonly imported
208
+
with `import matplotlib.pyplot as plt` where `plt` is the alias.
0 commit comments