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
Copy file name to clipboardExpand all lines: _extras/guide.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,13 +29,13 @@ Run the following command to ensure Homebrew is installed properly:
29
29
brew doctor
30
30
```
31
31
32
-
install python 3:
32
+
install Python 3:
33
33
34
34
```
35
35
brew install python3
36
36
```
37
37
38
-
All the rest of workshop packages can be installed by pip3 which comes together with python 3:
38
+
All the rest of workshop packages can be installed by pip3 which comes together with Python 3:
39
39
40
40
```
41
41
pip3 install numpy pandas matplotlib jupyter
@@ -44,7 +44,7 @@ pip3 install bokeh ggplot
44
44
45
45
pip3 can automatically figure out all the dependencies that required by the above packages.
46
46
47
-
Launch a python command prompt, type:
47
+
Launch a Python command prompt, type:
48
48
```
49
49
python3
50
50
```
@@ -292,7 +292,7 @@ called "sample output" that contains the data file they should generate.
292
292
293
293
## 04-merging-data
294
294
295
-
* In the data folder, there are two survey data files: survey2001.csv and survey2002.csv. Read the data into Python and combine the files to make one new data frame. Create a plot of average site weight by year grouped by sex. Export your results as a CSV and make sure it reads back into python properly.
295
+
* In the data folder, there are two survey data files: survey2001.csv and survey2002.csv. Read the data into Python and combine the files to make one new data frame. Create a plot of average site weight by year grouped by sex. Export your results as a CSV and make sure it reads back into Python properly.
296
296
297
297
~~~
298
298
# read the files:
@@ -647,7 +647,7 @@ lot of added value. Luckily, Matplotlib provides powerful tools for text control
647
647
ability to use LaTeX mathematical notation, whenever text is used (you can learn more about LaTeX
648
648
math notation here: https://en.wikibooks.org/wiki/LaTeX/Mathematics). To use mathematical notation,
649
649
surround your text using the dollar sign ("$"). LaTeX uses the backslash character ("\") a lot.
650
-
Since backslash has a special meaning in the python strings, you should replace all the
650
+
Since backslash has a special meaning in the Python strings, you should replace all the
0 commit comments