## styling
There are a number of pre-defined styles [provided by Matplotlib](https://matplotlib.org/stable/gallery/style_sheets/style_sheets_reference.html). For example, there's a pre-defined style called "ggplot", which emulates the aesthetics of [ggplot](https://ggplot2.tidyverse.org/) (a popular plotting package for [R](https://www.r-project.org/)). To use this style, add:
```python
plt.style.use('ggplot')
```
To list all available styles, use:
```
print([plt.style.available])
```
You can also define your own [[matplotlib style sheets]].