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
Note `plotnine` contains a *lot* of deprecation warnings in some versions of python/matplotlib, warnings may need to be supressed with
206
-
207
-
```python
208
-
import warnings
209
-
warnings.filterwarnings(action='once')
210
-
```
211
-
212
185
iPython notebooks for plotting can be viewed in the `learners` folder.
213
186
214
187
## 08-putting-it-all-together
215
188
216
-
Answers are embedded with challenges in this lesson, other than random distribtuion which is left to the learner to choose, and final plot, for which the learner should investigate the matplotlib gallery.
217
-
218
-
Scientists often operate on mathematical equations. Being able to use them in their graphics has a
219
-
lot of added value. Luckily, Matplotlib provides powerful tools for text control. One of them is the
220
-
ability to use LaTeX mathematical notation, whenever text is used (you can learn more about LaTeX
221
-
math notation here: [https://en.wikibooks.org/wiki/LaTeX/Mathematics](https://en.wikibooks.org/wiki/LaTeX/Mathematics)). To use mathematical
222
-
notation, surround your text using the dollar sign ("$"). LaTeX uses the backslash character ("\\")
223
-
a lot. Since backslash has a special meaning in the Python strings, you should replace all the
224
-
LaTeX-related backslashes with two backslashes.
189
+
Answers are embedded with challenges in this lesson,
190
+
other than random distribtuion which is left to the learner to choose,
191
+
and final plot, for which the learner should investigate the matplotlib gallery.
192
+
193
+
Scientists often operate on mathematical equations.
194
+
Being able to use them in their graphics has a lot of added value
195
+
Luckily, Matplotlib provides powerful tools for text control.
196
+
One of them is the ability to use LaTeX mathematical notation,
197
+
whenever text is used
198
+
(you can learn more about LaTeX math notation here: [https://en.wikibooks.org/wiki/LaTeX/Mathematics](https://en.wikibooks.org/wiki/LaTeX/Mathematics)).
199
+
To use mathematical notation, surround your text using the dollar sign ("$").
200
+
201
+
LaTeX uses the backslash character ("\\") a lot.
202
+
Since backslash has a special meaning in the Python strings,
203
+
you should replace all the LaTeX-related backslashes with two backslashes.
0 commit comments