Skip to content

Commit 8d360af

Browse files
committed
update
1 parent c8b1f71 commit 8d360af

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

examples/heatmaps.ipynb

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616
"# Use fastdup to cluster heatmaps of user GPS movements\n",
1717
"\n",
1818
"[![Open in Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/visual-layer/fastdup/blob/main/examples/heatmaps.ipynb)\n",
19-
"[![Open in Kaggle](https://kaggle.com/static/images/open-in-kaggle.svg)](https://kaggle.com/kernels/welcome?src=https://github.com/visual-layer/fastdup/blob/main/examples/heatmaps.ipynb)"
19+
"[![Open in Kaggle](https://kaggle.com/static/images/open-in-kaggle.svg)](https://kaggle.com/kernels/welcome?src=https://github.com/visual-layer/fastdup/blob/main/examples/heatmaps.ipynb)\n",
20+
"\n",
21+
"In this tutorial we learn how to cluster heatmaps, look at their labels and find anomalies in heatmaps. As an example heatmaps are generate by GPS coordinates of taxi data in NY. However there are multiple other use cases which produce heatmaps where fastdup can be used.\n"
2022
]
2123
},
2224
{
2325
"cell_type": "markdown",
2426
"id": "99516834-fbfe-4f82-a929-11653ae0ca86",
2527
"metadata": {},
26-
"source": [
27-
"### In this tutorial we learn how to cluster heatmaps, look at their labels and find anomalies in heatmaps. As an example heatmaps are generate by GPS coordinates of taxi data in NY. However there are multiple other use cases which produce heatmaps where fastdup can be used.\n"
28-
]
28+
"source": []
2929
},
3030
{
3131
"cell_type": "code",
@@ -73,18 +73,15 @@
7373
"source": [
7474
"import folium\n",
7575
"from folium.plugins import HeatMap\n",
76-
"import random\n",
77-
"\n"
76+
"import random"
7877
]
7978
},
8079
{
81-
"cell_type": "code",
82-
"execution_count": 31,
80+
"cell_type": "markdown",
8381
"id": "4afe829e-9656-42d1-b7fa-4fc2e9538764",
8482
"metadata": {},
85-
"outputs": [],
8683
"source": [
87-
"# Download Kaggle New York's taxi fare prediction test.csv dataset from https://www.kaggle.com/competitions/new-york-city-taxi-fare-prediction/data\n"
84+
"Download Kaggle New York's taxi fare prediction test.csv dataset from https://www.kaggle.com/competitions/new-york-city-taxi-fare-prediction/data"
8885
]
8986
},
9087
{
@@ -94,7 +91,6 @@
9491
"metadata": {},
9592
"outputs": [],
9693
"source": [
97-
"\n",
9894
"import pandas as pd\n",
9995
"df = pd.read_csv('test.csv')"
10096
]

0 commit comments

Comments
 (0)