diff --git a/requirements.txt b/requirements.txt index ff06b23..5d68cb3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -79,7 +79,7 @@ pytz==2018.5 pyzmq==17.1.0 qtconsole==4.3.1 ratelim==0.1.6 -recordlinkage==0.11.2 +recordlinkage==0.12 regex==2018.7.11 requests==2.19.1 rise==5.3.0 diff --git a/slides.ipynb b/slides.ipynb index 88a667a..78e4172 100644 --- a/slides.ipynb +++ b/slides.ipynb @@ -2154,7 +2154,7 @@ " 90048\n", " 34.070609\n", " -118.376722\n", - " (435 san la cienega boulevard, 435 s louisiana...\n", + " (435 san louisiana cienega bulevar, 435 sur la...\n", " \n", " \n", " 1\n", @@ -2165,7 +2165,7 @@ " 90048\n", " 34.070609\n", " -118.376722\n", - " (435 s lane cienega boulevard, 435 san la cien...\n", + " (435 sur la cienega boulevard, 435 south lane ...\n", " \n", " \n", " 2\n", @@ -2176,7 +2176,7 @@ " 90048\n", " 34.070609\n", " -118.376722\n", - " (435 s lane cienega boulevard, 435 san la cien...\n", + " (435 south lane cienega boulevard, 435 san lan...\n", " \n", " \n", " 3\n", @@ -2220,9 +2220,9 @@ "4 delis 91604 34.142966 -118.399469 \n", "\n", " addr_variations \n", - "0 (435 san la cienega boulevard, 435 s louisiana... \n", - "1 (435 s lane cienega boulevard, 435 san la cien... \n", - "2 (435 s lane cienega boulevard, 435 san la cien... \n", + "0 (435 san louisiana cienega bulevar, 435 sur la... \n", + "1 (435 sur la cienega boulevard, 435 south lane ... \n", + "2 (435 south lane cienega boulevard, 435 san lan... \n", "3 (12224 ventura boulevard) \n", "4 (12224 ventura boulevard) " ] @@ -2301,6 +2301,7 @@ "name": "stdout", "output_type": "stream", "text": [ + "WARNING:recordlinkage:indexing - performance warning - A full index can result in large number of record pairs.\n", "Full index: 881 records, 387640 pairs\n" ] } @@ -2308,7 +2309,8 @@ "source": [ "import recordlinkage as rl\n", "\n", - "full_indexer = rl.FullIndex()\n", + "full_indexer = rl.Index()\n", + "full_indexer.full()\n", "pairs = full_indexer.index(df)\n", "\n", "print(f\"Full index: {len(df)} records, {len(pairs)} pairs\")" @@ -2323,7 +2325,7 @@ }, "source": [ "The formula for the total number of pairs is: \n", - "`len(df) * (len(df) - 1) / 2 == 385881`" + "`len(df) * (len(df) - 1) / 2 == 387640`" ] }, { @@ -2400,7 +2402,8 @@ } ], "source": [ - "postal_indexer = rl.BlockIndex('postal')\n", + "postal_indexer = rl.Index()\n", + "postal_indexer.block('postal')\n", "postal_index_pairs = postal_indexer.index(df)\n", "\n", "print(f\"Postal index: {len(postal_index_pairs)} pairs\")" @@ -2457,7 +2460,8 @@ } ], "source": [ - "name_indexer = rl.SortedNeighbourhoodIndex('name', window=7)\n", + "name_indexer = rl.Index()\n", + "name_indexer.sortedneighbourhood('name', window=7)\n", "name_index_pairs = name_indexer.index(df)\n", "\n", "print(f\"Name index: {len(name_index_pairs)} pairs\")" @@ -2781,8 +2785,8 @@ " \n", " \n", " \n", - " 0\n", " 1\n", + " 0\n", " 1.000000\n", " 0.985507\n", " 1.00000\n", @@ -2791,7 +2795,8 @@ " 1.0\n", " \n", " \n", - " 2\n", + " 2\n", + " 0\n", " 0.920000\n", " 0.910774\n", " 1.00000\n", @@ -2800,29 +2805,30 @@ " 1.0\n", " \n", " \n", - " 3\n", - " 0.559722\n", - " 0.593620\n", - " 0.40404\n", + " 1\n", + " 0.920000\n", + " 0.923779\n", + " 1.00000\n", " 1.000000\n", - " 0.00001\n", - " 0.0\n", + " 1.00000\n", + " 1.0\n", " \n", " \n", - " 4\n", - " 0.572222\n", + " 3\n", + " 0\n", + " 0.559722\n", " 0.593620\n", " 0.40404\n", - " 0.550000\n", + " 1.000000\n", " 0.00001\n", " 0.0\n", " \n", " \n", - " 5\n", - " 0.572222\n", - " 0.593620\n", - " 1.00000\n", - " 0.550000\n", + " 1\n", + " 0.559722\n", + " 0.625130\n", + " 0.40404\n", + " 0.310606\n", " 0.00001\n", " 0.0\n", " \n", @@ -2832,11 +2838,11 @@ ], "text/plain": [ " name addr city type latlng addr_variations\n", - "0 1 1.000000 0.985507 1.00000 0.310606 1.00000 1.0\n", - " 2 0.920000 0.910774 1.00000 0.310606 1.00000 1.0\n", - " 3 0.559722 0.593620 0.40404 1.000000 0.00001 0.0\n", - " 4 0.572222 0.593620 0.40404 0.550000 0.00001 0.0\n", - " 5 0.572222 0.593620 1.00000 0.550000 0.00001 0.0" + "1 0 1.000000 0.985507 1.00000 0.310606 1.00000 1.0\n", + "2 0 0.920000 0.910774 1.00000 0.310606 1.00000 1.0\n", + " 1 0.920000 0.923779 1.00000 1.000000 1.00000 1.0\n", + "3 0 0.559722 0.593620 0.40404 1.000000 0.00001 0.0\n", + " 1 0.559722 0.625130 0.40404 0.310606 0.00001 0.0" ] }, "execution_count": 40, @@ -3105,7 +3111,7 @@ " 90048\n", " 34.070609\n", " -118.376722\n", - " (435 san la cienega boulevard, 435 s louisiana...\n", + " (435 san louisiana cienega bulevar, 435 sur la...\n", " \n", " \n", " 1\n", @@ -3116,7 +3122,7 @@ " 90048\n", " 34.070609\n", " -118.376722\n", - " (435 s lane cienega boulevard, 435 san la cien...\n", + " (435 sur la cienega boulevard, 435 south lane ...\n", " \n", " \n", " 2\n", @@ -3127,7 +3133,7 @@ " 90048\n", " 34.070609\n", " -118.376722\n", - " (435 s lane cienega boulevard, 435 san la cien...\n", + " (435 south lane cienega boulevard, 435 san lan...\n", " \n", " \n", " 3\n", @@ -3184,9 +3190,9 @@ "5 delis 91604 34.142966 -118.399469 \n", "\n", " addr_variations \n", - "0 (435 san la cienega boulevard, 435 s louisiana... \n", - "1 (435 s lane cienega boulevard, 435 san la cien... \n", - "2 (435 s lane cienega boulevard, 435 san la cien... \n", + "0 (435 san louisiana cienega bulevar, 435 sur la... \n", + "1 (435 sur la cienega boulevard, 435 south lane ... \n", + "2 (435 south lane cienega boulevard, 435 san lan... \n", "3 (12224 ventura boulevard) \n", "4 (12224 ventura boulevard) \n", "5 (12224 ventura boulevard) " @@ -3265,8 +3271,8 @@ " \n", " \n", " \n", - " 0\n", " 1\n", + " 0\n", " 1.000000\n", " 0.985507\n", " 1.00000\n", @@ -3276,7 +3282,8 @@ " 0.929611\n", " \n", " \n", - " 2\n", + " 2\n", + " 0\n", " 0.920000\n", " 0.910774\n", " 1.00000\n", @@ -3286,7 +3293,18 @@ " 0.898138\n", " \n", " \n", - " 3\n", + " 1\n", + " 0.920000\n", + " 0.923779\n", + " 1.00000\n", + " 1.000000\n", + " 1.00000\n", + " 1.0\n", + " 0.968378\n", + " \n", + " \n", + " 3\n", + " 0\n", " 0.559722\n", " 0.593620\n", " 0.40404\n", @@ -3296,24 +3314,14 @@ " 0.347484\n", " \n", " \n", - " 4\n", - " 0.572222\n", - " 0.593620\n", + " 1\n", + " 0.559722\n", + " 0.625130\n", " 0.40404\n", - " 0.550000\n", - " 0.00001\n", - " 0.0\n", - " 0.306234\n", - " \n", - " \n", - " 5\n", - " 0.572222\n", - " 0.593620\n", - " 1.00000\n", - " 0.550000\n", + " 0.310606\n", " 0.00001\n", " 0.0\n", - " 0.336032\n", + " 0.281695\n", " \n", " \n", "\n", @@ -3321,11 +3329,11 @@ ], "text/plain": [ " name addr city type latlng addr_variations score\n", - "0 1 1.000000 0.985507 1.00000 0.310606 1.00000 1.0 0.929611\n", - " 2 0.920000 0.910774 1.00000 0.310606 1.00000 1.0 0.898138\n", - " 3 0.559722 0.593620 0.40404 1.000000 0.00001 0.0 0.347484\n", - " 4 0.572222 0.593620 0.40404 0.550000 0.00001 0.0 0.306234\n", - " 5 0.572222 0.593620 1.00000 0.550000 0.00001 0.0 0.336032" + "1 0 1.000000 0.985507 1.00000 0.310606 1.00000 1.0 0.929611\n", + "2 0 0.920000 0.910774 1.00000 0.310606 1.00000 1.0 0.898138\n", + " 1 0.920000 0.923779 1.00000 1.000000 1.00000 1.0 0.968378\n", + "3 0 0.559722 0.593620 0.40404 1.000000 0.00001 0.0 0.347484\n", + " 1 0.559722 0.625130 0.40404 0.310606 0.00001 0.0 0.281695" ] }, "execution_count": 43, @@ -3394,8 +3402,8 @@ " \n", " \n", " \n", - " 0\n", " 1\n", + " 0\n", " 1.00\n", " 0.985507\n", " 1.00000\n", @@ -3404,7 +3412,8 @@ " 1.0\n", " \n", " \n", - " 2\n", + " 2\n", + " 0\n", " 0.92\n", " 0.910774\n", " 1.00000\n", @@ -3414,7 +3423,6 @@ " \n", " \n", " 1\n", - " 2\n", " 0.92\n", " 0.923779\n", " 1.00000\n", @@ -3423,8 +3431,8 @@ " 1.0\n", " \n", " \n", - " 3\n", " 4\n", + " 3\n", " 0.90\n", " 1.000000\n", " 1.00000\n", @@ -3434,6 +3442,7 @@ " \n", " \n", " 5\n", + " 3\n", " 0.90\n", " 1.000000\n", " 0.40404\n", @@ -3447,11 +3456,11 @@ ], "text/plain": [ " name addr city type latlng addr_variations\n", - "0 1 1.00 0.985507 1.00000 0.310606 1.0 1.0\n", - " 2 0.92 0.910774 1.00000 0.310606 1.0 1.0\n", - "1 2 0.92 0.923779 1.00000 1.000000 1.0 1.0\n", - "3 4 0.90 1.000000 1.00000 0.550000 1.0 1.0\n", - " 5 0.90 1.000000 0.40404 0.550000 1.0 1.0" + "1 0 1.00 0.985507 1.00000 0.310606 1.0 1.0\n", + "2 0 0.92 0.910774 1.00000 0.310606 1.0 1.0\n", + " 1 0.92 0.923779 1.00000 1.000000 1.0 1.0\n", + "4 3 0.90 1.000000 1.00000 0.550000 1.0 1.0\n", + "5 3 0.90 1.000000 0.40404 0.550000 1.0 1.0" ] }, "execution_count": 44, @@ -3551,75 +3560,26 @@ ] }, { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
nameaddrcitytypepostallatlngaddr_variations
4art deli12224 ventura blvd.studio citydelis9160434.142966-118.399469(12224 ventura boulevard)
5art deli12224 ventura blvd.los angelesdelis9160434.142966-118.399469(12224 ventura boulevard)
\n", - "
" - ], - "text/plain": [ - " name addr city type postal lat \\\n", - "4 art deli 12224 ventura blvd. studio city delis 91604 34.142966 \n", - "5 art deli 12224 ventura blvd. los angeles delis 91604 34.142966 \n", - "\n", - " lng addr_variations \n", - "4 -118.399469 (12224 ventura boulevard) \n", - "5 -118.399469 (12224 ventura boulevard) " - ] - }, - "metadata": {}, - "output_type": "display_data" + "ename": "KeyError", + "evalue": "'the label [3] is not in the [index]'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m~/workspace/deduplication-slides/venv/lib/python3.6/site-packages/pandas/core/indexing.py\u001b[0m in \u001b[0;36m_validate_key\u001b[0;34m(self, key, axis)\u001b[0m\n\u001b[1;32m 1789\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0max\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mcontains\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1790\u001b[0;31m \u001b[0merror\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 1791\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mTypeError\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0me\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/workspace/deduplication-slides/venv/lib/python3.6/site-packages/pandas/core/indexing.py\u001b[0m in \u001b[0;36merror\u001b[0;34m()\u001b[0m\n\u001b[1;32m 1784\u001b[0m .format(key=key,\n\u001b[0;32m-> 1785\u001b[0;31m axis=self.obj._get_axis_name(axis)))\n\u001b[0m\u001b[1;32m 1786\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mKeyError\u001b[0m: 'the label [3] is not in the [index]'", + "\nDuring handling of the above exception, another exception occurred:\n", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[0mdisplay\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mdf\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mloc\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m3\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"matched:\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 3\u001b[0;31m \u001b[0mdisplay\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mdf\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mloc\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mmatches\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mloc\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m3\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mindex\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;32m~/workspace/deduplication-slides/venv/lib/python3.6/site-packages/pandas/core/indexing.py\u001b[0m in \u001b[0;36m__getitem__\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 1470\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0;34m(\u001b[0m\u001b[0mKeyError\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mIndexError\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1471\u001b[0m \u001b[0;32mpass\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1472\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_getitem_tuple\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 1473\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1474\u001b[0m \u001b[0;31m# we by definition only have the 0th axis\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/workspace/deduplication-slides/venv/lib/python3.6/site-packages/pandas/core/indexing.py\u001b[0m in \u001b[0;36m_getitem_tuple\u001b[0;34m(self, tup)\u001b[0m\n\u001b[1;32m 868\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_getitem_tuple\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mtup\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 869\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 870\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_getitem_lowerdim\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mtup\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 871\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mIndexingError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 872\u001b[0m \u001b[0;32mpass\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/workspace/deduplication-slides/venv/lib/python3.6/site-packages/pandas/core/indexing.py\u001b[0m in \u001b[0;36m_getitem_lowerdim\u001b[0;34m(self, tup)\u001b[0m\n\u001b[1;32m 996\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mi\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mkey\u001b[0m \u001b[0;32min\u001b[0m \u001b[0menumerate\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mtup\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 997\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mis_label_like\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;32mor\u001b[0m \u001b[0misinstance\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mtuple\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 998\u001b[0;31m \u001b[0msection\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_getitem_axis\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0maxis\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 999\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1000\u001b[0m \u001b[0;31m# we have yielded a scalar ?\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/workspace/deduplication-slides/venv/lib/python3.6/site-packages/pandas/core/indexing.py\u001b[0m in \u001b[0;36m_getitem_axis\u001b[0;34m(self, key, axis)\u001b[0m\n\u001b[1;32m 1909\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1910\u001b[0m \u001b[0;31m# fall thru to straight lookup\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1911\u001b[0;31m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_validate_key\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0maxis\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 1912\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_get_label\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0maxis\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0maxis\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1913\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/workspace/deduplication-slides/venv/lib/python3.6/site-packages/pandas/core/indexing.py\u001b[0m in \u001b[0;36m_validate_key\u001b[0;34m(self, key, axis)\u001b[0m\n\u001b[1;32m 1796\u001b[0m \u001b[0;32mraise\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1797\u001b[0m \u001b[0;32mexcept\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1798\u001b[0;31m \u001b[0merror\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 1799\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1800\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_is_scalar_access\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/workspace/deduplication-slides/venv/lib/python3.6/site-packages/pandas/core/indexing.py\u001b[0m in \u001b[0;36merror\u001b[0;34m()\u001b[0m\n\u001b[1;32m 1783\u001b[0m raise KeyError(u\"the label [{key}] is not in the [{axis}]\"\n\u001b[1;32m 1784\u001b[0m .format(key=key,\n\u001b[0;32m-> 1785\u001b[0;31m axis=self.obj._get_axis_name(axis)))\n\u001b[0m\u001b[1;32m 1786\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1787\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mKeyError\u001b[0m: 'the label [3] is not in the [index]'" + ] } ], "source": [ @@ -3753,35 +3713,35 @@ " \n", " \n", " \n", - " 156\n", - " palace court\n", - " 3570 las vegas blvd. s\n", - " las vegas\n", - " continental\n", - " 36.116156\n", - " -115.175058\n", + " 198\n", + " ritz carlton dining room buckhead\n", + " 3434 peachtree rd. ne\n", + " atlanta\n", + " american (new)\n", + " 33.850807\n", + " -84.364227\n", " \n", " \n", - " 562\n", - " cafe roma\n", - " 3570 las vegas blvd. s\n", - " las vegas\n", - " coffee shops/diners\n", - " 36.116156\n", - " -115.175058\n", + " 196\n", + " ritz carlton cafe buckhead\n", + " 3434 peachtree rd. ne\n", + " atlanta\n", + " american (new)\n", + " 33.850807\n", + " -84.364227\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city type \\\n", - "156 palace court 3570 las vegas blvd. s las vegas continental \n", - "562 cafe roma 3570 las vegas blvd. s las vegas coffee shops/diners \n", + " name addr city \\\n", + "198 ritz carlton dining room buckhead 3434 peachtree rd. ne atlanta \n", + "196 ritz carlton cafe buckhead 3434 peachtree rd. ne atlanta \n", "\n", - " lat lng \n", - "156 36.116156 -115.175058 \n", - "562 36.116156 -115.175058 " + " type lat lng \n", + "198 american (new) 33.850807 -84.364227 \n", + "196 american (new) 33.850807 -84.364227 " ] }, "metadata": {}, @@ -3818,35 +3778,35 @@ " \n", " \n", " \n", - " 157\n", - " palace court\n", - " 3570 las vegas blvd. s.\n", - " las vegas\n", - " french (new)\n", - " 36.116156\n", - " -115.175058\n", + " 329\n", + " cafe botanica\n", + " 160 central park s\n", + " new york\n", + " french\n", + " 40.766016\n", + " -73.978641\n", " \n", " \n", - " 562\n", - " cafe roma\n", - " 3570 las vegas blvd. s\n", - " las vegas\n", - " coffee shops/diners\n", - " 36.116156\n", - " -115.175058\n", + " 99\n", + " les celebrites\n", + " 160 central park s\n", + " new york\n", + " french\n", + " 40.766016\n", + " -73.978641\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city type \\\n", - "157 palace court 3570 las vegas blvd. s. las vegas french (new) \n", - "562 cafe roma 3570 las vegas blvd. s las vegas coffee shops/diners \n", + " name addr city type lat \\\n", + "329 cafe botanica 160 central park s new york french 40.766016 \n", + "99 les celebrites 160 central park s new york french 40.766016 \n", "\n", - " lat lng \n", - "157 36.116156 -115.175058 \n", - "562 36.116156 -115.175058 " + " lng \n", + "329 -73.978641 \n", + "99 -73.978641 " ] }, "metadata": {}, @@ -3883,35 +3843,35 @@ " \n", " \n", " \n", - " 196\n", - " ritz carlton cafe buckhead\n", - " 3434 peachtree rd. ne\n", + " 839\n", + " ritz carlton cafe atlanta\n", + " 181 peachtree st.\n", " atlanta\n", " american (new)\n", - " 33.850807\n", - " -84.364227\n", + " 33.758579\n", + " -84.387066\n", " \n", " \n", - " 198\n", - " ritz carlton dining room buckhead\n", - " 3434 peachtree rd. ne\n", + " 199\n", + " restaurant ritz carlton atlanta\n", + " 181 peachtree st.\n", " atlanta\n", - " american (new)\n", - " 33.850807\n", - " -84.364227\n", + " continental\n", + " 33.758579\n", + " -84.387066\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city \\\n", - "196 ritz carlton cafe buckhead 3434 peachtree rd. ne atlanta \n", - "198 ritz carlton dining room buckhead 3434 peachtree rd. ne atlanta \n", + " name addr city \\\n", + "839 ritz carlton cafe atlanta 181 peachtree st. atlanta \n", + "199 restaurant ritz carlton atlanta 181 peachtree st. atlanta \n", "\n", " type lat lng \n", - "196 american (new) 33.850807 -84.364227 \n", - "198 american (new) 33.850807 -84.364227 " + "839 american (new) 33.758579 -84.387066 \n", + "199 continental 33.758579 -84.387066 " ] }, "metadata": {}, @@ -3948,35 +3908,35 @@ " \n", " \n", " \n", - " 199\n", - " restaurant ritz carlton atlanta\n", - " 181 peachtree st.\n", - " atlanta\n", - " continental\n", - " 33.758579\n", - " -84.387066\n", + " 562\n", + " cafe roma\n", + " 3570 las vegas blvd. s\n", + " las vegas\n", + " coffee shops/diners\n", + " 36.116156\n", + " -115.175058\n", " \n", " \n", - " 839\n", - " ritz carlton cafe atlanta\n", - " 181 peachtree st.\n", - " atlanta\n", - " american (new)\n", - " 33.758579\n", - " -84.387066\n", - " \n", - " \n", + " 157\n", + " palace court\n", + " 3570 las vegas blvd. s.\n", + " las vegas\n", + " french (new)\n", + " 36.116156\n", + " -115.175058\n", + " \n", + " \n", "\n", "" ], "text/plain": [ - " name addr city \\\n", - "199 restaurant ritz carlton atlanta 181 peachtree st. atlanta \n", - "839 ritz carlton cafe atlanta 181 peachtree st. atlanta \n", + " name addr city type \\\n", + "562 cafe roma 3570 las vegas blvd. s las vegas coffee shops/diners \n", + "157 palace court 3570 las vegas blvd. s. las vegas french (new) \n", "\n", - " type lat lng \n", - "199 continental 33.758579 -84.387066 \n", - "839 american (new) 33.758579 -84.387066 " + " lat lng \n", + "562 36.116156 -115.175058 \n", + "157 36.116156 -115.175058 " ] }, "metadata": {}, @@ -4013,35 +3973,35 @@ " \n", " \n", " \n", - " 99\n", - " les celebrites\n", - " 160 central park s\n", - " new york\n", - " french\n", - " 40.766016\n", - " -73.978641\n", + " 562\n", + " cafe roma\n", + " 3570 las vegas blvd. s\n", + " las vegas\n", + " coffee shops/diners\n", + " 36.116156\n", + " -115.175058\n", " \n", " \n", - " 329\n", - " cafe botanica\n", - " 160 central park s\n", - " new york\n", - " french\n", - " 40.766016\n", - " -73.978641\n", + " 156\n", + " palace court\n", + " 3570 las vegas blvd. s\n", + " las vegas\n", + " continental\n", + " 36.116156\n", + " -115.175058\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city type lat \\\n", - "99 les celebrites 160 central park s new york french 40.766016 \n", - "329 cafe botanica 160 central park s new york french 40.766016 \n", + " name addr city type \\\n", + "562 cafe roma 3570 las vegas blvd. s las vegas coffee shops/diners \n", + "156 palace court 3570 las vegas blvd. s las vegas continental \n", "\n", - " lng \n", - "99 -73.978641 \n", - "329 -73.978641 " + " lat lng \n", + "562 36.116156 -115.175058 \n", + "156 36.116156 -115.175058 " ] }, "metadata": {}, @@ -4078,20 +4038,20 @@ " \n", " \n", " \n", - " 200\n", - " ritz carlton restaurant\n", + " 839\n", + " ritz carlton cafe atlanta\n", " 181 peachtree st.\n", " atlanta\n", - " french (classic)\n", + " american (new)\n", " 33.758579\n", " -84.387066\n", " \n", " \n", - " 839\n", - " ritz carlton cafe atlanta\n", + " 200\n", + " ritz carlton restaurant\n", " 181 peachtree st.\n", " atlanta\n", - " american (new)\n", + " french (classic)\n", " 33.758579\n", " -84.387066\n", " \n", @@ -4101,12 +4061,12 @@ ], "text/plain": [ " name addr city type \\\n", - "200 ritz carlton restaurant 181 peachtree st. atlanta french (classic) \n", "839 ritz carlton cafe atlanta 181 peachtree st. atlanta american (new) \n", + "200 ritz carlton restaurant 181 peachtree st. atlanta french (classic) \n", "\n", " lat lng \n", - "200 33.758579 -84.387066 \n", - "839 33.758579 -84.387066 " + "839 33.758579 -84.387066 \n", + "200 33.758579 -84.387066 " ] }, "metadata": {}, @@ -4143,20 +4103,20 @@ " \n", " \n", " \n", - " 195\n", - " cafe ritz carlton buckhead\n", + " 197\n", + " dining room ritz carlton buckhead\n", " 3434 peachtree rd.\n", " atlanta\n", - " ext 6108 international\n", + " international\n", " 33.850807\n", " -84.364227\n", " \n", " \n", - " 197\n", - " dining room ritz carlton buckhead\n", + " 195\n", + " cafe ritz carlton buckhead\n", " 3434 peachtree rd.\n", " atlanta\n", - " international\n", + " ext 6108 international\n", " 33.850807\n", " -84.364227\n", " \n", @@ -4166,12 +4126,12 @@ ], "text/plain": [ " name addr city \\\n", - "195 cafe ritz carlton buckhead 3434 peachtree rd. atlanta \n", "197 dining room ritz carlton buckhead 3434 peachtree rd. atlanta \n", + "195 cafe ritz carlton buckhead 3434 peachtree rd. atlanta \n", "\n", " type lat lng \n", - "195 ext 6108 international 33.850807 -84.364227 \n", - "197 international 33.850807 -84.364227 " + "197 international 33.850807 -84.364227 \n", + "195 ext 6108 international 33.850807 -84.364227 " ] }, "metadata": {}, @@ -4240,35 +4200,35 @@ " \n", " \n", " \n", - " 170\n", - " brasserie coze\n", - " 3393 peachtree rd. lenox square mall near ne...\n", + " 165\n", + " abruzzi\n", + " 2355 peachtree rd. ne\n", " atlanta\n", - " french\n", - " 33.846181\n", - " -84.364109\n", + " italian\n", + " 33.824647\n", + " -84.387453\n", " \n", " \n", - " 171\n", - " brasserie coze\n", - " 3393 peachtree rd.\n", + " 164\n", + " abruzzi\n", + " 2355 peachtree rd. peachtree battle shopping ...\n", " atlanta\n", - " french bistro\n", - " 33.846869\n", - " -84.362512\n", + " italian\n", + " 33.820137\n", + " -84.387280\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr \\\n", - "170 brasserie coze 3393 peachtree rd. lenox square mall near ne... \n", - "171 brasserie coze 3393 peachtree rd. \n", + " name addr city \\\n", + "165 abruzzi 2355 peachtree rd. ne atlanta \n", + "164 abruzzi 2355 peachtree rd. peachtree battle shopping ... atlanta \n", "\n", - " city type lat lng \n", - "170 atlanta french 33.846181 -84.364109 \n", - "171 atlanta french bistro 33.846869 -84.362512 " + " type lat lng \n", + "165 italian 33.824647 -84.387453 \n", + "164 italian 33.820137 -84.387280 " ] }, "metadata": {}, @@ -4305,35 +4265,35 @@ " \n", " \n", " \n", - " 22\n", - " fenix at argyle\n", - " 8358 sunset blvd.\n", - " w. hollywood\n", - " french (new)\n", - " 34.095097\n", - " -118.371967\n", + " 35\n", + " locanda veneta\n", + " 8638 w. third st.\n", + " los angeles\n", + " italian\n", + " 34.073417\n", + " -118.381096\n", " \n", " \n", - " 23\n", - " fenix at argyle\n", - " 8358 sunset blvd. west\n", - " hollywood\n", - " american\n", - " 34.095097\n", - " -118.371967\n", + " 34\n", + " locanda veneta\n", + " 3rd st.\n", + " los angeles\n", + " italian\n", + " 34.068958\n", + " -118.320928\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city type \\\n", - "22 fenix at argyle 8358 sunset blvd. w. hollywood french (new) \n", - "23 fenix at argyle 8358 sunset blvd. west hollywood american \n", + " name addr city type lat \\\n", + "35 locanda veneta 8638 w. third st. los angeles italian 34.073417 \n", + "34 locanda veneta 3rd st. los angeles italian 34.068958 \n", "\n", - " lat lng \n", - "22 34.095097 -118.371967 \n", - "23 34.095097 -118.371967 " + " lng \n", + "35 -118.381096 \n", + "34 -118.320928 " ] }, "metadata": {}, @@ -4370,35 +4330,35 @@ " \n", " \n", " \n", - " 182\n", - " heera india\n", - " 595 piedmont ave. rio shopping mall\n", - " atlanta\n", - " asian\n", - " 33.795817\n", - " -84.370602\n", + " 155\n", + " montrachet bistro\n", + " 3000 paradise rd.\n", + " las vegas\n", + " french bistro\n", + " 36.136261\n", + " -115.151254\n", " \n", " \n", - " 183\n", - " heera india\n", - " 595 piedmont ave.\n", - " atlanta\n", - " indian\n", - " 33.770495\n", - " -84.381425\n", + " 154\n", + " montrachet\n", + " 3000 w. paradise rd.\n", + " las vegas\n", + " continental\n", + " 36.136261\n", + " -115.151254\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city type \\\n", - "182 heera india 595 piedmont ave. rio shopping mall atlanta asian \n", - "183 heera india 595 piedmont ave. atlanta indian \n", + " name addr city type \\\n", + "155 montrachet bistro 3000 paradise rd. las vegas french bistro \n", + "154 montrachet 3000 w. paradise rd. las vegas continental \n", "\n", - " lat lng \n", - "182 33.795817 -84.370602 \n", - "183 33.770495 -84.381425 " + " lat lng \n", + "155 36.136261 -115.151254 \n", + "154 36.136261 -115.151254 " ] }, "metadata": {}, @@ -4435,35 +4395,35 @@ " \n", " \n", " \n", - " 138\n", - " sign dove\n", - " 1110 3rd ave. at 65th st.\n", - " new york\n", - " american\n", - " 40.76564\n", - " -73.963968\n", + " 29\n", + " katsu\n", + " 1972 hillhurst ave.\n", + " los feliz\n", + " japanese\n", + " 34.107405\n", + " -118.28719\n", " \n", " \n", - " 139\n", - " sign dove\n", - " 1110 third ave.\n", - " new york city\n", - " american (new)\n", - " 40.76564\n", - " -73.963968\n", + " 28\n", + " restaurant katsu\n", + " 1972 n. hillhurst ave.\n", + " los angeles\n", + " asian\n", + " 34.107405\n", + " -118.28719\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city type \\\n", - "138 sign dove 1110 3rd ave. at 65th st. new york american \n", - "139 sign dove 1110 third ave. new york city american (new) \n", + " name addr city type \\\n", + "29 katsu 1972 hillhurst ave. los feliz japanese \n", + "28 restaurant katsu 1972 n. hillhurst ave. los angeles asian \n", "\n", " lat lng \n", - "138 40.76564 -73.963968 \n", - "139 40.76564 -73.963968 " + "29 34.107405 -118.28719 \n", + "28 34.107405 -118.28719 " ] }, "metadata": {}, @@ -4500,35 +4460,35 @@ " \n", " \n", " \n", - " 164\n", - " abruzzi\n", - " 2355 peachtree rd. peachtree battle shopping ...\n", - " atlanta\n", + " 37\n", + " locanda\n", + " w. third st.\n", + " st los angeles\n", " italian\n", - " 33.820137\n", - " -84.387280\n", + " 34.068958\n", + " -118.320928\n", " \n", " \n", - " 165\n", - " abruzzi\n", - " 2355 peachtree rd. ne\n", - " atlanta\n", + " 36\n", + " locanda veneta\n", + " 8638 w 3rd\n", + " st los angeles\n", " italian\n", - " 33.824647\n", - " -84.387453\n", + " 34.073417\n", + " -118.381096\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city \\\n", - "164 abruzzi 2355 peachtree rd. peachtree battle shopping ... atlanta \n", - "165 abruzzi 2355 peachtree rd. ne atlanta \n", + " name addr city type lat \\\n", + "37 locanda w. third st. st los angeles italian 34.068958 \n", + "36 locanda veneta 8638 w 3rd st los angeles italian 34.073417 \n", "\n", - " type lat lng \n", - "164 italian 33.820137 -84.387280 \n", - "165 italian 33.824647 -84.387453 " + " lng \n", + "37 -118.320928 \n", + "36 -118.381096 " ] }, "metadata": {}, @@ -4565,35 +4525,35 @@ " \n", " \n", " \n", - " 69\n", - " carmine\n", - " 2450 broadway between 90th and 91st sts.\n", - " new york\n", - " italian\n", - " 40.791096\n", - " -73.973991\n", - " \n", + " 183\n", + " heera india\n", + " 595 piedmont ave.\n", + " atlanta\n", + " indian\n", + " 33.770495\n", + " -84.381425\n", + " \n", " \n", - " 70\n", - " carmine\n", - " 2450 broadway\n", - " new york city\n", - " italian\n", - " 40.791096\n", - " -73.973991\n", + " 182\n", + " heera india\n", + " 595 piedmont ave. rio shopping mall\n", + " atlanta\n", + " asian\n", + " 33.795817\n", + " -84.370602\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city \\\n", - "69 carmine 2450 broadway between 90th and 91st sts. new york \n", - "70 carmine 2450 broadway new york city \n", + " name addr city type \\\n", + "183 heera india 595 piedmont ave. atlanta indian \n", + "182 heera india 595 piedmont ave. rio shopping mall atlanta asian \n", "\n", - " type lat lng \n", - "69 italian 40.791096 -73.973991 \n", - "70 italian 40.791096 -73.973991 " + " lat lng \n", + "183 33.770495 -84.381425 \n", + "182 33.795817 -84.370602 " ] }, "metadata": {}, @@ -4630,35 +4590,35 @@ " \n", " \n", " \n", - " 197\n", - " dining room ritz carlton buckhead\n", - " 3434 peachtree rd.\n", - " atlanta\n", - " international\n", - " 33.850807\n", - " -84.364227\n", + " 23\n", + " fenix at argyle\n", + " 8358 sunset blvd. west\n", + " hollywood\n", + " american\n", + " 34.095097\n", + " -118.371967\n", " \n", " \n", - " 198\n", - " ritz carlton dining room buckhead\n", - " 3434 peachtree rd. ne\n", - " atlanta\n", - " american (new)\n", - " 33.850807\n", - " -84.364227\n", + " 22\n", + " fenix at argyle\n", + " 8358 sunset blvd.\n", + " w. hollywood\n", + " french (new)\n", + " 34.095097\n", + " -118.371967\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city \\\n", - "197 dining room ritz carlton buckhead 3434 peachtree rd. atlanta \n", - "198 ritz carlton dining room buckhead 3434 peachtree rd. ne atlanta \n", + " name addr city type \\\n", + "23 fenix at argyle 8358 sunset blvd. west hollywood american \n", + "22 fenix at argyle 8358 sunset blvd. w. hollywood french (new) \n", "\n", - " type lat lng \n", - "197 international 33.850807 -84.364227 \n", - "198 american (new) 33.850807 -84.364227 " + " lat lng \n", + "23 34.095097 -118.371967 \n", + "22 34.095097 -118.371967 " ] }, "metadata": {}, @@ -4695,35 +4655,35 @@ " \n", " \n", " \n", - " 28\n", - " restaurant katsu\n", - " 1972 n. hillhurst ave.\n", - " los angeles\n", - " asian\n", - " 34.107405\n", - " -118.28719\n", + " 137\n", + " shun lee palace\n", + " 155 e. 55th st.\n", + " new york city\n", + " chinese\n", + " 40.759428\n", + " -73.969068\n", " \n", " \n", - " 29\n", - " katsu\n", - " 1972 hillhurst ave.\n", - " los feliz\n", - " japanese\n", - " 34.107405\n", - " -118.28719\n", + " 136\n", + " shun lee west\n", + " 43 w. 65th st.\n", + " new york\n", + " asian\n", + " 40.772900\n", + " -73.981348\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city type \\\n", - "28 restaurant katsu 1972 n. hillhurst ave. los angeles asian \n", - "29 katsu 1972 hillhurst ave. los feliz japanese \n", + " name addr city type lat \\\n", + "137 shun lee palace 155 e. 55th st. new york city chinese 40.759428 \n", + "136 shun lee west 43 w. 65th st. new york asian 40.772900 \n", "\n", - " lat lng \n", - "28 34.107405 -118.28719 \n", - "29 34.107405 -118.28719 " + " lng \n", + "137 -73.969068 \n", + "136 -73.981348 " ] }, "metadata": {}, @@ -4760,35 +4720,35 @@ " \n", " \n", " \n", - " 36\n", - " locanda veneta\n", - " 8638 w 3rd\n", - " st los angeles\n", - " italian\n", - " 34.073417\n", - " -118.381096\n", + " 169\n", + " bone restaurant\n", + " 3130 piedmont rd. ne\n", + " atlanta\n", + " steakhouses\n", + " 33.842103\n", + " -84.371103\n", " \n", " \n", - " 37\n", - " locanda\n", - " w. third st.\n", - " st los angeles\n", - " italian\n", - " 34.068958\n", - " -118.320928\n", + " 168\n", + " bone\n", + " 3130 piedmont road\n", + " atlanta\n", + " american\n", + " 33.842103\n", + " -84.371103\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city type lat \\\n", - "36 locanda veneta 8638 w 3rd st los angeles italian 34.073417 \n", - "37 locanda w. third st. st los angeles italian 34.068958 \n", + " name addr city type lat \\\n", + "169 bone restaurant 3130 piedmont rd. ne atlanta steakhouses 33.842103 \n", + "168 bone 3130 piedmont road atlanta american 33.842103 \n", "\n", " lng \n", - "36 -118.381096 \n", - "37 -118.320928 " + "169 -84.371103 \n", + "168 -84.371103 " ] }, "metadata": {}, @@ -4825,35 +4785,35 @@ " \n", " \n", " \n", - " 168\n", - " bone\n", - " 3130 piedmont road\n", + " 194\n", + " pano paul\n", + " 1232 west paces ferry rd nw\n", " atlanta\n", - " american\n", - " 33.842103\n", - " -84.371103\n", + " american (new)\n", + " 33.849291\n", + " -84.428089\n", " \n", " \n", - " 169\n", - " bone restaurant\n", - " 3130 piedmont rd. ne\n", + " 193\n", + " pano paul\n", + " 1232 w. paces ferry rd.\n", " atlanta\n", - " steakhouses\n", - " 33.842103\n", - " -84.371103\n", + " american (new)\n", + " 33.849291\n", + " -84.428089\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city type lat \\\n", - "168 bone 3130 piedmont road atlanta american 33.842103 \n", - "169 bone restaurant 3130 piedmont rd. ne atlanta steakhouses 33.842103 \n", + " name addr city type \\\n", + "194 pano paul 1232 west paces ferry rd nw atlanta american (new) \n", + "193 pano paul 1232 w. paces ferry rd. atlanta american (new) \n", "\n", - " lng \n", - "168 -84.371103 \n", - "169 -84.371103 " + " lat lng \n", + "194 33.849291 -84.428089 \n", + "193 33.849291 -84.428089 " ] }, "metadata": {}, @@ -5352,7 +5312,7 @@ " None\n", " 34.068958\n", " -118.320928\n", - " (3rd street, 3rd saint, 3 street, 3 saint)\n", + " (3rd saint, 3 street, 3rd street, 3 saint)\n", " \n", " \n", " 1\n", @@ -5364,7 +5324,7 @@ " 90048\n", " 34.073417\n", " -118.381096\n", - " (8638 w 3 street, 8638 west 3rd street, 8638 w...\n", + " (8638 w 3rd street, 8638 west 3rd saint, 8638 ...\n", " \n", " \n", " 2\n", @@ -5376,7 +5336,7 @@ " None\n", " NaN\n", " NaN\n", - " (8638 w 3 street, 8638 west 3rd street, 8638 w...\n", + " (8638 w 3rd street, 8638 west 3rd saint, 8638 ...\n", " \n", " \n", " 3\n", @@ -5388,7 +5348,7 @@ " 10024\n", " 40.785981\n", " -73.976727\n", - " (201 west 83 saint, 201 west 83rd saint, 201 w...\n", + " (201 west 83rd street, 201 w 83rd street, 201 ...\n", " \n", " \n", " 4\n", @@ -5400,7 +5360,7 @@ " 10024\n", " 40.785981\n", " -73.976727\n", - " (201 west 83 saint, 201 west 83rd saint, 201 w...\n", + " (201 west 83rd street, 201 w 83rd street, 201 ...\n", " \n", " \n", "\n", @@ -5422,11 +5382,11 @@ "4 10024 40.785981 -73.976727 \n", "\n", " addr_variations \n", - "0 (3rd street, 3rd saint, 3 street, 3 saint) \n", - "1 (8638 w 3 street, 8638 west 3rd street, 8638 w... \n", - "2 (8638 w 3 street, 8638 west 3rd street, 8638 w... \n", - "3 (201 west 83 saint, 201 west 83rd saint, 201 w... \n", - "4 (201 west 83 saint, 201 west 83rd saint, 201 w... " + "0 (3rd saint, 3 street, 3rd street, 3 saint) \n", + "1 (8638 w 3rd street, 8638 west 3rd saint, 8638 ... \n", + "2 (8638 w 3rd street, 8638 west 3rd saint, 8638 ... \n", + "3 (201 west 83rd street, 201 w 83rd street, 201 ... \n", + "4 (201 west 83rd street, 201 w 83rd street, 201 ... " ] }, "execution_count": 51, @@ -5461,7 +5421,15 @@ "slide_type": "slide" } }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WARNING:recordlinkage:indexing - performance warning - A full index can result in large number of record pairs.\n" + ] + } + ], "source": [ "all_training_index = rl.FullIndex().index(df_training)\n", "matches_training_index = rl.BlockIndex('cluster').index(df_training)\n", @@ -5570,15 +5538,6 @@ " \n", " \n", " \n", - " 643\n", - " stars\n", - " 150 redwood alley\n", - " san francisco\n", - " american\n", - " 37.780894\n", - " -122.419481\n", - " \n", - " \n", " 644\n", " stars cafe\n", " 500 van ness ave.\n", @@ -5587,18 +5546,27 @@ " 37.780298\n", " -122.420002\n", " \n", + " \n", + " 643\n", + " stars\n", + " 150 redwood alley\n", + " san francisco\n", + " american\n", + " 37.780894\n", + " -122.419481\n", + " \n", " \n", "\n", "" ], "text/plain": [ " name addr city type lat \\\n", - "643 stars 150 redwood alley san francisco american 37.780894 \n", "644 stars cafe 500 van ness ave. san francisco american 37.780298 \n", + "643 stars 150 redwood alley san francisco american 37.780894 \n", "\n", " lng \n", - "643 -122.419481 \n", - "644 -122.420002 " + "644 -122.420002 \n", + "643 -122.419481 " ] }, "metadata": {}, @@ -5669,20 +5637,20 @@ " \n", " \n", " \n", - " 40\n", - " palm\n", + " 41\n", + " palm los angeles\n", " 9001 santa monica blvd.\n", - " los angeles\n", - " american\n", + " w. hollywood\n", + " steakhouses\n", " 34.083064\n", " -118.387282\n", " \n", " \n", - " 41\n", - " palm los angeles\n", + " 40\n", + " palm\n", " 9001 santa monica blvd.\n", - " w. hollywood\n", - " steakhouses\n", + " los angeles\n", + " american\n", " 34.083064\n", " -118.387282\n", " \n", @@ -5692,12 +5660,12 @@ ], "text/plain": [ " name addr city type \\\n", - "40 palm 9001 santa monica blvd. los angeles american \n", "41 palm los angeles 9001 santa monica blvd. w. hollywood steakhouses \n", + "40 palm 9001 santa monica blvd. los angeles american \n", "\n", " lat lng \n", - "40 34.083064 -118.387282 \n", - "41 34.083064 -118.387282 " + "41 34.083064 -118.387282 \n", + "40 34.083064 -118.387282 " ] }, "metadata": {}, @@ -5734,8 +5702,8 @@ " \n", " \n", " \n", - " 6\n", - " hotel bel air\n", + " 7\n", + " bel air hotel\n", " 701 stone canyon rd.\n", " bel air\n", " californian\n", @@ -5743,8 +5711,8 @@ " -118.446351\n", " \n", " \n", - " 7\n", - " bel air hotel\n", + " 6\n", + " hotel bel air\n", " 701 stone canyon rd.\n", " bel air\n", " californian\n", @@ -5757,12 +5725,12 @@ ], "text/plain": [ " name addr city type lat \\\n", - "6 hotel bel air 701 stone canyon rd. bel air californian 34.086594 \n", "7 bel air hotel 701 stone canyon rd. bel air californian 34.086594 \n", + "6 hotel bel air 701 stone canyon rd. bel air californian 34.086594 \n", "\n", " lng \n", - "6 -118.446351 \n", - "7 -118.446351 " + "7 -118.446351 \n", + "6 -118.446351 " ] }, "metadata": {}, @@ -6518,9 +6486,9 @@ "svm_false_positives total: 5\n", "svm_false_negatives total: 26\n", "\n", - "dedupe_true_positives total: 141\n", - "dedupe_false_positives total: 7\n", - "dedupe_false_negatives total: 9\n" + "dedupe_true_positives total: 0\n", + "dedupe_false_positives total: 148\n", + "dedupe_false_negatives total: 150\n" ] } ], @@ -6596,13 +6564,13 @@ "name": "stdout", "output_type": "stream", "text": [ - "dedupe_true_positives total: 141\n", - "dedupe_false_positives total: 7\n", - "dedupe_false_negatives total: 9\n", + "dedupe_true_positives total: 0\n", + "dedupe_false_positives total: 148\n", + "dedupe_false_negatives total: 150\n", "\n", - "dedupe_low_recall_true_positives total: 137\n", - "dedupe_low_recall_false_positives total: 1\n", - "dedupe_low_recall_false_negatives total: 13\n" + "dedupe_low_recall_true_positives total: 0\n", + "dedupe_low_recall_false_positives total: 138\n", + "dedupe_low_recall_false_negatives total: 150\n" ] } ], @@ -6690,36 +6658,36 @@ " \n", " \n", " \n", - " 337\n", - " caffe lure\n", - " 169 sullivan st. between houston and bleecker...\n", - " new york\n", + " 170\n", + " brasserie coze\n", + " 3393 peachtree rd. lenox square mall near ne...\n", + " atlanta\n", " french\n", - " 40.727928\n", - " -74.000985\n", + " 33.846181\n", + " -84.364109\n", " \n", " \n", - " 338\n", - " caffe reggio\n", - " 119 macdougal st. between 3rd and bleecker sts.\n", - " new york\n", - " coffee bar\n", - " 40.730308\n", - " -74.000371\n", + " 171\n", + " brasserie coze\n", + " 3393 peachtree rd.\n", + " atlanta\n", + " french bistro\n", + " 33.846869\n", + " -84.362512\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr \\\n", - "337 caffe lure 169 sullivan st. between houston and bleecker... \n", - "338 caffe reggio 119 macdougal st. between 3rd and bleecker sts. \n", + " name addr \\\n", + "170 brasserie coze 3393 peachtree rd. lenox square mall near ne... \n", + "171 brasserie coze 3393 peachtree rd. \n", "\n", - " city type lat lng \n", - "337 new york french 40.727928 -74.000985 \n", - "338 new york coffee bar 40.730308 -74.000371 " - ] + " city type lat lng \n", + "170 atlanta french 33.846181 -84.364109 \n", + "171 atlanta french bistro 33.846869 -84.362512 " + ] }, "metadata": {}, "output_type": "display_data" @@ -6755,35 +6723,35 @@ " \n", " \n", " \n", - " 762\n", - " palm\n", - " 837 second ave.\n", - " new york city\n", - " steakhouses\n", - " 40.751701\n", - " -73.971180\n", + " 156\n", + " palace court\n", + " 3570 las vegas blvd. s\n", + " las vegas\n", + " continental\n", + " 36.116156\n", + " -115.175058\n", " \n", " \n", - " 763\n", - " palm too\n", - " 840 second ave.\n", - " new york city\n", - " steakhouses\n", - " 40.751467\n", - " -73.970686\n", + " 157\n", + " palace court\n", + " 3570 las vegas blvd. s.\n", + " las vegas\n", + " french (new)\n", + " 36.116156\n", + " -115.175058\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city type lat \\\n", - "762 palm 837 second ave. new york city steakhouses 40.751701 \n", - "763 palm too 840 second ave. new york city steakhouses 40.751467 \n", + " name addr city type \\\n", + "156 palace court 3570 las vegas blvd. s las vegas continental \n", + "157 palace court 3570 las vegas blvd. s. las vegas french (new) \n", "\n", - " lng \n", - "762 -73.971180 \n", - "763 -73.970686 " + " lat lng \n", + "156 36.116156 -115.175058 \n", + "157 36.116156 -115.175058 " ] }, "metadata": {}, @@ -6820,35 +6788,35 @@ " \n", " \n", " \n", - " 196\n", - " ritz carlton cafe buckhead\n", - " 3434 peachtree rd. ne\n", + " 164\n", + " abruzzi\n", + " 2355 peachtree rd. peachtree battle shopping ...\n", " atlanta\n", - " american (new)\n", - " 33.850807\n", - " -84.364227\n", + " italian\n", + " 33.820137\n", + " -84.387280\n", " \n", " \n", - " 198\n", - " ritz carlton dining room buckhead\n", - " 3434 peachtree rd. ne\n", + " 165\n", + " abruzzi\n", + " 2355 peachtree rd. ne\n", " atlanta\n", - " american (new)\n", - " 33.850807\n", - " -84.364227\n", + " italian\n", + " 33.824647\n", + " -84.387453\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city \\\n", - "196 ritz carlton cafe buckhead 3434 peachtree rd. ne atlanta \n", - "198 ritz carlton dining room buckhead 3434 peachtree rd. ne atlanta \n", + " name addr city \\\n", + "164 abruzzi 2355 peachtree rd. peachtree battle shopping ... atlanta \n", + "165 abruzzi 2355 peachtree rd. ne atlanta \n", "\n", - " type lat lng \n", - "196 american (new) 33.850807 -84.364227 \n", - "198 american (new) 33.850807 -84.364227 " + " type lat lng \n", + "164 italian 33.820137 -84.387280 \n", + "165 italian 33.824647 -84.387453 " ] }, "metadata": {}, @@ -6885,35 +6853,35 @@ " \n", " \n", " \n", - " 335\n", - " caffe dante\n", - " 81 macdougal st. between houston and bleeker ...\n", - " new york\n", - " coffee bar\n", - " 40.728878\n", - " -74.001662\n", + " 40\n", + " palm\n", + " 9001 santa monica blvd.\n", + " los angeles\n", + " american\n", + " 34.083064\n", + " -118.387282\n", " \n", " \n", - " 338\n", - " caffe reggio\n", - " 119 macdougal st. between 3rd and bleecker sts.\n", - " new york\n", - " coffee bar\n", - " 40.730308\n", - " -74.000371\n", + " 41\n", + " palm los angeles\n", + " 9001 santa monica blvd.\n", + " w. hollywood\n", + " steakhouses\n", + " 34.083064\n", + " -118.387282\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr \\\n", - "335 caffe dante 81 macdougal st. between houston and bleeker ... \n", - "338 caffe reggio 119 macdougal st. between 3rd and bleecker sts. \n", + " name addr city type \\\n", + "40 palm 9001 santa monica blvd. los angeles american \n", + "41 palm los angeles 9001 santa monica blvd. w. hollywood steakhouses \n", "\n", - " city type lat lng \n", - "335 new york coffee bar 40.728878 -74.001662 \n", - "338 new york coffee bar 40.730308 -74.000371 " + " lat lng \n", + "40 34.083064 -118.387282 \n", + "41 34.083064 -118.387282 " ] }, "metadata": {}, @@ -6950,35 +6918,35 @@ " \n", " \n", " \n", - " 195\n", - " cafe ritz carlton buckhead\n", - " 3434 peachtree rd.\n", - " atlanta\n", - " ext 6108 international\n", - " 33.850807\n", - " -84.364227\n", + " 18\n", + " citrus\n", + " 6703 melrose ave.\n", + " los angeles\n", + " californian\n", + " 34.083708\n", + " -118.33994\n", " \n", " \n", - " 198\n", - " ritz carlton dining room buckhead\n", - " 3434 peachtree rd. ne\n", - " atlanta\n", - " american (new)\n", - " 33.850807\n", - " -84.364227\n", + " 19\n", + " citrus\n", + " 6703 melrose avenue\n", + " los angeles\n", + " american\n", + " 34.083708\n", + " -118.33994\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city \\\n", - "195 cafe ritz carlton buckhead 3434 peachtree rd. atlanta \n", - "198 ritz carlton dining room buckhead 3434 peachtree rd. ne atlanta \n", + " name addr city type lat \\\n", + "18 citrus 6703 melrose ave. los angeles californian 34.083708 \n", + "19 citrus 6703 melrose avenue los angeles american 34.083708 \n", "\n", - " type lat lng \n", - "195 ext 6108 international 33.850807 -84.364227 \n", - "198 american (new) 33.850807 -84.364227 " + " lng \n", + "18 -118.33994 \n", + "19 -118.33994 " ] }, "metadata": {}, @@ -7015,35 +6983,35 @@ " \n", " \n", " \n", - " 200\n", - " ritz carlton restaurant\n", - " 181 peachtree st.\n", - " atlanta\n", - " french (classic)\n", - " 33.758579\n", - " -84.387066\n", + " 34\n", + " locanda veneta\n", + " 3rd st.\n", + " los angeles\n", + " italian\n", + " 34.068958\n", + " -118.320928\n", " \n", " \n", - " 839\n", - " ritz carlton cafe atlanta\n", - " 181 peachtree st.\n", - " atlanta\n", - " american (new)\n", - " 33.758579\n", - " -84.387066\n", + " 35\n", + " locanda veneta\n", + " 8638 w. third st.\n", + " los angeles\n", + " italian\n", + " 34.073417\n", + " -118.381096\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city type \\\n", - "200 ritz carlton restaurant 181 peachtree st. atlanta french (classic) \n", - "839 ritz carlton cafe atlanta 181 peachtree st. atlanta american (new) \n", + " name addr city type lat \\\n", + "34 locanda veneta 3rd st. los angeles italian 34.068958 \n", + "35 locanda veneta 8638 w. third st. los angeles italian 34.073417 \n", "\n", - " lat lng \n", - "200 33.758579 -84.387066 \n", - "839 33.758579 -84.387066 " + " lng \n", + "34 -118.320928 \n", + "35 -118.381096 " ] }, "metadata": {}, @@ -7080,76 +7048,18246 @@ " \n", " \n", " \n", - " 335\n", - " caffe dante\n", - " 81 macdougal st. between houston and bleeker ...\n", + " 83\n", + " gotham bar grill\n", + " 12 e. 12th st.\n", " new york\n", - " coffee bar\n", - " 40.728878\n", - " -74.001662\n", + " american\n", + " 40.734207\n", + " -73.993699\n", " \n", " \n", - " 337\n", - " caffe lure\n", - " 169 sullivan st. between houston and bleecker...\n", + " 86\n", + " gotham\n", + " 12 e 12th st\n", " new york\n", - " french\n", - " 40.727928\n", - " -74.000985\n", + " new american\n", + " 40.734207\n", + " -73.993699\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city \\\n", - "335 caffe dante 81 macdougal st. between houston and bleeker ... new york \n", - "337 caffe lure 169 sullivan st. between houston and bleecker... new york \n", + " name addr city type lat \\\n", + "83 gotham bar grill 12 e. 12th st. new york american 40.734207 \n", + "86 gotham 12 e 12th st new york new american 40.734207 \n", "\n", - " type lat lng \n", - "335 coffee bar 40.728878 -74.001662 \n", - "337 french 40.727928 -74.000985 " + " lng \n", + "83 -73.993699 \n", + "86 -73.993699 " ] }, "metadata": {}, "output_type": "display_data" - } - ], - "source": [ - "print(\"Dedupe false positives\")\n", - "for false_positive_pair in list(dedupe_false_positives):\n", - " display(df.loc[list(false_positive_pair)][['name', 'addr', 'city', 'type', 'lat', 'lng']])" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "The deduper is confused by \"caffe\"s that are located near each other. \"caffe\" could be a stopword? Or even better, we could incorporate some logic for **name rarity**: if the token isn't rare, like \"caffe\", it should contributte less with the name similarity than a rarer token like \"reggio\". It's possible to do that with [an interaction with name frequency](https://github.com/dedupeio/dedupe/issues/392).\n", - "\n", - "Or maybe the deduper could have learned a more restrictive name blocking? Or the classifier should have put less weight on name? It's difficult to guess, because those things could have introduced more **false negatives** too. What about them?" - ] - }, - { - "cell_type": "code", - "execution_count": 71, - "metadata": { - "scrolled": true, - "slideshow": { - "slide_type": "slide" - } - }, - "outputs": [ + }, { - "name": "stdout", - "output_type": "stream", - "text": [ - "Dedupe false negatives\n" - ] + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
110mesa grill102 5th ave. between 15th and 16th sts.new yorkamerican40.737045-73.993119
111mesa grill102 fifth ave.new york citysouthwestern40.737045-73.993119
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "110 mesa grill 102 5th ave. between 15th and 16th sts. new york \n", + "111 mesa grill 102 fifth ave. new york city \n", + "\n", + " type lat lng \n", + "110 american 40.737045 -73.993119 \n", + "111 southwestern 40.737045 -73.993119 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
146union square cafe21 e. 16th st.new yorkamerican40.736865-73.991262
147union square cafe21 e. 16th st.new york cityamerican (new)40.736865-73.991262
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "146 union square cafe 21 e. 16th st. new york american \n", + "147 union square cafe 21 e. 16th st. new york city american (new) \n", + "\n", + " lat lng \n", + "146 40.736865 -73.991262 \n", + "147 40.736865 -73.991262 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
162tillerman2245 e. flamingo rd.las vegasseafood36.114384-115.121894
163tillerman2245 e. flamingo rd.las vegassteakhouses36.114384-115.121894
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "162 tillerman 2245 e. flamingo rd. las vegas seafood 36.114384 \n", + "163 tillerman 2245 e. flamingo rd. las vegas steakhouses 36.114384 \n", + "\n", + " lng \n", + "162 -115.121894 \n", + "163 -115.121894 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
223khan toke thai house5937 geary blvd.san franciscoasian37.780077-122.483303
224khan toke thai house5937 geary blvd.san franciscothai37.780077-122.483303
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "223 khan toke thai house 5937 geary blvd. san francisco asian 37.780077 \n", + "224 khan toke thai house 5937 geary blvd. san francisco thai 37.780077 \n", + "\n", + " lng \n", + "223 -122.483303 \n", + "224 -122.483303 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
144uncle nick747 9th ave. between 50th and 51st sts.new yorkmediterranean40.763835-73.988912
145uncle nick747 ninth ave.new york citygreek40.763878-73.988994
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "144 uncle nick 747 9th ave. between 50th and 51st sts. new york \n", + "145 uncle nick 747 ninth ave. new york city \n", + "\n", + " type lat lng \n", + "144 mediterranean 40.763835 -73.988912 \n", + "145 greek 40.763878 -73.988994 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
160steak house2880 las vegas blvd. slas vegassteak houses36.137642-115.165386
161steak house2880 las vegas blvd. s.las vegassteakhouses36.137642-115.165386
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "160 steak house 2880 las vegas blvd. s las vegas steak houses 36.137642 \n", + "161 steak house 2880 las vegas blvd. s. las vegas steakhouses 36.137642 \n", + "\n", + " lng \n", + "160 -115.165386 \n", + "161 -115.165386 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
122picholine35 w. 64th st.new yorkmediterranean40.772018-73.981097
123picholine35 w. 64th st.new york citymediterranean40.772018-73.981097
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "122 picholine 35 w. 64th st. new york mediterranean 40.772018 \n", + "123 picholine 35 w. 64th st. new york city mediterranean 40.772018 \n", + "\n", + " lng \n", + "122 -73.981097 \n", + "123 -73.981097 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
134seryna11 e. 53rd st.new yorkasian40.760055-73.97456
135seryna11 e. 53rd st.new york cityjapanese40.760055-73.97456
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "134 seryna 11 e. 53rd st. new york asian 40.760055 -73.97456\n", + "135 seryna 11 e. 53rd st. new york city japanese 40.760055 -73.97456" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
762palm837 second ave.new york citysteakhouses40.751701-73.971180
763palm too840 second ave.new york citysteakhouses40.751467-73.970686
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "762 palm 837 second ave. new york city steakhouses 40.751701 \n", + "763 palm too 840 second ave. new york city steakhouses 40.751467 \n", + "\n", + " lng \n", + "762 -73.971180 \n", + "763 -73.970686 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
84gotham bar grill12 e. 12th st.new york cityamerican (new)40.734207-73.993699
85gotham bar grill12 e 12th stnew york citynew american40.734207-73.993699
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "84 gotham bar grill 12 e. 12th st. new york city american (new) \n", + "85 gotham bar grill 12 e 12th st new york city new american \n", + "\n", + " lat lng \n", + "84 40.734207 -73.993699 \n", + "85 40.734207 -73.993699 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
172buckhead diner3073 piedmont roadatlantaamerican33.839406-84.368704
173buckhead diner3073 piedmont rd.atlantaamerican (new)33.839406-84.368704
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "172 buckhead diner 3073 piedmont road atlanta american 33.839406 \n", + "173 buckhead diner 3073 piedmont rd. atlanta american (new) 33.839406 \n", + "\n", + " lng \n", + "172 -84.368704 \n", + "173 -84.368704 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
180hedgerose heights inn490 e. paces ferry rd.atlantainternational33.838769-84.371907
181hedgerose heights inn490 e. paces ferry rd. neatlantacontinental33.838769-84.371907
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "180 hedgerose heights inn 490 e. paces ferry rd. atlanta international \n", + "181 hedgerose heights inn 490 e. paces ferry rd. ne atlanta continental \n", + "\n", + " lat lng \n", + "180 33.838769 -84.371907 \n", + "181 33.838769 -84.371907 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
35locanda veneta8638 w. third st.los angelesitalian34.073417-118.381096
36locanda veneta8638 w 3rdst los angelesitalian34.073417-118.381096
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "35 locanda veneta 8638 w. third st. los angeles italian 34.073417 \n", + "36 locanda veneta 8638 w 3rd st los angeles italian 34.073417 \n", + "\n", + " lng \n", + "35 -118.381096 \n", + "36 -118.381096 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
34locanda veneta3rd st.los angelesitalian34.068958-118.320928
36locanda veneta8638 w 3rdst los angelesitalian34.073417-118.381096
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "34 locanda veneta 3rd st. los angeles italian 34.068958 -118.320928\n", + "36 locanda veneta 8638 w 3rd st los angeles italian 34.073417 -118.381096" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
83gotham bar grill12 e. 12th st.new yorkamerican40.734207-73.993699
85gotham bar grill12 e 12th stnew york citynew american40.734207-73.993699
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "83 gotham bar grill 12 e. 12th st. new york american 40.734207 \n", + "85 gotham bar grill 12 e 12th st new york city new american 40.734207 \n", + "\n", + " lng \n", + "83 -73.993699 \n", + "85 -73.993699 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
4art deli12224 ventura blvd.studio citydelis34.142966-118.399469
5art deli12224 ventura blvd.los angelesdelis34.142966-118.399469
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "4 art deli 12224 ventura blvd. studio city delis 34.142966 -118.399469\n", + "5 art deli 12224 ventura blvd. los angeles delis 34.142966 -118.399469" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
176delectables1 margaret mitchell sq.atlantaamerican33.833739-84.435801
177delectables1 margaret mitchell sq.atlantacafeterias33.833739-84.435801
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "176 delectables 1 margaret mitchell sq. atlanta american 33.833739 \n", + "177 delectables 1 margaret mitchell sq. atlanta cafeterias 33.833739 \n", + "\n", + " lng \n", + "176 -84.435801 \n", + "177 -84.435801 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
114montrachet239 w. broadway between walker and white sts.new yorkfrench40.719560-74.005749
115montrachet239 w. broadwaynew york cityfrench bistro40.719467-74.005752
\n", + "
" + ], + "text/plain": [ + " name addr \\\n", + "114 montrachet 239 w. broadway between walker and white sts. \n", + "115 montrachet 239 w. broadway \n", + "\n", + " city type lat lng \n", + "114 new york french 40.719560 -74.005749 \n", + "115 new york city french bistro 40.719467 -74.005752 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
142tavern greenin central park at 67th st.new yorkamerican40.773040-73.978294
143tavern greencentral park westnew york cityamerican (new)40.784858-73.969652
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "142 tavern green in central park at 67th st. new york american \n", + "143 tavern green central park west new york city american (new) \n", + "\n", + " lat lng \n", + "142 40.773040 -73.978294 \n", + "143 40.784858 -73.969652 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
55valentino3115 pico blvd.santa monicaitalian34.026233-118.457061
56valentino3115 pico blvd.santa monicaitalian34.026233-118.457061
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "55 valentino 3115 pico blvd. santa monica italian 34.026233 -118.457061\n", + "56 valentino 3115 pico blvd. santa monica italian 34.026233 -118.457061" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
235postrio545 post st.san franciscoamerican37.78783-122.410756
236postrio545 post st.san franciscocalifornian37.78783-122.410756
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "235 postrio 545 post st. san francisco american 37.78783 -122.410756\n", + "236 postrio 545 post st. san francisco californian 37.78783 -122.410756" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
0arnie morton chicago435 s. la cienega blv.los angelesamerican34.070609-118.376722
1arnie morton chicago435 s. la cienega blvd.los angelessteakhouses34.070609-118.376722
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "0 arnie morton chicago 435 s. la cienega blv. los angeles american \n", + "1 arnie morton chicago 435 s. la cienega blvd. los angeles steakhouses \n", + "\n", + " lat lng \n", + "0 34.070609 -118.376722 \n", + "1 34.070609 -118.376722 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
17citrus6703 melrose ave.los angelescalifornian34.083708-118.33994
18citrus6703 melrose ave.los angelescalifornian34.083708-118.33994
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "17 citrus 6703 melrose ave. los angeles californian 34.083708 -118.33994\n", + "18 citrus 6703 melrose ave. los angeles californian 34.083708 -118.33994" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
196ritz carlton cafe buckhead3434 peachtree rd. neatlantaamerican (new)33.850807-84.364227
198ritz carlton dining room buckhead3434 peachtree rd. neatlantaamerican (new)33.850807-84.364227
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "196 ritz carlton cafe buckhead 3434 peachtree rd. ne atlanta \n", + "198 ritz carlton dining room buckhead 3434 peachtree rd. ne atlanta \n", + "\n", + " type lat lng \n", + "196 american (new) 33.850807 -84.364227 \n", + "198 american (new) 33.850807 -84.364227 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
207aqua252 california st.san franciscoseafood37.793461-122.399642
208aqua252 california st.san franciscoamerican (new)37.793461-122.399642
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "207 aqua 252 california st. san francisco seafood 37.793461 \n", + "208 aqua 252 california st. san francisco american (new) 37.793461 \n", + "\n", + " lng \n", + "207 -122.399642 \n", + "208 -122.399642 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
67cafe des artistes1 w. 67th st.new yorkcontinental40.773502-73.978926
68cafe des artistes1 w. 67th st.new york cityfrench (classic)40.773502-73.978926
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "67 cafe des artistes 1 w. 67th st. new york continental \n", + "68 cafe des artistes 1 w. 67th st. new york city french (classic) \n", + "\n", + " lat lng \n", + "67 40.773502 -73.978926 \n", + "68 40.773502 -73.978926 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
7bel air hotel701 stone canyon rd.bel aircalifornian34.086594-118.446351
8bel air701 stone canyon roadbel airamerican34.086594-118.446351
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "7 bel air hotel 701 stone canyon rd. bel air californian 34.086594 \n", + "8 bel air 701 stone canyon road bel air american 34.086594 \n", + "\n", + " lng \n", + "7 -118.446351 \n", + "8 -118.446351 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
192pano paul1232 w. paces ferry rd.atlantainternational33.849291-84.428089
194pano paul1232 west paces ferry rd nwatlantaamerican (new)33.849291-84.428089
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "192 pano paul 1232 w. paces ferry rd. atlanta international \n", + "194 pano paul 1232 west paces ferry rd nw atlanta american (new) \n", + "\n", + " lat lng \n", + "192 33.849291 -84.428089 \n", + "194 33.849291 -84.428089 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
15chinois main2709 main st.santa monicafrench34.000939-118.482058
16chinois main2709 main st.santa monicapacific new wave34.000939-118.482058
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "15 chinois main 2709 main st. santa monica french 34.000939 \n", + "16 chinois main 2709 main st. santa monica pacific new wave 34.000939 \n", + "\n", + " lng \n", + "15 -118.482058 \n", + "16 -118.482058 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
48pinot bistro12969 ventura blvd.los angelesfrench34.14572-118.416079
50pinot bistro12969 ventura boulevardstudio citybistro34.14572-118.416079
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "48 pinot bistro 12969 ventura blvd. los angeles french 34.14572 \n", + "50 pinot bistro 12969 ventura boulevard studio city bistro 34.14572 \n", + "\n", + " lng \n", + "48 -118.416079 \n", + "50 -118.416079 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
22fenix at argyle8358 sunset blvd.w. hollywoodfrench (new)34.095097-118.371967
23fenix at argyle8358 sunset blvd. westhollywoodamerican34.095097-118.371967
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "22 fenix at argyle 8358 sunset blvd. w. hollywood french (new) \n", + "23 fenix at argyle 8358 sunset blvd. west hollywood american \n", + "\n", + " lat lng \n", + "22 34.095097 -118.371967 \n", + "23 34.095097 -118.371967 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
106manhattan ocean club57 w. 58th st.new yorkseafood40.764963-73.976181
107manhattan ocean club57 w. 58th st.new york cityseafood40.764963-73.976181
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "106 manhattan ocean club 57 w. 58th st. new york seafood 40.764963 \n", + "107 manhattan ocean club 57 w. 58th st. new york city seafood 40.764963 \n", + "\n", + " lng \n", + "106 -73.976181 \n", + "107 -73.976181 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
150chin3200 las vegas blvd. slas vegasasian36.127524-115.1715
151chin3200 las vegas blvd. s.las vegaschinese36.127524-115.1715
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "150 chin 3200 las vegas blvd. s las vegas asian 36.127524 -115.1715\n", + "151 chin 3200 las vegas blvd. s. las vegas chinese 36.127524 -115.1715" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
69carmine2450 broadway between 90th and 91st sts.new yorkitalian40.791096-73.973991
70carmine2450 broadwaynew york cityitalian40.791096-73.973991
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "69 carmine 2450 broadway between 90th and 91st sts. new york \n", + "70 carmine 2450 broadway new york city \n", + "\n", + " type lat lng \n", + "69 italian 40.791096 -73.973991 \n", + "70 italian 40.791096 -73.973991 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
65cafe lalo201 w. 83rd st.new yorkcoffee bar40.785981-73.976727
66cafe lalo201 w. 83rd st.new york citycoffeehouses40.785981-73.976727
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "65 cafe lalo 201 w. 83rd st. new york coffee bar 40.785981 \n", + "66 cafe lalo 201 w. 83rd st. new york city coffeehouses 40.785981 \n", + "\n", + " lng \n", + "65 -73.976727 \n", + "66 -73.976727 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
193pano paul1232 w. paces ferry rd.atlantaamerican (new)33.849291-84.428089
194pano paul1232 west paces ferry rd nwatlantaamerican (new)33.849291-84.428089
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "193 pano paul 1232 w. paces ferry rd. atlanta american (new) \n", + "194 pano paul 1232 west paces ferry rd nw atlanta american (new) \n", + "\n", + " lat lng \n", + "193 33.849291 -84.428089 \n", + "194 33.849291 -84.428089 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
20fenix8358 sunset blvd. westhollywoodamerican34.095097-118.371967
21fenix8358 sunset blvd.w. hollywoodfrench (new)34.095097-118.371967
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "20 fenix 8358 sunset blvd. west hollywood american 34.095097 \n", + "21 fenix 8358 sunset blvd. w. hollywood french (new) 34.095097 \n", + "\n", + " lng \n", + "20 -118.371967 \n", + "21 -118.371967 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
40palm9001 santa monica blvd.los angelesamerican34.083064-118.387282
42palm los angeles9001 sta monica boulevardhollywoodsteakhouses34.083064-118.387282
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "40 palm 9001 santa monica blvd. los angeles american \n", + "42 palm los angeles 9001 sta monica boulevard hollywood steakhouses \n", + "\n", + " lat lng \n", + "40 34.083064 -118.387282 \n", + "42 34.083064 -118.387282 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
195cafe ritz carlton buckhead3434 peachtree rd.atlantaext 6108 international33.850807-84.364227
198ritz carlton dining room buckhead3434 peachtree rd. neatlantaamerican (new)33.850807-84.364227
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "195 cafe ritz carlton buckhead 3434 peachtree rd. atlanta \n", + "198 ritz carlton dining room buckhead 3434 peachtree rd. ne atlanta \n", + "\n", + " type lat lng \n", + "195 ext 6108 international 33.850807 -84.364227 \n", + "198 american (new) 33.850807 -84.364227 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
335caffe dante81 macdougal st. between houston and bleeker ...new yorkcoffee bar40.728878-74.001662
338caffe reggio119 macdougal st. between 3rd and bleecker sts.new yorkcoffee bar40.730308-74.000371
\n", + "
" + ], + "text/plain": [ + " name addr \\\n", + "335 caffe dante 81 macdougal st. between houston and bleeker ... \n", + "338 caffe reggio 119 macdougal st. between 3rd and bleecker sts. \n", + "\n", + " city type lat lng \n", + "335 new york coffee bar 40.728878 -74.001662 \n", + "338 new york coffee bar 40.730308 -74.000371 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
227lulu816 folsom st.san franciscomediterranean37.781793-122.401818
228lulu restaurant bis cafe816 folsom st.san franciscomediterranean37.781793-122.401818
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "227 lulu 816 folsom st. san francisco mediterranean \n", + "228 lulu restaurant bis cafe 816 folsom st. san francisco mediterranean \n", + "\n", + " lat lng \n", + "227 37.781793 -122.401818 \n", + "228 37.781793 -122.401818 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
84gotham bar grill12 e. 12th st.new york cityamerican (new)40.734207-73.993699
86gotham12 e 12th stnew yorknew american40.734207-73.993699
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "84 gotham bar grill 12 e. 12th st. new york city american (new) \n", + "86 gotham 12 e 12th st new york new american \n", + "\n", + " lat lng \n", + "84 40.734207 -73.993699 \n", + "86 40.734207 -73.993699 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
45philippe original1001 n. alameda st.los angelesamerican34.059721-118.237025
47philippe original1001 north alamedalos angelessandwiches34.059721-118.237025
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "45 philippe original 1001 n. alameda st. los angeles american \n", + "47 philippe original 1001 north alameda los angeles sandwiches \n", + "\n", + " lat lng \n", + "45 34.059721 -118.237025 \n", + "47 34.059721 -118.237025 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
73chanterelle2 harrison st. near hudson st.new yorkamerican40.718827-74.009075
74chanterelle2 harrison st.new york cityfrench (new)40.718827-74.009075
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "73 chanterelle 2 harrison st. near hudson st. new york american \n", + "74 chanterelle 2 harrison st. new york city french (new) \n", + "\n", + " lat lng \n", + "73 40.718827 -74.009075 \n", + "74 40.718827 -74.009075 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
201toulouseb peachtree rd.atlantafrench33.810424-84.392143
202toulouse293-b peachtree rd.atlantafrench (new)33.810424-84.392143
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "201 toulouse b peachtree rd. atlanta french 33.810424 \n", + "202 toulouse 293-b peachtree rd. atlanta french (new) 33.810424 \n", + "\n", + " lng \n", + "201 -84.392143 \n", + "202 -84.392143 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
190nikolai roof255 courtland st. at harris st.atlantacontinental33.761546-84.383562
191nikolai roof255 courtland st.atlantacontinental33.761546-84.383562
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "190 nikolai roof 255 courtland st. at harris st. atlanta continental \n", + "191 nikolai roof 255 courtland st. atlanta continental \n", + "\n", + " lat lng \n", + "190 33.761546 -84.383562 \n", + "191 33.761546 -84.383562 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
34locanda veneta3rd st.los angelesitalian34.068958-118.320928
37locandaw. third st.st los angelesitalian34.068958-118.320928
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "34 locanda veneta 3rd st. los angeles italian 34.068958 \n", + "37 locanda w. third st. st los angeles italian 34.068958 \n", + "\n", + " lng \n", + "34 -118.320928 \n", + "37 -118.320928 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
75daniel20 e. 76th st.new yorkfrench40.774494-73.964096
76daniel20 e. 76th st.new york cityfrench (new)40.774494-73.964096
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "75 daniel 20 e. 76th st. new york french 40.774494 -73.964096\n", + "76 daniel 20 e. 76th st. new york city french (new) 40.774494 -73.964096" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
83gotham bar grill12 e. 12th st.new yorkamerican40.734207-73.993699
84gotham bar grill12 e. 12th st.new york cityamerican (new)40.734207-73.993699
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "83 gotham bar grill 12 e. 12th st. new york american \n", + "84 gotham bar grill 12 e. 12th st. new york city american (new) \n", + "\n", + " lat lng \n", + "83 40.734207 -73.993699 \n", + "84 40.734207 -73.993699 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
215chez michel804 northpointsan franciscofrench37.805857-122.420689
216chez michel804 north point st.san franciscocalifornian37.805857-122.420689
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "215 chez michel 804 northpoint san francisco french 37.805857 \n", + "216 chez michel 804 north point st. san francisco californian 37.805857 \n", + "\n", + " lng \n", + "215 -122.420689 \n", + "216 -122.420689 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
335caffe dante81 macdougal st. between houston and bleeker ...new yorkcoffee bar40.728878-74.001662
337caffe lure169 sullivan st. between houston and bleecker...new yorkfrench40.727928-74.000985
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "335 caffe dante 81 macdougal st. between houston and bleeker ... new york \n", + "337 caffe lure 169 sullivan st. between houston and bleecker... new york \n", + "\n", + " type lat lng \n", + "335 coffee bar 40.728878 -74.001662 \n", + "337 french 40.727928 -74.000985 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
3art delicatessen12224 ventura blvd.studio cityamerican34.142966-118.399469
5art deli12224 ventura blvd.los angelesdelis34.142966-118.399469
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "3 art delicatessen 12224 ventura blvd. studio city american 34.142966 \n", + "5 art deli 12224 ventura blvd. los angeles delis 34.142966 \n", + "\n", + " lng \n", + "3 -118.399469 \n", + "5 -118.399469 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
38matsuhisa129 n. la cienega blvd.beverly hillsasian34.068379-118.376541
39matsuhisa129 n. la cienega blvd.beverly hillsseafood34.068379-118.376541
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "38 matsuhisa 129 n. la cienega blvd. beverly hills asian 34.068379 \n", + "39 matsuhisa 129 n. la cienega blvd. beverly hills seafood 34.068379 \n", + "\n", + " lng \n", + "38 -118.376541 \n", + "39 -118.376541 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
166bacchanalia3125 piedmont rd. near peachtree rd.atlantainternational33.842045-84.369874
167bacchanalia3125 piedmont rd.atlantacalifornian33.842045-84.369874
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "166 bacchanalia 3125 piedmont rd. near peachtree rd. atlanta \n", + "167 bacchanalia 3125 piedmont rd. atlanta \n", + "\n", + " type lat lng \n", + "166 international 33.842045 -84.369874 \n", + "167 californian 33.842045 -84.369874 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
77dawat210 e. 58th st.new yorkasian40.760423-73.966428
78dawat210 e. 58th st.new york cityindian40.760423-73.966428
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "77 dawat 210 e. 58th st. new york asian 40.760423 -73.966428\n", + "78 dawat 210 e. 58th st. new york city indian 40.760423 -73.966428" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
85gotham bar grill12 e 12th stnew york citynew american40.734207-73.993699
86gotham12 e 12th stnew yorknew american40.734207-73.993699
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "85 gotham bar grill 12 e 12th st new york city new american 40.734207 \n", + "86 gotham 12 e 12th st new york new american 40.734207 \n", + "\n", + " lng \n", + "85 -73.993699 \n", + "86 -73.993699 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
205alain rondelli126 clement st.san franciscofrench37.783315-122.460679
206alain rondelli126 clement st.san franciscofrench (new)37.783315-122.460679
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "205 alain rondelli 126 clement st. san francisco french 37.783315 \n", + "206 alain rondelli 126 clement st. san francisco french (new) 37.783315 \n", + "\n", + " lng \n", + "205 -122.460679 \n", + "206 -122.460679 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
213campton place340 stockton st.san franciscoamerican37.789096-122.406575
214campton place340 stockton st.san franciscoamerican (new)37.789096-122.406575
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "213 campton place 340 stockton st. san francisco american \n", + "214 campton place 340 stockton st. san francisco american (new) \n", + "\n", + " lat lng \n", + "213 37.789096 -122.406575 \n", + "214 37.789096 -122.406575 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
24granita23725 w. malibu rd.malibucalifornian34.03388-118.692496
25granita23725 w. malibu rd.malibucalifornian34.03388-118.692496
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "24 granita 23725 w. malibu rd. malibu californian 34.03388 -118.692496\n", + "25 granita 23725 w. malibu rd. malibu californian 34.03388 -118.692496" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
57yujean kang gourmet chinese cuisine67 n. raymond ave.los angelesasian34.147086-118.149099
58yujean kang67 n. raymond ave.pasadenachinese34.147086-118.149099
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "57 yujean kang gourmet chinese cuisine 67 n. raymond ave. los angeles \n", + "58 yujean kang 67 n. raymond ave. pasadena \n", + "\n", + " type lat lng \n", + "57 asian 34.147086 -118.149099 \n", + "58 chinese 34.147086 -118.149099 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
5921 club21 w. 52nd st.new yorkamerican40.760533-73.977397
6021 club21 w. 52nd st.new york cityamerican (new)40.760533-73.977397
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "59 21 club 21 w. 52nd st. new york american 40.760533 \n", + "60 21 club 21 w. 52nd st. new york city american (new) 40.760533 \n", + "\n", + " lng \n", + "59 -73.977397 \n", + "60 -73.977397 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
0arnie morton chicago435 s. la cienega blv.los angelesamerican34.070609-118.376722
2arnie morton435 s. la cienega boulevardlos angelessteakhouses34.070609-118.376722
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "0 arnie morton chicago 435 s. la cienega blv. los angeles \n", + "2 arnie morton 435 s. la cienega boulevard los angeles \n", + "\n", + " type lat lng \n", + "0 american 34.070609 -118.376722 \n", + "2 steakhouses 34.070609 -118.376722 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
182heera india595 piedmont ave. rio shopping mallatlantaasian33.795817-84.370602
183heera india595 piedmont ave.atlantaindian33.770495-84.381425
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "182 heera india 595 piedmont ave. rio shopping mall atlanta asian \n", + "183 heera india 595 piedmont ave. atlanta indian \n", + "\n", + " lat lng \n", + "182 33.795817 -84.370602 \n", + "183 33.770495 -84.381425 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
36locanda veneta8638 w 3rdst los angelesitalian34.073417-118.381096
37locandaw. third st.st los angelesitalian34.068958-118.320928
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "36 locanda veneta 8638 w 3rd st los angeles italian 34.073417 \n", + "37 locanda w. third st. st los angeles italian 34.068958 \n", + "\n", + " lng \n", + "36 -118.381096 \n", + "37 -118.320928 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
61aquavit13 w. 54th st.new yorkcontinental40.761677-73.976345
62aquavit13 w. 54th st.new york cityscandinavian40.761677-73.976345
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "61 aquavit 13 w. 54th st. new york continental 40.761677 -73.976345\n", + "62 aquavit 13 w. 54th st. new york city scandinavian 40.761677 -73.976345" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
30orangerie903 n. la cienega blvd.los angelesfrench34.087098-118.376626
31orangerie903 n. la cienega blvd.w. hollywoodfrench (classic)34.100833-118.325613
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "30 orangerie 903 n. la cienega blvd. los angeles french \n", + "31 orangerie 903 n. la cienega blvd. w. hollywood french (classic) \n", + "\n", + " lat lng \n", + "30 34.087098 -118.376626 \n", + "31 34.100833 -118.325613 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
46philippe original1001 n. alameda st.chinatowncafeterias34.059721-118.237025
47philippe original1001 north alamedalos angelessandwiches34.059721-118.237025
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "46 philippe original 1001 n. alameda st. chinatown cafeterias \n", + "47 philippe original 1001 north alameda los angeles sandwiches \n", + "\n", + " lat lng \n", + "46 34.059721 -118.237025 \n", + "47 34.059721 -118.237025 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
174ciboulette1529 piedmont ave.atlantafrench33.795651-84.368888
175ciboulette restaurant1529 piedmont ave.atlantafrench (new)33.795651-84.368888
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "174 ciboulette 1529 piedmont ave. atlanta french \n", + "175 ciboulette restaurant 1529 piedmont ave. atlanta french (new) \n", + "\n", + " lat lng \n", + "174 33.795651 -84.368888 \n", + "175 33.795651 -84.368888 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
158second street grille200 e. fremont st.las vegasseafood36.170927-115.143152
159second street grill200 e. fremont st.las vegaspacific rim36.170927-115.143152
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "158 second street grille 200 e. fremont st. las vegas seafood \n", + "159 second street grill 200 e. fremont st. las vegas pacific rim \n", + "\n", + " lat lng \n", + "158 36.170927 -115.143152 \n", + "159 36.170927 -115.143152 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
95cote basque60 w. 55th st. between 5th and 6th ave.new yorkfrench40.762523-73.977277
96cote basque60 w. 55th st.new york cityfrench (classic)40.762483-73.977340
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "95 cote basque 60 w. 55th st. between 5th and 6th ave. new york \n", + "96 cote basque 60 w. 55th st. new york city \n", + "\n", + " type lat lng \n", + "95 french 40.762523 -73.977277 \n", + "96 french (classic) 40.762483 -73.977340 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
32chardonnay8284 melrose ave.los angelesfrench34.083422-118.370118
33chardonnay los angeles8284 melrose ave.los angelesfrench bistro34.083422-118.370118
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "32 chardonnay 8284 melrose ave. los angeles french \n", + "33 chardonnay los angeles 8284 melrose ave. los angeles french bistro \n", + "\n", + " lat lng \n", + "32 34.083422 -118.370118 \n", + "33 34.083422 -118.370118 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
49pinot bistro12969 ventura blvd.studio cityfrench bistro34.14572-118.416079
50pinot bistro12969 ventura boulevardstudio citybistro34.14572-118.416079
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "49 pinot bistro 12969 ventura blvd. studio city french bistro \n", + "50 pinot bistro 12969 ventura boulevard studio city bistro \n", + "\n", + " lat lng \n", + "49 34.14572 -118.416079 \n", + "50 34.14572 -118.416079 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
101lespinasse2 e. 55th st.new yorkamerican40.761398-73.974613
103lespinasse2 e 55th stnew yorkamerican40.761398-73.974613
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "101 lespinasse 2 e. 55th st. new york american 40.761398 -73.974613\n", + "103 lespinasse 2 e 55th st new york american 40.761398 -73.974613" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
120petrossian182 w. 58th st.new yorkfrench40.766049-73.979439
121petrossian182 w. 58th st.new york cityrussian40.766049-73.979439
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "120 petrossian 182 w. 58th st. new york french 40.766049 -73.979439\n", + "121 petrossian 182 w. 58th st. new york city russian 40.766049 -73.979439" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
9cafe bizou14016 ventura blvd.sherman oaksfrench34.148899-118.437919
11cafe bizou14016 ventura blvd.sherman oaksbistro34.148899-118.437919
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "9 cafe bizou 14016 ventura blvd. sherman oaks french 34.148899 \n", + "11 cafe bizou 14016 ventura blvd. sherman oaks bistro 34.148899 \n", + "\n", + " lng \n", + "9 -118.437919 \n", + "11 -118.437919 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
20fenix8358 sunset blvd. westhollywoodamerican34.095097-118.371967
22fenix at argyle8358 sunset blvd.w. hollywoodfrench (new)34.095097-118.371967
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "20 fenix 8358 sunset blvd. west hollywood american \n", + "22 fenix at argyle 8358 sunset blvd. w. hollywood french (new) \n", + "\n", + " lat lng \n", + "20 34.095097 -118.371967 \n", + "22 34.095097 -118.371967 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
124pisces95 ave. a at 6th st.new yorkseafood40.725651-73.984065
125pisces95 ave. anew york cityseafood40.725633-73.984031
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "124 pisces 95 ave. a at 6th st. new york seafood 40.725651 \n", + "125 pisces 95 ave. a new york city seafood 40.725633 \n", + "\n", + " lng \n", + "124 -73.984065 \n", + "125 -73.984031 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
132second avenue deli156 2nd ave. at 10th st.new yorkdelicatessen40.72961-73.986701
133second avenue deli156 second ave.new york citydelis40.72961-73.986701
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "132 second avenue deli 156 2nd ave. at 10th st. new york \n", + "133 second avenue deli 156 second ave. new york city \n", + "\n", + " type lat lng \n", + "132 delicatessen 40.72961 -73.986701 \n", + "133 delis 40.72961 -73.986701 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
21fenix8358 sunset blvd.w. hollywoodfrench (new)34.095097-118.371967
23fenix at argyle8358 sunset blvd. westhollywoodamerican34.095097-118.371967
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "21 fenix 8358 sunset blvd. w. hollywood french (new) \n", + "23 fenix at argyle 8358 sunset blvd. west hollywood american \n", + "\n", + " lat lng \n", + "21 34.095097 -118.371967 \n", + "23 34.095097 -118.371967 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
41palm los angeles9001 santa monica blvd.w. hollywoodsteakhouses34.083064-118.387282
42palm los angeles9001 sta monica boulevardhollywoodsteakhouses34.083064-118.387282
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "41 palm los angeles 9001 santa monica blvd. w. hollywood steakhouses \n", + "42 palm los angeles 9001 sta monica boulevard hollywood steakhouses \n", + "\n", + " lat lng \n", + "41 34.083064 -118.387282 \n", + "42 34.083064 -118.387282 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
233plumpjack cafe3201 fillmore st.san franciscomediterranean37.799120-122.436091
234plumpjack cafe3127 fillmore st.san franciscoamerican (new)37.798341-122.435941
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "233 plumpjack cafe 3201 fillmore st. san francisco mediterranean \n", + "234 plumpjack cafe 3127 fillmore st. san francisco american (new) \n", + "\n", + " lat lng \n", + "233 37.799120 -122.436091 \n", + "234 37.798341 -122.435941 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
126rainbow room30 rockefeller plazanew yorkor 212/632-5100 american40.759375-73.979973
127rainbow room30 rockefeller plazanew york cityamerican (new)40.759375-73.979973
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "126 rainbow room 30 rockefeller plaza new york \n", + "127 rainbow room 30 rockefeller plaza new york city \n", + "\n", + " type lat lng \n", + "126 or 212/632-5100 american 40.759375 -73.979973 \n", + "127 american (new) 40.759375 -73.979973 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
130san domenico240 central park snew yorkitalian40.767434-73.981178
131san domenico240 central park s.new york cityitalian40.767434-73.981178
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "130 san domenico 240 central park s new york italian 40.767434 \n", + "131 san domenico 240 central park s. new york city italian 40.767434 \n", + "\n", + " lng \n", + "130 -73.981178 \n", + "131 -73.981178 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
200ritz carlton restaurant181 peachtree st.atlantafrench (classic)33.758579-84.387066
839ritz carlton cafe atlanta181 peachtree st.atlantaamerican (new)33.758579-84.387066
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "200 ritz carlton restaurant 181 peachtree st. atlanta french (classic) \n", + "839 ritz carlton cafe atlanta 181 peachtree st. atlanta american (new) \n", + "\n", + " lat lng \n", + "200 33.758579 -84.387066 \n", + "839 33.758579 -84.387066 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
43patina5955 melrose ave.los angelescalifornian34.083655-118.330243
44patina5955 melrose ave.los angelescalifornian34.083655-118.330243
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "43 patina 5955 melrose ave. los angeles californian 34.083655 -118.330243\n", + "44 patina 5955 melrose ave. los angeles californian 34.083655 -118.330243" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
51rex il ristorante617 s. olive st.los angelesitalian34.047847-118.254878
52rex il ristorante617 s. olive st.los angelesnuova cucina italian34.047847-118.254878
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "51 rex il ristorante 617 s. olive st. los angeles italian \n", + "52 rex il ristorante 617 s. olive st. los angeles nuova cucina italian \n", + "\n", + " lat lng \n", + "51 34.047847 -118.254878 \n", + "52 34.047847 -118.254878 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
112mi cocina57 jane st. off hudson st.new yorkmexican40.738219-74.005384
113mi cocina57 jane st.new york citymexican40.738219-74.005384
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "112 mi cocina 57 jane st. off hudson st. new york mexican \n", + "113 mi cocina 57 jane st. new york city mexican \n", + "\n", + " lat lng \n", + "112 40.738219 -74.005384 \n", + "113 40.738219 -74.005384 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
128river cafe1 water st. at the east riverbrooklynamerican40.703175-73.99469
129river cafe1 water st.brooklynamerican (new)40.703175-73.99469
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "128 river cafe 1 water st. at the east river brooklyn american \n", + "129 river cafe 1 water st. brooklyn american (new) \n", + "\n", + " lat lng \n", + "128 40.703175 -73.99469 \n", + "129 40.703175 -73.99469 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
45philippe original1001 n. alameda st.los angelesamerican34.059721-118.237025
46philippe original1001 n. alameda st.chinatowncafeterias34.059721-118.237025
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "45 philippe original 1001 n. alameda st. los angeles american \n", + "46 philippe original 1001 n. alameda st. chinatown cafeterias \n", + "\n", + " lat lng \n", + "45 34.059721 -118.237025 \n", + "46 34.059721 -118.237025 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
237ritz carlton restaurant dining room600 stockton st.san franciscoamerican37.791875-122.407039
238ritz carlton dining room san francisco600 stockton st.san franciscofrench (new)37.791875-122.407039
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "237 ritz carlton restaurant dining room 600 stockton st. san francisco \n", + "238 ritz carlton dining room san francisco 600 stockton st. san francisco \n", + "\n", + " type lat lng \n", + "237 american 37.791875 -122.407039 \n", + "238 french (new) 37.791875 -122.407039 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
79felidia243 e. 58th st.new yorkitalian40.76036-73.965107
80felidia243 e. 58th st.new york cityitalian40.76036-73.965107
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "79 felidia 243 e. 58th st. new york italian 40.76036 -73.965107\n", + "80 felidia 243 e. 58th st. new york city italian 40.76036 -73.965107" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
3art delicatessen12224 ventura blvd.studio cityamerican34.142966-118.399469
4art deli12224 ventura blvd.studio citydelis34.142966-118.399469
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "3 art delicatessen 12224 ventura blvd. studio city american 34.142966 \n", + "4 art deli 12224 ventura blvd. studio city delis 34.142966 \n", + "\n", + " lng \n", + "3 -118.399469 \n", + "4 -118.399469 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
71carnegie deli854 7th ave. between 54th and 55th sts.new yorkdelicatessen40.7642-73.981407
72carnegie deli854 seventh ave.new york citydelis40.7642-73.981407
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "71 carnegie deli 854 7th ave. between 54th and 55th sts. new york \n", + "72 carnegie deli 854 seventh ave. new york city \n", + "\n", + " type lat lng \n", + "71 delicatessen 40.7642 -73.981407 \n", + "72 delis 40.7642 -73.981407 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
9cafe bizou14016 ventura blvd.sherman oaksfrench34.148899-118.437919
12cafe bizou14016 ventura blvdsherman oaksfrench34.148899-118.437919
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "9 cafe bizou 14016 ventura blvd. sherman oaks french 34.148899 \n", + "12 cafe bizou 14016 ventura blvd sherman oaks french 34.148899 \n", + "\n", + " lng \n", + "9 -118.437919 \n", + "12 -118.437919 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
195cafe ritz carlton buckhead3434 peachtree rd.atlantaext 6108 international33.850807-84.364227
196ritz carlton cafe buckhead3434 peachtree rd. neatlantaamerican (new)33.850807-84.364227
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "195 cafe ritz carlton buckhead 3434 peachtree rd. atlanta \n", + "196 ritz carlton cafe buckhead 3434 peachtree rd. ne atlanta \n", + "\n", + " type lat lng \n", + "195 ext 6108 international 33.850807 -84.364227 \n", + "196 american (new) 33.850807 -84.364227 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
10cafe bizou14016 ventura blvd.sherman oaksfrench bistro34.148899-118.437919
11cafe bizou14016 ventura blvd.sherman oaksbistro34.148899-118.437919
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "10 cafe bizou 14016 ventura blvd. sherman oaks french bistro 34.148899 \n", + "11 cafe bizou 14016 ventura blvd. sherman oaks bistro 34.148899 \n", + "\n", + " lng \n", + "10 -118.437919 \n", + "11 -118.437919 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
118park avenue cafe100 e. 63rd st.new yorkamerican40.765023-73.967604
119park avenue cafe new york city100 e. 63rd st.new york cityamerican (new)40.765023-73.967604
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "118 park avenue cafe 100 e. 63rd st. new york \n", + "119 park avenue cafe new york city 100 e. 63rd st. new york city \n", + "\n", + " type lat lng \n", + "118 american 40.765023 -73.967604 \n", + "119 american (new) 40.765023 -73.967604 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
138sign dove1110 3rd ave. at 65th st.new yorkamerican40.76564-73.963968
139sign dove1110 third ave.new york cityamerican (new)40.76564-73.963968
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "138 sign dove 1110 3rd ave. at 65th st. new york american \n", + "139 sign dove 1110 third ave. new york city american (new) \n", + "\n", + " lat lng \n", + "138 40.76564 -73.963968 \n", + "139 40.76564 -73.963968 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
104lutece249 e. 50th st.new yorkfrench40.755287-73.968919
105lutece249 e. 50th st.new york cityfrench (classic)40.755287-73.968919
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "104 lutece 249 e. 50th st. new york french 40.755287 \n", + "105 lutece 249 e. 50th st. new york city french (classic) 40.755287 \n", + "\n", + " lng \n", + "104 -73.968919 \n", + "105 -73.968919 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
63aureole34 e. 61st st.new yorkamerican40.764395-73.970078
64aureole34 e. 61st st.new york cityamerican (new)40.764395-73.970078
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "63 aureole 34 e. 61st st. new york american 40.764395 \n", + "64 aureole 34 e. 61st st. new york city american (new) 40.764395 \n", + "\n", + " lng \n", + "63 -73.970078 \n", + "64 -73.970078 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
35locanda veneta8638 w. third st.los angelesitalian34.073417-118.381096
37locandaw. third st.st los angelesitalian34.068958-118.320928
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "35 locanda veneta 8638 w. third st. los angeles italian 34.073417 \n", + "37 locanda w. third st. st los angeles italian 34.068958 \n", + "\n", + " lng \n", + "35 -118.381096 \n", + "37 -118.320928 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
1arnie morton chicago435 s. la cienega blvd.los angelessteakhouses34.070609-118.376722
2arnie morton435 s. la cienega boulevardlos angelessteakhouses34.070609-118.376722
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "1 arnie morton chicago 435 s. la cienega blvd. los angeles \n", + "2 arnie morton 435 s. la cienega boulevard los angeles \n", + "\n", + " type lat lng \n", + "1 steakhouses 34.070609 -118.376722 \n", + "2 steakhouses 34.070609 -118.376722 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
186grotta2637 peachtree rd. peachtree house condominiumatlantaitalian33.826672-84.386935
187grotta2637 peachtree rd. neatlantaitalian33.826672-84.386935
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "186 grotta 2637 peachtree rd. peachtree house condominium atlanta \n", + "187 grotta 2637 peachtree rd. ne atlanta \n", + "\n", + " type lat lng \n", + "186 italian 33.826672 -84.386935 \n", + "187 italian 33.826672 -84.386935 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
108march405 e. 58th st.new yorkamerican40.758913-73.961847
109march405 e. 58th st.new york cityamerican (new)40.758913-73.961847
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "108 march 405 e. 58th st. new york american 40.758913 \n", + "109 march 405 e. 58th st. new york city american (new) 40.758913 \n", + "\n", + " lng \n", + "108 -73.961847 \n", + "109 -73.961847 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
116oceana55 e. 54th st.new yorkseafood40.760244-73.973086
117oceana55 e. 54th st.new york cityseafood40.760244-73.973086
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "116 oceana 55 e. 54th st. new york seafood 40.760244 -73.973086\n", + "117 oceana 55 e. 54th st. new york city seafood 40.760244 -73.973086" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
140smith wollensky201 e. 49th st.new yorkamerican40.755156-73.970718
141smith wollensky797 third ave.new york citysteakhouses40.755170-73.970744
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "140 smith wollensky 201 e. 49th st. new york american 40.755156 \n", + "141 smith wollensky 797 third ave. new york city steakhouses 40.755170 \n", + "\n", + " lng \n", + "140 -73.970718 \n", + "141 -73.970744 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
148virgil152 w. 44th st.new yorkamerican40.756755-73.985161
149virgil real bbq152 w. 44th st.new york citybbq40.756755-73.985161
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "148 virgil 152 w. 44th st. new york american 40.756755 \n", + "149 virgil real bbq 152 w. 44th st. new york city bbq 40.756755 \n", + "\n", + " lng \n", + "148 -73.985161 \n", + "149 -73.985161 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
10cafe bizou14016 ventura blvd.sherman oaksfrench bistro34.148899-118.437919
12cafe bizou14016 ventura blvdsherman oaksfrench34.148899-118.437919
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "10 cafe bizou 14016 ventura blvd. sherman oaks french bistro 34.148899 \n", + "12 cafe bizou 14016 ventura blvd sherman oaks french 34.148899 \n", + "\n", + " lng \n", + "10 -118.437919 \n", + "12 -118.437919 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
89island spice402 w. 44th st.new yorktel caribbean40.759761-73.992071
90island spice402 w. 44th st.new york citycaribbean40.759761-73.992071
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "89 island spice 402 w. 44th st. new york tel caribbean 40.759761 \n", + "90 island spice 402 w. 44th st. new york city caribbean 40.759761 \n", + "\n", + " lng \n", + "89 -73.992071 \n", + "90 -73.992071 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
184indigo coastal grill1397 n. highland ave.atlantacaribbean33.792471-84.35211
185indigo coastal grill1397 n. highland ave.atlantaeclectic33.792471-84.35211
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "184 indigo coastal grill 1397 n. highland ave. atlanta caribbean \n", + "185 indigo coastal grill 1397 n. highland ave. atlanta eclectic \n", + "\n", + " lat lng \n", + "184 33.792471 -84.35211 \n", + "185 33.792471 -84.35211 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
217fleur de lys777 sutter st.san franciscofrench37.788435-122.413145
218fleur de lys777 sutter st.san franciscofrench (new)37.788435-122.413145
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "217 fleur de lys 777 sutter st. san francisco french 37.788435 \n", + "218 fleur de lys 777 sutter st. san francisco french (new) 37.788435 \n", + "\n", + " lng \n", + "217 -122.413145 \n", + "218 -122.413145 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
91jo jo160 e. 64th st.new yorkamerican40.765056-73.965704
92jo jo160 e. 64th st.new york cityfrench bistro40.765056-73.965704
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "91 jo jo 160 e. 64th st. new york american 40.765056 -73.965704\n", + "92 jo jo 160 e. 64th st. new york city french bistro 40.765056 -73.965704" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
99les celebrites160 central park snew yorkfrench40.766016-73.978641
100les celebrites155 w. 58th st.new york cityfrench (classic)40.765901-73.978414
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "99 les celebrites 160 central park s new york french \n", + "100 les celebrites 155 w. 58th st. new york city french (classic) \n", + "\n", + " lat lng \n", + "99 40.766016 -73.978641 \n", + "100 40.765901 -73.978414 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
231mifune japan center kintetsu building1737 post st.san franciscoasian37.785329-122.430369
232mifune1737 post st.san franciscojapanese37.785329-122.430369
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "231 mifune japan center kintetsu building 1737 post st. san francisco \n", + "232 mifune 1737 post st. san francisco \n", + "\n", + " type lat lng \n", + "231 asian 37.785329 -122.430369 \n", + "232 japanese 37.785329 -122.430369 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
239rose pistola532 columbus ave.san franciscoitalian37.800073-122.409429
240rose pistola532 columbus ave.san franciscoitalian37.800073-122.409429
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "239 rose pistola 532 columbus ave. san francisco italian 37.800073 \n", + "240 rose pistola 532 columbus ave. san francisco italian 37.800073 \n", + "\n", + " lng \n", + "239 -122.409429 \n", + "240 -122.409429 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
17citrus6703 melrose ave.los angelescalifornian34.083708-118.33994
19citrus6703 melrose avenuelos angelesamerican34.083708-118.33994
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "17 citrus 6703 melrose ave. los angeles californian 34.083708 \n", + "19 citrus 6703 melrose avenue los angeles american 34.083708 \n", + "\n", + " lng \n", + "17 -118.33994 \n", + "19 -118.33994 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
93caravelle33 w. 55th st.new yorkfrench40.76251-73.976368
94caravelle33 w. 55th st.new york cityfrench (classic)40.76251-73.976368
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "93 caravelle 33 w. 55th st. new york french 40.76251 \n", + "94 caravelle 33 w. 55th st. new york city french (classic) 40.76251 \n", + "\n", + " lng \n", + "93 -73.976368 \n", + "94 -73.976368 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
101lespinasse2 e. 55th st.new yorkamerican40.761398-73.974613
102lespinasse new york city2 e. 55th st.new york cityasian40.761398-73.974613
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "101 lespinasse 2 e. 55th st. new york american \n", + "102 lespinasse new york city 2 e. 55th st. new york city asian \n", + "\n", + " lat lng \n", + "101 40.761398 -73.974613 \n", + "102 40.761398 -73.974613 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
188mary mac tea room224 ponce de leon ave.atlantasouthern33.772859-84.379878
189mary mac tea room224 ponce de leon ave.atlantasouthern/soul33.772859-84.379878
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "188 mary mac tea room 224 ponce de leon ave. atlanta southern \n", + "189 mary mac tea room 224 ponce de leon ave. atlanta southern/soul \n", + "\n", + " lat lng \n", + "188 33.772859 -84.379878 \n", + "189 33.772859 -84.379878 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
221hawthorne lane22 hawthorne st.san franciscoamerican37.785452-122.399036
222hawthorne lane22 hawthorne st.san franciscocalifornian37.785452-122.399036
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "221 hawthorne lane 22 hawthorne st. san francisco american 37.785452 \n", + "222 hawthorne lane 22 hawthorne st. san francisco californian 37.785452 \n", + "\n", + " lng \n", + "221 -122.399036 \n", + "222 -122.399036 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
229masa648 bush st.san franciscofrench37.790416-122.408011
230masa648 bush st.san franciscofrench (new)37.790416-122.408011
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "229 masa 648 bush st. san francisco french 37.790416 -122.408011\n", + "230 masa 648 bush st. san francisco french (new) 37.790416 -122.408011" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
9cafe bizou14016 ventura blvd.sherman oaksfrench34.148899-118.437919
10cafe bizou14016 ventura blvd.sherman oaksfrench bistro34.148899-118.437919
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "9 cafe bizou 14016 ventura blvd. sherman oaks french 34.148899 \n", + "10 cafe bizou 14016 ventura blvd. sherman oaks french bistro 34.148899 \n", + "\n", + " lng \n", + "9 -118.437919 \n", + "10 -118.437919 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
178georgia grille2290 peachtree rd. peachtree square shopping ...atlantaamerican33.816877-84.390507
179georgia grille2290 peachtree rd.atlantasouthwestern33.817163-84.390037
\n", + "
" + ], + "text/plain": [ + " name addr \\\n", + "178 georgia grille 2290 peachtree rd. peachtree square shopping ... \n", + "179 georgia grille 2290 peachtree rd. \n", + "\n", + " city type lat lng \n", + "178 atlanta american 33.816877 -84.390507 \n", + "179 atlanta southwestern 33.817163 -84.390037 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
87gramercy tavern42 e. 20th st. between park ave. s and broadwaynew yorkamerican40.738456-73.988506
88gramercy tavern42 e. 20th st.new york cityamerican (new)40.738465-73.988467
\n", + "
" + ], + "text/plain": [ + " name addr \\\n", + "87 gramercy tavern 42 e. 20th st. between park ave. s and broadway \n", + "88 gramercy tavern 42 e. 20th st. \n", + "\n", + " city type lat lng \n", + "87 new york american 40.738456 -73.988506 \n", + "88 new york city american (new) 40.738465 -73.988467 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
11cafe bizou14016 ventura blvd.sherman oaksbistro34.148899-118.437919
12cafe bizou14016 ventura blvdsherman oaksfrench34.148899-118.437919
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "11 cafe bizou 14016 ventura blvd. sherman oaks bistro 34.148899 \n", + "12 cafe bizou 14016 ventura blvd sherman oaks french 34.148899 \n", + "\n", + " lng \n", + "11 -118.437919 \n", + "12 -118.437919 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
203veni vidi vici41 14th st.atlantaitalian33.786946-84.388786
204veni vidi vici41 14th st.atlantaitalian33.786946-84.388786
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "203 veni vidi vici 41 14th st. atlanta italian 33.786946 -84.388786\n", + "204 veni vidi vici 41 14th st. atlanta italian 33.786946 -84.388786" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
211cafe claude7 claude la.san franciscofrench37.790332-122.404517
212cafe claude7 claude ln.san franciscofrench bistro37.790332-122.404517
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "211 cafe claude 7 claude la. san francisco french 37.790332 \n", + "212 cafe claude 7 claude ln. san francisco french bistro 37.790332 \n", + "\n", + " lng \n", + "211 -122.404517 \n", + "212 -122.404517 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
337caffe lure169 sullivan st. between houston and bleecker...new yorkfrench40.727928-74.000985
338caffe reggio119 macdougal st. between 3rd and bleecker sts.new yorkcoffee bar40.730308-74.000371
\n", + "
" + ], + "text/plain": [ + " name addr \\\n", + "337 caffe lure 169 sullivan st. between houston and bleecker... \n", + "338 caffe reggio 119 macdougal st. between 3rd and bleecker sts. \n", + "\n", + " city type lat lng \n", + "337 new york french 40.727928 -74.000985 \n", + "338 new york coffee bar 40.730308 -74.000371 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
225folie2316 polk st.san franciscofrench37.798142-122.422061
226folie2316 polk st.san franciscofrench (new)37.798142-122.422061
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "225 folie 2316 polk st. san francisco french 37.798142 -122.422061\n", + "226 folie 2316 polk st. san francisco french (new) 37.798142 -122.422061" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
209boulevard1 mission st.san franciscoamerican37.79332-122.392761
210boulevard1 mission st.san franciscoamerican (new)37.79332-122.392761
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "209 boulevard 1 mission st. san francisco american 37.79332 \n", + "210 boulevard 1 mission st. san francisco american (new) 37.79332 \n", + "\n", + " lng \n", + "209 -122.392761 \n", + "210 -122.392761 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
192pano paul1232 w. paces ferry rd.atlantainternational33.849291-84.428089
193pano paul1232 w. paces ferry rd.atlantaamerican (new)33.849291-84.428089
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "192 pano paul 1232 w. paces ferry rd. atlanta international 33.849291 \n", + "193 pano paul 1232 w. paces ferry rd. atlanta american (new) 33.849291 \n", + "\n", + " lng \n", + "192 -84.428089 \n", + "193 -84.428089 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
48pinot bistro12969 ventura blvd.los angelesfrench34.14572-118.416079
49pinot bistro12969 ventura blvd.studio cityfrench bistro34.14572-118.416079
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "48 pinot bistro 12969 ventura blvd. los angeles french 34.14572 \n", + "49 pinot bistro 12969 ventura blvd. studio city french bistro 34.14572 \n", + "\n", + " lng \n", + "48 -118.416079 \n", + "49 -118.416079 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
81four seasons grill room99 e. 52nd st.new yorkamerican40.758318-73.971868
82four seasons99 e. 52nd st.new york cityamerican (new)40.758318-73.971868
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "81 four seasons grill room 99 e. 52nd st. new york american \n", + "82 four seasons 99 e. 52nd st. new york city american (new) \n", + "\n", + " lat lng \n", + "81 40.758318 -73.971868 \n", + "82 40.758318 -73.971868 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
20fenix8358 sunset blvd. westhollywoodamerican34.095097-118.371967
23fenix at argyle8358 sunset blvd. westhollywoodamerican34.095097-118.371967
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "20 fenix 8358 sunset blvd. west hollywood american 34.095097 \n", + "23 fenix at argyle 8358 sunset blvd. west hollywood american 34.095097 \n", + "\n", + " lng \n", + "20 -118.371967 \n", + "23 -118.371967 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
97bernardin155 w. 51st st.new yorkfrench40.761569-73.981805
98bernardin155 w. 51st st.new york cityseafood40.761569-73.981805
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "97 bernardin 155 w. 51st st. new york french 40.761569 -73.981805\n", + "98 bernardin 155 w. 51st st. new york city seafood 40.761569 -73.981805" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
26grill alley9560 dayton waylos angelesamerican34.06736-118.401894
27grill9560 dayton waybeverly hillsamerican (traditional)34.06736-118.401894
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "26 grill alley 9560 dayton way los angeles american \n", + "27 grill 9560 dayton way beverly hills american (traditional) \n", + "\n", + " lat lng \n", + "26 34.06736 -118.401894 \n", + "27 34.06736 -118.401894 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
102lespinasse new york city2 e. 55th st.new york cityasian40.761398-73.974613
103lespinasse2 e 55th stnew yorkamerican40.761398-73.974613
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "102 lespinasse new york city 2 e. 55th st. new york city asian \n", + "103 lespinasse 2 e 55th st new york american \n", + "\n", + " lat lng \n", + "102 40.761398 -73.974613 \n", + "103 40.761398 -73.974613 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
154montrachet3000 w. paradise rd.las vegascontinental36.136261-115.151254
155montrachet bistro3000 paradise rd.las vegasfrench bistro36.136261-115.151254
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "154 montrachet 3000 w. paradise rd. las vegas continental \n", + "155 montrachet bistro 3000 paradise rd. las vegas french bistro \n", + "\n", + " lat lng \n", + "154 36.136261 -115.151254 \n", + "155 36.136261 -115.151254 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
13campanile624 s. la brea ave.los angelesamerican34.064141-118.343701
14campanile624 s. la brea ave.los angelescalifornian34.064141-118.343701
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "13 campanile 624 s. la brea ave. los angeles american 34.064141 \n", + "14 campanile 624 s. la brea ave. los angeles californian 34.064141 \n", + "\n", + " lng \n", + "13 -118.343701 \n", + "14 -118.343701 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
21fenix8358 sunset blvd.w. hollywoodfrench (new)34.095097-118.371967
22fenix at argyle8358 sunset blvd.w. hollywoodfrench (new)34.095097-118.371967
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "21 fenix 8358 sunset blvd. w. hollywood french (new) 34.095097 \n", + "22 fenix at argyle 8358 sunset blvd. w. hollywood french (new) 34.095097 \n", + "\n", + " lng \n", + "21 -118.371967 \n", + "22 -118.371967 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
152coyote cafe3799 las vegas blvd. slas vegassouthwestern36.102251-115.169968
153coyote cafe las vegas3799 las vegas blvd. s.las vegassouthwestern36.102251-115.169968
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "152 coyote cafe 3799 las vegas blvd. s las vegas southwestern \n", + "153 coyote cafe las vegas 3799 las vegas blvd. s. las vegas southwestern \n", + "\n", + " lat lng \n", + "152 36.102251 -115.169968 \n", + "153 36.102251 -115.169968 " + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "print(\"Dedupe false positives\")\n", + "for false_positive_pair in list(dedupe_false_positives):\n", + " display(df.loc[list(false_positive_pair)][['name', 'addr', 'city', 'type', 'lat', 'lng']])" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "The deduper is confused by \"caffe\"s that are located near each other. \"caffe\" could be a stopword? Or even better, we could incorporate some logic for **name rarity**: if the token isn't rare, like \"caffe\", it should contributte less with the name similarity than a rarer token like \"reggio\". It's possible to do that with [an interaction with name frequency](https://github.com/dedupeio/dedupe/issues/392).\n", + "\n", + "Or maybe the deduper could have learned a more restrictive name blocking? Or the classifier should have put less weight on name? It's difficult to guess, because those things could have introduced more **false negatives** too. What about them?" + ] + }, + { + "cell_type": "code", + "execution_count": 71, + "metadata": { + "scrolled": true, + "slideshow": { + "slide_type": "slide" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Dedupe false negatives\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
183heera india595 piedmont ave.atlantaindian33.770495-84.381425
182heera india595 piedmont ave. rio shopping mallatlantaasian33.795817-84.370602
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "183 heera india 595 piedmont ave. atlanta indian \n", + "182 heera india 595 piedmont ave. rio shopping mall atlanta asian \n", + "\n", + " lat lng \n", + "183 33.770495 -84.381425 \n", + "182 33.795817 -84.370602 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
206alain rondelli126 clement st.san franciscofrench (new)37.783315-122.460679
205alain rondelli126 clement st.san franciscofrench37.783315-122.460679
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "206 alain rondelli 126 clement st. san francisco french (new) 37.783315 \n", + "205 alain rondelli 126 clement st. san francisco french 37.783315 \n", + "\n", + " lng \n", + "206 -122.460679 \n", + "205 -122.460679 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
50pinot bistro12969 ventura boulevardstudio citybistro34.14572-118.416079
49pinot bistro12969 ventura blvd.studio cityfrench bistro34.14572-118.416079
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "50 pinot bistro 12969 ventura boulevard studio city bistro \n", + "49 pinot bistro 12969 ventura blvd. studio city french bistro \n", + "\n", + " lat lng \n", + "50 34.14572 -118.416079 \n", + "49 34.14572 -118.416079 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
66cafe lalo201 w. 83rd st.new york citycoffeehouses40.785981-73.976727
65cafe lalo201 w. 83rd st.new yorkcoffee bar40.785981-73.976727
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "66 cafe lalo 201 w. 83rd st. new york city coffeehouses 40.785981 \n", + "65 cafe lalo 201 w. 83rd st. new york coffee bar 40.785981 \n", + "\n", + " lng \n", + "66 -73.976727 \n", + "65 -73.976727 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
224khan toke thai house5937 geary blvd.san franciscothai37.780077-122.483303
223khan toke thai house5937 geary blvd.san franciscoasian37.780077-122.483303
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "224 khan toke thai house 5937 geary blvd. san francisco thai 37.780077 \n", + "223 khan toke thai house 5937 geary blvd. san francisco asian 37.780077 \n", + "\n", + " lng \n", + "224 -122.483303 \n", + "223 -122.483303 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
36locanda veneta8638 w 3rdst los angelesitalian34.073417-118.381096
34locanda veneta3rd st.los angelesitalian34.068958-118.320928
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "36 locanda veneta 8638 w 3rd st los angeles italian 34.073417 -118.381096\n", + "34 locanda veneta 3rd st. los angeles italian 34.068958 -118.320928" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
218fleur de lys777 sutter st.san franciscofrench (new)37.788435-122.413145
217fleur de lys777 sutter st.san franciscofrench37.788435-122.413145
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "218 fleur de lys 777 sutter st. san francisco french (new) 37.788435 \n", + "217 fleur de lys 777 sutter st. san francisco french 37.788435 \n", + "\n", + " lng \n", + "218 -122.413145 \n", + "217 -122.413145 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
90island spice402 w. 44th st.new york citycaribbean40.759761-73.992071
89island spice402 w. 44th st.new yorktel caribbean40.759761-73.992071
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "90 island spice 402 w. 44th st. new york city caribbean 40.759761 \n", + "89 island spice 402 w. 44th st. new york tel caribbean 40.759761 \n", + "\n", + " lng \n", + "90 -73.992071 \n", + "89 -73.992071 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
37locandaw. third st.st los angelesitalian34.068958-118.320928
35locanda veneta8638 w. third st.los angelesitalian34.073417-118.381096
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "37 locanda w. third st. st los angeles italian 34.068958 \n", + "35 locanda veneta 8638 w. third st. los angeles italian 34.073417 \n", + "\n", + " lng \n", + "37 -118.320928 \n", + "35 -118.381096 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
85gotham bar grill12 e 12th stnew york citynew american40.734207-73.993699
84gotham bar grill12 e. 12th st.new york cityamerican (new)40.734207-73.993699
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "85 gotham bar grill 12 e 12th st new york city new american \n", + "84 gotham bar grill 12 e. 12th st. new york city american (new) \n", + "\n", + " lat lng \n", + "85 40.734207 -73.993699 \n", + "84 40.734207 -73.993699 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
171brasserie coze3393 peachtree rd.atlantafrench bistro33.846869-84.362512
170brasserie coze3393 peachtree rd. lenox square mall near ne...atlantafrench33.846181-84.364109
\n", + "
" + ], + "text/plain": [ + " name addr \\\n", + "171 brasserie coze 3393 peachtree rd. \n", + "170 brasserie coze 3393 peachtree rd. lenox square mall near ne... \n", + "\n", + " city type lat lng \n", + "171 atlanta french bistro 33.846869 -84.362512 \n", + "170 atlanta french 33.846181 -84.364109 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
179georgia grille2290 peachtree rd.atlantasouthwestern33.817163-84.390037
178georgia grille2290 peachtree rd. peachtree square shopping ...atlantaamerican33.816877-84.390507
\n", + "
" + ], + "text/plain": [ + " name addr \\\n", + "179 georgia grille 2290 peachtree rd. \n", + "178 georgia grille 2290 peachtree rd. peachtree square shopping ... \n", + "\n", + " city type lat lng \n", + "179 atlanta southwestern 33.817163 -84.390037 \n", + "178 atlanta american 33.816877 -84.390507 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
7bel air hotel701 stone canyon rd.bel aircalifornian34.086594-118.446351
6hotel bel air701 stone canyon rd.bel aircalifornian34.086594-118.446351
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "7 bel air hotel 701 stone canyon rd. bel air californian 34.086594 \n", + "6 hotel bel air 701 stone canyon rd. bel air californian 34.086594 \n", + "\n", + " lng \n", + "7 -118.446351 \n", + "6 -118.446351 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
42palm los angeles9001 sta monica boulevardhollywoodsteakhouses34.083064-118.387282
41palm los angeles9001 santa monica blvd.w. hollywoodsteakhouses34.083064-118.387282
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "42 palm los angeles 9001 sta monica boulevard hollywood steakhouses \n", + "41 palm los angeles 9001 santa monica blvd. w. hollywood steakhouses \n", + "\n", + " lat lng \n", + "42 34.083064 -118.387282 \n", + "41 34.083064 -118.387282 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
74chanterelle2 harrison st.new york cityfrench (new)40.718827-74.009075
73chanterelle2 harrison st. near hudson st.new yorkamerican40.718827-74.009075
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "74 chanterelle 2 harrison st. new york city french (new) \n", + "73 chanterelle 2 harrison st. near hudson st. new york american \n", + "\n", + " lat lng \n", + "74 40.718827 -74.009075 \n", + "73 40.718827 -74.009075 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
214campton place340 stockton st.san franciscoamerican (new)37.789096-122.406575
213campton place340 stockton st.san franciscoamerican37.789096-122.406575
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "214 campton place 340 stockton st. san francisco american (new) \n", + "213 campton place 340 stockton st. san francisco american \n", + "\n", + " lat lng \n", + "214 37.789096 -122.406575 \n", + "213 37.789096 -122.406575 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
46philippe original1001 n. alameda st.chinatowncafeterias34.059721-118.237025
45philippe original1001 n. alameda st.los angelesamerican34.059721-118.237025
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "46 philippe original 1001 n. alameda st. chinatown cafeterias \n", + "45 philippe original 1001 n. alameda st. los angeles american \n", + "\n", + " lat lng \n", + "46 34.059721 -118.237025 \n", + "45 34.059721 -118.237025 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
82four seasons99 e. 52nd st.new york cityamerican (new)40.758318-73.971868
81four seasons grill room99 e. 52nd st.new yorkamerican40.758318-73.971868
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "82 four seasons 99 e. 52nd st. new york city american (new) \n", + "81 four seasons grill room 99 e. 52nd st. new york american \n", + "\n", + " lat lng \n", + "82 40.758318 -73.971868 \n", + "81 40.758318 -73.971868 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
98bernardin155 w. 51st st.new york cityseafood40.761569-73.981805
97bernardin155 w. 51st st.new yorkfrench40.761569-73.981805
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "98 bernardin 155 w. 51st st. new york city seafood 40.761569 -73.981805\n", + "97 bernardin 155 w. 51st st. new york french 40.761569 -73.981805" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
210boulevard1 mission st.san franciscoamerican (new)37.79332-122.392761
209boulevard1 mission st.san franciscoamerican37.79332-122.392761
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "210 boulevard 1 mission st. san francisco american (new) 37.79332 \n", + "209 boulevard 1 mission st. san francisco american 37.79332 \n", + "\n", + " lng \n", + "210 -122.392761 \n", + "209 -122.392761 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
226folie2316 polk st.san franciscofrench (new)37.798142-122.422061
225folie2316 polk st.san franciscofrench37.798142-122.422061
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "226 folie 2316 polk st. san francisco french (new) 37.798142 -122.422061\n", + "225 folie 2316 polk st. san francisco french 37.798142 -122.422061" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
12cafe bizou14016 ventura blvdsherman oaksfrench34.148899-118.437919
11cafe bizou14016 ventura blvd.sherman oaksbistro34.148899-118.437919
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "12 cafe bizou 14016 ventura blvd sherman oaks french 34.148899 \n", + "11 cafe bizou 14016 ventura blvd. sherman oaks bistro 34.148899 \n", + "\n", + " lng \n", + "12 -118.437919 \n", + "11 -118.437919 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
236postrio545 post st.san franciscocalifornian37.78783-122.410756
235postrio545 post st.san franciscoamerican37.78783-122.410756
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "236 postrio 545 post st. san francisco californian 37.78783 -122.410756\n", + "235 postrio 545 post st. san francisco american 37.78783 -122.410756" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
49pinot bistro12969 ventura blvd.studio cityfrench bistro34.14572-118.416079
48pinot bistro12969 ventura blvd.los angelesfrench34.14572-118.416079
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "49 pinot bistro 12969 ventura blvd. studio city french bistro 34.14572 \n", + "48 pinot bistro 12969 ventura blvd. los angeles french 34.14572 \n", + "\n", + " lng \n", + "49 -118.416079 \n", + "48 -118.416079 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
103lespinasse2 e 55th stnew yorkamerican40.761398-73.974613
102lespinasse new york city2 e. 55th st.new york cityasian40.761398-73.974613
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "103 lespinasse 2 e 55th st new york american \n", + "102 lespinasse new york city 2 e. 55th st. new york city asian \n", + "\n", + " lat lng \n", + "103 40.761398 -73.974613 \n", + "102 40.761398 -73.974613 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
153coyote cafe las vegas3799 las vegas blvd. s.las vegassouthwestern36.102251-115.169968
152coyote cafe3799 las vegas blvd. slas vegassouthwestern36.102251-115.169968
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "153 coyote cafe las vegas 3799 las vegas blvd. s. las vegas southwestern \n", + "152 coyote cafe 3799 las vegas blvd. s las vegas southwestern \n", + "\n", + " lat lng \n", + "153 36.102251 -115.169968 \n", + "152 36.102251 -115.169968 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
194pano paul1232 west paces ferry rd nwatlantaamerican (new)33.849291-84.428089
192pano paul1232 w. paces ferry rd.atlantainternational33.849291-84.428089
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "194 pano paul 1232 west paces ferry rd nw atlanta american (new) \n", + "192 pano paul 1232 w. paces ferry rd. atlanta international \n", + "\n", + " lat lng \n", + "194 33.849291 -84.428089 \n", + "192 33.849291 -84.428089 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
56valentino3115 pico blvd.santa monicaitalian34.026233-118.457061
55valentino3115 pico blvd.santa monicaitalian34.026233-118.457061
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "56 valentino 3115 pico blvd. santa monica italian 34.026233 -118.457061\n", + "55 valentino 3115 pico blvd. santa monica italian 34.026233 -118.457061" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
157palace court3570 las vegas blvd. s.las vegasfrench (new)36.116156-115.175058
156palace court3570 las vegas blvd. slas vegascontinental36.116156-115.175058
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "157 palace court 3570 las vegas blvd. s. las vegas french (new) \n", + "156 palace court 3570 las vegas blvd. s las vegas continental \n", + "\n", + " lat lng \n", + "157 36.116156 -115.175058 \n", + "156 36.116156 -115.175058 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
165abruzzi2355 peachtree rd. neatlantaitalian33.824647-84.387453
164abruzzi2355 peachtree rd. peachtree battle shopping ...atlantaitalian33.820137-84.387280
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "165 abruzzi 2355 peachtree rd. ne atlanta \n", + "164 abruzzi 2355 peachtree rd. peachtree battle shopping ... atlanta \n", + "\n", + " type lat lng \n", + "165 italian 33.824647 -84.387453 \n", + "164 italian 33.820137 -84.387280 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
23fenix at argyle8358 sunset blvd. westhollywoodamerican34.095097-118.371967
22fenix at argyle8358 sunset blvd.w. hollywoodfrench (new)34.095097-118.371967
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "23 fenix at argyle 8358 sunset blvd. west hollywood american \n", + "22 fenix at argyle 8358 sunset blvd. w. hollywood french (new) \n", + "\n", + " lat lng \n", + "23 34.095097 -118.371967 \n", + "22 34.095097 -118.371967 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
41palm los angeles9001 santa monica blvd.w. hollywoodsteakhouses34.083064-118.387282
40palm9001 santa monica blvd.los angelesamerican34.083064-118.387282
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "41 palm los angeles 9001 santa monica blvd. w. hollywood steakhouses \n", + "40 palm 9001 santa monica blvd. los angeles american \n", + "\n", + " lat lng \n", + "41 34.083064 -118.387282 \n", + "40 34.083064 -118.387282 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
2arnie morton435 s. la cienega boulevardlos angelessteakhouses34.070609-118.376722
1arnie morton chicago435 s. la cienega blvd.los angelessteakhouses34.070609-118.376722
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "2 arnie morton 435 s. la cienega boulevard los angeles \n", + "1 arnie morton chicago 435 s. la cienega blvd. los angeles \n", + "\n", + " type lat lng \n", + "2 steakhouses 34.070609 -118.376722 \n", + "1 steakhouses 34.070609 -118.376722 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
103lespinasse2 e 55th stnew yorkamerican40.761398-73.974613
101lespinasse2 e. 55th st.new yorkamerican40.761398-73.974613
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "103 lespinasse 2 e 55th st new york american 40.761398 -73.974613\n", + "101 lespinasse 2 e. 55th st. new york american 40.761398 -73.974613" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
111mesa grill102 fifth ave.new york citysouthwestern40.737045-73.993119
110mesa grill102 5th ave. between 15th and 16th sts.new yorkamerican40.737045-73.993119
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "111 mesa grill 102 fifth ave. new york city \n", + "110 mesa grill 102 5th ave. between 15th and 16th sts. new york \n", + "\n", + " type lat lng \n", + "111 southwestern 40.737045 -73.993119 \n", + "110 american 40.737045 -73.993119 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
145uncle nick747 ninth ave.new york citygreek40.763878-73.988994
144uncle nick747 9th ave. between 50th and 51st sts.new yorkmediterranean40.763835-73.988912
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "145 uncle nick 747 ninth ave. new york city \n", + "144 uncle nick 747 9th ave. between 50th and 51st sts. new york \n", + "\n", + " type lat lng \n", + "145 greek 40.763878 -73.988994 \n", + "144 mediterranean 40.763835 -73.988912 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
161steak house2880 las vegas blvd. s.las vegassteakhouses36.137642-115.165386
160steak house2880 las vegas blvd. slas vegassteak houses36.137642-115.165386
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "161 steak house 2880 las vegas blvd. s. las vegas steakhouses 36.137642 \n", + "160 steak house 2880 las vegas blvd. s las vegas steak houses 36.137642 \n", + "\n", + " lng \n", + "161 -115.165386 \n", + "160 -115.165386 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
86gotham12 e 12th stnew yorknew american40.734207-73.993699
84gotham bar grill12 e. 12th st.new york cityamerican (new)40.734207-73.993699
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "86 gotham 12 e 12th st new york new american \n", + "84 gotham bar grill 12 e. 12th st. new york city american (new) \n", + "\n", + " lat lng \n", + "86 40.734207 -73.993699 \n", + "84 40.734207 -73.993699 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
11cafe bizou14016 ventura blvd.sherman oaksbistro34.148899-118.437919
10cafe bizou14016 ventura blvd.sherman oaksfrench bistro34.148899-118.437919
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "11 cafe bizou 14016 ventura blvd. sherman oaks bistro 34.148899 \n", + "10 cafe bizou 14016 ventura blvd. sherman oaks french bistro 34.148899 \n", + "\n", + " lng \n", + "11 -118.437919 \n", + "10 -118.437919 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
19citrus6703 melrose avenuelos angelesamerican34.083708-118.33994
18citrus6703 melrose ave.los angelescalifornian34.083708-118.33994
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "19 citrus 6703 melrose avenue los angeles american 34.083708 \n", + "18 citrus 6703 melrose ave. los angeles californian 34.083708 \n", + "\n", + " lng \n", + "19 -118.33994 \n", + "18 -118.33994 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
23fenix at argyle8358 sunset blvd. westhollywoodamerican34.095097-118.371967
21fenix8358 sunset blvd.w. hollywoodfrench (new)34.095097-118.371967
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "23 fenix at argyle 8358 sunset blvd. west hollywood american \n", + "21 fenix 8358 sunset blvd. w. hollywood french (new) \n", + "\n", + " lat lng \n", + "23 34.095097 -118.371967 \n", + "21 34.095097 -118.371967 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
36locanda veneta8638 w 3rdst los angelesitalian34.073417-118.381096
35locanda veneta8638 w. third st.los angelesitalian34.073417-118.381096
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "36 locanda veneta 8638 w 3rd st los angeles italian 34.073417 \n", + "35 locanda veneta 8638 w. third st. los angeles italian 34.073417 \n", + "\n", + " lng \n", + "36 -118.381096 \n", + "35 -118.381096 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
80felidia243 e. 58th st.new york cityitalian40.76036-73.965107
79felidia243 e. 58th st.new yorkitalian40.76036-73.965107
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "80 felidia 243 e. 58th st. new york city italian 40.76036 -73.965107\n", + "79 felidia 243 e. 58th st. new york italian 40.76036 -73.965107" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
88gramercy tavern42 e. 20th st.new york cityamerican (new)40.738465-73.988467
87gramercy tavern42 e. 20th st. between park ave. s and broadwaynew yorkamerican40.738456-73.988506
\n", + "
" + ], + "text/plain": [ + " name addr \\\n", + "88 gramercy tavern 42 e. 20th st. \n", + "87 gramercy tavern 42 e. 20th st. between park ave. s and broadway \n", + "\n", + " city type lat lng \n", + "88 new york city american (new) 40.738465 -73.988467 \n", + "87 new york american 40.738456 -73.988506 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
8bel air701 stone canyon roadbel airamerican34.086594-118.446351
6hotel bel air701 stone canyon rd.bel aircalifornian34.086594-118.446351
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "8 bel air 701 stone canyon road bel air american 34.086594 \n", + "6 hotel bel air 701 stone canyon rd. bel air californian 34.086594 \n", + "\n", + " lng \n", + "8 -118.446351 \n", + "6 -118.446351 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
220fringale570 fourth st.san franciscofrench bistro37.778542-122.397193
219fringale570 4th st.san franciscofrench37.778542-122.397193
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "220 fringale 570 fourth st. san francisco french bistro 37.778542 \n", + "219 fringale 570 4th st. san francisco french 37.778542 \n", + "\n", + " lng \n", + "220 -122.397193 \n", + "219 -122.397193 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
228lulu restaurant bis cafe816 folsom st.san franciscomediterranean37.781793-122.401818
227lulu816 folsom st.san franciscomediterranean37.781793-122.401818
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "228 lulu restaurant bis cafe 816 folsom st. san francisco mediterranean \n", + "227 lulu 816 folsom st. san francisco mediterranean \n", + "\n", + " lat lng \n", + "228 37.781793 -122.401818 \n", + "227 37.781793 -122.401818 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
37locandaw. third st.st los angelesitalian34.068958-118.320928
34locanda veneta3rd st.los angelesitalian34.068958-118.320928
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "37 locanda w. third st. st los angeles italian 34.068958 \n", + "34 locanda veneta 3rd st. los angeles italian 34.068958 \n", + "\n", + " lng \n", + "37 -118.320928 \n", + "34 -118.320928 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
10cafe bizou14016 ventura blvd.sherman oaksfrench bistro34.148899-118.437919
9cafe bizou14016 ventura blvd.sherman oaksfrench34.148899-118.437919
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "10 cafe bizou 14016 ventura blvd. sherman oaks french bistro 34.148899 \n", + "9 cafe bizou 14016 ventura blvd. sherman oaks french 34.148899 \n", + "\n", + " lng \n", + "10 -118.437919 \n", + "9 -118.437919 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
85gotham bar grill12 e 12th stnew york citynew american40.734207-73.993699
83gotham bar grill12 e. 12th st.new yorkamerican40.734207-73.993699
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "85 gotham bar grill 12 e 12th st new york city new american 40.734207 \n", + "83 gotham bar grill 12 e. 12th st. new york american 40.734207 \n", + "\n", + " lng \n", + "85 -73.993699 \n", + "83 -73.993699 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
5art deli12224 ventura blvd.los angelesdelis34.142966-118.399469
4art deli12224 ventura blvd.studio citydelis34.142966-118.399469
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "5 art deli 12224 ventura blvd. los angeles delis 34.142966 -118.399469\n", + "4 art deli 12224 ventura blvd. studio city delis 34.142966 -118.399469" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
123picholine35 w. 64th st.new york citymediterranean40.772018-73.981097
122picholine35 w. 64th st.new yorkmediterranean40.772018-73.981097
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "123 picholine 35 w. 64th st. new york city mediterranean 40.772018 \n", + "122 picholine 35 w. 64th st. new york mediterranean 40.772018 \n", + "\n", + " lng \n", + "123 -73.981097 \n", + "122 -73.981097 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
133second avenue deli156 second ave.new york citydelis40.72961-73.986701
132second avenue deli156 2nd ave. at 10th st.new yorkdelicatessen40.72961-73.986701
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "133 second avenue deli 156 second ave. new york city \n", + "132 second avenue deli 156 2nd ave. at 10th st. new york \n", + "\n", + " type lat lng \n", + "133 delis 40.72961 -73.986701 \n", + "132 delicatessen 40.72961 -73.986701 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
11cafe bizou14016 ventura blvd.sherman oaksbistro34.148899-118.437919
9cafe bizou14016 ventura blvd.sherman oaksfrench34.148899-118.437919
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "11 cafe bizou 14016 ventura blvd. sherman oaks bistro 34.148899 \n", + "9 cafe bizou 14016 ventura blvd. sherman oaks french 34.148899 \n", + "\n", + " lng \n", + "11 -118.437919 \n", + "9 -118.437919 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
19citrus6703 melrose avenuelos angelesamerican34.083708-118.33994
17citrus6703 melrose ave.los angelescalifornian34.083708-118.33994
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "19 citrus 6703 melrose avenue los angeles american 34.083708 \n", + "17 citrus 6703 melrose ave. los angeles californian 34.083708 \n", + "\n", + " lng \n", + "19 -118.33994 \n", + "17 -118.33994 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
72carnegie deli854 seventh ave.new york citydelis40.7642-73.981407
71carnegie deli854 7th ave. between 54th and 55th sts.new yorkdelicatessen40.7642-73.981407
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "72 carnegie deli 854 seventh ave. new york city \n", + "71 carnegie deli 854 7th ave. between 54th and 55th sts. new york \n", + "\n", + " type lat lng \n", + "72 delis 40.7642 -73.981407 \n", + "71 delicatessen 40.7642 -73.981407 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
200ritz carlton restaurant181 peachtree st.atlantafrench (classic)33.758579-84.387066
199restaurant ritz carlton atlanta181 peachtree st.atlantacontinental33.758579-84.387066
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "200 ritz carlton restaurant 181 peachtree st. atlanta \n", + "199 restaurant ritz carlton atlanta 181 peachtree st. atlanta \n", + "\n", + " type lat lng \n", + "200 french (classic) 33.758579 -84.387066 \n", + "199 continental 33.758579 -84.387066 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
1arnie morton chicago435 s. la cienega blvd.los angelessteakhouses34.070609-118.376722
0arnie morton chicago435 s. la cienega blv.los angelesamerican34.070609-118.376722
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "1 arnie morton chicago 435 s. la cienega blvd. los angeles steakhouses \n", + "0 arnie morton chicago 435 s. la cienega blv. los angeles american \n", + "\n", + " lat lng \n", + "1 34.070609 -118.376722 \n", + "0 34.070609 -118.376722 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
127rainbow room30 rockefeller plazanew york cityamerican (new)40.759375-73.979973
126rainbow room30 rockefeller plazanew yorkor 212/632-5100 american40.759375-73.979973
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "127 rainbow room 30 rockefeller plaza new york city \n", + "126 rainbow room 30 rockefeller plaza new york \n", + "\n", + " type lat lng \n", + "127 american (new) 40.759375 -73.979973 \n", + "126 or 212/632-5100 american 40.759375 -73.979973 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
129river cafe1 water st.brooklynamerican (new)40.703175-73.99469
128river cafe1 water st. at the east riverbrooklynamerican40.703175-73.99469
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "129 river cafe 1 water st. brooklyn american (new) \n", + "128 river cafe 1 water st. at the east river brooklyn american \n", + "\n", + " lat lng \n", + "129 40.703175 -73.99469 \n", + "128 40.703175 -73.99469 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
70carmine2450 broadwaynew york cityitalian40.791096-73.973991
69carmine2450 broadway between 90th and 91st sts.new yorkitalian40.791096-73.973991
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "70 carmine 2450 broadway new york city \n", + "69 carmine 2450 broadway between 90th and 91st sts. new york \n", + "\n", + " type lat lng \n", + "70 italian 40.791096 -73.973991 \n", + "69 italian 40.791096 -73.973991 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
39matsuhisa129 n. la cienega blvd.beverly hillsseafood34.068379-118.376541
38matsuhisa129 n. la cienega blvd.beverly hillsasian34.068379-118.376541
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "39 matsuhisa 129 n. la cienega blvd. beverly hills seafood 34.068379 \n", + "38 matsuhisa 129 n. la cienega blvd. beverly hills asian 34.068379 \n", + "\n", + " lng \n", + "39 -118.376541 \n", + "38 -118.376541 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
167bacchanalia3125 piedmont rd.atlantacalifornian33.842045-84.369874
166bacchanalia3125 piedmont rd. near peachtree rd.atlantainternational33.842045-84.369874
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "167 bacchanalia 3125 piedmont rd. atlanta \n", + "166 bacchanalia 3125 piedmont rd. near peachtree rd. atlanta \n", + "\n", + " type lat lng \n", + "167 californian 33.842045 -84.369874 \n", + "166 international 33.842045 -84.369874 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
240rose pistola532 columbus ave.san franciscoitalian37.800073-122.409429
239rose pistola532 columbus ave.san franciscoitalian37.800073-122.409429
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "240 rose pistola 532 columbus ave. san francisco italian 37.800073 \n", + "239 rose pistola 532 columbus ave. san francisco italian 37.800073 \n", + "\n", + " lng \n", + "240 -122.409429 \n", + "239 -122.409429 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
27grill9560 dayton waybeverly hillsamerican (traditional)34.06736-118.401894
26grill alley9560 dayton waylos angelesamerican34.06736-118.401894
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "27 grill 9560 dayton way beverly hills american (traditional) \n", + "26 grill alley 9560 dayton way los angeles american \n", + "\n", + " lat lng \n", + "27 34.06736 -118.401894 \n", + "26 34.06736 -118.401894 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
35locanda veneta8638 w. third st.los angelesitalian34.073417-118.381096
34locanda veneta3rd st.los angelesitalian34.068958-118.320928
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "35 locanda veneta 8638 w. third st. los angeles italian 34.073417 \n", + "34 locanda veneta 3rd st. los angeles italian 34.068958 \n", + "\n", + " lng \n", + "35 -118.381096 \n", + "34 -118.320928 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
155montrachet bistro3000 paradise rd.las vegasfrench bistro36.136261-115.151254
154montrachet3000 w. paradise rd.las vegascontinental36.136261-115.151254
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "155 montrachet bistro 3000 paradise rd. las vegas french bistro \n", + "154 montrachet 3000 w. paradise rd. las vegas continental \n", + "\n", + " lat lng \n", + "155 36.136261 -115.151254 \n", + "154 36.136261 -115.151254 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
163tillerman2245 e. flamingo rd.las vegassteakhouses36.114384-115.121894
162tillerman2245 e. flamingo rd.las vegasseafood36.114384-115.121894
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "163 tillerman 2245 e. flamingo rd. las vegas steakhouses 36.114384 \n", + "162 tillerman 2245 e. flamingo rd. las vegas seafood 36.114384 \n", + "\n", + " lng \n", + "163 -115.121894 \n", + "162 -115.121894 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
119park avenue cafe new york city100 e. 63rd st.new york cityamerican (new)40.765023-73.967604
118park avenue cafe100 e. 63rd st.new yorkamerican40.765023-73.967604
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "119 park avenue cafe new york city 100 e. 63rd st. new york city \n", + "118 park avenue cafe 100 e. 63rd st. new york \n", + "\n", + " type lat lng \n", + "119 american (new) 40.765023 -73.967604 \n", + "118 american 40.765023 -73.967604 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
137shun lee palace155 e. 55th st.new york citychinese40.759428-73.969068
136shun lee west43 w. 65th st.new yorkasian40.772900-73.981348
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "137 shun lee palace 155 e. 55th st. new york city chinese 40.759428 \n", + "136 shun lee west 43 w. 65th st. new york asian 40.772900 \n", + "\n", + " lng \n", + "137 -73.969068 \n", + "136 -73.981348 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
62aquavit13 w. 54th st.new york cityscandinavian40.761677-73.976345
61aquavit13 w. 54th st.new yorkcontinental40.761677-73.976345
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "62 aquavit 13 w. 54th st. new york city scandinavian 40.761677 -73.976345\n", + "61 aquavit 13 w. 54th st. new york continental 40.761677 -73.976345" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
78dawat210 e. 58th st.new york cityindian40.760423-73.966428
77dawat210 e. 58th st.new yorkasian40.760423-73.966428
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "78 dawat 210 e. 58th st. new york city indian 40.760423 -73.966428\n", + "77 dawat 210 e. 58th st. new york asian 40.760423 -73.966428" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
194pano paul1232 west paces ferry rd nwatlantaamerican (new)33.849291-84.428089
193pano paul1232 w. paces ferry rd.atlantaamerican (new)33.849291-84.428089
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "194 pano paul 1232 west paces ferry rd nw atlanta american (new) \n", + "193 pano paul 1232 w. paces ferry rd. atlanta american (new) \n", + "\n", + " lat lng \n", + "194 33.849291 -84.428089 \n", + "193 33.849291 -84.428089 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
96cote basque60 w. 55th st.new york cityfrench (classic)40.762483-73.977340
95cote basque60 w. 55th st. between 5th and 6th ave.new yorkfrench40.762523-73.977277
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "96 cote basque 60 w. 55th st. new york city \n", + "95 cote basque 60 w. 55th st. between 5th and 6th ave. new york \n", + "\n", + " type lat lng \n", + "96 french (classic) 40.762483 -73.977340 \n", + "95 french 40.762523 -73.977277 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
31orangerie903 n. la cienega blvd.w. hollywoodfrench (classic)34.100833-118.325613
30orangerie903 n. la cienega blvd.los angelesfrench34.087098-118.376626
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "31 orangerie 903 n. la cienega blvd. w. hollywood french (classic) \n", + "30 orangerie 903 n. la cienega blvd. los angeles french \n", + "\n", + " lat lng \n", + "31 34.100833 -118.325613 \n", + "30 34.087098 -118.376626 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
159second street grill200 e. fremont st.las vegaspacific rim36.170927-115.143152
158second street grille200 e. fremont st.las vegasseafood36.170927-115.143152
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "159 second street grill 200 e. fremont st. las vegas pacific rim \n", + "158 second street grille 200 e. fremont st. las vegas seafood \n", + "\n", + " lat lng \n", + "159 36.170927 -115.143152 \n", + "158 36.170927 -115.143152 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
47philippe original1001 north alamedalos angelessandwiches34.059721-118.237025
46philippe original1001 n. alameda st.chinatowncafeterias34.059721-118.237025
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "47 philippe original 1001 north alameda los angeles sandwiches \n", + "46 philippe original 1001 n. alameda st. chinatown cafeterias \n", + "\n", + " lat lng \n", + "47 34.059721 -118.237025 \n", + "46 34.059721 -118.237025 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
175ciboulette restaurant1529 piedmont ave.atlantafrench (new)33.795651-84.368888
174ciboulette1529 piedmont ave.atlantafrench33.795651-84.368888
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "175 ciboulette restaurant 1529 piedmont ave. atlanta french (new) \n", + "174 ciboulette 1529 piedmont ave. atlanta french \n", + "\n", + " lat lng \n", + "175 33.795651 -84.368888 \n", + "174 33.795651 -84.368888 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
102lespinasse new york city2 e. 55th st.new york cityasian40.761398-73.974613
101lespinasse2 e. 55th st.new yorkamerican40.761398-73.974613
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "102 lespinasse new york city 2 e. 55th st. new york city asian \n", + "101 lespinasse 2 e. 55th st. new york american \n", + "\n", + " lat lng \n", + "102 40.761398 -73.974613 \n", + "101 40.761398 -73.974613 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
230masa648 bush st.san franciscofrench (new)37.790416-122.408011
229masa648 bush st.san franciscofrench37.790416-122.408011
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "230 masa 648 bush st. san francisco french (new) 37.790416 -122.408011\n", + "229 masa 648 bush st. san francisco french 37.790416 -122.408011" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
12cafe bizou14016 ventura blvdsherman oaksfrench34.148899-118.437919
9cafe bizou14016 ventura blvd.sherman oaksfrench34.148899-118.437919
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "12 cafe bizou 14016 ventura blvd sherman oaks french 34.148899 \n", + "9 cafe bizou 14016 ventura blvd. sherman oaks french 34.148899 \n", + "\n", + " lng \n", + "12 -118.437919 \n", + "9 -118.437919 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
22fenix at argyle8358 sunset blvd.w. hollywoodfrench (new)34.095097-118.371967
20fenix8358 sunset blvd. westhollywoodamerican34.095097-118.371967
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "22 fenix at argyle 8358 sunset blvd. w. hollywood french (new) \n", + "20 fenix 8358 sunset blvd. west hollywood american \n", + "\n", + " lat lng \n", + "22 34.095097 -118.371967 \n", + "20 34.095097 -118.371967 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
21fenix8358 sunset blvd.w. hollywoodfrench (new)34.095097-118.371967
20fenix8358 sunset blvd. westhollywoodamerican34.095097-118.371967
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "21 fenix 8358 sunset blvd. w. hollywood french (new) 34.095097 \n", + "20 fenix 8358 sunset blvd. west hollywood american 34.095097 \n", + "\n", + " lng \n", + "21 -118.371967 \n", + "20 -118.371967 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
107manhattan ocean club57 w. 58th st.new york cityseafood40.764963-73.976181
106manhattan ocean club57 w. 58th st.new yorkseafood40.764963-73.976181
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "107 manhattan ocean club 57 w. 58th st. new york city seafood 40.764963 \n", + "106 manhattan ocean club 57 w. 58th st. new york seafood 40.764963 \n", + "\n", + " lng \n", + "107 -73.976181 \n", + "106 -73.976181 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
115montrachet239 w. broadwaynew york cityfrench bistro40.719467-74.005752
114montrachet239 w. broadway between walker and white sts.new yorkfrench40.719560-74.005749
\n", + "
" + ], + "text/plain": [ + " name addr \\\n", + "115 montrachet 239 w. broadway \n", + "114 montrachet 239 w. broadway between walker and white sts. \n", + "\n", + " city type lat lng \n", + "115 new york city french bistro 40.719467 -74.005752 \n", + "114 new york french 40.719560 -74.005749 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
141smith wollensky797 third ave.new york citysteakhouses40.755170-73.970744
140smith wollensky201 e. 49th st.new yorkamerican40.755156-73.970718
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "141 smith wollensky 797 third ave. new york city steakhouses 40.755170 \n", + "140 smith wollensky 201 e. 49th st. new york american 40.755156 \n", + "\n", + " lng \n", + "141 -73.970744 \n", + "140 -73.970718 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
149virgil real bbq152 w. 44th st.new york citybbq40.756755-73.985161
148virgil152 w. 44th st.new yorkamerican40.756755-73.985161
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "149 virgil real bbq 152 w. 44th st. new york city bbq 40.756755 \n", + "148 virgil 152 w. 44th st. new york american 40.756755 \n", + "\n", + " lng \n", + "149 -73.985161 \n", + "148 -73.985161 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
121petrossian182 w. 58th st.new york cityrussian40.766049-73.979439
120petrossian182 w. 58th st.new yorkfrench40.766049-73.979439
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "121 petrossian 182 w. 58th st. new york city russian 40.766049 -73.979439\n", + "120 petrossian 182 w. 58th st. new york french 40.766049 -73.979439" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
135seryna11 e. 53rd st.new york cityjapanese40.760055-73.97456
134seryna11 e. 53rd st.new yorkasian40.760055-73.97456
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "135 seryna 11 e. 53rd st. new york city japanese 40.760055 -73.97456\n", + "134 seryna 11 e. 53rd st. new york asian 40.760055 -73.97456" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
185indigo coastal grill1397 n. highland ave.atlantaeclectic33.792471-84.35211
184indigo coastal grill1397 n. highland ave.atlantacaribbean33.792471-84.35211
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "185 indigo coastal grill 1397 n. highland ave. atlanta eclectic \n", + "184 indigo coastal grill 1397 n. highland ave. atlanta caribbean \n", + "\n", + " lat lng \n", + "185 33.792471 -84.35211 \n", + "184 33.792471 -84.35211 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
54spago los angeles8795 sunset blvd.w. hollywoodcalifornian34.091132-118.383290
53spago1114 horn ave.los angelescalifornian34.091172-118.383161
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "54 spago los angeles 8795 sunset blvd. w. hollywood californian \n", + "53 spago 1114 horn ave. los angeles californian \n", + "\n", + " lat lng \n", + "54 34.091132 -118.383290 \n", + "53 34.091172 -118.383161 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
86gotham12 e 12th stnew yorknew american40.734207-73.993699
85gotham bar grill12 e 12th stnew york citynew american40.734207-73.993699
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "86 gotham 12 e 12th st new york new american 40.734207 \n", + "85 gotham bar grill 12 e 12th st new york city new american 40.734207 \n", + "\n", + " lng \n", + "86 -73.993699 \n", + "85 -73.993699 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
202toulouse293-b peachtree rd.atlantafrench (new)33.810424-84.392143
201toulouseb peachtree rd.atlantafrench33.810424-84.392143
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "202 toulouse 293-b peachtree rd. atlanta french (new) 33.810424 \n", + "201 toulouse b peachtree rd. atlanta french 33.810424 \n", + "\n", + " lng \n", + "202 -84.392143 \n", + "201 -84.392143 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
125pisces95 ave. anew york cityseafood40.725633-73.984031
124pisces95 ave. a at 6th st.new yorkseafood40.725651-73.984065
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "125 pisces 95 ave. a new york city seafood 40.725633 \n", + "124 pisces 95 ave. a at 6th st. new york seafood 40.725651 \n", + "\n", + " lng \n", + "125 -73.984031 \n", + "124 -73.984065 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
47philippe original1001 north alamedalos angelessandwiches34.059721-118.237025
45philippe original1001 n. alameda st.los angelesamerican34.059721-118.237025
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "47 philippe original 1001 north alameda los angeles sandwiches \n", + "45 philippe original 1001 n. alameda st. los angeles american \n", + "\n", + " lat lng \n", + "47 34.059721 -118.237025 \n", + "45 34.059721 -118.237025 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
131san domenico240 central park s.new york cityitalian40.767434-73.981178
130san domenico240 central park snew yorkitalian40.767434-73.981178
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "131 san domenico 240 central park s. new york city italian 40.767434 \n", + "130 san domenico 240 central park s new york italian 40.767434 \n", + "\n", + " lng \n", + "131 -73.981178 \n", + "130 -73.981178 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
189mary mac tea room224 ponce de leon ave.atlantasouthern/soul33.772859-84.379878
188mary mac tea room224 ponce de leon ave.atlantasouthern33.772859-84.379878
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "189 mary mac tea room 224 ponce de leon ave. atlanta southern/soul \n", + "188 mary mac tea room 224 ponce de leon ave. atlanta southern \n", + "\n", + " lat lng \n", + "189 33.772859 -84.379878 \n", + "188 33.772859 -84.379878 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
18citrus6703 melrose ave.los angelescalifornian34.083708-118.33994
17citrus6703 melrose ave.los angelescalifornian34.083708-118.33994
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "18 citrus 6703 melrose ave. los angeles californian 34.083708 -118.33994\n", + "17 citrus 6703 melrose ave. los angeles californian 34.083708 -118.33994" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
94caravelle33 w. 55th st.new york cityfrench (classic)40.76251-73.976368
93caravelle33 w. 55th st.new yorkfrench40.76251-73.976368
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "94 caravelle 33 w. 55th st. new york city french (classic) 40.76251 \n", + "93 caravelle 33 w. 55th st. new york french 40.76251 \n", + "\n", + " lng \n", + "94 -73.976368 \n", + "93 -73.976368 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
23fenix at argyle8358 sunset blvd. westhollywoodamerican34.095097-118.371967
20fenix8358 sunset blvd. westhollywoodamerican34.095097-118.371967
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "23 fenix at argyle 8358 sunset blvd. west hollywood american 34.095097 \n", + "20 fenix 8358 sunset blvd. west hollywood american 34.095097 \n", + "\n", + " lng \n", + "23 -118.371967 \n", + "20 -118.371967 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
222hawthorne lane22 hawthorne st.san franciscocalifornian37.785452-122.399036
221hawthorne lane22 hawthorne st.san franciscoamerican37.785452-122.399036
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "222 hawthorne lane 22 hawthorne st. san francisco californian 37.785452 \n", + "221 hawthorne lane 22 hawthorne st. san francisco american 37.785452 \n", + "\n", + " lng \n", + "222 -122.399036 \n", + "221 -122.399036 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
238ritz carlton dining room san francisco600 stockton st.san franciscofrench (new)37.791875-122.407039
237ritz carlton restaurant dining room600 stockton st.san franciscoamerican37.791875-122.407039
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "238 ritz carlton dining room san francisco 600 stockton st. san francisco \n", + "237 ritz carlton restaurant dining room 600 stockton st. san francisco \n", + "\n", + " type lat lng \n", + "238 french (new) 37.791875 -122.407039 \n", + "237 american 37.791875 -122.407039 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
8bel air701 stone canyon roadbel airamerican34.086594-118.446351
7bel air hotel701 stone canyon rd.bel aircalifornian34.086594-118.446351
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "8 bel air 701 stone canyon road bel air american 34.086594 \n", + "7 bel air hotel 701 stone canyon rd. bel air californian 34.086594 \n", + "\n", + " lng \n", + "8 -118.446351 \n", + "7 -118.446351 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
232mifune1737 post st.san franciscojapanese37.785329-122.430369
231mifune japan center kintetsu building1737 post st.san franciscoasian37.785329-122.430369
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "232 mifune 1737 post st. san francisco \n", + "231 mifune japan center kintetsu building 1737 post st. san francisco \n", + "\n", + " type lat lng \n", + "232 japanese 37.785329 -122.430369 \n", + "231 asian 37.785329 -122.430369 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
113mi cocina57 jane st.new york citymexican40.738219-74.005384
112mi cocina57 jane st. off hudson st.new yorkmexican40.738219-74.005384
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "113 mi cocina 57 jane st. new york city mexican \n", + "112 mi cocina 57 jane st. off hudson st. new york mexican \n", + "\n", + " lat lng \n", + "113 40.738219 -74.005384 \n", + "112 40.738219 -74.005384 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
143tavern greencentral park westnew york cityamerican (new)40.784858-73.969652
142tavern greenin central park at 67th st.new yorkamerican40.773040-73.978294
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "143 tavern green central park west new york city american (new) \n", + "142 tavern green in central park at 67th st. new york american \n", + "\n", + " lat lng \n", + "143 40.784858 -73.969652 \n", + "142 40.773040 -73.978294 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
177delectables1 margaret mitchell sq.atlantacafeterias33.833739-84.435801
176delectables1 margaret mitchell sq.atlantaamerican33.833739-84.435801
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "177 delectables 1 margaret mitchell sq. atlanta cafeterias 33.833739 \n", + "176 delectables 1 margaret mitchell sq. atlanta american 33.833739 \n", + "\n", + " lng \n", + "177 -84.435801 \n", + "176 -84.435801 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
5art deli12224 ventura blvd.los angelesdelis34.142966-118.399469
3art delicatessen12224 ventura blvd.studio cityamerican34.142966-118.399469
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "5 art deli 12224 ventura blvd. los angeles delis 34.142966 \n", + "3 art delicatessen 12224 ventura blvd. studio city american 34.142966 \n", + "\n", + " lng \n", + "5 -118.399469 \n", + "3 -118.399469 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
25granita23725 w. malibu rd.malibucalifornian34.03388-118.692496
24granita23725 w. malibu rd.malibucalifornian34.03388-118.692496
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "25 granita 23725 w. malibu rd. malibu californian 34.03388 -118.692496\n", + "24 granita 23725 w. malibu rd. malibu californian 34.03388 -118.692496" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
50pinot bistro12969 ventura boulevardstudio citybistro34.14572-118.416079
48pinot bistro12969 ventura blvd.los angelesfrench34.14572-118.416079
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "50 pinot bistro 12969 ventura boulevard studio city bistro 34.14572 \n", + "48 pinot bistro 12969 ventura blvd. los angeles french 34.14572 \n", + "\n", + " lng \n", + "50 -118.416079 \n", + "48 -118.416079 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
6021 club21 w. 52nd st.new york cityamerican (new)40.760533-73.977397
5921 club21 w. 52nd st.new yorkamerican40.760533-73.977397
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "60 21 club 21 w. 52nd st. new york city american (new) 40.760533 \n", + "59 21 club 21 w. 52nd st. new york american 40.760533 \n", + "\n", + " lng \n", + "60 -73.977397 \n", + "59 -73.977397 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
68cafe des artistes1 w. 67th st.new york cityfrench (classic)40.773502-73.978926
67cafe des artistes1 w. 67th st.new yorkcontinental40.773502-73.978926
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "68 cafe des artistes 1 w. 67th st. new york city french (classic) \n", + "67 cafe des artistes 1 w. 67th st. new york continental \n", + "\n", + " lat lng \n", + "68 40.773502 -73.978926 \n", + "67 40.773502 -73.978926 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
196ritz carlton cafe buckhead3434 peachtree rd. neatlantaamerican (new)33.850807-84.364227
195cafe ritz carlton buckhead3434 peachtree rd.atlantaext 6108 international33.850807-84.364227
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "196 ritz carlton cafe buckhead 3434 peachtree rd. ne atlanta \n", + "195 cafe ritz carlton buckhead 3434 peachtree rd. atlanta \n", + "\n", + " type lat lng \n", + "196 american (new) 33.850807 -84.364227 \n", + "195 ext 6108 international 33.850807 -84.364227 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
29katsu1972 hillhurst ave.los felizjapanese34.107405-118.28719
28restaurant katsu1972 n. hillhurst ave.los angelesasian34.107405-118.28719
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "29 katsu 1972 hillhurst ave. los feliz japanese \n", + "28 restaurant katsu 1972 n. hillhurst ave. los angeles asian \n", + "\n", + " lat lng \n", + "29 34.107405 -118.28719 \n", + "28 34.107405 -118.28719 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
37locandaw. third st.st los angelesitalian34.068958-118.320928
36locanda veneta8638 w 3rdst los angelesitalian34.073417-118.381096
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "37 locanda w. third st. st los angeles italian 34.068958 \n", + "36 locanda veneta 8638 w 3rd st los angeles italian 34.073417 \n", + "\n", + " lng \n", + "37 -118.320928 \n", + "36 -118.381096 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
105lutece249 e. 50th st.new york cityfrench (classic)40.755287-73.968919
104lutece249 e. 50th st.new yorkfrench40.755287-73.968919
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "105 lutece 249 e. 50th st. new york city french (classic) 40.755287 \n", + "104 lutece 249 e. 50th st. new york french 40.755287 \n", + "\n", + " lng \n", + "105 -73.968919 \n", + "104 -73.968919 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
151chin3200 las vegas blvd. s.las vegaschinese36.127524-115.1715
150chin3200 las vegas blvd. slas vegasasian36.127524-115.1715
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "151 chin 3200 las vegas blvd. s. las vegas chinese 36.127524 -115.1715\n", + "150 chin 3200 las vegas blvd. s las vegas asian 36.127524 -115.1715" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
169bone restaurant3130 piedmont rd. neatlantasteakhouses33.842103-84.371103
168bone3130 piedmont roadatlantaamerican33.842103-84.371103
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "169 bone restaurant 3130 piedmont rd. ne atlanta steakhouses 33.842103 \n", + "168 bone 3130 piedmont road atlanta american 33.842103 \n", + "\n", + " lng \n", + "169 -84.371103 \n", + "168 -84.371103 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
14campanile624 s. la brea ave.los angelescalifornian34.064141-118.343701
13campanile624 s. la brea ave.los angelesamerican34.064141-118.343701
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "14 campanile 624 s. la brea ave. los angeles californian 34.064141 \n", + "13 campanile 624 s. la brea ave. los angeles american 34.064141 \n", + "\n", + " lng \n", + "14 -118.343701 \n", + "13 -118.343701 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
86gotham12 e 12th stnew yorknew american40.734207-73.993699
83gotham bar grill12 e. 12th st.new yorkamerican40.734207-73.993699
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "86 gotham 12 e 12th st new york new american 40.734207 \n", + "83 gotham bar grill 12 e. 12th st. new york american 40.734207 \n", + "\n", + " lng \n", + "86 -73.993699 \n", + "83 -73.993699 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
64aureole34 e. 61st st.new york cityamerican (new)40.764395-73.970078
63aureole34 e. 61st st.new yorkamerican40.764395-73.970078
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "64 aureole 34 e. 61st st. new york city american (new) 40.764395 \n", + "63 aureole 34 e. 61st st. new york american 40.764395 \n", + "\n", + " lng \n", + "64 -73.970078 \n", + "63 -73.970078 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
33chardonnay los angeles8284 melrose ave.los angelesfrench bistro34.083422-118.370118
32chardonnay8284 melrose ave.los angelesfrench34.083422-118.370118
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "33 chardonnay los angeles 8284 melrose ave. los angeles french bistro \n", + "32 chardonnay 8284 melrose ave. los angeles french \n", + "\n", + " lat lng \n", + "33 34.083422 -118.370118 \n", + "32 34.083422 -118.370118 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
42palm los angeles9001 sta monica boulevardhollywoodsteakhouses34.083064-118.387282
40palm9001 santa monica blvd.los angelesamerican34.083064-118.387282
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "42 palm los angeles 9001 sta monica boulevard hollywood steakhouses \n", + "40 palm 9001 santa monica blvd. los angeles american \n", + "\n", + " lat lng \n", + "42 34.083064 -118.387282 \n", + "40 34.083064 -118.387282 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
109march405 e. 58th st.new york cityamerican (new)40.758913-73.961847
108march405 e. 58th st.new yorkamerican40.758913-73.961847
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "109 march 405 e. 58th st. new york city american (new) 40.758913 \n", + "108 march 405 e. 58th st. new york american 40.758913 \n", + "\n", + " lng \n", + "109 -73.961847 \n", + "108 -73.961847 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
117oceana55 e. 54th st.new york cityseafood40.760244-73.973086
116oceana55 e. 54th st.new yorkseafood40.760244-73.973086
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "117 oceana 55 e. 54th st. new york city seafood 40.760244 -73.973086\n", + "116 oceana 55 e. 54th st. new york seafood 40.760244 -73.973086" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
139sign dove1110 third ave.new york cityamerican (new)40.76564-73.963968
138sign dove1110 3rd ave. at 65th st.new yorkamerican40.76564-73.963968
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "139 sign dove 1110 third ave. new york city american (new) \n", + "138 sign dove 1110 3rd ave. at 65th st. new york american \n", + "\n", + " lat lng \n", + "139 40.76564 -73.963968 \n", + "138 40.76564 -73.963968 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
147union square cafe21 e. 16th st.new york cityamerican (new)40.736865-73.991262
146union square cafe21 e. 16th st.new yorkamerican40.736865-73.991262
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "147 union square cafe 21 e. 16th st. new york city american (new) \n", + "146 union square cafe 21 e. 16th st. new york american \n", + "\n", + " lat lng \n", + "147 40.736865 -73.991262 \n", + "146 40.736865 -73.991262 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
173buckhead diner3073 piedmont rd.atlantaamerican (new)33.839406-84.368704
172buckhead diner3073 piedmont roadatlantaamerican33.839406-84.368704
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "173 buckhead diner 3073 piedmont rd. atlanta american (new) 33.839406 \n", + "172 buckhead diner 3073 piedmont road atlanta american 33.839406 \n", + "\n", + " lng \n", + "173 -84.368704 \n", + "172 -84.368704 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
181hedgerose heights inn490 e. paces ferry rd. neatlantacontinental33.838769-84.371907
180hedgerose heights inn490 e. paces ferry rd.atlantainternational33.838769-84.371907
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "181 hedgerose heights inn 490 e. paces ferry rd. ne atlanta continental \n", + "180 hedgerose heights inn 490 e. paces ferry rd. atlanta international \n", + "\n", + " lat lng \n", + "181 33.838769 -84.371907 \n", + "180 33.838769 -84.371907 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
16chinois main2709 main st.santa monicapacific new wave34.000939-118.482058
15chinois main2709 main st.santa monicafrench34.000939-118.482058
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "16 chinois main 2709 main st. santa monica pacific new wave 34.000939 \n", + "15 chinois main 2709 main st. santa monica french 34.000939 \n", + "\n", + " lng \n", + "16 -118.482058 \n", + "15 -118.482058 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
92jo jo160 e. 64th st.new york cityfrench bistro40.765056-73.965704
91jo jo160 e. 64th st.new yorkamerican40.765056-73.965704
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "92 jo jo 160 e. 64th st. new york city french bistro 40.765056 -73.965704\n", + "91 jo jo 160 e. 64th st. new york american 40.765056 -73.965704" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
100les celebrites155 w. 58th st.new york cityfrench (classic)40.765901-73.978414
99les celebrites160 central park snew yorkfrench40.766016-73.978641
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "100 les celebrites 155 w. 58th st. new york city french (classic) \n", + "99 les celebrites 160 central park s new york french \n", + "\n", + " lat lng \n", + "100 40.765901 -73.978414 \n", + "99 40.766016 -73.978641 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
12cafe bizou14016 ventura blvdsherman oaksfrench34.148899-118.437919
10cafe bizou14016 ventura blvd.sherman oaksfrench bistro34.148899-118.437919
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "12 cafe bizou 14016 ventura blvd sherman oaks french 34.148899 \n", + "10 cafe bizou 14016 ventura blvd. sherman oaks french bistro 34.148899 \n", + "\n", + " lng \n", + "12 -118.437919 \n", + "10 -118.437919 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
208aqua252 california st.san franciscoamerican (new)37.793461-122.399642
207aqua252 california st.san franciscoseafood37.793461-122.399642
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "208 aqua 252 california st. san francisco american (new) 37.793461 \n", + "207 aqua 252 california st. san francisco seafood 37.793461 \n", + "\n", + " lng \n", + "208 -122.399642 \n", + "207 -122.399642 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
216chez michel804 north point st.san franciscocalifornian37.805857-122.420689
215chez michel804 northpointsan franciscofrench37.805857-122.420689
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "216 chez michel 804 north point st. san francisco californian 37.805857 \n", + "215 chez michel 804 northpoint san francisco french 37.805857 \n", + "\n", + " lng \n", + "216 -122.420689 \n", + "215 -122.420689 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
22fenix at argyle8358 sunset blvd.w. hollywoodfrench (new)34.095097-118.371967
21fenix8358 sunset blvd.w. hollywoodfrench (new)34.095097-118.371967
\n", + "
" + ], + "text/plain": [ + " name addr city type lat \\\n", + "22 fenix at argyle 8358 sunset blvd. w. hollywood french (new) 34.095097 \n", + "21 fenix 8358 sunset blvd. w. hollywood french (new) 34.095097 \n", + "\n", + " lng \n", + "22 -118.371967 \n", + "21 -118.371967 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
234plumpjack cafe3127 fillmore st.san franciscoamerican (new)37.798341-122.435941
233plumpjack cafe3201 fillmore st.san franciscomediterranean37.799120-122.436091
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "234 plumpjack cafe 3127 fillmore st. san francisco american (new) \n", + "233 plumpjack cafe 3201 fillmore st. san francisco mediterranean \n", + "\n", + " lat lng \n", + "234 37.798341 -122.435941 \n", + "233 37.799120 -122.436091 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
187grotta2637 peachtree rd. neatlantaitalian33.826672-84.386935
186grotta2637 peachtree rd. peachtree house condominiumatlantaitalian33.826672-84.386935
\n", + "
" + ], + "text/plain": [ + " name addr city \\\n", + "187 grotta 2637 peachtree rd. ne atlanta \n", + "186 grotta 2637 peachtree rd. peachtree house condominium atlanta \n", + "\n", + " type lat lng \n", + "187 italian 33.826672 -84.386935 \n", + "186 italian 33.826672 -84.386935 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
84gotham bar grill12 e. 12th st.new york cityamerican (new)40.734207-73.993699
83gotham bar grill12 e. 12th st.new yorkamerican40.734207-73.993699
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "84 gotham bar grill 12 e. 12th st. new york city american (new) \n", + "83 gotham bar grill 12 e. 12th st. new york american \n", + "\n", + " lat lng \n", + "84 40.734207 -73.993699 \n", + "83 40.734207 -73.993699 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
44patina5955 melrose ave.los angelescalifornian34.083655-118.330243
43patina5955 melrose ave.los angelescalifornian34.083655-118.330243
\n", + "
" + ], + "text/plain": [ + " name addr city type lat lng\n", + "44 patina 5955 melrose ave. los angeles californian 34.083655 -118.330243\n", + "43 patina 5955 melrose ave. los angeles californian 34.083655 -118.330243" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameaddrcitytypelatlng
52rex il ristorante617 s. olive st.los angelesnuova cucina italian34.047847-118.254878
51rex il ristorante617 s. olive st.los angelesitalian34.047847-118.254878
\n", + "
" + ], + "text/plain": [ + " name addr city type \\\n", + "52 rex il ristorante 617 s. olive st. los angeles nuova cucina italian \n", + "51 rex il ristorante 617 s. olive st. los angeles italian \n", + "\n", + " lat lng \n", + "52 34.047847 -118.254878 \n", + "51 34.047847 -118.254878 " + ] + }, + "metadata": {}, + "output_type": "display_data" }, { "data": { @@ -7182,35 +25320,31 @@ " \n", " \n", " \n", - " 219\n", - " fringale\n", - " 570 4th st.\n", - " san francisco\n", - " french\n", - " 37.778542\n", - " -122.397193\n", + " 76\n", + " daniel\n", + " 20 e. 76th st.\n", + " new york city\n", + " french (new)\n", + " 40.774494\n", + " -73.964096\n", " \n", " \n", - " 220\n", - " fringale\n", - " 570 fourth st.\n", - " san francisco\n", - " french bistro\n", - " 37.778542\n", - " -122.397193\n", + " 75\n", + " daniel\n", + " 20 e. 76th st.\n", + " new york\n", + " french\n", + " 40.774494\n", + " -73.964096\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city type lat \\\n", - "219 fringale 570 4th st. san francisco french 37.778542 \n", - "220 fringale 570 fourth st. san francisco french bistro 37.778542 \n", - "\n", - " lng \n", - "219 -122.397193 \n", - "220 -122.397193 " + " name addr city type lat lng\n", + "76 daniel 20 e. 76th st. new york city french (new) 40.774494 -73.964096\n", + "75 daniel 20 e. 76th st. new york french 40.774494 -73.964096" ] }, "metadata": {}, @@ -7247,35 +25381,35 @@ " \n", " \n", " \n", - " 6\n", - " hotel bel air\n", - " 701 stone canyon rd.\n", - " bel air\n", - " californian\n", - " 34.086594\n", - " -118.446351\n", + " 191\n", + " nikolai roof\n", + " 255 courtland st.\n", + " atlanta\n", + " continental\n", + " 33.761546\n", + " -84.383562\n", " \n", " \n", - " 7\n", - " bel air hotel\n", - " 701 stone canyon rd.\n", - " bel air\n", - " californian\n", - " 34.086594\n", - " -118.446351\n", + " 190\n", + " nikolai roof\n", + " 255 courtland st. at harris st.\n", + " atlanta\n", + " continental\n", + " 33.761546\n", + " -84.383562\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city type lat \\\n", - "6 hotel bel air 701 stone canyon rd. bel air californian 34.086594 \n", - "7 bel air hotel 701 stone canyon rd. bel air californian 34.086594 \n", + " name addr city type \\\n", + "191 nikolai roof 255 courtland st. atlanta continental \n", + "190 nikolai roof 255 courtland st. at harris st. atlanta continental \n", "\n", - " lng \n", - "6 -118.446351 \n", - "7 -118.446351 " + " lat lng \n", + "191 33.761546 -84.383562 \n", + "190 33.761546 -84.383562 " ] }, "metadata": {}, @@ -7312,35 +25446,35 @@ " \n", " \n", " \n", - " 6\n", - " hotel bel air\n", - " 701 stone canyon rd.\n", - " bel air\n", - " californian\n", - " 34.086594\n", - " -118.446351\n", + " 193\n", + " pano paul\n", + " 1232 w. paces ferry rd.\n", + " atlanta\n", + " american (new)\n", + " 33.849291\n", + " -84.428089\n", " \n", " \n", - " 8\n", - " bel air\n", - " 701 stone canyon road\n", - " bel air\n", - " american\n", - " 34.086594\n", - " -118.446351\n", + " 192\n", + " pano paul\n", + " 1232 w. paces ferry rd.\n", + " atlanta\n", + " international\n", + " 33.849291\n", + " -84.428089\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city type lat \\\n", - "6 hotel bel air 701 stone canyon rd. bel air californian 34.086594 \n", - "8 bel air 701 stone canyon road bel air american 34.086594 \n", + " name addr city type lat \\\n", + "193 pano paul 1232 w. paces ferry rd. atlanta american (new) 33.849291 \n", + "192 pano paul 1232 w. paces ferry rd. atlanta international 33.849291 \n", "\n", - " lng \n", - "6 -118.446351 \n", - "8 -118.446351 " + " lng \n", + "193 -84.428089 \n", + "192 -84.428089 " ] }, "metadata": {}, @@ -7377,35 +25511,31 @@ " \n", " \n", " \n", - " 197\n", - " dining room ritz carlton buckhead\n", - " 3434 peachtree rd.\n", + " 204\n", + " veni vidi vici\n", + " 41 14th st.\n", " atlanta\n", - " international\n", - " 33.850807\n", - " -84.364227\n", + " italian\n", + " 33.786946\n", + " -84.388786\n", " \n", " \n", - " 198\n", - " ritz carlton dining room buckhead\n", - " 3434 peachtree rd. ne\n", + " 203\n", + " veni vidi vici\n", + " 41 14th st.\n", " atlanta\n", - " american (new)\n", - " 33.850807\n", - " -84.364227\n", + " italian\n", + " 33.786946\n", + " -84.388786\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city \\\n", - "197 dining room ritz carlton buckhead 3434 peachtree rd. atlanta \n", - "198 ritz carlton dining room buckhead 3434 peachtree rd. ne atlanta \n", - "\n", - " type lat lng \n", - "197 international 33.850807 -84.364227 \n", - "198 american (new) 33.850807 -84.364227 " + " name addr city type lat lng\n", + "204 veni vidi vici 41 14th st. atlanta italian 33.786946 -84.388786\n", + "203 veni vidi vici 41 14th st. atlanta italian 33.786946 -84.388786" ] }, "metadata": {}, @@ -7442,35 +25572,35 @@ " \n", " \n", " \n", - " 28\n", - " restaurant katsu\n", - " 1972 n. hillhurst ave.\n", - " los angeles\n", - " asian\n", - " 34.107405\n", - " -118.28719\n", + " 212\n", + " cafe claude\n", + " 7 claude ln.\n", + " san francisco\n", + " french bistro\n", + " 37.790332\n", + " -122.404517\n", " \n", " \n", - " 29\n", - " katsu\n", - " 1972 hillhurst ave.\n", - " los feliz\n", - " japanese\n", - " 34.107405\n", - " -118.28719\n", + " 211\n", + " cafe claude\n", + " 7 claude la.\n", + " san francisco\n", + " french\n", + " 37.790332\n", + " -122.404517\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city type \\\n", - "28 restaurant katsu 1972 n. hillhurst ave. los angeles asian \n", - "29 katsu 1972 hillhurst ave. los feliz japanese \n", + " name addr city type lat \\\n", + "212 cafe claude 7 claude ln. san francisco french bistro 37.790332 \n", + "211 cafe claude 7 claude la. san francisco french 37.790332 \n", "\n", - " lat lng \n", - "28 34.107405 -118.28719 \n", - "29 34.107405 -118.28719 " + " lng \n", + "212 -122.404517 \n", + "211 -122.404517 " ] }, "metadata": {}, @@ -7507,35 +25637,35 @@ " \n", " \n", " \n", - " 53\n", - " spago\n", - " 1114 horn ave.\n", - " los angeles\n", - " californian\n", - " 34.091172\n", - " -118.383161\n", + " 58\n", + " yujean kang\n", + " 67 n. raymond ave.\n", + " pasadena\n", + " chinese\n", + " 34.147086\n", + " -118.149099\n", " \n", " \n", - " 54\n", - " spago los angeles\n", - " 8795 sunset blvd.\n", - " w. hollywood\n", - " californian\n", - " 34.091132\n", - " -118.383290\n", + " 57\n", + " yujean kang gourmet chinese cuisine\n", + " 67 n. raymond ave.\n", + " los angeles\n", + " asian\n", + " 34.147086\n", + " -118.149099\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city type \\\n", - "53 spago 1114 horn ave. los angeles californian \n", - "54 spago los angeles 8795 sunset blvd. w. hollywood californian \n", + " name addr city \\\n", + "58 yujean kang 67 n. raymond ave. pasadena \n", + "57 yujean kang gourmet chinese cuisine 67 n. raymond ave. los angeles \n", "\n", - " lat lng \n", - "53 34.091172 -118.383161 \n", - "54 34.091132 -118.383290 " + " type lat lng \n", + "58 chinese 34.147086 -118.149099 \n", + "57 asian 34.147086 -118.149099 " ] }, "metadata": {}, @@ -7572,35 +25702,35 @@ " \n", " \n", " \n", - " 168\n", - " bone\n", - " 3130 piedmont road\n", + " 198\n", + " ritz carlton dining room buckhead\n", + " 3434 peachtree rd. ne\n", " atlanta\n", - " american\n", - " 33.842103\n", - " -84.371103\n", + " american (new)\n", + " 33.850807\n", + " -84.364227\n", " \n", " \n", - " 169\n", - " bone restaurant\n", - " 3130 piedmont rd. ne\n", + " 197\n", + " dining room ritz carlton buckhead\n", + " 3434 peachtree rd.\n", " atlanta\n", - " steakhouses\n", - " 33.842103\n", - " -84.371103\n", + " international\n", + " 33.850807\n", + " -84.364227\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city type lat \\\n", - "168 bone 3130 piedmont road atlanta american 33.842103 \n", - "169 bone restaurant 3130 piedmont rd. ne atlanta steakhouses 33.842103 \n", + " name addr city \\\n", + "198 ritz carlton dining room buckhead 3434 peachtree rd. ne atlanta \n", + "197 dining room ritz carlton buckhead 3434 peachtree rd. atlanta \n", "\n", - " lng \n", - "168 -84.371103 \n", - "169 -84.371103 " + " type lat lng \n", + "198 american (new) 33.850807 -84.364227 \n", + "197 international 33.850807 -84.364227 " ] }, "metadata": {}, @@ -7637,35 +25767,35 @@ " \n", " \n", " \n", - " 136\n", - " shun lee west\n", - " 43 w. 65th st.\n", - " new york\n", - " asian\n", - " 40.772900\n", - " -73.981348\n", + " 2\n", + " arnie morton\n", + " 435 s. la cienega boulevard\n", + " los angeles\n", + " steakhouses\n", + " 34.070609\n", + " -118.376722\n", " \n", " \n", - " 137\n", - " shun lee palace\n", - " 155 e. 55th st.\n", - " new york city\n", - " chinese\n", - " 40.759428\n", - " -73.969068\n", + " 0\n", + " arnie morton chicago\n", + " 435 s. la cienega blv.\n", + " los angeles\n", + " american\n", + " 34.070609\n", + " -118.376722\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city type lat \\\n", - "136 shun lee west 43 w. 65th st. new york asian 40.772900 \n", - "137 shun lee palace 155 e. 55th st. new york city chinese 40.759428 \n", + " name addr city \\\n", + "2 arnie morton 435 s. la cienega boulevard los angeles \n", + "0 arnie morton chicago 435 s. la cienega blv. los angeles \n", "\n", - " lng \n", - "136 -73.981348 \n", - "137 -73.969068 " + " type lat lng \n", + "2 steakhouses 34.070609 -118.376722 \n", + "0 american 34.070609 -118.376722 " ] }, "metadata": {}, @@ -7702,35 +25832,35 @@ " \n", " \n", " \n", - " 199\n", - " restaurant ritz carlton atlanta\n", - " 181 peachtree st.\n", - " atlanta\n", - " continental\n", - " 33.758579\n", - " -84.387066\n", + " 4\n", + " art deli\n", + " 12224 ventura blvd.\n", + " studio city\n", + " delis\n", + " 34.142966\n", + " -118.399469\n", " \n", " \n", - " 200\n", - " ritz carlton restaurant\n", - " 181 peachtree st.\n", - " atlanta\n", - " french (classic)\n", - " 33.758579\n", - " -84.387066\n", + " 3\n", + " art delicatessen\n", + " 12224 ventura blvd.\n", + " studio city\n", + " american\n", + " 34.142966\n", + " -118.399469\n", " \n", " \n", "\n", "" ], "text/plain": [ - " name addr city \\\n", - "199 restaurant ritz carlton atlanta 181 peachtree st. atlanta \n", - "200 ritz carlton restaurant 181 peachtree st. atlanta \n", + " name addr city type lat \\\n", + "4 art deli 12224 ventura blvd. studio city delis 34.142966 \n", + "3 art delicatessen 12224 ventura blvd. studio city american 34.142966 \n", "\n", - " type lat lng \n", - "199 continental 33.758579 -84.387066 \n", - "200 french (classic) 33.758579 -84.387066 " + " lng \n", + "4 -118.399469 \n", + "3 -118.399469 " ] }, "metadata": {}, @@ -7875,13 +26005,13 @@ "name": "stdout", "output_type": "stream", "text": [ - "dedupe_true_positives total: 141\n", - "dedupe_false_positives total: 7\n", - "dedupe_false_negatives total: 9\n", + "dedupe_true_positives total: 0\n", + "dedupe_false_positives total: 148\n", + "dedupe_false_negatives total: 150\n", "\n", - "dedupe_unclustered_true_positives total: 142\n", - "dedupe_unclustered_false_positives total: 10\n", - "dedupe_unclustered_false_negatives total: 8\n" + "dedupe_unclustered_true_positives total: 0\n", + "dedupe_unclustered_false_positives total: 152\n", + "dedupe_unclustered_false_negatives total: 150\n" ] } ], @@ -7954,7 +26084,7 @@ }, { "cell_type": "code", - "execution_count": 78, + "execution_count": 76, "metadata": { "scrolled": true, "slideshow": { @@ -8003,7 +26133,7 @@ " None\n", " 34.068958\n", " -118.320928\n", - " (3rd street, 3rd saint, 3 street, 3 saint)\n", + " (3rd saint, 3 street, 3rd street, 3 saint)\n", " \n", " \n", " 35\n", @@ -8014,7 +26144,7 @@ " 90048\n", " 34.073417\n", " -118.381096\n", - " (8638 w 3 street, 8638 west 3rd street, 8638 w...\n", + " (8638 w 3rd street, 8638 west 3rd saint, 8638 ...\n", " \n", " \n", " 36\n", @@ -8025,7 +26155,7 @@ " 90048\n", " 34.073417\n", " -118.381096\n", - " (8638 w 3, 8638 wohnung 3, 8638 weg 3, 8638 we...\n", + " (8638 weg 3, 8638 weg 3rd, 8638 wohnung 3rd, 8...\n", " \n", " \n", " 37\n", @@ -8036,7 +26166,7 @@ " None\n", " 34.068958\n", " -118.320928\n", - " (w 3 street, w 3rd street, west 3 saint, w 3rd...\n", + " (west 3 saint, w 3rd saint, west 3rd street, w...\n", " \n", " \n", "\n", @@ -8050,10 +26180,10 @@ "37 locanda w. third st. st los angeles italian None \n", "\n", " lat lng addr_variations \n", - "34 34.068958 -118.320928 (3rd street, 3rd saint, 3 street, 3 saint) \n", - "35 34.073417 -118.381096 (8638 w 3 street, 8638 west 3rd street, 8638 w... \n", - "36 34.073417 -118.381096 (8638 w 3, 8638 wohnung 3, 8638 weg 3, 8638 we... \n", - "37 34.068958 -118.320928 (w 3 street, w 3rd street, west 3 saint, w 3rd... " + "34 34.068958 -118.320928 (3rd saint, 3 street, 3rd street, 3 saint) \n", + "35 34.073417 -118.381096 (8638 w 3rd street, 8638 west 3rd saint, 8638 ... \n", + "36 34.073417 -118.381096 (8638 weg 3, 8638 weg 3rd, 8638 wohnung 3rd, 8... \n", + "37 34.068958 -118.320928 (west 3 saint, w 3rd saint, west 3rd street, w... " ] }, "metadata": {}, @@ -8061,9 +26191,8 @@ }, { "data": { - "image/png": "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\n", "text/plain": [ - "
" + "
" ] }, "metadata": {}, @@ -8071,9 +26200,8 @@ }, { "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAl8AAAFBCAYAAABJi8prAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMi4yLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvhp/UCwAAIABJREFUeJzt3XecXWW1//HPNyGFECGUhNAjNSH0JkgxihI1P6p09AJSBbzqBfF6bWADlSuWS28BQUCRFop0EKRI0xBKEgJECCWEJISQRpL1++N5huwM0zOz95yZ7/v1Oq855+xy1jnJ7Fln7Wc/SxGBmZmZmZWjR9UBmJmZmXUnTr7MzMzMSuTky8zMzKxETr7MzMzMSuTky8zMzKxETr7MzMzMSuTky8waJek0SZFvp7V0WTvHMLrwOkM66nXya52Wb0d05Ou0B0mv1H0uVcdiZq2zXNUBmJl1Ij/KPx8ARlcYh5l1Ya58mZmVRFLfqmMws+o5+TKzdlPvFOEnJV0paYakdyT9RdLgeuv3lnSypCckvSdprqSJkv63mdcZ0dApzyae31LS9ZKmSJqf43lK0gWSekk6ot7pu08V9nN/YT/DJP0h72eBpKmSrpO0RROfw655nXeB5wvr7CjpBklvSfpA0ut5uyH19iVJ/y3p3/nzeUjSdi345zCzTsqnHc2so9wKDCg83g9YCfgsfFgFuhvYud52GwJfAk5ujyAk9cuvs1rh6VXybeuWvo6kXYA7geULTw/MsY6StEdEPNjApjcAq+b7M/K+DgT+CPQsrLcGcDiwp6RPRsT4/PyPWHI6FNLndS+glsRtZp2PK19m1lFeBjYANgam5ud2l7RGvv+fLEm8ngN2AlYAhgPntmMcw1iSeJ0K9CUlTbsAZwALI2J0RBSTmQciQvk2Ij93ESnxmgxsC/QhJW9v532e08jrzyK9t+WBL+Zk8DxS4vUUMDTv69PAAlJS+CsASQOA7+T9zAdGkhLai4D+bfgszKwTcOXLzDrKDyPiJQBJD5IqRADrAW8AexXWPSEiHs33n8u39vIqsJB0vDuYlAS9ADwVEf/Tkh1I2oiUJEGK/8kGVttc0uCIeLPe898vvjdJnyMlWADb5Fjq+1z+uRMpsQO4LSLuzPF8H/g60Ksl8ZtZ5+LKl5k1ZV7hfr96y4qP5zaw7fjC/fcL9+uSidULz7VXsvWRL5QRMRU4HphGSnZOB64FJkp6UNKKLdjvoBa+/qoNPPd0G/bVV9IK9fb3Wt2diJgLvNPCmMysk3HyZWZNebVwf3i9ZZs1sl6dDwr3G5qL6q3C/WGtjGt+4X7xCsL1G1o5Ii4BBgObkypwv8uLdgFObMHrTS3cv7twSvLDG9AjIp5tYNv6iWlxXxc3sa/3SQljnbXr7khanoYTPTOrAU6+zKwpd5PGIQF8XtIPJH1G0g9I448gJUL3tGHfNxfunyNpB0nLS9pE0reb2XZy4f7nJPWVtDrwrforSlpN0lmkU3hTgTHATYVV1i3cr6smrSdp5bonI2IiMCE/3F3SNyUNyK+7paQfAtc0E3Odh8kD74H/kHSopP6SVpD0CUm/An6Tlz/KkurjFyXtkSt1P8WnHM1qlpMvM2tURLzFkivtegA/JiVaP2bJ8eO0vF5r/Q74e76/GfAYMIc0BqrJalREvA7cnx9uQ0qaprB0IlWnL+mKxgdJ1bYFLJ0s3lG4Xzc2awgwvd6UFceSEiEBZ5MSqLnAP0mnMounUZuK/X3S+1sM9AauAt4DZufXP4V0VSgRMRP4Rd60T471XeBrpM/KzGqQky8za1JEnEmaJuJuYDqwKP+8G9g3L2/LfucBnwG+TRrA/j6pivYi8JcW7OIwUgVrJikpuhw4ooH1ZpCSpcdJp/EWkZKdh4FDI+LGwrpfB25jSWWqGO8DpKscryCNv/qA9DmMBX4PtGjwft7X1aRTnn8hJYQLSVdNPkFKtorznJ0OfDe/5nxSkvq5vL6Z1SBFuC2YmZmZWVlc+TIzMzMrkZMvMzMzsxI5+TIzMzMrkZMvMzMzsxI5+TIzMzMrkZMvMzMzsxI5+TIzMzMrkZMvMzMzsxI5+TIzMzMrkZMvMzMzsxI5+TIzMzMrkZMvMzMzsxI5+TIzMzMrkZMvMzMzsxI5+TIzMzMrkZMvMzMzsxI5+TIzMzMrkZMvMzMzsxI5+TIzMzMrkZMvMzMzsxI5+TIzMzMrkZMvMzMzsxI5+TIzMzMrkZMvMzMzsxI5+TIzMzMrkZMvMzMzsxI5+TIzMzMrkZMvMzMzsxI5+TIzMzMrkZMvMzMzsxI5+TIzMzMrkZMvMzMzsxI5+TIzMzMrkZMvMzMzsxI5+TIzMzMrkZMvMzMzsxI5+TIzMzMrkZMvMzMzsxItV3UAZmYdTuoDrA2sDPQGFgAzgFeJWFBlaGbW/Tj5MrOuSxoADAOGk453C4BFQE9SErYQaRzwAhEzK4vTzLoVn3Y0s3YhaYikkLRd1bEAIK0HHAhsCkwDpgBvA9O3gP0Gw4n5+eHAgXl9M7MO5+TLrJuRdKKksZJm5dsjkkbVW2d0TqSKt0erirnVUiI1CpgOTCVVuxqyKC+fDoyqxQRM0oj877Na1bGYWcs4+TLrfl4DvgNsA2wH3AvcKGmLeuvdDaxRuH2xzCDbLJ1qHElKqua3cKv5ef2ReXszsw7j5Musm4mImyLi9oh4MSImRMT3gPeAneqtOj8i3izcprf2tSTtJukxSfMkvSXpbEm9C8sl6WRJEyXNl/SapDMKy8+UNF7SXEmvSPqlpL6F5adJGifpYEmTJL03GG4aC8uTE6850GNbOLI3XN0brt4ajo56x75vwDaD4PQ+cHYvmCzpDknDmnhfe0haIGnVes//XNLYwuNPSnpA0hxJUySdJ2nFwvL7JZ2bt5smaaqksyT1KKzTW9Iv8mczR9LjkkbmZUOA+/Kqb+cK2Oi87POSHpQ0Q9L05t6TmZXHyZdZNyapp6SDgf7Aw/UW75KTgQmSLpI0qN62oyW90sS+1wJuB54GtgaOAg4Bziis9nPgB/m54cABwKuF5e8DXyUNmj8BOBj4Xr2XGgIcBOw7CEbNgc0OK1Tp9oR9xsLIQ+Gc8+GUxdDjBRhR3MFs6Lsn3HwZnHIZnN0jJaNjioliPfeQxosdUHi/Ag4FrsyPNwfuBG4GtgT2A7YCLq23r8OAhcAngZOAb+b3U+cy4FN535sBl+fYtsyf1ZfyesNJFcpv5McrAL8BdiC933ebeU9mVhJFRNUxmFnJcmLwCNAXmA0cFhG3FpYfDMwBXiYlNz8lXSG4bUTMz+ucAewQEbvnx0Py+ttHxBOSfkYa8L5JRCzO6xwBXECa8qEHKYH5ZkSc38K4jwdOiYgN8+PTgP8GVo+Id5E22At+fS9sPxuOA1geRu8Atz0AfwKYD1oNzlsBpr8J/9PAy6x1Pzz0afgX8KmIeKiRWH6d3+uu+fEuwAPAehHxmqQrgA8i4qjCNluRktHVI2KqpPuBPhGxU2Gdu4DJEXG0pA2AicCQiPh3YZ0bgdcj4gRJI0jVr4ERMa2Jz24FYFZT78nMyuGpJsy6p/GkKsxKwP7A5ZJGRMQ4gIi4prDuM5KeBCaTBrFfn9f5bjOvMQx4tC7xyh4iTfGwISnx60OqIjVI0v6kStCGpOpcz3wrmhwR7+b7Kw+EafNhAMA46DcPVtkRXgB4HlZ8BtYYDJPeSwkgANfA4O/Dl9+EjRfAgEUQpORw3Sbe35XANyWtFxGTSRWsByLitbx8W2BDScUqlvLPDUhjzADGsrTXgboq4zZ5m+dSYe1DfUhj9RqVE7efAJ8ABub309x7MrMSOPky64YiTSz6Yn74pKTtgW+RTg02tP7rkl4DNmqvEJpbQdKOwDXA6Tm2mcBewFn1Vv2gcL93wOJYkuQAsDjtaOg42HQ+9F0IawZE3YRfx8IP+8O04+GcHWDRWzDpP+EqUqLY8BuIeErSC8Chks4inYI8tbBKD+Bi4OwGNp/SSPywJPGr20cA2zew3tzGYstuIV1ccVx+vYXAczTxnsysHE6+zAzSH/k+jS3M0xisBbzRin0+DxwoqUeh+rULaaLTSaS8Zz6wO+nUWn07A1Mi4ieFOJqbCmJBj8JY1s1gTl+YcR98cVV4/Ei443zYaxqssDws/i3sNhyeew/WPgHOOxOeAQadDL1o2fHxSlLFaxxpjNV1hWVPAcMj4sWGNmyhp0mJ5OCIuK+Rdepm6P+wIpgvBBgKnFC3naRt8DHfrFPwgHuzbiZfQbir0qSom+exWyNIlR4k9c9X3O2U1xkBjCGdJruhsJ8zJDV6yhA4F1gTOFfSMKW5xM4E/i8i5kTEe8BvgTMkHSlpA0k7SPpa3n4CsJakwyStn58/pJm3N6NnTjAWpWA3GA4v/Qu2GQ/zHoQBN8M282ClHjB9ZZj5N9i1N8y+Dkb+Edb4NWx6bqpgLWzBx3kVaRLXnwBjImJWYdkvgB0knS9pa0kbSvp/ki5owX4BiIgJ+TVGS9o/fw7bSTpF0n55tcmk6tgoSQMl9Se1TpoGHJNf91PA+S18T2bWwfwtyKz7GUyq2AwmXQE3FvhCRNyRly8CNgf+gzR26g3SgO4Dc8JUZw3S2KUGRcQUSV8AfgX8k3Ta8I8sPcj9u6RE4Qek3otvAVfk7cdI+hXpir3lSVcO/pCU1DXmtcUpfp0Nn5oHy58PvzsG9rsKTroKGAJThsL9b8M6R8LYf8Drz8HAe2HHr8D/rQxv94Zj58G1TX2IOcbJkh4Cds2xFZeNlbQb6WKFB0iVqZcoJLAtdCTpCs9fkj6j6cA/yFNM5M/5R8DPSKc5r4iII/JYs9+RqnIvAicDf2nla5tZB/DVjmbWpYyWDnsf9ukPTx8Mz/ZJQ74+dCoc8ku4uvjcLFjuathyMQwbCNfuH3F9uVGbWXfiypeZdQmSlgdGrQ9r3gmPb5CqTIub2w5gRVh4HIx7Fj7YEzY5IJ0ivStfmGBm1q485svMap6kjYCvAbNfgt9skE4ZDqKJiwjq6QMMGg5XvpyuTuwNHC9pnY6J2My6M1e+zKxmSeoD7EEae3ZDRLycF01GupXU43ER8A4NN9fuCayaf95KxOQ8EOOG3IrnIEn/BO6PCA9WN7N24eTLzGpSnnZiH+AV4Ly6mfc/FDEZ6U/AJqQLCJYDPhiYBu8PIk0nsZA0vcR4ImYuvXk8L+nfwJ6kqwZviIg3O/ZdmVl34OTLzGqKpOWAz5ASqlsiYnyjK6eE6jGkp4F1gAHPph6KdVdfvkoT47oi4n1J1wJbAP8h6RHg7/Vm7TczaxVf7WhmNUPSGqQG1W+TEq85bdjHaRFxWhu2WwnYmzQe7IaIeKe1+zAzA1e+zKwGSOpBmktrB+AO4Jko+ZtjRLwr6Q85hqNyU+zHy47DzGqfky8z69Rya6N9gXnABfVmkS9VTrQek/RijmmopJsKjb3NzJrlqSbMrFNSsiPwVdIYrSurTLyK8inHS4GXgWMlbSlJzWxmZga48mVmnZCkAaQrGXsCF0fE9IpD+og86P5BSRNJ49CGSRoTEe9XHJqZdXKufJlZp5GrXVsDxwITgcs6Y+JVlKefuJDUyPpreX4wM7NGufJlZp2CpP6kObVWAi6PiLcqDqnF8gSsd0uaAOwjaShwe0TMqzg0M+uEXPkys8pJ2hQ4HpgKXFRLiVdRRPwbOB9YQKqCrV9xSGbWCbnyZWaVyc2wvwCsBVwTEa9VHNIyy824b5U0nlQFe4HUpPuDikMzs07ClS8zq4SkDUnNsOcC53eFxKsoIl4EzgP6kpp0r11xSGbWSbjyZWalktSb1Ax7I+DGiHip4pA6TETMBa7Pp1UPVmpzdH9ENNTk28y6CVe+zKw0ktYlje1ajtQMu8smXkUR8RxpLNjqpCbdq1cckplVyJUvM+twuRn2CGArUk/GF6qNqHwRMVvS1aTP4HBJDwMPu0m3Wffj5MvMOpSkwaRWPNNJ1a5uOwlpbk/0tKSXSZPIbizpxs4+l5mZtS8nX2bWIXIz7F2ATwB3AmPdhDqJiJmSLid9NkdLug94wp+PWffg5MvM2p2kVUnVrgXAhW48/VE50Xq0gSbdnaJ/pZl1HA+4N7N2k9sD7QAcBYwF/uDEq2kRMQ24BPg3cJykLdyk26xrc+XLzNqFpJWAvYHewCUR8U7FIdWMPOj+gdyku64KdktEzKk4NDPrAK58mdkyydWurYDjgJeBS514tU1EvA5cAMwktSfapOKQzKwDuPJlZm0maQVSM+yVgSsi4s2KQ6p5uUn3nYX2REOBv0bE/IpDM7N24sqXmbWJpGGk9kDTSM2wnXi1o4iYTJqYdTGpCvbxikMys3biypeZtYqkvqRm2OsA10bEqxWH1GXlatcYSRsB+0l6FrjHTbrNapsrX2bWYpLWJ1W7FpCaYTvxKkFETCQ16e5PuiJyrYpDMrNl4MqXmTVLUi/gc8BQ4KaImFRxSN1OvvLxOkmbAYdKegL4m5t0m9UeV77MrEmS1iY1w+5Lag/kxKtCETGONBZsTdLs+IMqDsnMWsmVLzNrkKSepGbYWwO3RcRz1UZkdSLiPUl/BLYBjpD0EPCom3Sb1QYnX2b2EZJWJ032+S5pbNfsikOyenJ7oiclvURq0r1JbtI9o+LQzKwZPu1oZh+S1EPSLsDhwKPANU68OrecbF0OjAeOkbSt2xOZdW6ufJkZAJJWIVW7FpKaYc+sOCRroXy68eF6Tbpvjoj3Kg7NzBrgypdZN5fbA20PHA08S5qp3olXDYqIqcDFwOvA8fnKSDPrZFz5MuvGJK1Iaobdl9STcVrFIdkyylNP3CdpArBv7kRwq5t0m3UernyZdUO52rUFqRn2ZOASJ15dS0RMITXpnkVqT7RRxSGZWebKl1k3k5thjwJWA66MiDcqDsk6SG5DdEehSfck4E436TarlitfZt2IpE1IE6bOIA2qd+LVDUTEK6T2RD1IY8HWqzYis+7NlS+zbkBSH+DzwBDguoiYXG1EVrZc7bopJ+D7SxpHatK9sOLQzLodV77MujhJHyc1w15MmjDViVc3FhHjSVWwlUhNutesOCSzbseVL7MuKjfD/iwwDBgTERMrDsk6iYiYI+nPwGbAYZIeBx50k26zcrjyZdYFSVqLdCVjP1IzbCdetpRIniFdEbk2cJSkgRWHZdYtuPJl1oXkZti7AduRmmE/W3FI1slFxCxJVwHbAkdK+hvwWO4daWYdwMmXWRchaRCptcx7pLFdbi1jLZITrScKTbqH5ibd7nRg1gF82tGsxuVm2DsDRwCPA1c78bK2iIjpwGhgInCspG3cpNus/bnyZVbDJK1MqnYFcFFEzKg4JKtxuUn33xto0j274tDMugxXvsxqUG4PtB1wDPA8MNqJl7WniHgLuAh4kzQx6/CKQzLrMlz5Mqsxkj5GaobdD7gsIt6uOCTrovLUE/cWmnQPJV3IMbfi0MxqmitfZjVE0mak9kCvkZphO/GyDhcRrwHnA3NITbo3rDgks5rmypdZDZDUj9QMexBwVUS8XnFI1s3kJt235ybde0uaSGrSvaDi0MxqjitfZp2cpI1J7YFmkZphO/GyykTES6T2RMuRxoKtW3FIZjXHlS+zTio3wx4JrA/8JSJeqTYisyQi5gE35jFgB0r6F3Cfm3SbtYwrX2adkKQhpGoXpPZAr1QWjFkjIuIFUhVsFdK8YIMrDsmsJrjyZdaJSFoO2J3U8HhMREyoOCSzJkXE+5L+BGwBfEXSY8BDeb4wM2uAky+zTkLSmqRJLaeSql1zKg7JrEVye6J/SXqFNA3Kxrk90bRqIzPrnJx8mVUsN8PeFdgeuD0ixlUcklmbRMS7kv5A+r/8VUkPAP9wk26zpTn5MquQpIGkatcc3AzbuoCcaP1D0iSWbtL9bsWhmXUaHnBvVoHcHmgn4EjgKdLcXU68rMuIiHeAy4BJwHGStnKTbrPElS+zkkkaQKoI9AAujojpFYdk1iHyoPuH6jXpHhMR71ccmlmlXPkyK0mudm0DHAtMIDXDduJlXV5EvElq0j2N1J5oWMUhmVXKlS+zEuRm2HsCHyMlXVMrDsmsVHkC1rtze6K6Jt235wlbzboVV77MOpik4aRm2G+STjM68bJuKyJeJTXpnk+qgm1QcUhmpXPly6yDSFqe1Ax7MPDHiJhScUhmnUJuxn1boUn3eOAuN+m27sKVL7MOIGlDUnug2cAFTrzMPioiJpHaE/UhNelep+KQzErhypdZO5LUG9gD2BC4ISJerjgks04tIuYC1+dB+AdJehp4wE26rStz5cusnUhal1Tt6kmaMNWJl1kLRcTzpLFgA4FjJK1ecUhmHcaVL7NllJthf5rUWPiWiBhfcUhmNSkiZku6FtgSOFzSI8Df3aTbuhonX2bLQNIapMkj3yFVuzx5pNkyyO2J/inpZdJkxHVNut+pODSzduPky6wNJPUAdgE+AdwBPOPmwWbtJzfpvgLYAThK0n3AE/49s67AyZdZK0lajVTtmke6knFWxSGZdUk50XosN+mua090k3/nrNZ5wL1ZC+X2QJ8Avgr8E7jSfwTMOl5ETAMuASaTmnRv6SbdVstc+TJrgdwMe2/S74ybYZuVLA+6/5ukiSypgt3icZZWi1z5MmtCrnZtTWqGPQm4zImXWXUi4g3gQmA6qT3R0IpDMms1V77MGiGpP6kZ9gDg8oh4q+KQzIwPm3TfVa9J91/dpNtqhStfZg2QtCmpGfZU4EInXmadT0T8m9SeaCGpCvbxikMyaxFXvswKJPUFvgisBVwbEa9WHJKZNSE3474l91PdV9LzwN0R8UHFoZk1ypUvs0zSBqT2QHVTSDjxMqsREfEiqQrWj9Ske+2KQzJrlCtf1u3lZtifAzYGboqIlyoOyczaIDfp/ouk4cAhkp4kNeleVHFoZktx5cu6NUnrkMZ29QbOc+JlVvsi4llSFWwwqUn3oIpDMluKK19W+6Q+wNrAyqQkagEwA3iVNB6kgU20HDAC2Aq4NSKeLydYMytDbtJ9NbA1cISkvwOPNNmkuw3HErO2cPJltStNfDoMGE76v7wAWAT0JB04FyKNA14gYuaSzTSYNEnjDFK1y5M0mnVBuT3RU7lJ997AJrlJ99Jz9bXxWGLWVj7taC0iaYikkLRd1bEAIK0HHAhsCkwDpgBvA9O3gP0Gw4n5+eHAgUjrSeohaVfgK8DDpKsZnXiZlaiKY0lEzAAuB54Hjpa03YftidpwLCkrbuu6nHx1MZJOlDRW0qx8e0TSqAbW21jS9ZJmSpoj6SlJw6qIudXSwW8UaYbrqaRvqA1ZlJdPfxMO3B1OAT5OmrfrX/lbcacmaUT+Q7Va1bFY99LSY0lh/Qvy/9VTyoyzpSJ5BLgM2AY47O40ML9VxxJgVC0mYD6WdC5Ovrqe14DvkA4u2wH3AjdK2qJuhTwR4d+Bl4HPAJsB3wdmlx5ta6XTAyNJB8L5za2+CLgO1r0YtvgRDJgJN0fEux0dplkX0OyxpI6k/YEdgNdLjbANIuJt4JLtYeaLcPo90HdRC44l2XzSsWdkPhaZtYmTry4mIm6KiNsj4sWImBAR3wPeA3YqrPYz4M6IODkinoqIlyLittbOayVpN0mPSZon6S1JZ+dpG+qWS9LJkiZKmi/pNUlnFJafKWm8pLmSXpH0yzzJad3y0ySNk3SwpEmS3hsMN42F5ckHyznQY1s4sjdc3Ruu3hqOjvz/ejL0+1/49B9gt9/B9p+Fb6wGkyXd0VSVT9IekhZIWrXe8z+XNLbw+JOSHsiVwymSzpO0YmH5/ZLOzdtNkzRV0lmSehTW6S3pF/mzmSPpcUkj87IhwH151bfzt9bRednnJT0oaYak6c29J7PWauGxBKUq0G+BQ4E2TWxa9rEEmPlv+PbHYezfYaPfw86ToW9jx5I634BtBsHpfeDsXj6W2DJw8tWFSeop6WCgP2mME/mXdU/gOUl/lfR2/iU9qN62oyW90sS+1wJuB54mXU10FHAIcEZhtZ8DP8jPDQcOAIoJ3vvAV0kDXU8ADga+V++lhgAHAfsOglFzYLPD0gz0kN7IPmNh5KFwzvlwymLo8QKMCOh7EYxcC95aFZ7fE264DE65DM7ukf6AjCke3Ou5hzTG44DC+xXpj8uV+fHmwJ3AzcCWwH6kKycvrbevw0itTz4JnAR8M7+fOpcBn8r73ow0LmWMpC3zZ/WlvN5wYA3gG/nxCsBvSNWGEcC7zbwnszZr6FiSn18OuBr4aWNXDHfmY8kpsPN/wR39Yc6X4Ntj4Qv1jyXFHcyGvnvCzT6W2DKLCN+62A3YnHQKcSEwExhVWDYYCNLB6r9Iv+T/ldctrncGcE/h8ZC83Xb58c+AiUCPwjpHkCpS/UgH6XnA8a2I+3jgxcLj0/I+VooIAjbYE25aAV4P2DNgz77wzm7wh7rHk+GA/jB9IEz5F3yl7vnC7fj70oFpEbBLE7H8Gniw8HiXvM3a+fEVwCX1ttkqf0aD8uP7SZe2F9e5C7g4398AWAysW2+dG4Fz8/0ReZ+rNfPZrdDce/Jtyf+rqmOolVtTx5K8/GekU/l1j18BTqm3Tq0cS2ZuDY+fAz+ZAfvOg736w5TV4ZkGjiM+lvi2TDdPNdE1jSf98q4E7A9cLmlERIxjSbXzpoj4db7/T6Urj04CbgWIiO828xrDgEdj6TlzHiJdlr0h0BfoQ/rm1yClcSLfzOv3J13W3bPeapNjyRitlQfCtPkwAGAc9JsHq+wILwDMguV+B/sPhH+/Dz23SH8suAYGfx++/CZsvAAGLEoHoB7Auk28vyuBb0paLyImk751PhARr+Xl2wIb1qsYKv/cgDQuBGAsS3sdqJvwcZu8zXOSiuv0IY2vaZRSK6SfAJ8ABub309x7MmutRo8lkkaQkqStmtpBDR1LVhoBY4Bev4M9vgu3rwHjZ6XfL8DHEms/Tr66oEiTAb6YHz4paXvgW6Ry/jTSt9jn6m32PKlU3y4hNLeCpB2Ba4DTc2wzgb2As+qtWhxD0jtgcSw5MH3EB7D8IlhrMcSp6dQF58GofjBnBDw3BBa/DDNvS6X9AyVt3ESY7wCXSHoYOBy4S9Iq+1QpAAAT0ElEQVRpedkg4F/Aow1sNyqPtRgC9CtsA+m0Qt1zw/Nzo0nfWpd6K3mdIfnxqZLmFJafCMwiXTgxK29/Ygvek8GIev8m1jLzSf/XrpB0M6mSsibwVuEPvoBfSvohqeLTkLqB6sdK+n+k5GtBvX+TVfLP44Fe+f7XJS09P1eyNumU4/2kU3fzgE2APQr7HAGsXPf4cFhnKmwV0OtUOOT9/BoT4VPLwVuLoNfVS34/P3Qs/LA/TDseztkBFr0Fk/4TriIlig2KiKckvQAcKuks0inIUwur9AAuBs5uYPMphfv1x9PVJX51+whg+wbWm9tYbNktpIsrjsuvV/f3wacdO5CTr+6hB+kbEBGxQNLjpINT0cbA5Fbs83nSH/oehW+su5AmJ5xE+tY5H9iddEqhvp2BKRHxk7on1Pzl2wt6FMYpbgZz+sL0x9J7GbsiLDwTLr4UduoLi3aFR1aDd34Fh5wIvzgTngEGnQzzbkvf4m+MiNGNvZikBaTxE4+T/qh8JSJm5WUbAWtFxH82sf0IYFxEnFZ4bgip7H9aTpL2B/4SEfc1so9PkhK//42It/JzqwI/Ag6s207SNsDXm3tPlgZfF/9NrOUk7Qa8nv//DmJJ5aXOHaQxYBdFxPhG9jGENN7owoh4QlIv0jxbP647lkg6gnQsOYV0LPkK8FxEnN/A/k4GXo2IzxSe+x2wR92/c066Vvvw313a7mj4GrDpL1O8XAqfeQ+m/BL+DCkDOQlO7JcmY+Yf8LH3YO0T4LzCsaQXLfs7eiWp4jWOdFrvusKyp4DhkRqDt9XTpGPU4MaOJaTPEwoVwXwsGQqcUO9Y4tygg/kD7mIknUk6dfgq8DFS8jCCNJdNnV8Cf5L0IKkk/WlS1Wufwn7OAHaIiN0bealzSWX+cyX9FlgfOBP4v4iYk/fxW+AMSfOBvwGrAttGxHnABGAtSYcBj5Cmjzikmbc3o2e9/7M7wZiHYP+vwpTdYPJv4IvzYIV+MPlp2LQfzOoNs66DkVvAtDdhk3Phs6Rja3OuAn5KKsmPqUu8sl8Aj0o6H7iANPB2KLBnRBzXgn0TERMkXQWMzn9AniJ94x8BvBQR15MS4iBV08aQvsXOIFUwj5H0KrAW8KsWviezFmnuWBIRU1lySqxumw+AN4uJVy0fS+bCKnXJ15Yw28cSazdVDzrzrX1vpFNYk1kyH83dwMgG1juCdNCaSxpLcEgD+3ml8HgIhUGy+bndgMfya71FKpv3KSzvAfw38BLpW9erwM8Ky88gzSQ9G7ie9E00CstPI1WOUlzQ52i4tCfMrRv0Ogv23gpu7AWze8HsLWDMZnDb6vDMHNj7Evj+3nD7ijClByxYFaasmP54zAaOaMHn+bf8vvdqYNl2wF9Jp2LeJ30b/nFh+f2kPyD1P9dbCo975fdZ9xm9STp1sm1hnR8Ab5BOLY7Oz32G9C16Xv45sqXvqbvf8ID7ln5OLTqW1NvmFT464L7mjyV165wK31sRJvtY4tuy3pQ/fLPaIO1EagMytblV6zwGq90OOw6HD3aGa9eMeLDjArTOzqcdDWjTsaRgEDCOiMfaNyjrLjzPl9Wa50ljFvq0dINPwLST4b4+ELvALpLW77jwzKxGtPpYkvXJ2zU4ps2sJZx8WW2JmEka1DuIlh80+3wMVtkLzno5DabdR9IX80BfM+uO2ngsyevfkbc3axMnX1Z70lw5t5IGlA7io/P51OmZl68C3ErE5EhXFJ1HmjvoeElrlxCxmXVGy3AsKSdA66o85stqV2psuwlpFu7lSPPbLCIdKHuRrth5Bhjf0LdUSZuSWhU9RZr0cFFJkVuFPObLPmIZjyVmreXky2pf6kG2Dmnyxj6kK6ZmAq+SJpxtYlP1J/W6XAm4IfJcWtZ1OfmyRi3DscSsNTzPl9W+dFCc1LZNY7aka0gtUg7Ps9k/HEu3OjGz7mAZjiVmreExX9btRfI0cCGpN9wRklZpZjMzM7M2cfJllkUay3E5qa/Z0ZK2U70utWZmZsvKyZdZQa6CPQpcCmwNHCZpxYrDMjOzLsTJl1kDImIacAmpjclxkrZwFczMzNqDky+zRkTE4oh4ALgS2BU4QFK/isMyM7Ma5+TLrBkR8QZwAemS869J2qTikMzMrIZ5qgmzFoiIhcCdksaT2hMNBf4aEfMrDs3MzGqMK19mrRCprcj5wGJSFWxIpQGZmVnNceXLrJVytWuMpI2A/SQ9B9wTER9UHJqZmdUAV77M2igiJpKadPcnXRG5VsUhmZlZDXDyZbYMImJuRFwH3AccKunTknpWHZeZmXVeTr7M2kFEPEsaC7YmaXb8QRWHZGZmnZSTL7N2EhHvAX8EniD1h/ykJP+OmZnZUvyHwawd5fZETwIXAZsAh0taueKwzMysE3HyZdYBImIGMBp4AThG0rZuT2RmZuDky6zD5CrYI8BlwHakAfkfqzgsMzOrmJMvsw4WEW8DFwNTgOMlbVZxSGZmViFPsmpWgohYBNwvaSKwr6RhwK0RMafi0MzMrGSufJmVKCKmkJp0zyK1J9qo4pDMzKxkrnyZlSy3Ibqj0KR7EnCnm3SbmXUPrnyZVSQiXiG1JxJpLNh61UZkZmZlcPJlVqGImB8RNwO3A/tLGinJFWkzsy7MyZdZJxARE0hVsJVITbrXrDgkMzPrIE6+zDqJfOXjn4G/AYdJGuEm3WZmXY+TL7NOJE/M+gzpisi1gaMkDaw4LDMza0dOvsw6oYiYBVwFPAUcKWlHtycyM+sanHyZdVK5CvYEaXb8TUlNugdUHJaZmS0jJ19mnVxETCc16Z4IHCtpG1fBzMxql5MvsxoQEYsj4u/A5cAOwCGS+lcclpmZtYGTL7MaEhFvARcBb5ImZt204pDMzKyVPJmjWY3JTbrvlTSBJU26b4uIuRWHZmZmLeDKl1mNiojXgPOBOaQm3RtWHJKZmbWAK19mNSw36b5d0gukJt0TSU26F1QcmpmZNcKVL7MuICJeJrUnWo40FmzdikMyM7NGOPky6yIiYl5E3AjcCRwo6XNu0m1m1vk4+TLrYiLiBVIVbBXSvGCDKw7JzMwKnHyZdUER8T7wJ+Ah4CuSdpPk33czs07ApyTMuqiICGCspMnA3sDGkm6MiGkVh2Zm1q35m7BZFxcR7wJ/AMYCX5X0CbcnMjOrjpMvs24gN+n+B3AJsBnwH5JWqjgsM7NuycmXWTcSEe8AlwGTgOMkbeUqmJlZuTzmy6ybiYjFwEOSXgT2BYZKGpMH6ZuZWQdz5cusm4qIN0lNut8mtScaVnFIZmbdgitfZt1YRCwE7ik06R4K3B4R8yoOzcysy3Lly8yIiFdJTbrnk6pgG1QckplZl+XKl5kBkJtx3yZpPLBXrobd5SbdZmbty5UvM1tKREwitSfqTWrSvU7FIZmZdSlOvszsI3KT7huAu4CDJO3uJt1mZu3DyZeZNSoinieNBRsIHCNp9YpDMjOreU6+zKxJETEbuBZ4BDhc0q5u0m1m1nY+gJpZs3J7on8CFwDrA0dKWrXisMzMapKTLzNrsdyk+wpgHHCUpB3cnsjMrHWcfJlZq+Qq2GPApcCWwJclrVhxWGZmNcPJl5m1SURMAy4BJpOadG/pKpiZWfOcfJlZm0XE4oj4G3AlsDNwoKQVKg7LzKxTc/JlZsssIt4ALgSmk9oTDa04JDOzTsuTJppZu8hNuu/K7YnqmnT/1U26zcyW5sqXmbWriPg3qT3RQlIV7OMVh2Rm1qm48mVm7S43475F0oakKtjzwN0R8UHFoZmZVc6VLzPrMBHxIqkK1o/UpHvtikMyM6ucky8z61ARMTci/gLcCxwi6TOSelYdl5lZVZx8mVkpIuJZUhVsMKlJ96CKQzIzq4STLzMrTW7SfTXwGHCEpJ3dpNvMuhsf9MysVLk90dOkecE2IiVhq1QclplZaZx8mVklImImcDnwHHC0pO3cnsjMugNPNWFmlYmIAB6VNAnYFxgq6eaImFVxaGZmHcaVLzOrXES8TWrS/RqpSffmroKZWVfl5MvMOoWIWBQR9wNXAbsBB0jqV21UZmbtz8mXmXUqEfE6cAEwk9SeaOOKQzIza1ce82VmnU5u0n1nbtK9T27SfUdEzK84NDOzZebKl5l1WhExGTg/P/yapCHVRWNm1j6cfJlZpxYR8yPiZuA24EuSPi+pV9VxmZm1lZMvM6sJETGB1J6oP+mKyDUrDsnMrE2cfJlZzYiIORFxHXA/cJikT7tJt5nVGidfZlZzImIcaSzYmqTZ8Qc2uYHUB2kDpO0Oh3WQtsuPe5cRr5lZka92NLOaFBHvSfojsA1wpKSHgEcjYvGHK0kDgGHAcNLxbsFwWAXYAugNLEQaB7xAandkZtbhXPkys5ojKSTtn5t0PwlcBGwCHC5p5bzSesCBwKbANGAK8PbbMBd4Oz+eRkrMDszrt3ecp0h6pb33a2a1zcmXmXUYSSdKGitpVr49ImlUYXk0cjunNa8TETNITbrHA8ecKI1aDKOA6cBUYFEjmy7Ky6cDozoiATMzq8/Jl5l1pNeA75BODW4H3AvcKGmLvHyNerc98/N/au0LRcTiiHj4G3D99nDwubDxlJYf4+aTkrCR+VSlmVmHcfJlZh0mIm6KiNsj4sWImBAR3wPeA3bKy98s3oC9gQkR8UBrXic34r5b0txz4KnfwPoL4N3z4PO3w7oAB8FnBsDv/xcO6gtXbALfrNt+D9h7APyqF/y+D0yQdLEKSZikIyTNlrS7pHGS3pd0n6SP14vjVElv5nWvIE2LUVy+vaQ7JU3LlcCHJO3Uyo/VzGqcky8zK4WknpIOJiUkDzewvD9wMGn8VvH50yRFE/tdAbgDmL027PxzOP8lGPJ7+Oy+8MA/YPMRcMJ1cOIOcPchcNtP4fR1YHLdPnpAHAcX/xm+/lMYLfgE8Pt6L9UH+C7wVVLyOIAls+8j6UDgp8CPSJW+8cB/1dvHx4A/ALsCOwD/BG6TtGpj78/Muh5FNHpMMzNbZpI2Bx4B+gKzgcMi4tYG1juWlPCsHRFvF54/CTgpIoYWngvggIi4TtIxwFnA2gGDgM99F1Y+E35+FRy3F0wdCJdvAK/8Hs65HUb8Eq5uIuS1dof596bEavmIWCzpCOAyYGhEjM8xHAZcCvSNiJD0MPBsRBxTiPNuYMOIGNLIZyPgdeDbEXFlMx+lmXURrnyZWUcbD2xFqiadB1wuabMG1jsGuKmYeAFExP8VE68GDAPGRsR7wMrAglPgBWDx32Cdp6H/PFhxJ7jnfth+NqxWfwffgS3WhB/3g8t6w2/uh3NJU1EMLqw2vy7xyl7P66xciOORerte6rGkQZIukDRB0rukU7CDyKdGzax78DxfZtahImIB8GJ++KSk7YFvAUfVrSNpK9KA/P9ZxpfrTeHKRsGHpf0VYca34MFrYcviBjfAwLPgh5vDnV+DqzaDnpdCn1vg9Ly/Ogvrv7X8szVfYi8HVie9/1dIA/3vqfc6ZtbFufJlZmXrQRo/VXQs8DJwdxv29zywuaSPAQuAnmfBUKDHrvDarvDu8vDOg7DlAFh4HDxZ3PgW2GgxLPcwXPwDGL8vTHs9jedqSxw71nuu/uNdgN9HxK0R8Syp8rVGG17LzGqYky8z6zCSzpS0q6Qh+YrEM4ARwFWFdfoBhwGXRAODUCWdJOmFJl7mKmAOcMXRMPBs2PQcOHEIPHwovAGwO/zpSdhrJOx9Baz5W/j452AfgK3T6cMee8Nef4bVvwE7jU0D/1vrt6RJXo+RtJGk75JOtRZNAL4sadNcAbyGlDCaWTfi045m1pEGA1fmn+8CY4EvRMQdhXUOAlYgDWhvyGqk2esbFBFzJI0EfnMJXN8bFq8Pj/0ZLqhbZwzc/iVYeDfscxcc3htmfxyeADgJXrkVLrwf9r8XvrwOvNQHTl4If2zNG42IayWtD/wM6AfcDPwaOKKw2leBC0nVt9eB04Cm+1KaWZfjqx3NrGtJ82ZtSpo0tbUGAeOIeKx9gzIzW8KnHc2sq3ke6MlHx5U1p0/ebnxzK5qZLQsnX2bWtUTMJE26OoiWJ2B98vp35O3NzDqMTzuaWdeUmmSPJE098Q4NN9fuCayaf95BxOQG1jEza1dOvsys60r9GTcBNiddYPQBKQnrCfQizd31DDDeFS8zK4uTLzPr+qTewDqk+bv6kCY3nQm8SpoE1sysNE6+zMzMzErkAfdmZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJXLyZWZmZlYiJ19mZmZmJfr//Fnu+l05WhIAAAAASUVORK5CYII=\n", "text/plain": [ - "
" + "
" ] }, "metadata": {}, @@ -8081,9 +26209,8 @@ }, { "data": { - "image/png": "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\n", "text/plain": [ - "
" + "
" ] }, "metadata": {},