Skip to content

Commit 5931fab

Browse files
committed
guide.md: use proper name of the Python language
1 parent ffbdcee commit 5931fab

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

_extras/guide.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ Run the following command to ensure Homebrew is installed properly:
2929
brew doctor
3030
```
3131

32-
install python 3:
32+
install Python 3:
3333

3434
```
3535
brew install python3
3636
```
3737

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:
3939

4040
```
4141
pip3 install numpy pandas matplotlib jupyter
@@ -44,7 +44,7 @@ pip3 install bokeh ggplot
4444

4545
pip3 can automatically figure out all the dependencies that required by the above packages.
4646

47-
Launch a python command prompt, type:
47+
Launch a Python command prompt, type:
4848
```
4949
python3
5050
```
@@ -292,7 +292,7 @@ called "sample output" that contains the data file they should generate.
292292

293293
## 04-merging-data
294294

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

297297
~~~
298298
# read the files:
@@ -647,7 +647,7 @@ lot of added value. Luckily, Matplotlib provides powerful tools for text control
647647
ability to use LaTeX mathematical notation, whenever text is used (you can learn more about LaTeX
648648
math notation here: https://en.wikibooks.org/wiki/LaTeX/Mathematics). To use mathematical notation,
649649
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
651651
LaTeX-related backslashes with two backslashes.
652652

653653
~~~

0 commit comments

Comments
 (0)