GitHub

Original file line numberDiff line numberDiff line change

@@ -365,11 +365,12 @@ print(plt.rcParams.keys())

365365
366366

```

367367
368-

You can see there are many parameters you could set for your style sheets.

368+

There are many parameters you could set for your style sheets.

369369
370-

You can change them by [changing the `matplotlibrc` file](https://www.datafantic.com/the-magic-of-matplotlib-stylesheets/).

370+

Set parameters for your style sheet by:

371371
372-

Or you can also update values stored in the dictionary-like variable `plt.rcParams`.

372+

1. creating your own [`matplotlibrc` file](https://matplotlib.org/stable/tutorials/introductory/customizing.html#defining-your-own-style), or

373+

2. updating values stored in the dictionary-like variable `plt.rcParams`

373374
374375

Let's change the style of our overlaid density lines

375376

Read the original on github.com ↗