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: day_13/day_13.ipynb
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -190,7 +190,7 @@
190
190
"## Bi-variate statistics\n",
191
191
"\n",
192
192
"### Correlations\n",
193
-
"Scipy has both Pearson's coorelation and Spearman's rank correlation."
193
+
"Scipy has both Pearson's correlation and Spearman's rank correlation."
194
194
]
195
195
},
196
196
{
@@ -287,7 +287,7 @@
287
287
"source": [
288
288
"## Exercise 2\n",
289
289
"\n",
290
-
"Write some code that compares the correlations of each set of variables and prints the set of variables with the highest correlation.\n",
290
+
"Write some code that compares the correlations of each set of variables and prints the two variables with the highest correlation.\n",
291
291
"\n",
292
292
"Hint: You will probably want to use two for loops (although there may also be a tricky way to do this with pandas)"
293
293
]
@@ -307,7 +307,7 @@
307
307
"\n",
308
308
"These test whether the frequency of something occurring by group is independent. So, we'll need to change Y into something that has a frequency.\n",
309
309
"\n",
310
-
"The following code will produce the 2 rows of a table. The first row (`large_y_counts`) is the number of large Y vaues by group. The second (`small_y_counts`) is the number of small y values per group."
310
+
"The following code will produce the 2 rows of a table. The first row (`large_y_counts`) is the number of large Y values by group. The second (`small_y_counts`) is the number of small y values per group."
0 commit comments