Skip to content

Commit

Permalink
Updated file paths in 'Getting started' guide introduction
Browse files Browse the repository at this point in the history
  • Loading branch information
jlstevens committed Jun 14, 2017
1 parent a4715fe commit 3bf4498
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions guides/getting_started/1-Introduction.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"metadata": {},
"outputs": [],
"source": [
"station_info = pd.read_csv('../assets/station_info.csv')\n",
"station_info = pd.read_csv('../datasets/station_info.csv')\n",
"station_info.head()"
]
},
Expand Down Expand Up @@ -164,7 +164,7 @@
"metadata": {},
"outputs": [],
"source": [
"taxi_dropoffs = {hour:arr for hour, arr in np.load('../assets/hourly_taxi_data.npz').items()}\n",
"taxi_dropoffs = {hour:arr for hour, arr in np.load('../datasets/hourly_taxi_data.npz').items()}\n",
"#print('Hours: {hours}'.format(hours=', '.join(taxi_dropoffs.keys())))\n",
"print('Taxi data contains {num} arrays (one per hour).\\nDescription of the first array:\\n'.format(num=len(taxi_dropoffs)))\n",
"np.info(taxi_dropoffs['0'])"
Expand Down

0 comments on commit 3bf4498

Please sign in to comment.