Skip to content

Commit 8bd0176

Browse files
committed
remove notes that have been added inline
1 parent 7a53815 commit 8bd0176

File tree

1 file changed

+15
-36
lines changed

1 file changed

+15
-36
lines changed

instructors/instructor-notes.md

+15-36
Original file line numberDiff line numberDiff line change
@@ -27,26 +27,6 @@ If learners receive an `AssertionError`, it will inform you how to help them cor
2727
installation. Otherwise, it will tell you that the system is good to go and ready for Data
2828
Carpentry!
2929

30-
31-
## 02-starting-with-data
32-
33-
::::::::::::::::::::::::::::::::::::::::: callout
34-
35-
## Important Bug Note
36-
37-
In Pandas prior to 0.18.1 there is a bug causing `surveys_df['weight'].describe()` to return
38-
a runtime error.
39-
40-
::::::::::::::::::::::::::::::::::::::::::::::::::
41-
42-
## 03-index-slice-subset
43-
44-
Tip: use `.head()` method throughout this lesson to keep your display neater for students.
45-
Encourage students to try with and without `.head()` to reinforce this useful tool and then to use
46-
it or not at their preference. For example, if a student worries about keeping up in pace with
47-
typing, let them know they can skip the `.head()`, but that you'll use it to keep more lines of
48-
previous steps visible.
49-
5030
## 04-data-types-and-format
5131

5232
### Writing Out Data to CSV
@@ -202,26 +182,25 @@ plt.xlabel("Diversity index")
202182

203183
## 07-visualization-ggplot-python
204184

205-
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-
212185
iPython notebooks for plotting can be viewed in the `learners` folder.
213186

214187
## 08-putting-it-all-together
215188

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.
225204

226205
```python
227206
plt.plot(t, t, 'r--', label='$y=x$')

0 commit comments

Comments
 (0)