Skip to content

Commit 5de114a

Browse files
committed
_episodes/13-matplotlib.md: removing repeated section
- Remove 'Plotting with Pandas' repeated section.
1 parent 43ddc1f commit 5de114a

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

_episodes/13-matplotlib.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ it is fully controllable down to basic elements and includes a module `pylab` th
2424
(designed to feel like MATLAB plotting, if you happen to have done that before).
2525

2626
The Matplotlib library can be imported using any of the import techniques we have seen. As Pandas is generally imported
27-
with `import Pandas as pd`, you will find that `matplotlib` is most commonly imported with `import matplotlib as plt` where 'plt' is the alias.
27+
with `import pandas as pd`, you will find that `matplotlib` is most commonly imported with `import matplotlib as plt` where 'plt' is the alias.
2828

2929
In addition to importing the library, in a Jupyter notebook environment we need to tell Jupyter that when we produce a
3030
graph, we want it to be display the graph in a cell in the notebook just like any other results. To do this we use the `%matplotlib inline` directive.
@@ -38,12 +38,6 @@ and advanced plot types. One of its most useful features is formatting.
3838
The `pandas` library contains very tight integration with `matplotlib`. There are functions in `pandas` that
3939
automatically call `matplotlib` functions to produce graphs.
4040

41-
Other graphical libraries available from within Python are for example `plotnine` (a ggplot2 realisation for python)
42-
and `seaborn`. [Seaborn](https://seaborn.pydata.org) has some very powerful features and advanced plot types.
43-
One of its most useful features is formatting.
44-
45-
## Plotting with Pandas
46-
4741
To plot with `pandas` we have to import it as we have done in past episodes.
4842
To tell Jupyter that when we produce a graph we want it to be displayed in a cell in the notebook just like any other results,
4943
we use the `%matplotlib inline` directive. Without that we need to do a `show()` command.

0 commit comments

Comments
 (0)