Skip to content

Commit 8b4f770

Browse files
Merge pull request drvinceknight#1 from Nikoleta-v3/niks_sugg
Minor corrections.
2 parents 538d4af + 1447721 commit 8b4f770

5 files changed

+11
-11
lines changed

nbs/00 - Studying Mathematics with Python.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"2. [Numpy](02 - Linear algebra with Numpy.ipynb) for dealing with large numeric arrays: perfect for linear algebra;\n",
1717
"3. [Pandas](03 - Data analysis with Pandas.ipynb) a brilliant tool for data analysis.\n",
1818
"\n",
19-
"**Python and the above libraries are all free to use (and potentially change if you needed to!).** The recommended distribution of Python that includes a number of libraries for scientific work is Anaconda. If you have not yet installed Python on your machine go here: https://www.continuum.io/downloads and follow the download instructions.\n",
19+
"**Python and the above libraries are all free to use (and potentially change if you needed to!).** The recommended distribution of Python that includes a number of libraries for scientific work is Anaconda. If you have not yet installed Python on your machine go to the following link: https://www.continuum.io/downloads and follow the download instructions.\n",
2020
"\n",
2121
"**Note** that there is a choice between python 3 and python 2. **Python 3 is recommended and assumed in this handbook.**\n",
2222
"\n",
@@ -177,7 +177,7 @@
177177
}
178178
],
179179
"source": [
180-
"# Anything after a `#` will be ignored\n",
180+
"# Anything after a `#` will be ignored. This is what we call a 'comment'\n",
181181
"a = 20 # Assigning a value to a\n",
182182
"b = 21 # Assigning a value to b\n",
183183
"a * b # Calculating the product of a and b"
@@ -484,7 +484,7 @@
484484
"name": "python",
485485
"nbconvert_exporter": "python",
486486
"pygments_lexer": "ipython3",
487-
"version": "3.5.2"
487+
"version": "3.6.0"
488488
}
489489
},
490490
"nbformat": 4,

nbs/01 - Symbolic mathematics with Sympy.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
}
6565
],
6666
"source": [
67-
"x + x"
67+
"x - x"
6868
]
6969
},
7070
{
@@ -162,7 +162,7 @@
162162
}
163163
],
164164
"source": [
165-
"expr = (a + b) ** 2\n",
165+
"expr = (a + b) ** 2 \n",
166166
"expr"
167167
]
168168
},
@@ -704,7 +704,7 @@
704704
"name": "python",
705705
"nbconvert_exporter": "python",
706706
"pygments_lexer": "ipython3",
707-
"version": "3.5.2"
707+
"version": "3.6.0"
708708
}
709709
},
710710
"nbformat": 4,

nbs/02 - Linear algebra with Numpy.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@
535535
"name": "python",
536536
"nbconvert_exporter": "python",
537537
"pygments_lexer": "ipython3",
538-
"version": "3.5.2"
538+
"version": "3.6.0"
539539
}
540540
},
541541
"nbformat": 4,

nbs/03 - Data analysis with Pandas.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -917,7 +917,7 @@
917917
"name": "python",
918918
"nbconvert_exporter": "python",
919919
"pygments_lexer": "ipython3",
920-
"version": "3.5.2"
920+
"version": "3.6.0"
921921
}
922922
},
923923
"nbformat": 4,

nbs/A1 - Appendix creating Goldbach data.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@
7474
"metadata": {
7575
"anaconda-cloud": {},
7676
"kernelspec": {
77-
"display_name": "Python [default]",
77+
"display_name": "Python [conda env:pymathws]",
7878
"language": "python",
79-
"name": "python3"
79+
"name": "conda-env-pymathws-py"
8080
},
8181
"language_info": {
8282
"codemirror_mode": {
@@ -88,7 +88,7 @@
8888
"name": "python",
8989
"nbconvert_exporter": "python",
9090
"pygments_lexer": "ipython3",
91-
"version": "3.5.2"
91+
"version": "3.6.0"
9292
}
9393
},
9494
"nbformat": 4,

0 commit comments

Comments
 (0)