Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/Tutorial_STUMPY_Basics.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
},
{
"cell_type": "code",
"execution_count": 1,
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
Expand Down Expand Up @@ -68,7 +68,7 @@
},
{
"cell_type": "code",
"execution_count": 2,
"execution_count": null,
"metadata": {},
"outputs": [
{
Expand Down Expand Up @@ -521,7 +521,7 @@
},
{
"cell_type": "code",
"execution_count": 13,
"execution_count": null,
"metadata": {},
"outputs": [
{
Expand Down Expand Up @@ -606,7 +606,7 @@
"source": [
"taxi_df = pd.read_csv(\"https://zenodo.org/record/4276428/files/STUMPY_Basics_Taxi.csv?download=1\")\n",
"taxi_df['value'] = taxi_df['value'].astype(np.float64)\n",
"taxi_df['timestamp'] = pd.to_datetime(taxi_df['timestamp'], errors='ignore')\n",
"taxi_df['timestamp'] = pd.to_datetime(taxi_df['timestamp'], format='mixed')\n",
"taxi_df.head()"
]
},
Expand Down