Skip to content

Commit

Permalink
FIX-modin-project#6982: Dataset used in examples jupyter notebook is …
Browse files Browse the repository at this point in the history
…failing when jupyter notebook is run

Signed-off-by: arunjose696 <arunjose696@gmail.com>
  • Loading branch information
arunjose696 committed Mar 4, 2024
1 parent a966395 commit 1d8dd74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/jupyter/Modin_Taxi.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"source": [
"# To run this notebook as done in the README GIFs, you must first locally download the 2015 NYC Taxi Trip Data.\n",
"import urllib.request\n",
"url_path = \"https://modin-datasets.intel.com/testing/yellow_tripdata_2015-01.csv\"\n",
"url_path = \"https://modin-datasets.intel.com/green-taxi/green_tripdata_2015-01.csv\"\n",
"urllib.request.urlretrieve(url_path, \"taxi.csv\")\n",
"\n",
"from modin.config import Engine\n",
Expand Down
2 changes: 1 addition & 1 deletion examples/jupyter/Pandas_Taxi.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"source": [
"# To run this notebook as done in the README GIFs, you must first locally download the 2015 NYC Taxi Trip Data.\n",
"import urllib.request\n",
"url_path = \"https://modin-datasets.intel.com/testing/yellow_tripdata_2015-01.csv\"\n",
"url_path = \"https://modin-datasets.intel.com/green-taxi/green_tripdata_2015-01.csv\"\n",
"urllib.request.urlretrieve(url_path, \"taxi.csv\")\n",
"\n",
"import warnings\n",
Expand Down

0 comments on commit 1d8dd74

Please sign in to comment.