You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, we draw graphs with the style sheet `seaborn`
330
+
331
+
```{code-cell} python3
332
+
draw_graphs(style='seaborn')
333
+
```
334
+
335
+
We can use `grayscale` to remove colors in plots
336
+
337
+
```{code-cell} python3
338
+
draw_graphs(style='grayscale')
339
+
```
340
+
341
+
Here is what `ggplot` looks like
342
+
343
+
```{code-cell} python3
344
+
draw_graphs(style='ggplot')
345
+
```
346
+
347
+
We can also use the style `dark_background`
348
+
349
+
```{code-cell} python3
350
+
draw_graphs(style='dark_background')
351
+
```
352
+
353
+
You can use the function to experiment with other styles in the list.
354
+
355
+
If you are interested, you can even create [your own style sheets](https://matplotlib.org/stable/tutorials/introductory/customizing.html#defining-your-own-style).
356
+
271
357
## Further Reading
272
358
273
359
* The [Matplotlib gallery](http://matplotlib.org/gallery.html) provides many examples.
0 commit comments