Skip to content

Commit 68c2536

Browse files
committed
fix typos
1 parent b0204ff commit 68c2536

File tree

7 files changed

+5
-8
lines changed

7 files changed

+5
-8
lines changed

lesson01/Activity01/activity01.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@
204204
"name": "python",
205205
"nbconvert_exporter": "python",
206206
"pygments_lexer": "ipython3",
207-
"version": "3.6.5"
207+
"version": "3.7.0"
208208
}
209209
},
210210
"nbformat": 4,

lesson01/Activity01/activity01_solution.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
}
9898
],
9999
"source": [
100-
"# calculate the mean of the thrid row\n",
100+
"# calculate the mean of the third row\n",
101101
"np.mean(dataset[2])"
102102
]
103103
},

lesson01/Activity02/activity02-solution.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@
856856
"name": "python",
857857
"nbconvert_exporter": "python",
858858
"pygments_lexer": "ipython3",
859-
"version": "3.6.5"
859+
"version": "3.7.0"
860860
}
861861
},
862862
"nbformat": 4,

lesson01/Activity02/activity02.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@
314314
"name": "python",
315315
"nbconvert_exporter": "python",
316316
"pygments_lexer": "ipython3",
317-
"version": "3.6.5"
317+
"version": "3.7.0"
318318
}
319319
},
320320
"nbformat": 4,

lesson01/Activity06/activity06-solution.ipynb

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@
3838
"metadata": {},
3939
"outputs": [],
4040
"source": [
41-
"# importing the necessary dependencies\n",
42-
"import pandas as pd\n",
43-
"\n",
4441
"# loading the Dataset\n",
4542
"dataset = pd.read_csv('./data/world_population.csv', index_col=0)"
4643
]
File renamed without changes.

lesson01/Exercise01/exercise01_solution.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"In this exercise, we will be loading the normal_distribution.csv dataset and calculate the mean of each row and each column with it. \n",
1515
"Our dataset will have several rows each containing floating point numbers around 100 with a standard deviation of 5.\n",
1616
"\n",
17-
"Just to refresh your knowledge, a Daussian normal distribution resembles this plot: \n",
17+
"Just to refresh your knowledge, a Gaussian normal distribution resembles this plot: \n",
1818
"\n",
1919
"[Normal Distribution ](https://en.wikipedia.org/wiki/Normal_distribution) \n",
2020
"![](https://upload.wikimedia.org/wikipedia/commons/9/9e/Normal_Distribution_NIST.gif) \n",

0 commit comments

Comments
 (0)