Skip to content

Commit dbf75ee

Browse files
committed
fixed broken links in notebooks
1 parent 484f302 commit dbf75ee

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

examples/Tutorial_1-carrots_demo/carrots_demo.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@
197197
],
198198
"source": [
199199
"# get carrots data from our public github repo\n",
200-
"url = 'https://raw.githubusercontent.com/OpenMined/PyDP/dev/examples/carrots_demo/animals_and_carrots.csv'\n",
200+
"url = 'https://raw.githubusercontent.com/OpenMined/PyDP/dev/examples/Tutorial_1-carrots_demo/animals_and_carrots.csv'\n",
201201
"df = pd.read_csv(url,sep=\",\", names=[\"animal\", \"carrots_eaten\"])\n",
202202
"df.head()"
203203
]

examples/Tutorial_2-restaurant_demo/restaurant_demo.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@
213213
}
214214
],
215215
"source": [
216-
"url = 'https://raw.githubusercontent.com/OpenMined/PyDP/dev/examples/restaurant_demo/day_data.csv'\n",
216+
"url = 'https://raw.githubusercontent.com/OpenMined/PyDP/dev/examples/Tutorial_2-restaurant_demo/day_data.csv'\n",
217217
"df = pd.read_csv(url,sep=\",\")\n",
218218
"df.head()"
219219
]
@@ -906,7 +906,7 @@
906906
}
907907
],
908908
"source": [
909-
"url = 'https://raw.githubusercontent.com/OpenMined/PyDP/dev/examples/restaurant_demo/week_data.csv'\n",
909+
"url = 'https://raw.githubusercontent.com/OpenMined/PyDP/dev/examples/Tutorial_2-restaurant_demo/week_data.csv'\n",
910910
"visitor_df = pd.read_csv(url,sep=\",\")\n",
911911
"visitor_df.head()"
912912
]
@@ -3264,4 +3264,4 @@
32643264
},
32653265
"nbformat": 4,
32663266
"nbformat_minor": 2
3267-
}
3267+
}

examples/Tutorial_3-Titanic_demo/titanic_notebook.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@
156156
},
157157
"source": [
158158
"# get the cleaned dataset from our public github repo\n",
159-
"url = 'https://raw.githubusercontent.com/chinmayshah99/PyDP/demo/titanic/examples/Tutorial%203-Titanic_demo/titanic_clean.csv'\n",
159+
"url = 'https://raw.githubusercontent.com/OpenMined/PyDP/dev/examples/Tutorial_3-Titanic_demo/titanic_clean.csv'\n",
160160
"df = pd.read_csv(url,sep=\",\", index_col=0)\n",
161161
"df.head()"
162162
],

examples/Tutorial_4-Launch_demo/DP proof.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
},
110110
"source": [
111111
"# get carrots data from our public github repo\n",
112-
"url1 = 'https://raw.githubusercontent.com/OpenMined/PyDP/dev/examples/Tutorial%204-Launch_demo/data/01.csv'\n",
112+
"url1 = 'https://raw.githubusercontent.com/OpenMined/PyDP/dev/examples/Tutorial_4-Launch_demo/data/01.csv'\n",
113113
"df1 = pd.read_csv(url1,sep=\",\", engine = \"python\")\n",
114114
"df1.head()"
115115
],
@@ -235,7 +235,7 @@
235235
"outputId": "589bc3d9-fb8f-4873-98c0-eb94a9f66d90"
236236
},
237237
"source": [
238-
"url2 = 'https://raw.githubusercontent.com/OpenMined/PyDP/dev/examples/Tutorial%204-Launch_demo/data/02.csv'\n",
238+
"url2 = 'https://raw.githubusercontent.com/OpenMined/PyDP/dev/examples/Tutorial_4-Launch_demo/data/02.csv'\n",
239239
"df2 = pd.read_csv(url2,sep=\",\", engine = \"python\")\n",
240240
"df2.head()"
241241
],
@@ -351,7 +351,7 @@
351351
"outputId": "02e8e364-3312-4ab4-a5db-ede8d2440934"
352352
},
353353
"source": [
354-
"url3 = 'https://raw.githubusercontent.com/OpenMined/PyDP/dev/examples/Tutorial%204-Launch_demo/data/03.csv'\n",
354+
"url3 = 'https://raw.githubusercontent.com/OpenMined/PyDP/dev/examples/Tutorial_4-Launch_demo/data/03.csv'\n",
355355
"df3 = pd.read_csv(url3,sep=\",\", engine = \"python\")\n",
356356
"df3.head()"
357357
],
@@ -467,7 +467,7 @@
467467
"outputId": "630b1dc8-f383-46bf-f9f0-5ceb3c47c7d5"
468468
},
469469
"source": [
470-
"url4 = 'https://raw.githubusercontent.com/OpenMined/PyDP/dev/examples/Tutorial%204-Launch_demo/data/04.csv'\n",
470+
"url4 = 'https://raw.githubusercontent.com/OpenMined/PyDP/dev/examples/Tutorial_4-Launch_demo/data/04.csv'\n",
471471
"df4 = pd.read_csv(url4,sep=\",\", engine = \"python\")\n",
472472
"df4.head()"
473473
],
@@ -583,7 +583,7 @@
583583
"outputId": "70a2f83c-ceac-4611-9ca0-eabc4be7f328"
584584
},
585585
"source": [
586-
"url5 = 'https://raw.githubusercontent.com/OpenMined/PyDP/dev/examples/Tutorial%204-Launch_demo/data/05.csv'\n",
586+
"url5 = 'https://raw.githubusercontent.com/OpenMined/PyDP/dev/examples/Tutorial_4-Launch_demo/data/05.csv'\n",
587587
"df5 = pd.read_csv(url5,sep=\",\", engine = \"python\")\n",
588588
"df5.head()"
589589
],

0 commit comments

Comments
 (0)