Skip to content

Commit

Permalink
Troubleshooting
Browse files Browse the repository at this point in the history
  • Loading branch information
taz-chiles committed Sep 20, 2023
1 parent ecea989 commit 11fe74e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/metrics/events/signature/my-leeds-2023.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@
"metadata": {},
"outputs": [],
"source": [
"data = data.pipe(prepare).pipe(save_files, OUT_DIR)"
"data = data.pipe(prepare).pipe(save_files, OUT_DIR)\n",
"print(data)"
]
},
{
Expand Down Expand Up @@ -899,7 +900,8 @@
"source": [
"SUMMER_OUT_DIR = f'{OUT_DIR}/summer'\n",
"os.makedirs(SUMMER_OUT_DIR, exist_ok=True)\n",
"data.loc[data.event_name.str.contains('Summer')].pipe(save_files, SUMMER_OUT_DIR)\n"
"data = data.loc[data.event_name.str.contains('Summer')].pipe(save_files, SUMMER_OUT_DIR)\n",
"print(data)"
]
},
{
Expand Down

0 comments on commit 11fe74e

Please sign in to comment.