@@ -30,7 +30,7 @@ and [The Grammar of Graphics][grammar-of-graphics]
3030by Leland Wilkinson. The ` plotnine `
3131package 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
3434practice to not just load an entire package such as ` from plotnine import * ` ,
3535but 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
5757dataframe. It uses default settings, which help creating publication quality
5858plots 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
6161different elements on top of each other using the ` + ` operator. Putting the
6262individual 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
7676presented.
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
8181objects/geometries:
8282
8383~~~
0 commit comments