Skip to content

Commit f434158

Browse files
committed
fix warning in notebook
1 parent c576f4e commit f434158

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/Tutorial_STUMPY_Basics.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
},
3232
{
3333
"cell_type": "code",
34-
"execution_count": 1,
34+
"execution_count": null,
3535
"metadata": {},
3636
"outputs": [],
3737
"source": [
@@ -68,7 +68,7 @@
6868
},
6969
{
7070
"cell_type": "code",
71-
"execution_count": 2,
71+
"execution_count": null,
7272
"metadata": {},
7373
"outputs": [
7474
{
@@ -521,7 +521,7 @@
521521
},
522522
{
523523
"cell_type": "code",
524-
"execution_count": 13,
524+
"execution_count": null,
525525
"metadata": {},
526526
"outputs": [
527527
{
@@ -606,7 +606,7 @@
606606
"source": [
607607
"taxi_df = pd.read_csv(\"https://zenodo.org/record/4276428/files/STUMPY_Basics_Taxi.csv?download=1\")\n",
608608
"taxi_df['value'] = taxi_df['value'].astype(np.float64)\n",
609-
"taxi_df['timestamp'] = pd.to_datetime(taxi_df['timestamp'], errors='ignore')\n",
609+
"taxi_df['timestamp'] = pd.to_datetime(taxi_df['timestamp'], format='mixed')\n",
610610
"taxi_df.head()"
611611
]
612612
},

0 commit comments

Comments
 (0)