Skip to content

Commit e30f9c4

Browse files
authored
more typos
1 parent edd9a58 commit e30f9c4

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

_episodes/07-visualization-ggplot-python.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ and [The Grammar of Graphics][grammar-of-graphics]
3030
by Leland Wilkinson. The `plotnine`
3131
package is built on top of Matplotlib and interacts well with Pandas.
3232

33-
Just as with the other packages, `plotnine` need to be imported. It is good
33+
Just as with the other packages, `plotnine` needs to be imported. It is good
3434
practice to not just load an entire package such as `from plotnine import *`,
3535
but to use an abbreviation as we used `pd` for Pandas:
3636

@@ -57,7 +57,7 @@ The `plotnine` package (cfr. other packages conform The Grammar of Graphics) sup
5757
dataframe. It uses default settings, which help creating publication quality
5858
plots with a minimal amount of settings and tweaking.
5959

60-
`plotnine` graphics are built step by step by adding new elementsadding
60+
`plotnine` graphics are built step by step by adding new elements adding
6161
different elements on top of each other using the `+` operator. Putting the
6262
individual steps together in brackets `()` provides Python-compatible syntax.
6363

@@ -76,8 +76,8 @@ As we have not defined anything else, just an empty figure is available and
7676
presented.
7777

7878
- Define aesthetics (`aes`), by **selecting variables** used in the plot and
79-
`mapping` them to a presentation such as plotting size, shape color, etc. You
80-
can interpret this as: *which** of the variables will influence the plotted
79+
`mapping` them to a presentation such as plotting size, shape, color, etc. You
80+
can interpret this as: **which** of the variables will influence the plotted
8181
objects/geometries:
8282

8383
~~~

0 commit comments

Comments
 (0)