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
"- [How to manipulate textual data](https://pandas.pydata.org/docs/getting_started/intro_tutorials/10_text_data.html)\n",
26
+
"- [How to create new columns derived from existing columns](https://pandas.pydata.org/docs/getting_started/intro_tutorials/05_add_columns.html)"
27
+
]
28
+
},
18
29
{
19
30
"cell_type": "markdown",
20
31
"metadata": {},
21
32
"source": [
22
33
"## Coding\n",
23
34
"\n",
24
-
"The goal here is to practice [joining datasets through pandas](https://pandas.pydata.org/docs/user_guide/merging.html#merge). Hint: The instructions here are intentionally incomplete."
35
+
"The goal here is to practice joining datasets through pandas. Hint: The instructions here are intentionally incomplete."
25
36
]
26
37
},
27
38
{
@@ -155,6 +166,16 @@
155
166
"# your code here"
156
167
]
157
168
},
169
+
{
170
+
"cell_type": "markdown",
171
+
"metadata": {},
172
+
"source": [
173
+
"<details>\n",
174
+
"<summary><strong>Hint</strong></summary>\n",
175
+
"Having trouble merging the datasets? Try looking at the unique values in the columns you're trying to merge on.\n",
176
+
"</details>"
177
+
]
178
+
},
158
179
{
159
180
"cell_type": "markdown",
160
181
"metadata": {
@@ -178,11 +199,6 @@
178
199
"1. Do a [`groupby()`](https://pandas.pydata.org/docs/user_guide/groupby.html) on the original dataset.\n",
179
200
"1. Join with the populations by borough.\n",
180
201
"1. Compute the per-capita values as a new column.\n",
181
-
"</details>\n",
182
-
"\n",
183
-
"<details>\n",
184
-
"<summary><strong>Hint 2</strong></summary>\n",
185
-
"Having trouble merging the datasets? Try looking at the unique values in the columns you're trying to merge on.\n",
0 commit comments