From e1bf8fec8077b287f6a379ebfd9864847091f297 Mon Sep 17 00:00:00 2001 From: NAS <56131958+NAVSmith@users.noreply.github.com> Date: Mon, 14 Oct 2019 20:06:25 +0200 Subject: [PATCH 1/6] adding my answers to the tuples, dics ans sets lab --- .../your-code/challenge-1.ipynb | 215 ++++++++++++-- .../your-code/challenge-2.ipynb | 281 ++++++++++++++---- .../your-code/challenge-3.ipynb | 168 +++++++++-- 3 files changed, 562 insertions(+), 102 deletions(-) diff --git a/module-1_labs/lab-tuple-set-dict/your-code/challenge-1.ipynb b/module-1_labs/lab-tuple-set-dict/your-code/challenge-1.ipynb index 2e59d77..5ef6e78 100644 --- a/module-1_labs/lab-tuple-set-dict/your-code/challenge-1.ipynb +++ b/module-1_labs/lab-tuple-set-dict/your-code/challenge-1.ipynb @@ -15,11 +15,21 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "('I',)\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "tup = (\"I\", )\n", + "print(tup)" ] }, { @@ -33,11 +43,23 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "tuple" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "type(tup)" ] }, { @@ -55,13 +77,28 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['I', 'r', 'o', 'n', 'h', 'a', 'c', 'k']\n", + "('I', 'r', 'o', 'n', 'h', 'a', 'c', 'k')\n" + ] + } + ], "source": [ "# Your code here\n", - "\n", - "# Your explanation here\n" + "tup = list(tup)\n", + "tup.extend([\"r\", \"o\", \"n\", \"h\", \"a\", \"c\", \"k\"])\n", + "print(tup)\n", + "tup = tuple(tup)\n", + "type(tup)\n", + "print(tup)\n", + "# Your explanation here\n", + "#One cannot append new information a tuple" ] }, { @@ -79,12 +116,28 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 20, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['I', 'R', 'O', 'N', 'H', 'A', 'C', 'K']\n", + "('I', 'R', 'O', 'N', 'H', 'A', 'C', 'K')\n" + ] + } + ], "source": [ "# Your code here\n", - "\n", + "tup_low_case = list(tup)\n", + "cap_tup = [\"I\", \"R\", \"O\", \"N\", \"H\", \"A\", \"C\", \"K\"] \n", + "for i in range(len(cap_tup)):\n", + " tup_low_case.pop(i)\n", + " tup_low_case.insert(i, cap_tup[i])\n", + "print(tup_low_case)\n", + "tup_low_case = tuple(tup_low_case)\n", + "print(tup_low_case)\n", "# Your explanation here\n" ] }, @@ -103,11 +156,24 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 23, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "('I', 'r', 'o', 'n')\n", + "('h', 'a', 'c', 'k')\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "tup1 = tup [0:4]\n", + "tup2 = tup [4:len(tup)]\n", + "print(tup1)\n", + "print(tup2)" ] }, { @@ -121,11 +187,24 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 25, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "tup3 = tup1 + tup2\n", + "tup == tup3" ] }, { @@ -137,11 +216,23 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 26, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "len(tup3) == len(tup1) + len(tup2)" ] }, { @@ -153,11 +244,21 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 27, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "index_h = tup3.index(\"h\")\n", + "print(index_h)" ] }, { @@ -177,11 +278,36 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 36, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "letter is in tup3: a\n", + "True\n", + "letter is in tup3: b\n", + "False\n", + "letter is in tup3: c\n", + "True\n", + "letter is in tup3: d\n", + "False\n", + "letter is in tup3: e\n", + "False\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "letters = [\"a\", \"b\", \"c\", \"d\", \"e\"]\n", + "for letter in letters:\n", + " print(f\"letter is in tup3: {letter}\".format(letter))\n", + " in_tup3 = False\n", + " if letter in tup3:\n", + " in_tup3 = True\n", + " print(in_tup3)\n", + " " ] }, { @@ -195,12 +321,37 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 37, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "number of times the latter a appears is tup3 is 1\n", + "number of times the latter b appears is tup3 is 0\n", + "number of times the latter c appears is tup3 is 1\n", + "number of times the latter d appears is tup3 is 0\n", + "number of times the latter e appears is tup3 is 0\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "letters = [\"a\", \"b\", \"c\", \"d\", \"e\"]\n", + "for letter in letters:\n", + " letter_in_tup_counter = 0\n", + " if letter in tup3:\n", + " letter_in_tup_counter += 1\n", + " print(f\"number of times the latter {letter} appears is tup3 is {letter_in_tup_counter}\".format(letter, letter_in_tup_counter))" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { @@ -219,7 +370,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.2" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-1_labs/lab-tuple-set-dict/your-code/challenge-2.ipynb b/module-1_labs/lab-tuple-set-dict/your-code/challenge-2.ipynb index 41d6911..2356739 100644 --- a/module-1_labs/lab-tuple-set-dict/your-code/challenge-2.ipynb +++ b/module-1_labs/lab-tuple-set-dict/your-code/challenge-2.ipynb @@ -13,7 +13,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 47, "metadata": {}, "outputs": [], "source": [ @@ -38,11 +38,22 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Your code here\n" + "execution_count": 48, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[89, 31, 93, 96, 15, 62, 18, 87, 58, 45, 97, 0, 57, 40, 61, 64, 4, 39, 35, 54, 10, 11, 84, 29, 56, 13, 16, 41, 78, 27, 79, 98, 46, 42, 68, 95, 6, 21, 53, 30, 28, 71, 69, 38, 23, 81, 36, 37, 47, 76, 20, 9, 48, 25, 83, 32, 82, 91, 8, 59, 3, 66, 94, 22, 60, 92, 100, 24, 26, 67, 19, 12, 72, 5, 73, 34, 33, 88, 65, 50]\n" + ] + } + ], + "source": [ + "# Your code here\n", + "\n", + "sample_list_1 = random.sample(range(101), k=80)\n", + "print(sample_list_1)" ] }, { @@ -54,11 +65,21 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 49, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "80\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "set1 = set(sample_list_1)\n", + "print(len(set1))" ] }, { @@ -77,11 +98,24 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 50, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[59, 71, 37, 97, 77, 62, 89, 77, 51, 54, 83, 97, 35, 55, 34, 11, 73, 68, 28, 72, 51, 40, 41, 6, 49, 89, 10, 60, 93, 12, 42, 52, 63, 18, 17, 46, 43, 49, 82, 82, 33, 50, 47, 34, 16, 11, 57, 73, 28, 61, 64, 86, 35, 45, 76, 39, 88, 86, 0, 20, 94, 10, 19, 66, 71, 94, 46, 69, 79, 65, 82, 63, 64, 52, 50, 45, 31, 21, 97, 41, 27]\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "sample_list_2 = []\n", + "for i in range(81):\n", + " elem_to_add = random.randrange(0, 100)\n", + " sample_list_2.append(elem_to_add)\n", + "print(sample_list_2)" ] }, { @@ -93,11 +127,25 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], + "execution_count": 51, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{0, 6, 10, 11, 12, 16, 17, 18, 19, 20, 21, 27, 28, 31, 33, 34, 35, 37, 39, 40, 41, 42, 43, 45, 46, 47, 49, 50, 51, 52, 54, 55, 57, 59, 60, 61, 62, 63, 64, 65, 66, 68, 69, 71, 72, 73, 76, 77, 79, 82, 83, 86, 88, 89, 93, 94, 97}\n", + "57\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "set2 = set(sample_list_2)\n", + "print(set2)\n", + "print(len(set2))" ] }, { @@ -109,11 +157,21 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 52, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{3, 4, 5, 8, 9, 13, 15, 22, 23, 24, 25, 26, 29, 30, 32, 36, 38, 48, 53, 56, 58, 67, 78, 81, 84, 87, 91, 92, 95, 96, 98, 100}\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "set3 = {i for i in set1 if i not in set2}\n", + "print(set3)" ] }, { @@ -125,11 +183,21 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 53, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{43, 77, 17, 49, 51, 52, 86, 55, 63}\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "set4 = {i for i in set2 if i not in set1}\n", + "print(set4)" ] }, { @@ -141,11 +209,21 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 54, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "48\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "set5 = {i for i in set1 if i in set2}\n", + "print(len(set5))" ] }, { @@ -165,11 +243,23 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 55, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 55, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "len(set1) >= len(set2) >= len(set5) >= len(set3) >= len(set4) " ] }, { @@ -181,11 +271,12 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 56, "metadata": {}, "outputs": [], "source": [ - "# Your code here\n" + "# Your code here\n", + "set6 = {}" ] }, { @@ -197,11 +288,15 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 57, "metadata": {}, "outputs": [], "source": [ - "# Your code here\n" + "# Your code here\n", + "set6 = []\n", + "set6 = set(set6)\n", + "set6.update(set3)\n", + "set6.update(set5)" ] }, { @@ -213,11 +308,23 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 58, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 58, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "set1 == set6" ] }, { @@ -229,11 +336,29 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Your code here\n" + "execution_count": 59, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Check if set1 contains set2\n", + "False\n", + "Check if set3 contains set2\n", + "True\n" + ] + } + ], + "source": [ + "# Your code here\n", + "set1_contains_set2 = set2.issubset(set1)\n", + "print(\"Check if set1 contains set2\")\n", + "print(set1_contains_set2)\n", + "set1_contains_set3 = set3.issubset(set1)\n", + "print(\"Check if set3 contains set2\")\n", + "print(set1_contains_set3)\n", + "\n" ] }, { @@ -247,11 +372,40 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Your code here\n" + "execution_count": 60, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{0, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73, 76, 77, 78, 79, 81, 82, 83, 84, 86, 87, 88, 89, 91, 92, 93, 94, 95, 96, 97, 98, 100}\n", + "{0, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73, 76, 77, 78, 79, 81, 82, 83, 84, 86, 87, 88, 89, 91, 92, 93, 94, 95, 96, 97, 98, 100}\n", + "Are aggregated values are equal:\n" + ] + }, + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 60, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here\n", + "aggregated_set3_4 = set3.union(set4)\n", + "aggregated_set3_4_5 = aggregated_set3_4.union(set5)\n", + "print(aggregated_set3_4_5)\n", + "\n", + "aggregated_set1_2 = set1.union(set2)\n", + "print(aggregated_set1_2)\n", + "\n", + "print(\"Are aggregated values are equal:\")\n", + "aggregated_set3_4_5 == aggregated_set1_2" ] }, { @@ -263,11 +417,14 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 62, "metadata": {}, "outputs": [], "source": [ - "# Your code here\n" + "# Your code here\n", + "set7 = list(set1)\n", + "set1.pop(0)\n", + "set7 = set(set1)" ] }, { @@ -281,14 +438,36 @@ "```" ] }, + { + "cell_type": "code", + "execution_count": 65, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{3, 4, 5, 6, 8, 10, 12, 13, 15, 16, 18, 20, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 40, 42, 45, 46, 47, 48, 50, 53, 54, 56, 57, 58, 60, 62, 64, 65, 66, 67, 68, 72, 73, 76, 78, 82, 83, 84, 87, 88, 92, 93, 94, 95, 96, 97, 98, 100}\n" + ] + } + ], + "source": [ + "# Your code here\n", + "list_to_remove = [1, 9, 11, 19, 21, 29, 31, 39, 41, 49, 51, 59, 61, 69, 71, 79, 81, 89, 91, 99]\n", + "set8 = list(set1)\n", + "for i in list_to_remove:\n", + " if i in set8:\n", + " set8.remove(i)\n", + "set8 = set(set8)\n", + "print(set8)" + ] + }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], - "source": [ - "# Your code here\n" - ] + "source": [] } ], "metadata": { @@ -307,7 +486,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.2" + "version": "3.7.3" } }, "nbformat": 4, diff --git a/module-1_labs/lab-tuple-set-dict/your-code/challenge-3.ipynb b/module-1_labs/lab-tuple-set-dict/your-code/challenge-3.ipynb index 7ab8ea5..dd1b7a6 100644 --- a/module-1_labs/lab-tuple-set-dict/your-code/challenge-3.ipynb +++ b/module-1_labs/lab-tuple-set-dict/your-code/challenge-3.ipynb @@ -15,7 +15,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ @@ -49,11 +49,40 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['a', 'about', 'all', 'although', 'and', 'are', 'at', 'baby', 'backseat', 'bag', 'bar', 'be', 'bedsheets', 'begin', 'best', 'body', 'boy', 'brand', 'can', 'chance', 'club', 'come', 'conversation', 'crazy', 'dance', 'date', 'day', 'discovering', 'do', 'doing', \"don't\", 'drinking', 'driver', 'eat', 'every', 'falling', 'family', 'fast', 'fill', 'find', 'first', 'follow', 'for', 'friends', 'get', 'girl', 'give', 'go', 'going', 'grab', 'hand', 'handmade', 'heart', 'hours', 'how', 'i', \"i'll\", \"i'm\", 'in', 'is', \"isn't\", 'it', 'jukebox', 'just', 'kiss', 'know', 'last', 'lead', 'leave', 'let', \"let's\", 'like', 'love', 'lover', 'magnet', 'make', 'man', 'may', 'me', 'mind', 'much', 'my', 'new', 'night', 'not', 'now', 'of', 'okay', 'on', 'one', 'our', 'out', 'over', 'place', 'plate', 'play', 'pull', 'push', 'put', 'radio', 'room', 'say', 'shape', 'shots', 'singing', 'slow', 'smell', 'so', 'somebody', 'something', 'sour', 'start', 'stop', 'story', 'sweet', 'table', 'take', 'talk', 'taxi', 'tell', 'that', 'the', 'then', 'thrifty', 'to', 'too', 'trust', 'up', 'van', 'waist', 'want', 'was', 'we', \"we're\", 'week', 'were', 'where', 'with', 'you', 'your']\n", + "===\n", + "===\n", + "===\n", + "===\n", + "===\n", + "\n", + "{'a': 8, 'about': 1, 'all': 1, 'although': 3, 'and': 23, 'are': 1, 'at': 1, 'baby': 14, 'backseat': 1, 'bag': 1, 'bar': 1, 'be': 16, 'bedsheets': 3, 'begin': 1, 'best': 1, 'body': 17, 'boy': 2, 'brand': 6, 'can': 1, 'chance': 1, 'club': 1, 'come': 37, 'conversation': 1, 'crazy': 2, 'dance': 1, 'date': 1, 'day': 6, 'discovering': 6, 'do': 3, 'doing': 2, \"don't\": 2, 'drinking': 1, 'driver': 1, 'eat': 1, 'every': 6, 'falling': 3, 'family': 1, 'fast': 1, 'fill': 2, 'find': 1, 'first': 1, 'follow': 6, 'for': 3, 'friends': 1, 'get': 1, 'girl': 2, 'give': 1, 'go': 2, 'going': 1, 'grab': 2, 'hand': 1, 'handmade': 2, 'heart': 3, 'hours': 2, 'how': 1, 'i': 6, \"i'll\": 1, \"i'm\": 23, 'in': 27, 'is': 5, \"isn't\": 1, 'it': 1, 'jukebox': 1, 'just': 1, 'kiss': 1, 'know': 2, 'last': 3, 'lead': 6, 'leave': 1, 'let': 1, \"let's\": 2, 'like': 10, 'love': 25, 'lover': 1, 'magnet': 3, 'make': 1, 'man': 1, 'may': 2, 'me': 10, 'mind': 2, 'much': 2, 'my': 33, 'new': 6, 'night': 3, 'not': 2, 'now': 11, 'of': 6, 'okay': 1, 'on': 40, 'one': 1, 'our': 1, 'out': 1, 'over': 1, 'place': 1, 'plate': 1, 'play': 1, 'pull': 3, 'push': 3, 'put': 3, 'radio': 1, 'room': 3, 'say': 2, 'shape': 6, 'shots': 1, 'singing': 2, 'slow': 1, 'smell': 3, 'so': 2, 'somebody': 2, 'something': 6, 'sour': 1, 'start': 2, 'stop': 1, 'story': 1, 'sweet': 1, 'table': 1, 'take': 1, 'talk': 4, 'taxi': 1, 'tell': 1, 'that': 2, 'the': 18, 'then': 3, 'thrifty': 1, 'to': 2, 'too': 5, 'trust': 1, 'up': 3, 'van': 1, 'waist': 2, 'want': 2, 'was': 2, 'we': 7, \"we're\": 1, 'week': 1, 'were': 3, 'where': 1, 'with': 22, 'you': 16, 'your': 21}\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "word_freq = {'love': 25, 'conversation': 1, 'every': 6, \"we're\": 1, 'plate': 1, 'sour': 1, 'jukebox': 1, 'now': 11, 'taxi': 1, 'fast': 1, 'bag': 1, 'man': 1, 'push': 3, 'baby': 14, 'going': 1, 'you': 16, \"don't\": 2, 'one': 1, 'mind': 2, 'backseat': 1, 'friends': 1, 'then': 3, 'know': 2, 'take': 1, 'play': 1, 'okay': 1, 'so': 2, 'begin': 1, 'start': 2, 'over': 1, 'body': 17, 'boy': 2, 'just': 1, 'we': 7, 'are': 1, 'girl': 2, 'tell': 1, 'singing': 2, 'drinking': 1, 'put': 3, 'our': 1, 'where': 1, \"i'll\": 1, 'all': 1, \"isn't\": 1, 'make': 1, 'lover': 1, 'get': 1, 'radio': 1, 'give': 1, \"i'm\": 23, 'like': 10, 'can': 1, 'doing': 2, 'with': 22, 'club': 1, 'come': 37, 'it': 1, 'somebody': 2, 'handmade': 2, 'out': 1, 'new': 6, 'room': 3, 'chance': 1, 'follow': 6, 'in': 27, 'may': 2, 'brand': 6, 'that': 2, 'magnet': 3, 'up': 3, 'first': 1, 'and': 23, 'pull': 3, 'of': 6, 'table': 1, 'much': 2, 'last': 3, 'i': 6, 'thrifty': 1, 'grab': 2, 'was': 2, 'driver': 1, 'slow': 1, 'dance': 1, 'the': 18, 'say': 2, 'trust': 1, 'family': 1, 'week': 1, 'date': 1, 'me': 10, 'do': 3, 'waist': 2, 'smell': 3, 'day': 6, 'although': 3, 'your': 21, 'leave': 1, 'want': 2, \"let's\": 2, 'lead': 6, 'at': 1, 'hand': 1, 'how': 1, 'talk': 4, 'not': 2, 'eat': 1, 'falling': 3, 'about': 1, 'story': 1, 'sweet': 1, 'best': 1, 'crazy': 2, 'let': 1, 'too': 5, 'van': 1, 'shots': 1, 'go': 2, 'to': 2, 'a': 8, 'my': 33, 'is': 5, 'place': 1, 'find': 1, 'shape': 6, 'on': 40, 'kiss': 1, 'were': 3, 'night': 3, 'heart': 3, 'for': 3, 'discovering': 6, 'something': 6, 'be': 16, 'bedsheets': 3, 'fill': 2, 'hours': 2, 'stop': 1, 'bar': 1}\n", + "word_freq2 = {}\n", + "keys = []\n", + "for i in word_freq:\n", + " keys.append(i)\n", + "keys = sorted(word_freq)\n", + "# or just write: keys = sorted(word_freq.key())\n", + "print(keys)\n", + "\n", + "for i in keys:\n", + " word_freq2[i] = word_freq[i]\n", + "print(\"===\\n\" * 5)\n", + "\n", + "print(word_freq2)\n" ] }, { @@ -77,7 +106,7 @@ "\n", "* Using `sorted` and `operator.itemgetter`, obtain a list of tuples of the dict key-value pairs which is sorted on the value.\n", "\n", - "* Create an empty dictionary named `word_freq2`.\n", + "* Create an empty dictionary named `≈`.\n", "\n", "* Iterate the list of tuples. Insert each key-value pair into `word_freq2` as an object.\n", "\n", @@ -90,11 +119,36 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[('conversation', 1), (\"we're\", 1), ('plate', 1), ('sour', 1), ('jukebox', 1), ('taxi', 1), ('fast', 1), ('bag', 1), ('man', 1), ('going', 1), ('one', 1), ('backseat', 1), ('friends', 1), ('take', 1), ('play', 1), ('okay', 1), ('begin', 1), ('over', 1), ('just', 1), ('are', 1), ('tell', 1), ('drinking', 1), ('our', 1), ('where', 1), (\"i'll\", 1), ('all', 1), (\"isn't\", 1), ('make', 1), ('lover', 1), ('get', 1), ('radio', 1), ('give', 1), ('can', 1), ('club', 1), ('it', 1), ('out', 1), ('chance', 1), ('first', 1), ('table', 1), ('thrifty', 1), ('driver', 1), ('slow', 1), ('dance', 1), ('trust', 1), ('family', 1), ('week', 1), ('date', 1), ('leave', 1), ('at', 1), ('hand', 1), ('how', 1), ('eat', 1), ('about', 1), ('story', 1), ('sweet', 1), ('best', 1), ('let', 1), ('van', 1), ('shots', 1), ('place', 1), ('find', 1), ('kiss', 1), ('stop', 1), ('bar', 1), (\"don't\", 2), ('mind', 2), ('know', 2), ('so', 2), ('start', 2), ('boy', 2), ('girl', 2), ('singing', 2), ('doing', 2), ('somebody', 2), ('handmade', 2), ('may', 2), ('that', 2), ('much', 2), ('grab', 2), ('was', 2), ('say', 2), ('waist', 2), ('want', 2), (\"let's\", 2), ('not', 2), ('crazy', 2), ('go', 2), ('to', 2), ('fill', 2), ('hours', 2), ('push', 3), ('then', 3), ('put', 3), ('room', 3), ('magnet', 3), ('up', 3), ('pull', 3), ('last', 3), ('do', 3), ('smell', 3), ('although', 3), ('falling', 3), ('were', 3), ('night', 3), ('heart', 3), ('for', 3), ('bedsheets', 3), ('talk', 4), ('too', 5), ('is', 5), ('every', 6), ('new', 6), ('follow', 6), ('brand', 6), ('of', 6), ('i', 6), ('day', 6), ('lead', 6), ('shape', 6), ('discovering', 6), ('something', 6), ('we', 7), ('a', 8), ('like', 10), ('me', 10), ('now', 11), ('baby', 14), ('you', 16), ('be', 16), ('body', 17), ('the', 18), ('your', 21), ('with', 22), (\"i'm\", 23), ('and', 23), ('love', 25), ('in', 27), ('my', 33), ('come', 37), ('on', 40)]\n", + "===\n", + "===\n", + "===\n", + "===\n", + "===\n", + "\n", + "{'conversation': 1, \"we're\": 1, 'plate': 1, 'sour': 1, 'jukebox': 1, 'taxi': 1, 'fast': 1, 'bag': 1, 'man': 1, 'going': 1, 'one': 1, 'backseat': 1, 'friends': 1, 'take': 1, 'play': 1, 'okay': 1, 'begin': 1, 'over': 1, 'just': 1, 'are': 1, 'tell': 1, 'drinking': 1, 'our': 1, 'where': 1, \"i'll\": 1, 'all': 1, \"isn't\": 1, 'make': 1, 'lover': 1, 'get': 1, 'radio': 1, 'give': 1, 'can': 1, 'club': 1, 'it': 1, 'out': 1, 'chance': 1, 'first': 1, 'table': 1, 'thrifty': 1, 'driver': 1, 'slow': 1, 'dance': 1, 'trust': 1, 'family': 1, 'week': 1, 'date': 1, 'leave': 1, 'at': 1, 'hand': 1, 'how': 1, 'eat': 1, 'about': 1, 'story': 1, 'sweet': 1, 'best': 1, 'let': 1, 'van': 1, 'shots': 1, 'place': 1, 'find': 1, 'kiss': 1, 'stop': 1, 'bar': 1, \"don't\": 2, 'mind': 2, 'know': 2, 'so': 2, 'start': 2, 'boy': 2, 'girl': 2, 'singing': 2, 'doing': 2, 'somebody': 2, 'handmade': 2, 'may': 2, 'that': 2, 'much': 2, 'grab': 2, 'was': 2, 'say': 2, 'waist': 2, 'want': 2, \"let's\": 2, 'not': 2, 'crazy': 2, 'go': 2, 'to': 2, 'fill': 2, 'hours': 2, 'push': 3, 'then': 3, 'put': 3, 'room': 3, 'magnet': 3, 'up': 3, 'pull': 3, 'last': 3, 'do': 3, 'smell': 3, 'although': 3, 'falling': 3, 'were': 3, 'night': 3, 'heart': 3, 'for': 3, 'bedsheets': 3, 'talk': 4, 'too': 5, 'is': 5, 'every': 6, 'new': 6, 'follow': 6, 'brand': 6, 'of': 6, 'i': 6, 'day': 6, 'lead': 6, 'shape': 6, 'discovering': 6, 'something': 6, 'we': 7, 'a': 8, 'like': 10, 'me': 10, 'now': 11, 'baby': 14, 'you': 16, 'be': 16, 'body': 17, 'the': 18, 'your': 21, 'with': 22, \"i'm\": 23, 'and': 23, 'love': 25, 'in': 27, 'my': 33, 'come': 37, 'on': 40}\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "import operator\n", + "sorted_tups = sorted(word_freq.items(), key=operator.itemgetter(1))\n", + "print(sorted_tups)\n", + "print(\"===\\n\" * 5)\n", + "word_freq3 = {}\n", + "for i in range(len(sorted_tups)):\n", + " word_freq3[sorted_tups[i][0]] = sorted_tups[i][1]\n", + "print(word_freq3)\n", + " \n", + " " ] }, { @@ -110,7 +164,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "metadata": {}, "outputs": [], "source": [ @@ -132,11 +186,34 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 9, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " word freq\n", + "0 love 25\n", + "1 conversation 1\n", + "2 every 6\n", + "3 we're 1\n", + "4 plate 1\n", + ".. ... ...\n", + "135 bedsheets 3\n", + "136 fill 2\n", + "137 hours 2\n", + "138 stop 1\n", + "139 bar 1\n", + "\n", + "[140 rows x 2 columns]\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "df = pd.DataFrame(list( word_freq.items()), columns=['word', 'freq'])\n", + "print(df)" ] }, { @@ -150,11 +227,34 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 11, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " word freq\n", + "120 a 8\n", + "109 about 1\n", + "43 all 1\n", + "96 although 3\n", + "72 and 23\n", + ".. ... ...\n", + "128 were 3\n", + "41 where 1\n", + "54 with 22\n", + "15 you 16\n", + "97 your 21\n", + "\n", + "[140 rows x 2 columns]\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "df_by_col_word = df.sort_values(by=[\"word\"])\n", + "print(df_by_col_word)" ] }, { @@ -166,12 +266,42 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 13, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " word freq\n", + "139 bar 1\n", + "114 let 1\n", + "116 van 1\n", + "60 out 1\n", + "57 it 1\n", + ".. ... ...\n", + "0 love 25\n", + "65 in 27\n", + "121 my 33\n", + "56 come 37\n", + "126 on 40\n", + "\n", + "[140 rows x 2 columns]\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "df_by_col_freq = df.sort_values(by=[\"freq\"])\n", + "print(df_by_col_freq)" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { @@ -190,7 +320,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.2" + "version": "3.7.4" } }, "nbformat": 4, From 6bd202ca2f23a4285c69114d86ffb6ff552f5915 Mon Sep 17 00:00:00 2001 From: NAS <56131958+NAVSmith@users.noreply.github.com> Date: Wed, 16 Oct 2019 17:35:06 +0200 Subject: [PATCH 2/6] adding strng operation lab --- .../your-code/challenge-1.ipynb | 211 +++++++++++++++--- .../your-code/challenge-2.ipynb | 117 ++++++++-- 2 files changed, 282 insertions(+), 46 deletions(-) diff --git a/module-1_labs/lab-string-operations/your-code/challenge-1.ipynb b/module-1_labs/lab-string-operations/your-code/challenge-1.ipynb index 4302084..4d2ffd5 100644 --- a/module-1_labs/lab-string-operations/your-code/challenge-1.ipynb +++ b/module-1_labs/lab-string-operations/your-code/challenge-1.ipynb @@ -15,7 +15,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ @@ -33,12 +33,22 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 6, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Durante un tiempo no estuvo segura de si su marido era su marido.\n" + ] + } + ], "source": [ "str_list = ['Durante', 'un', 'tiempo', 'no', 'estuvo', 'segura', 'de', 'si', 'su', 'marido', 'era', 'su', 'marido']\n", - "# Your code here:\n" + "# Your code here:\n", + "string = \" \".join(str_list) + \".\"\n", + "print(string)" ] }, { @@ -50,12 +60,23 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 7, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Grocery list: bananas, bread, brownie mix, broccoli,\n" + ] + } + ], "source": [ "food_list = ['Bananas', 'Chocolate', 'bread', 'diapers', 'Ice Cream', 'Brownie Mix', 'broccoli']\n", - "# Your code here:\n" + "# Your code here:\n", + "a = [i.lower() for i in food_list if i[0].lower() == \"b\"]\n", + "string1 = \"Grocery list: \" + \", \".join([i.lower() for i in food_list if i[0].lower() == \"b\"]) + \",\"\n", + "print(string1)" ] }, { @@ -69,9 +90,17 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 8, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "If the radius of circle is 4.5 cm his area is 63.6173 cm.\n" + ] + } + ], "source": [ "import math\n", "\n", @@ -80,6 +109,7 @@ "radius = 4.5\n", "\n", "def area(x, pi = math.pi):\n", + " return pi * x ** 2\n", " # This function takes a radius and returns the area of a circle. We also pass a default value for pi.\n", " # Input: Float (and default value for pi)\n", " # Output: Float\n", @@ -90,7 +120,8 @@ " # Your code here:\n", " \n", " \n", - "# Your output string here:" + "# Your output string here:\n", + "print (f\"If the radius of circle is {radius} cm his area is {round(area(radius), 4)} cm.\".format(radius, round(area(radius), 4)))" ] }, { @@ -106,9 +137,18 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 9, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['Some', 'say', 'the', 'world', 'will', 'end', 'in', 'fire', 'Some', 'say', 'in', 'ice', 'From', 'what', 'I’ve', 'tasted', 'of', 'desire', 'I', 'hold', 'with', 'those', 'who', 'favor', 'fire', 'But', 'if', 'it', 'had', 'to', 'perish', 'twice', 'I', 'think', 'I', 'know', 'enough', 'of', 'hate', 'To', 'say', 'that', 'for', 'destruction', 'ice', 'Is', 'also', 'great', 'And', 'would', 'suffice']\n", + "{'Some': 2, 'say': 3, 'the': 1, 'world': 1, 'will': 1, 'end': 1, 'in': 2, 'fire': 2, 'ice': 2, 'From': 1, 'what': 1, 'I’ve': 1, 'tasted': 1, 'of': 2, 'desire': 1, 'I': 3, 'hold': 1, 'with': 1, 'those': 1, 'who': 1, 'favor': 1, 'But': 1, 'if': 1, 'it': 1, 'had': 1, 'to': 1, 'perish': 1, 'twice': 1, 'think': 1, 'know': 1, 'enough': 1, 'hate': 1, 'To': 1, 'that': 1, 'for': 1, 'destruction': 1, 'Is': 1, 'also': 1, 'great': 1, 'And': 1, 'would': 1, 'suffice': 1}\n" + ] + } + ], "source": [ "poem = \"\"\"Some say the world will end in fire,\n", "Some say in ice.\n", @@ -120,7 +160,18 @@ "Is also great\n", "And would suffice.\"\"\"\n", "\n", - "# Your code here:\n" + "# Your code here:\n", + "list_poem = poem.replace('.',' ').replace(',',' ').replace(\"\\n\",\" \").replace(\" \", \" \").split()\n", + "print(list_poem)\n", + "words_freq = {}\n", + "for word in list_poem:\n", + " if word in words_freq:\n", + " words_freq[word] += 1\n", + " else:\n", + " words_freq[word] = 1\n", + " \n", + "print(words_freq) \n", + " \n" ] }, { @@ -132,9 +183,31 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 10, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['I', 'was', 'angry', 'with', 'my', 'friend', 'I', 'told', 'my', 'wrath', 'my', 'wrath', 'did', 'end', 'I', 'was', 'angry', 'with', 'my', 'foe', 'I', 'told', 'it', 'not', 'my', 'wrath', 'did', 'grow', 'And', 'I', 'waterd', 'it', 'in', 'fears', 'Night', 'morning', 'with', 'my', 'tears', 'And', 'I', 'sunned', 'it', 'with', 'smiles', 'And', 'with', 'soft', 'deceitful', 'wiles', 'And', 'it', 'grew', 'both', 'day', 'and', 'night', 'Till', 'it', 'bore', 'an', 'apple', 'bright', 'And', 'my', 'foe', 'beheld', 'it', 'shine', 'And', 'he', 'knew', 'that', 'it', 'was', 'mine', 'And', 'into', 'my', 'garden', 'stole', 'When', 'the', 'night', 'had', 'veild', 'the', 'pole', 'In', 'the', 'morning', 'glad', 'I', 'see', 'My', 'foe', 'outstretched', 'beneath', 'the', 'tree']\n", + "====\n", + "====\n", + "====\n", + "====\n", + "====\n", + "\n", + "['I', 'was', 'angry', 'with', 'my', 'friend', 'I', 'told', 'my', 'wrath', 'my', 'wrath', 'did', 'end', 'I', 'was', 'angry', 'with', 'my', 'foe', 'I', 'told', 'it', 'not', 'my', 'wrath', 'did', 'grow', 'And', 'I', 'waterd', 'it', 'in', 'fears', 'Night', 'morning', 'with', 'my', 'tears', 'And', 'I', 'sunned', 'it', 'with', 'smiles', 'And', 'with', 'soft', 'deceitful', 'wiles', 'And', 'it', 'grew', 'both', 'day', 'and', 'night', 'Till', 'it', 'bore', 'an', 'apple', 'bright', 'And', 'my', 'foe', 'beheld', 'it', 'shine', 'And', 'he', 'knew', 'that', 'it', 'was', 'mine', 'And', 'into', 'my', 'garden', 'stole', 'When', 'the', 'night', 'had', 'veild', 'the', 'pole', 'In', 'the', 'morning', 'glad', 'I', 'see', 'My', 'foe', 'outstretched', 'beneath', 'the', 'tree']\n", + "====\n", + "====\n", + "====\n", + "====\n", + "====\n", + "\n", + "['was', 'angry', 'with', 'my', 'friend', 'told', 'my', 'wrath', 'my', 'wrath', 'did', 'end', 'was', 'angry', 'with', 'my', 'foe', 'told', 'not', 'my', 'wrath', 'did', 'grow', 'waterd', 'fears', 'morning', 'with', 'my', 'tears', 'sunned', 'with', 'smiles', 'with', 'soft', 'deceitful', 'wiles', 'grew', 'both', 'day', 'night', 'bore', 'apple', 'bright', 'my', 'foe', 'beheld', 'shine', 'he', 'knew', 'that', 'was', 'mine', 'into', 'my', 'garden', 'stole', 'night', 'had', 'veild', 'pole', 'morning', 'glad', 'see', 'foe', 'outstretched', 'beneath', 'tree']\n" + ] + } + ], "source": [ "blacklist = ['and', 'as', 'an', 'a', 'the', 'in', 'it']\n", "\n", @@ -158,7 +231,26 @@ "In the morning glad I see; \n", "My foe outstretched beneath the tree.\"\"\"\n", "\n", - "# Your code here:\n" + "# Your code here:\n", + "list_poem2 = poem.replace('.',' ').replace(',',' ').replace(\"\\n\",\" \").replace(\":\", \" \").replace(\";\", \" \").replace(\"&\", \" \").replace(\" \", \" \").split()\n", + "print(list_poem2)\n", + "print(\"====\\n\" * 5)\n", + "# listing the methods in a more viewable way:\n", + "list_poem3 = (poem\n", + " .replace('.',' ')\n", + " .replace(',',' ')\n", + " .replace(\"\\n\",\" \")\n", + " .replace(\":\", \" \")\n", + " .replace(\";\", \" \")\n", + " .replace(\"&\", \" \")\n", + " .replace(\" \", \" \")\n", + " .split() \n", + ")\n", + "print(list_poem3)\n", + "print(\"====\\n\" * 5)\n", + "#or a list comp\n", + "clean_list_poem = [i for i in list_poem2 if i not in blacklist and i[0].isupper() == False]\n", + "print(clean_list_poem)" ] }, { @@ -172,14 +264,28 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 11, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['T', 'P']\n", + "['T', 'P']\n" + ] + } + ], "source": [ "poem = \"\"\"The apparition of these faces in the crowd;\n", "Petals on a wet, black bough.\"\"\"\n", "\n", - "# Your code here:\n" + "# Your code here:\n", + "uppercase_letters = [poem[i] for i in range(len(poem)) if poem[i].isupper()== True]\n", + "print(uppercase_letters)\n", + "# or simply\n", + "uppercase_letters1 = re.findall( '[A-Z]', poem)\n", + "print(uppercase_letters1)" ] }, { @@ -191,13 +297,36 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 12, "metadata": {}, - "outputs": [], + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'list_words_with_digits' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\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 6\u001b[0m \u001b[0;32mcontinue\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 7\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 8\u001b[0;31m \u001b[0mlist_words_with_digits\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mappend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mword\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 9\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mlist_words_with_digits\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 10\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mNameError\u001b[0m: name 'list_words_with_digits' is not defined" + ] + } + ], "source": [ "data = ['123abc', 'abc123', 'JohnSmith1', 'ABBY4', 'JANE']\n", "\n", - "# Your code here:\n" + "# Your code here:\n", + "for word in data:\n", + " if re.search('\\d', word) == None:\n", + " continue\n", + " else:\n", + " list_words_with_digits.append(word)\n", + "print(list_words_with_digits) \n", + "\n", + "#try to make this work\n", + "list_words_with_digits = [data[i] for i in range(len(data)) if re.search('[0-9]', data[i]) == True]\n", + "print(list_words_with_digits)\n", + " \n" ] }, { @@ -213,13 +342,43 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 20, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['123abc', 'abc123', 'JohnSmith1']" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "data = ['123abc', 'abc123', 'JohnSmith1', 'ABBY4', 'JANE']\n", - "# Your code here:\n" + "# Your code here:\n", + "data_filter = []\n", + "for word in data:\n", + " if re.search('\\d', word) and re.search('[a-z]', word):\n", + " data_filter.append(word)\n", + "data_filter" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { @@ -238,7 +397,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.2" + "version": "3.7.3" } }, "nbformat": 4, diff --git a/module-1_labs/lab-string-operations/your-code/challenge-2.ipynb b/module-1_labs/lab-string-operations/your-code/challenge-2.ipynb index 87c5656..3b3e492 100644 --- a/module-1_labs/lab-string-operations/your-code/challenge-2.ipynb +++ b/module-1_labs/lab-string-operations/your-code/challenge-2.ipynb @@ -72,11 +72,11 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ - "docs = ['doc1.txt', 'doc2.txt', 'doc3.txt']" + "docs = ['doc1.txt', 'doc2.txt', 'doc3.txt'] \n" ] }, { @@ -88,13 +88,16 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "corpus = []\n", "\n", - "# Write your code here\n" + "# Write your code here\n", + "for i in docs:\n", + " with open(i) as file:\n", + " corpus.append(file.read())\n" ] }, { @@ -106,9 +109,17 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 5, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['Ironhack is cool.', 'I love Ironhack.', 'I am a student at Ironhack.']\n" + ] + } + ], "source": [ "print(corpus)" ] @@ -136,11 +147,29 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 6, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ironhack is cool\n", + "i love ironhack\n", + "i am a student at ironhack\n", + "['ironhack is cool', 'i love ironhack', 'i am a student at ironhack']\n" + ] + } + ], "source": [ - "# Write your code here" + "# Write your code here\n", + "new_corpus = []\n", + "for i in corpus:\n", + " i = i.replace('.', '').lower()\n", + " print(i)\n", + " new_corpus.append(i)\n", + "corpus = new_corpus\n", + "print(corpus)" ] }, { @@ -152,7 +181,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 7, "metadata": {}, "outputs": [], "source": [ @@ -172,11 +201,30 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 8, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['ironhack', 'is', 'cool']\n", + "['i', 'love', 'ironhack']\n", + "['i', 'am', 'a', 'student', 'at', 'ironhack']\n", + "['ironhack', 'is', 'cool', 'i', 'love', 'am', 'a', 'student', 'at']\n" + ] + } + ], "source": [ - "# Write your code here" + "# Write your code here\n", + "for i in corpus:\n", + " i = i.split(\" \")\n", + " print(i)\n", + " for j in i:\n", + " if j not in bag_of_words:\n", + " bag_of_words.append(j)\n", + "print(bag_of_words)\n", + " " ] }, { @@ -192,11 +240,21 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 9, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['ironhack', 'is', 'cool', 'i', 'love', 'am', 'a', 'student', 'at']\n", + "['ironhack is cool', 'i love ironhack', 'i am a student at ironhack']\n" + ] + } + ], "source": [ - "print(bag_of_words)" + "print(bag_of_words)\n", + "print(corpus)" ] }, { @@ -208,13 +266,32 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 14, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 0, 0, 1, 1, 0, 0, 0, 0], [1, 0, 0, 1, 0, 1, 1, 1, 1]]\n" + ] + } + ], "source": [ "term_freq = []\n", "\n", - "# Write your code here" + "# Write your code here\n", + "\n", + "for line in corpus:\n", + " freq=[]\n", + " for word in bag_of_words:\n", + " if word in line.split():\n", + " freq.append(1)\n", + " else:\n", + " freq.append(0)\n", + " term_freq.append(freq)\n", + "print(term_freq)\n", + " " ] }, { @@ -333,7 +410,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.2" + "version": "3.7.3" } }, "nbformat": 4, From 6179247aebe20a89a910208d27d27db657186241 Mon Sep 17 00:00:00 2001 From: NAS <56131958+NAVSmith@users.noreply.github.com> Date: Wed, 16 Oct 2019 17:37:17 +0200 Subject: [PATCH 3/6] adding my answers to the main challange --- .../your-code/Q1.ipynb | 146 +++++- .../your-code/challenge_1.ipynb | 405 +++++++++++++++++ .../your-code/challenge_2.ipynb | 418 ++++++++++++++++++ .../your-code/doc1.txt | 1 + .../your-code/doc2.txt | 1 + .../your-code/doc3.txt | 1 + .../your-code/lab-functional-programming.txt | 1 + .../your-code/main.ipynb | 307 +++++++++++-- .../your-code/shared-language-patterns.pdf | Bin 0 -> 537315 bytes 9 files changed, 1226 insertions(+), 54 deletions(-) create mode 100644 module-1_labs/lab-functional-programming/your-code/challenge_1.ipynb create mode 100644 module-1_labs/lab-functional-programming/your-code/challenge_2.ipynb create mode 100644 module-1_labs/lab-functional-programming/your-code/doc1.txt create mode 100644 module-1_labs/lab-functional-programming/your-code/doc2.txt create mode 100644 module-1_labs/lab-functional-programming/your-code/doc3.txt create mode 100644 module-1_labs/lab-functional-programming/your-code/lab-functional-programming.txt create mode 100644 module-1_labs/lab-functional-programming/your-code/shared-language-patterns.pdf diff --git a/module-1_labs/lab-functional-programming/your-code/Q1.ipynb b/module-1_labs/lab-functional-programming/your-code/Q1.ipynb index 8b07d3d..e043189 100644 --- a/module-1_labs/lab-functional-programming/your-code/Q1.ipynb +++ b/module-1_labs/lab-functional-programming/your-code/Q1.ipynb @@ -19,27 +19,98 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 14, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['ironhack is cool', 'i love ironhack', 'i am a student at ironhack']\n", + "['ironhack', 'is', 'cool']\n", + "['i', 'love', 'ironhack']\n", + "['i', 'am', 'a', 'student', 'at', 'ironhack']\n", + "[[1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 0, 0, 1, 1, 0, 0, 0, 0], [1, 0, 0, 1, 0, 1, 1, 1, 1]]\n", + "{'bag_of_words': ['ironhack', 'is', 'cool', 'i', 'love', 'am', 'a', 'student', 'at'], 'term_freq': [[1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 0, 0, 1, 1, 0, 0, 0, 0], [1, 0, 0, 1, 0, 1, 1, 1, 1]]}\n", + "['ironhack is cool', 'i love ironhack', 'i am a student at ironhack']\n", + "['ironhack', 'is', 'cool']\n", + "['i', 'love', 'ironhack']\n", + "['i', 'am', 'a', 'student', 'at', 'ironhack']\n", + "[[1, 1, 0, 0], [1, 0, 1, 0], [1, 0, 0, 1]]\n", + "{'bag_of_words': ['ironhack', 'cool', 'love', 'student'], 'term_freq': [[1, 1, 0, 0], [1, 0, 1, 0], [1, 0, 0, 1]]}\n" + ] + } + ], "source": [ "# Import required libraries\n", - "\n", + "import sys\n", + "import sklearn\n", "# Define function\n", - "def get_bow_from_docs(docs, stop_words=[]):\n", + "\n", + " \n", + "# # In the function, first define the variables you will use such as `corpus`, `bag_of_words`, and `term_freq`.\n", + "stop_words = ['all', 'six', 'less', 'being', 'indeed', 'over', 'move', 'anyway', 'fifty', 'four', 'not', 'own', 'through', 'yourselves', 'go', 'where', 'mill', 'only', 'find', 'before', 'one', 'whose', 'system', 'how', 'somewhere', 'with', 'thick', 'show', 'had', 'enough', 'should', 'to', 'must', 'whom', 'seeming', 'under', 'ours', 'has', 'might', 'thereafter', 'latterly', 'do', 'them', 'his', 'around', 'than', 'get', 'very', 'de', 'none', 'cannot', 'every', 'whether', 'they', 'front', 'during', 'thus', 'now', 'him', 'nor', 'name', 'several', 'hereafter', 'always', 'who', 'cry', 'whither', 'this', 'someone', 'either', 'each', 'become', 'thereupon', 'sometime', 'side', 'two', 'therein', 'twelve', 'because', 'often', 'ten', 'our', 'eg', 'some', 'back', 'up', 'namely', 'towards', 'are', 'further', 'beyond', 'ourselves', 'yet', 'out', 'even', 'will', 'what', 'still', 'for', 'bottom', 'mine', 'since', 'please', 'forty', 'per', 'its', 'everything', 'behind', 'un', 'above', 'between', 'it', 'neither', 'seemed', 'ever', 'across', 'she', 'somehow', 'be', 'we', 'full', 'never', 'sixty', 'however', 'here', 'otherwise', 'were', 'whereupon', 'nowhere', 'although', 'found', 'alone', 're', 'along', 'fifteen', 'by', 'both', 'about', 'last', 'would', 'anything', 'via', 'many', 'could', 'thence', 'put', 'against', 'keep', 'etc', 'amount', 'became', 'ltd', 'hence', 'onto', 'or', 'con', 'among', 'already', 'co', 'afterwards', 'formerly', 'within', 'seems', 'into', 'others', 'while', 'whatever', 'except', 'down', 'hers', 'everyone', 'done', 'least', 'another', 'whoever', 'moreover', 'couldnt', 'throughout', 'anyhow', 'yourself', 'three', 'from', 'her', 'few', 'together', 'top', 'there', 'due', 'been', 'next', 'anyone', 'eleven', 'much', 'call', 'therefore', 'interest', 'then', 'thru', 'themselves', 'hundred', 'was', 'sincere', 'empty', 'more', 'himself', 'elsewhere', 'mostly', 'on', 'fire', 'am', 'becoming', 'hereby', 'amongst', 'else', 'part', 'everywhere', 'too', 'herself', 'former', 'those', 'he', 'me', 'myself', 'made', 'twenty', 'these', 'bill', 'cant', 'us', 'until', 'besides', 'nevertheless', 'below', 'anywhere', 'nine', 'can', 'of', 'your', 'toward', 'my', 'something', 'and', 'whereafter', 'whenever', 'give', 'almost', 'wherever', 'is', 'describe', 'beforehand', 'herein', 'an', 'as', 'itself', 'at', 'have', 'in', 'seem', 'whence', 'ie', 'any', 'fill', 'again', 'hasnt', 'inc', 'thereby', 'thin', 'no', 'perhaps', 'latter', 'meanwhile', 'when', 'detail', 'same', 'wherein', 'beside', 'also', 'that', 'other', 'take', 'which', 'becomes', 'you', 'if', 'nobody', 'see', 'though', 'may', 'after', 'upon', 'most', 'hereupon', 'eight', 'but', 'serious', 'nothing', 'such', 'why', 'a', 'off', 'whereby', 'third', 'i', 'whole', 'noone', 'sometimes', 'well', 'amoungst', 'yours', 'their', 'rather', 'without', 'so', 'five', 'the', 'first', 'whereas', 'once']\n", + "docs = ['doc1.txt', 'doc2.txt', 'doc3.txt'] \n", + "\n", + "def lowecases_n_remove_punctuation(corpus):\n", + " new_corpus = []\n", + " for i in corpus:\n", + " i = i.replace('.', '').lower()\n", + " new_corpus.append(i)\n", + " return new_corpus\n", + " \n", " \n", - " # In the function, first define the variables you will use such as `corpus`, `bag_of_words`, and `term_freq`.\n", + "def make_a_unique_word_list(corpus, stop_words= []):\n", + " bag_of_words = []\n", + " for i in corpus:\n", + " i = i.split(\" \")\n", + " for j in i:\n", + " if j not in bag_of_words and j not in stop_words:\n", + " bag_of_words.append(j)\n", + " return bag_of_words\n", + "\n", + "def find_freq_word_in_list(corpus, bag_of_words):\n", + " term_freq = []\n", + " for string in corpus:\n", + " new_string=string.split()\n", + " print(new_string)\n", + " temp=[]\n", + " for word in bag_of_words:\n", + " temp.append(new_string.count(word))\n", + " term_freq.append(temp)\n", + " print(term_freq)\n", + " return term_freq\n", + "\n", + "\n", + "def get_bow_from_docs(docs, stop_words= []):\n", + " corpus = []\n", + " bag_of_words = []\n", + " term_freq = []\n", + " for string in docs: \n", + " with open(string) as file:\n", + " corpus.append(file.read())\n", + " corpus = lowecases_n_remove_punctuation(corpus)\n", + " print(corpus)\n", + " bag_of_words = make_a_unique_word_list(corpus, stop_words)\n", + " term_freq = find_freq_word_in_list(corpus, bag_of_words)\n", + " return {\n", + " \"bag_of_words\": bag_of_words,\n", + " \"term_freq\": term_freq }\n", " \n", " \n", " \n", - " \"\"\"\n", + " \n", + "\n", + " \n", + " \n", + "\"\"\"\n", " Loop `docs` and read the content of each doc into a string in `corpus`.\n", " Remember to convert the doc content to lowercases and remove punctuation.\n", " \"\"\"\n", "\n", " \n", " \n", - " \"\"\"\n", + "\"\"\"\n", " Loop `corpus`. Append the terms in each doc into the `bag_of_words` array. The terms in `bag_of_words` \n", " should be unique which means before adding each term you need to check if it's already added to the array.\n", " In addition, check if each term is in the `stop_words` array. Only append the term to `bag_of_words`\n", @@ -49,7 +120,7 @@ " \n", " \n", " \n", - " \"\"\"\n", + "\"\"\"\n", " Loop `corpus` again. For each doc string, count the number of occurrences of each term in `bag_of_words`. \n", " Create an array for each doc's term frequency and append it to `term_freq`.\n", " \"\"\"\n", @@ -57,11 +128,8 @@ " \n", " \n", " # Now return your output as an object\n", - " return {\n", - " \"bag_of_words\": bag_of_words,\n", - " \"term_freq\": term_freq\n", - " }\n", - " " + "print(get_bow_from_docs(docs))\n", + "print(get_bow_from_docs(docs, stop_words))" ] }, { @@ -75,12 +143,25 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 15, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['ironhack is cool', 'i love ironhack', 'i am a student at ironhack']\n", + "['ironhack', 'is', 'cool']\n", + "['i', 'love', 'ironhack']\n", + "['i', 'am', 'a', 'student', 'at', 'ironhack']\n", + "[[1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 0, 0, 1, 1, 0, 0, 0, 0], [1, 0, 0, 1, 0, 1, 1, 1, 1]]\n", + "{'bag_of_words': ['ironhack', 'is', 'cool', 'i', 'love', 'am', 'a', 'student', 'at'], 'term_freq': [[1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 0, 0, 1, 1, 0, 0, 0, 0], [1, 0, 0, 1, 0, 1, 1, 1, 1]]}\n" + ] + } + ], "source": [ "# Define doc paths array\n", - "docs = []\n", + "docs = ['doc1.txt', 'doc2.txt', 'doc3.txt']\n", "\n", "# Obtain BoW from your function\n", "bow = get_bow_from_docs(docs)\n", @@ -100,9 +181,17 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 16, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "frozenset({'enough', 'eleven', 'not', 'once', 'wherein', 'anyhow', 'together', 'found', 'as', 'thereby', 'sometimes', 'beside', 'sixty', 'while', 'ourselves', 'have', 'via', 'otherwise', 'de', 'name', 'could', 'back', 'own', 'at', 'why', 'twelve', 'anyone', 'amongst', 'thick', 'however', 'down', 'nowhere', 'of', 'hundred', 'front', 'their', 'ours', 'another', 'before', 'than', 'from', 'bill', 'when', 'several', 'show', 'there', 'seeming', 'rather', 'yourself', 'inc', 'myself', 'amoungst', 'nor', 'next', 'further', 'much', 'last', 'to', 'no', 'been', 'under', 'here', 'take', 'they', 'we', 'both', 'or', 'these', 'then', 'too', 'mostly', 'couldnt', 'top', 'was', 'whole', 'whoever', 'cry', 'nevertheless', 'everyone', 'in', 'be', 'am', 'itself', 'your', 'my', 'due', 'were', 'she', 'forty', 'since', 'fire', 'eg', 'over', 'thereupon', 'this', 'still', 'between', 'two', 'i', 'call', 'side', 'might', 'hereby', 'noone', 'until', 'whether', 'somewhere', 'already', 'yourselves', 'seemed', 'whence', 'nine', 'fifteen', 'namely', 'again', 'indeed', 'thin', 'hereupon', 'along', 'seems', 'yet', 'amount', 'will', 'less', 'everything', 'full', 'empty', 'done', 'what', 'being', 'do', 'that', 'becomes', 'where', 'those', 'such', 'its', 'against', 'whom', 'fill', 'during', 'onto', 'anywhere', 'others', 'whereafter', 'among', 'go', 'should', 'became', 'interest', 'perhaps', 'made', 'any', 'wherever', 'formerly', 'only', 'six', 'if', 'even', 'etc', 'see', 'it', 'somehow', 'system', 'becoming', 'therefore', 'can', 'though', 'thus', 'mill', 'cannot', 'fifty', 'hers', 'must', 'the', 'give', 'across', 'behind', 'except', 'yours', 'he', 'beyond', 'also', 'because', 'few', 'within', 'through', 'un', 'mine', 'around', 'always', 'get', 'most', 'same', 'five', 'how', 'sometime', 'whither', 'whenever', 'beforehand', 'ten', 'more', 'our', 'serious', 'whereas', 'after', 'whatever', 'into', 'something', 'former', 'neither', 'each', 'herself', 'but', 'first', 'alone', 'keep', 'upon', 'every', 'off', 'moreover', 'detail', 'con', 'co', 'whereby', 'eight', 'you', 'sincere', 'which', 'without', 'never', 'either', 'third', 'is', 'anything', 'become', 'would', 'bottom', 'afterwards', 'toward', 'one', 'although', 'find', 'who', 'besides', 'therein', 'many', 'hence', 'are', 'her', 'with', 'on', 'else', 'ever', 'well', 'meanwhile', 'thru', 'has', 'describe', 'put', 'twenty', 're', 'all', 'anyway', 'up', 'for', 'part', 'whereupon', 'whose', 'other', 'four', 'now', 'above', 'cant', 'a', 'and', 'nothing', 'throughout', 'someone', 'may', 'least', 'almost', 'themselves', 'below', 'per', 'himself', 'us', 'three', 'everywhere', 'none', 'me', 'ltd', 'out', 'latterly', 'ie', 'seem', 'hasnt', 'nobody', 'herein', 'thence', 'some', 'about', 'often', 'by', 'had', 'latter', 'hereafter', 'elsewhere', 'him', 'an', 'so', 'please', 'move', 'them', 'very', 'his', 'towards', 'thereafter'})\n" + ] + } + ], "source": [ "from sklearn.feature_extraction import stop_words\n", "print(stop_words.ENGLISH_STOP_WORDS)" @@ -128,11 +217,24 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 18, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['ironhack is cool', 'i love ironhack', 'i am a student at ironhack']\n", + "['ironhack', 'is', 'cool']\n", + "['i', 'love', 'ironhack']\n", + "['i', 'am', 'a', 'student', 'at', 'ironhack']\n", + "[[1, 1, 0, 0], [1, 0, 1, 0], [1, 0, 0, 1]]\n", + "{'bag_of_words': ['ironhack', 'cool', 'love', 'student'], 'term_freq': [[1, 1, 0, 0], [1, 0, 1, 0], [1, 0, 0, 1]]}\n" + ] + } + ], "source": [ - "bow = get_bow_from_docs(bow, stop_words.ENGLISH_STOP_WORDS)\n", + "bow = get_bow_from_docs(docs, stop_words.ENGLISH_STOP_WORDS)\n", "\n", "print(bow)" ] @@ -170,7 +272,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.7.3" } }, "nbformat": 4, diff --git a/module-1_labs/lab-functional-programming/your-code/challenge_1.ipynb b/module-1_labs/lab-functional-programming/your-code/challenge_1.ipynb new file mode 100644 index 0000000..4d2ffd5 --- /dev/null +++ b/module-1_labs/lab-functional-programming/your-code/challenge_1.ipynb @@ -0,0 +1,405 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# String Operations Lab\n", + "\n", + "**Before your start:**\n", + "\n", + "- Read the README.md file\n", + "- Comment as much as you can and use the resources in the README.md file\n", + "- Happy learning!" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "import re" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 1 - Combining Strings\n", + "\n", + "Combining strings is an important skill to acquire. There are multiple ways of combining strings in Python, as well as combining strings with variables. We will explore this in the first challenge. In the cell below, combine the strings in the list and add spaces between the strings (do not add a space after the last string). Insert a period after the last string." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Durante un tiempo no estuvo segura de si su marido era su marido.\n" + ] + } + ], + "source": [ + "str_list = ['Durante', 'un', 'tiempo', 'no', 'estuvo', 'segura', 'de', 'si', 'su', 'marido', 'era', 'su', 'marido']\n", + "# Your code here:\n", + "string = \" \".join(str_list) + \".\"\n", + "print(string)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, use the list of strings to create a grocery list. Start the list with the string `Grocery list: ` and include a comma and a space between each item except for the last one. Include a period at the end. Only include foods in the list that start with the letter 'b' and ensure all foods are lower case." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Grocery list: bananas, bread, brownie mix, broccoli,\n" + ] + } + ], + "source": [ + "food_list = ['Bananas', 'Chocolate', 'bread', 'diapers', 'Ice Cream', 'Brownie Mix', 'broccoli']\n", + "# Your code here:\n", + "a = [i.lower() for i in food_list if i[0].lower() == \"b\"]\n", + "string1 = \"Grocery list: \" + \", \".join([i.lower() for i in food_list if i[0].lower() == \"b\"]) + \",\"\n", + "print(string1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, write a function that computes the area of a circle using its radius. Compute the area of the circle and insert the radius and the area between the two strings. Make sure to include spaces between the variable and the strings. \n", + "\n", + "Note: You can use the techniques we have learned so far or use f-strings. F-strings allow us to embed code inside strings. You can read more about f-strings [here](https://www.python.org/dev/peps/pep-0498/)." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "If the radius of circle is 4.5 cm his area is 63.6173 cm.\n" + ] + } + ], + "source": [ + "import math\n", + "\n", + "string1 = \"The area of the circle with radius:\"\n", + "string2 = \"is:\"\n", + "radius = 4.5\n", + "\n", + "def area(x, pi = math.pi):\n", + " return pi * x ** 2\n", + " # This function takes a radius and returns the area of a circle. We also pass a default value for pi.\n", + " # Input: Float (and default value for pi)\n", + " # Output: Float\n", + " \n", + " # Sample input: 5.0\n", + " # Sample Output: 78.53981633\n", + " \n", + " # Your code here:\n", + " \n", + " \n", + "# Your output string here:\n", + "print (f\"If the radius of circle is {radius} cm his area is {round(area(radius), 4)} cm.\".format(radius, round(area(radius), 4)))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 2 - Splitting Strings\n", + "\n", + "We have first looked at combining strings into one long string. There are times where we need to do the opposite and split the string into smaller components for further analysis. \n", + "\n", + "In the cell below, split the string into a list of strings using the space delimiter. Count the frequency of each word in the string in a dictionary. Strip the periods, line breaks and commas from the text. Make sure to remove empty strings from your dictionary." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['Some', 'say', 'the', 'world', 'will', 'end', 'in', 'fire', 'Some', 'say', 'in', 'ice', 'From', 'what', 'I’ve', 'tasted', 'of', 'desire', 'I', 'hold', 'with', 'those', 'who', 'favor', 'fire', 'But', 'if', 'it', 'had', 'to', 'perish', 'twice', 'I', 'think', 'I', 'know', 'enough', 'of', 'hate', 'To', 'say', 'that', 'for', 'destruction', 'ice', 'Is', 'also', 'great', 'And', 'would', 'suffice']\n", + "{'Some': 2, 'say': 3, 'the': 1, 'world': 1, 'will': 1, 'end': 1, 'in': 2, 'fire': 2, 'ice': 2, 'From': 1, 'what': 1, 'I’ve': 1, 'tasted': 1, 'of': 2, 'desire': 1, 'I': 3, 'hold': 1, 'with': 1, 'those': 1, 'who': 1, 'favor': 1, 'But': 1, 'if': 1, 'it': 1, 'had': 1, 'to': 1, 'perish': 1, 'twice': 1, 'think': 1, 'know': 1, 'enough': 1, 'hate': 1, 'To': 1, 'that': 1, 'for': 1, 'destruction': 1, 'Is': 1, 'also': 1, 'great': 1, 'And': 1, 'would': 1, 'suffice': 1}\n" + ] + } + ], + "source": [ + "poem = \"\"\"Some say the world will end in fire,\n", + "Some say in ice.\n", + "From what I’ve tasted of desire\n", + "I hold with those who favor fire.\n", + "But if it had to perish twice,\n", + "I think I know enough of hate\n", + "To say that for destruction ice\n", + "Is also great\n", + "And would suffice.\"\"\"\n", + "\n", + "# Your code here:\n", + "list_poem = poem.replace('.',' ').replace(',',' ').replace(\"\\n\",\" \").replace(\" \", \" \").split()\n", + "print(list_poem)\n", + "words_freq = {}\n", + "for word in list_poem:\n", + " if word in words_freq:\n", + " words_freq[word] += 1\n", + " else:\n", + " words_freq[word] = 1\n", + " \n", + "print(words_freq) \n", + " \n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, find all the words that appear in the text and do not appear in the blacklist. You must parse the string but can choose any data structure you wish for the words that do not appear in the blacklist. Remove all non letter characters and convert all words to lower case." + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['I', 'was', 'angry', 'with', 'my', 'friend', 'I', 'told', 'my', 'wrath', 'my', 'wrath', 'did', 'end', 'I', 'was', 'angry', 'with', 'my', 'foe', 'I', 'told', 'it', 'not', 'my', 'wrath', 'did', 'grow', 'And', 'I', 'waterd', 'it', 'in', 'fears', 'Night', 'morning', 'with', 'my', 'tears', 'And', 'I', 'sunned', 'it', 'with', 'smiles', 'And', 'with', 'soft', 'deceitful', 'wiles', 'And', 'it', 'grew', 'both', 'day', 'and', 'night', 'Till', 'it', 'bore', 'an', 'apple', 'bright', 'And', 'my', 'foe', 'beheld', 'it', 'shine', 'And', 'he', 'knew', 'that', 'it', 'was', 'mine', 'And', 'into', 'my', 'garden', 'stole', 'When', 'the', 'night', 'had', 'veild', 'the', 'pole', 'In', 'the', 'morning', 'glad', 'I', 'see', 'My', 'foe', 'outstretched', 'beneath', 'the', 'tree']\n", + "====\n", + "====\n", + "====\n", + "====\n", + "====\n", + "\n", + "['I', 'was', 'angry', 'with', 'my', 'friend', 'I', 'told', 'my', 'wrath', 'my', 'wrath', 'did', 'end', 'I', 'was', 'angry', 'with', 'my', 'foe', 'I', 'told', 'it', 'not', 'my', 'wrath', 'did', 'grow', 'And', 'I', 'waterd', 'it', 'in', 'fears', 'Night', 'morning', 'with', 'my', 'tears', 'And', 'I', 'sunned', 'it', 'with', 'smiles', 'And', 'with', 'soft', 'deceitful', 'wiles', 'And', 'it', 'grew', 'both', 'day', 'and', 'night', 'Till', 'it', 'bore', 'an', 'apple', 'bright', 'And', 'my', 'foe', 'beheld', 'it', 'shine', 'And', 'he', 'knew', 'that', 'it', 'was', 'mine', 'And', 'into', 'my', 'garden', 'stole', 'When', 'the', 'night', 'had', 'veild', 'the', 'pole', 'In', 'the', 'morning', 'glad', 'I', 'see', 'My', 'foe', 'outstretched', 'beneath', 'the', 'tree']\n", + "====\n", + "====\n", + "====\n", + "====\n", + "====\n", + "\n", + "['was', 'angry', 'with', 'my', 'friend', 'told', 'my', 'wrath', 'my', 'wrath', 'did', 'end', 'was', 'angry', 'with', 'my', 'foe', 'told', 'not', 'my', 'wrath', 'did', 'grow', 'waterd', 'fears', 'morning', 'with', 'my', 'tears', 'sunned', 'with', 'smiles', 'with', 'soft', 'deceitful', 'wiles', 'grew', 'both', 'day', 'night', 'bore', 'apple', 'bright', 'my', 'foe', 'beheld', 'shine', 'he', 'knew', 'that', 'was', 'mine', 'into', 'my', 'garden', 'stole', 'night', 'had', 'veild', 'pole', 'morning', 'glad', 'see', 'foe', 'outstretched', 'beneath', 'tree']\n" + ] + } + ], + "source": [ + "blacklist = ['and', 'as', 'an', 'a', 'the', 'in', 'it']\n", + "\n", + "poem = \"\"\"I was angry with my friend; \n", + "I told my wrath, my wrath did end.\n", + "I was angry with my foe: \n", + "I told it not, my wrath did grow. \n", + "\n", + "And I waterd it in fears,\n", + "Night & morning with my tears: \n", + "And I sunned it with smiles,\n", + "And with soft deceitful wiles. \n", + "\n", + "And it grew both day and night. \n", + "Till it bore an apple bright. \n", + "And my foe beheld it shine,\n", + "And he knew that it was mine. \n", + "\n", + "And into my garden stole, \n", + "When the night had veild the pole; \n", + "In the morning glad I see; \n", + "My foe outstretched beneath the tree.\"\"\"\n", + "\n", + "# Your code here:\n", + "list_poem2 = poem.replace('.',' ').replace(',',' ').replace(\"\\n\",\" \").replace(\":\", \" \").replace(\";\", \" \").replace(\"&\", \" \").replace(\" \", \" \").split()\n", + "print(list_poem2)\n", + "print(\"====\\n\" * 5)\n", + "# listing the methods in a more viewable way:\n", + "list_poem3 = (poem\n", + " .replace('.',' ')\n", + " .replace(',',' ')\n", + " .replace(\"\\n\",\" \")\n", + " .replace(\":\", \" \")\n", + " .replace(\";\", \" \")\n", + " .replace(\"&\", \" \")\n", + " .replace(\" \", \" \")\n", + " .split() \n", + ")\n", + "print(list_poem3)\n", + "print(\"====\\n\" * 5)\n", + "#or a list comp\n", + "clean_list_poem = [i for i in list_poem2 if i not in blacklist and i[0].isupper() == False]\n", + "print(clean_list_poem)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 3 - Regular Expressions\n", + "\n", + "Sometimes, we would like to perform more complex manipulations of our string. This is where regular expressions come in handy. In the cell below, return all characters that are upper case from the string specified below." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['T', 'P']\n", + "['T', 'P']\n" + ] + } + ], + "source": [ + "poem = \"\"\"The apparition of these faces in the crowd;\n", + "Petals on a wet, black bough.\"\"\"\n", + "\n", + "# Your code here:\n", + "uppercase_letters = [poem[i] for i in range(len(poem)) if poem[i].isupper()== True]\n", + "print(uppercase_letters)\n", + "# or simply\n", + "uppercase_letters1 = re.findall( '[A-Z]', poem)\n", + "print(uppercase_letters1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, filter the list provided and return all elements of the list containing a number. To filter the list, use the `re.search` function. Check if the function does not return `None`. You can read more about the `re.search` function [here](https://docs.python.org/3/library/re.html)." + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'list_words_with_digits' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\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 6\u001b[0m \u001b[0;32mcontinue\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 7\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 8\u001b[0;31m \u001b[0mlist_words_with_digits\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mappend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mword\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 9\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mlist_words_with_digits\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 10\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mNameError\u001b[0m: name 'list_words_with_digits' is not defined" + ] + } + ], + "source": [ + "data = ['123abc', 'abc123', 'JohnSmith1', 'ABBY4', 'JANE']\n", + "\n", + "# Your code here:\n", + "for word in data:\n", + " if re.search('\\d', word) == None:\n", + " continue\n", + " else:\n", + " list_words_with_digits.append(word)\n", + "print(list_words_with_digits) \n", + "\n", + "#try to make this work\n", + "list_words_with_digits = [data[i] for i in range(len(data)) if re.search('[0-9]', data[i]) == True]\n", + "print(list_words_with_digits)\n", + " \n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Bonus Challenge - Regular Expressions II\n", + "\n", + "In the cell below, filter the list provided to keep only strings containing at least one digit and at least one lower case letter. As in the previous question, use the `re.search` function and check that the result is not `None`.\n", + "\n", + "To read more about regular expressions, check out [this link](https://developers.google.com/edu/python/regular-expressions)." + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['123abc', 'abc123', 'JohnSmith1']" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data = ['123abc', 'abc123', 'JohnSmith1', 'ABBY4', 'JANE']\n", + "# Your code here:\n", + "data_filter = []\n", + "for word in data:\n", + " if re.search('\\d', word) and re.search('[a-z]', word):\n", + " data_filter.append(word)\n", + "data_filter" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module-1_labs/lab-functional-programming/your-code/challenge_2.ipynb b/module-1_labs/lab-functional-programming/your-code/challenge_2.ipynb new file mode 100644 index 0000000..3b3e492 --- /dev/null +++ b/module-1_labs/lab-functional-programming/your-code/challenge_2.ipynb @@ -0,0 +1,418 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Bag of Words Lab\n", + "\n", + "## Introduction\n", + "\n", + "**Bag of words (BoW)** is an important technique in text mining and [information retrieval](https://en.wikipedia.org/wiki/Information_retrieval). BoW uses term-frequency vectors to represent the content of text documents which makes it possible to use mathematics and computer programs to analyze and compare text documents.\n", + "\n", + "BoW contains the following information:\n", + "\n", + "1. A dictionary of all the terms (words) in the text documents. The terms are normalized in terms of the letter case (e.g. `Ironhack` => `ironhack`), tense (e.g. `had` => `have`), singular form (e.g. `students` => `student`), etc.\n", + "1. The number of occurrences of each normalized term in each document.\n", + "\n", + "For example, assume we have three text documents:\n", + "\n", + "DOC 1: **Ironhack is cool.**\n", + "\n", + "DOC 2: **I love Ironhack.**\n", + "\n", + "DOC 3: **I am a student at Ironhack.**\n", + "\n", + "The BoW of the above documents looks like below:\n", + "\n", + "| TERM | DOC 1 | DOC 2 | Doc 3 |\n", + "|---|---|---|---|\n", + "| a | 0 | 0 | 1 |\n", + "| am | 0 | 0 | 1 |\n", + "| at | 0 | 0 | 1 |\n", + "| cool | 1 | 0 | 0 |\n", + "| i | 0 | 1 | 1 |\n", + "| ironhack | 1 | 1 | 1 |\n", + "| is | 1 | 0 | 0 |\n", + "| love | 0 | 1 | 0 |\n", + "| student | 0 | 0 | 1 |\n", + "\n", + "\n", + "The term-frequency array of each document in BoW can be considered a high-dimensional vector. Data scientists use these vectors to represent the content of the documents. For instance, DOC 1 is represented with `[0, 0, 0, 1, 0, 1, 1, 0, 0]`, DOC 2 is represented with `[0, 0, 0, 0, 1, 1, 0, 1, 0]`, and DOC 3 is represented with `[1, 1, 1, 0, 1, 1, 0, 0, 1]`. **Two documents are considered identical if their vector representations have close [cosine similarity](https://en.wikipedia.org/wiki/Cosine_similarity).**\n", + "\n", + "In real practice there are many additional techniques to improve the text mining accuracy such as using [stop words](https://en.wikipedia.org/wiki/Stop_words) (i.e. neglecting common words such as `a`, `I`, `to` that don't contribute much meaning), synonym list (e.g. consider `New York City` the same as `NYC` and `Big Apple`), and HTML tag removal if the data sources are webpages. In Module 3 you will learn how to use those advanced techniques for [natural language processing](https://en.wikipedia.org/wiki/Natural_language_processing), a component of text mining.\n", + "\n", + "In real text mining projects data analysts use packages such as Scikit-Learn and NLTK, which you will learn in Module 3, to extract BoW from texts. In this exercise, however, we would like you to create BoW manually with Python. This is because by manually creating BoW you can better understand the concept and also practice the Python skills you have learned so far." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## The Challenge\n", + "\n", + "We need to create a BoW from a list of documents. The documents (`doc1.txt`, `doc2.txt`, and `doc3.txt`) can be found in the `your-code` directory of this exercise. You will read the content of each document into an array of strings named `corpus`.\n", + "\n", + "*What is a corpus (plural: corpora)? Read the reference in the README file.*\n", + "\n", + "Your challenge is to use Python to generate the BoW of these documents. Your BoW should look like below:\n", + "\n", + "```python\n", + "bag_of_words = ['a', 'am', 'at', 'cool', 'i', 'ironhack', 'is', 'love', 'student']\n", + "\n", + "term_freq = [\n", + " [0, 0, 0, 1, 0, 1, 1, 0, 0],\n", + " [0, 0, 0, 0, 1, 1, 0, 1, 0],\n", + " [1, 1, 1, 0, 1, 1, 0, 0, 1],\n", + "]\n", + "```\n", + "\n", + "Now let's define the `docs` array that contains the paths of `doc1.txt`, `doc2.txt`, and `doc3.txt`." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "docs = ['doc1.txt', 'doc2.txt', 'doc3.txt'] \n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Define an empty array `corpus` that will contain the content strings of the docs. Loop `docs` and read the content of each doc into the `corpus` array." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "corpus = []\n", + "\n", + "# Write your code here\n", + "for i in docs:\n", + " with open(i) as file:\n", + " corpus.append(file.read())\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Print `corpus`." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['Ironhack is cool.', 'I love Ironhack.', 'I am a student at Ironhack.']\n" + ] + } + ], + "source": [ + "print(corpus)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You expected to see:\n", + "\n", + "```['ironhack is cool', 'i love ironhack', 'i am a student at ironhack']```\n", + "\n", + "But you actually saw:\n", + "\n", + "```['Ironhack is cool.', 'I love Ironhack.', 'I am a student at Ironhack.']```\n", + "\n", + "This is because you haven't done two important steps:\n", + "\n", + "1. Remove punctuation from the strings\n", + "\n", + "1. Convert strings to lowercase\n", + "\n", + "Write your code below to process `corpus` (convert to lower case and remove special characters)." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ironhack is cool\n", + "i love ironhack\n", + "i am a student at ironhack\n", + "['ironhack is cool', 'i love ironhack', 'i am a student at ironhack']\n" + ] + } + ], + "source": [ + "# Write your code here\n", + "new_corpus = []\n", + "for i in corpus:\n", + " i = i.replace('.', '').lower()\n", + " print(i)\n", + " new_corpus.append(i)\n", + "corpus = new_corpus\n", + "print(corpus)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now define `bag_of_words` as an empty array. It will be used to store the unique terms in `corpus`." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "bag_of_words = []" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Loop through `corpus`. In each loop, do the following:\n", + "\n", + "1. Break the string into an array of terms. \n", + "1. Create a sub-loop to iterate the terms array. \n", + " * In each sub-loop, you'll check if the current term is already contained in `bag_of_words`. If not in `bag_of_words`, append it to the array." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['ironhack', 'is', 'cool']\n", + "['i', 'love', 'ironhack']\n", + "['i', 'am', 'a', 'student', 'at', 'ironhack']\n", + "['ironhack', 'is', 'cool', 'i', 'love', 'am', 'a', 'student', 'at']\n" + ] + } + ], + "source": [ + "# Write your code here\n", + "for i in corpus:\n", + " i = i.split(\" \")\n", + " print(i)\n", + " for j in i:\n", + " if j not in bag_of_words:\n", + " bag_of_words.append(j)\n", + "print(bag_of_words)\n", + " " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Print `bag_of_words`. You should see: \n", + "\n", + "```['ironhack', 'is', 'cool', 'i', 'love', 'am', 'a', 'student', 'at']```\n", + "\n", + "If not, fix your code in the previous cell." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['ironhack', 'is', 'cool', 'i', 'love', 'am', 'a', 'student', 'at']\n", + "['ironhack is cool', 'i love ironhack', 'i am a student at ironhack']\n" + ] + } + ], + "source": [ + "print(bag_of_words)\n", + "print(corpus)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now we define an empty array called `term_freq`. Loop `corpus` for a second time. In each loop, create a sub-loop to iterate the terms in `bag_of_words`. Count how many times each term appears in each doc of `corpus`. Append the term-frequency array to `term_freq`." + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 0, 0, 1, 1, 0, 0, 0, 0], [1, 0, 0, 1, 0, 1, 1, 1, 1]]\n" + ] + } + ], + "source": [ + "term_freq = []\n", + "\n", + "# Write your code here\n", + "\n", + "for line in corpus:\n", + " freq=[]\n", + " for word in bag_of_words:\n", + " if word in line.split():\n", + " freq.append(1)\n", + " else:\n", + " freq.append(0)\n", + " term_freq.append(freq)\n", + "print(term_freq)\n", + " " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Print `term_freq`. You should see:\n", + "\n", + "```[[1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 0, 0, 1, 1, 0, 0, 0, 0], [1, 0, 0, 1, 0, 1, 1, 1, 1]]```" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "print(term_freq)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**If your output is correct, congratulations! You've solved the challenge!**\n", + "\n", + "If not, go back and check for errors in your code." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Bonus Question\n", + "\n", + "Optimize your solution for the above question by removing stop words from the BoW. For your convenience, a list of stop words is defined for you in the next cell. With the stop words removed, your output should look like:\n", + "\n", + "```\n", + "bag_of_words = [am', 'at', 'cool', ironhack', 'is', 'love', 'student']\n", + "\n", + "term_freq = [\n", + "\t[0, 0, 1, 1, 1, 0, 0],\n", + " \t[0, 0, 0, 1, 0, 1, 0],\n", + " \t[1, 1, 0, 1, 0, 0, 1]\n", + "]\n", + "```\n", + "\n", + "**Requirements:**\n", + "\n", + "1. Combine all your previous codes to the cell below.\n", + "1. Improve your solution by ignoring stop words in `bag_of_words`.\n", + "\n", + "After you're done, your `bag_of_words` should be:\n", + "\n", + "```['ironhack', 'is', 'cool', 'love', 'am', 'student', 'at']```\n", + "\n", + "And your `term_freq` should be:\n", + "\n", + "```[[1, 1, 1, 0, 0, 0, 0], [1, 0, 0, 1, 0, 0, 0], [1, 0, 0, 0, 1, 1, 1]]```" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "stop_words = ['all', 'six', 'less', 'being', 'indeed', 'over', 'move', 'anyway', 'fifty', 'four', 'not', 'own', 'through', 'yourselves', 'go', 'where', 'mill', 'only', 'find', 'before', 'one', 'whose', 'system', 'how', 'somewhere', 'with', 'thick', 'show', 'had', 'enough', 'should', 'to', 'must', 'whom', 'seeming', 'under', 'ours', 'has', 'might', 'thereafter', 'latterly', 'do', 'them', 'his', 'around', 'than', 'get', 'very', 'de', 'none', 'cannot', 'every', 'whether', 'they', 'front', 'during', 'thus', 'now', 'him', 'nor', 'name', 'several', 'hereafter', 'always', 'who', 'cry', 'whither', 'this', 'someone', 'either', 'each', 'become', 'thereupon', 'sometime', 'side', 'two', 'therein', 'twelve', 'because', 'often', 'ten', 'our', 'eg', 'some', 'back', 'up', 'namely', 'towards', 'are', 'further', 'beyond', 'ourselves', 'yet', 'out', 'even', 'will', 'what', 'still', 'for', 'bottom', 'mine', 'since', 'please', 'forty', 'per', 'its', 'everything', 'behind', 'un', 'above', 'between', 'it', 'neither', 'seemed', 'ever', 'across', 'she', 'somehow', 'be', 'we', 'full', 'never', 'sixty', 'however', 'here', 'otherwise', 'were', 'whereupon', 'nowhere', 'although', 'found', 'alone', 're', 'along', 'fifteen', 'by', 'both', 'about', 'last', 'would', 'anything', 'via', 'many', 'could', 'thence', 'put', 'against', 'keep', 'etc', 'amount', 'became', 'ltd', 'hence', 'onto', 'or', 'con', 'among', 'already', 'co', 'afterwards', 'formerly', 'within', 'seems', 'into', 'others', 'while', 'whatever', 'except', 'down', 'hers', 'everyone', 'done', 'least', 'another', 'whoever', 'moreover', 'couldnt', 'throughout', 'anyhow', 'yourself', 'three', 'from', 'her', 'few', 'together', 'top', 'there', 'due', 'been', 'next', 'anyone', 'eleven', 'much', 'call', 'therefore', 'interest', 'then', 'thru', 'themselves', 'hundred', 'was', 'sincere', 'empty', 'more', 'himself', 'elsewhere', 'mostly', 'on', 'fire', 'am', 'becoming', 'hereby', 'amongst', 'else', 'part', 'everywhere', 'too', 'herself', 'former', 'those', 'he', 'me', 'myself', 'made', 'twenty', 'these', 'bill', 'cant', 'us', 'until', 'besides', 'nevertheless', 'below', 'anywhere', 'nine', 'can', 'of', 'your', 'toward', 'my', 'something', 'and', 'whereafter', 'whenever', 'give', 'almost', 'wherever', 'is', 'describe', 'beforehand', 'herein', 'an', 'as', 'itself', 'at', 'have', 'in', 'seem', 'whence', 'ie', 'any', 'fill', 'again', 'hasnt', 'inc', 'thereby', 'thin', 'no', 'perhaps', 'latter', 'meanwhile', 'when', 'detail', 'same', 'wherein', 'beside', 'also', 'that', 'other', 'take', 'which', 'becomes', 'you', 'if', 'nobody', 'see', 'though', 'may', 'after', 'upon', 'most', 'hereupon', 'eight', 'but', 'serious', 'nothing', 'such', 'why', 'a', 'off', 'whereby', 'third', 'i', 'whole', 'noone', 'sometimes', 'well', 'amoungst', 'yours', 'their', 'rather', 'without', 'so', 'five', 'the', 'first', 'whereas', 'once']\n", + "\n", + "# Write your code below\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Additional Challenge for the Nerds\n", + "\n", + "We will learn Scikit-Learn in Module 3 which has built in the BoW feature. Try to use Scikit-Learn to generate the BoW for this challenge and check whether the output is the same as yours. You will need to do some googling to find out how to use Scikit-Learn to generate BoW.\n", + "\n", + "**Notes:**\n", + "\n", + "* To install Scikit-Learn, use `pip install sklearn`. \n", + "\n", + "* Scikit-Learn removes stop words by default. You don't need to manually remove stop words.\n", + "\n", + "* Scikit-Learn's output has slightly different format from the output example demonstrated above. It's ok, you don't need to convert the Scikit-Learn output.\n", + "\n", + "The Scikit-Learn output will look like below:\n", + "\n", + "```python\n", + "# BoW:\n", + "{u'love': 5, u'ironhack': 3, u'student': 6, u'is': 4, u'cool': 2, u'am': 0, u'at': 1}\n", + "\n", + "# term_freq:\n", + "[[0 0 1 1 1 0 0]\n", + " [0 0 0 1 0 1 0]\n", + " [1 1 0 1 0 0 1]]\n", + " ```" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module-1_labs/lab-functional-programming/your-code/doc1.txt b/module-1_labs/lab-functional-programming/your-code/doc1.txt new file mode 100644 index 0000000..e66288d --- /dev/null +++ b/module-1_labs/lab-functional-programming/your-code/doc1.txt @@ -0,0 +1 @@ +Ironhack is cool. \ No newline at end of file diff --git a/module-1_labs/lab-functional-programming/your-code/doc2.txt b/module-1_labs/lab-functional-programming/your-code/doc2.txt new file mode 100644 index 0000000..b21feac --- /dev/null +++ b/module-1_labs/lab-functional-programming/your-code/doc2.txt @@ -0,0 +1 @@ +I love Ironhack. \ No newline at end of file diff --git a/module-1_labs/lab-functional-programming/your-code/doc3.txt b/module-1_labs/lab-functional-programming/your-code/doc3.txt new file mode 100644 index 0000000..653c5b7 --- /dev/null +++ b/module-1_labs/lab-functional-programming/your-code/doc3.txt @@ -0,0 +1 @@ +I am a student at Ironhack. \ No newline at end of file diff --git a/module-1_labs/lab-functional-programming/your-code/lab-functional-programming.txt b/module-1_labs/lab-functional-programming/your-code/lab-functional-programming.txt new file mode 100644 index 0000000..653c5b7 --- /dev/null +++ b/module-1_labs/lab-functional-programming/your-code/lab-functional-programming.txt @@ -0,0 +1 @@ +I am a student at Ironhack. \ No newline at end of file diff --git a/module-1_labs/lab-functional-programming/your-code/main.ipynb b/module-1_labs/lab-functional-programming/your-code/main.ipynb index 8017d6e..aad73b1 100644 --- a/module-1_labs/lab-functional-programming/your-code/main.ipynb +++ b/module-1_labs/lab-functional-programming/your-code/main.ipynb @@ -98,10 +98,10 @@ "evalue": "", "output_type": "error", "traceback": [ - "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[1;31mStopIteration\u001b[0m Traceback (most recent call last)", - "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[0;32m 1\u001b[0m \u001b[1;31m# After we have iterated through all elements, we will get a StopIteration Error\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 2\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 3\u001b[1;33m \u001b[0mprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mnext\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0miterator\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m", - "\u001b[1;31mStopIteration\u001b[0m: " + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mStopIteration\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[0;31m# After we have iterated through all elements, we will get a StopIteration Error\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[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 3\u001b[0;31m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mnext\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0miterator\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[0m", + "\u001b[0;31mStopIteration\u001b[0m: " ] } ], @@ -146,11 +146,38 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 9, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1\n", + "2\n" + ] + }, + { + "data": { + "text/plain": [ + "2" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ + "iterator = iter([1,2,3])\n", "def divisible2(iterator):\n", + " for i in iterator:\n", + " print(i)\n", + " if i % 2 == 0:\n", + " return i\n", + " break\n", + " return 0\n", + "divisible2(iterator)\n", " # This function takes an iterable and returns the first element that is divisible by 2 and zero otherwise\n", " # Input: Iterable\n", " # Output: Integer\n", @@ -193,7 +220,7 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 11, "metadata": {}, "outputs": [ { @@ -224,11 +251,32 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 33, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n", + "2\n", + "4\n", + "6\n", + "8\n" + ] + } + ], "source": [ "def even_iterator(n):\n", + " number = 0\n", + " while number < n:\n", + " if number % 2 == 0:\n", + " yield number\n", + " number += 1 \n", + " \n", + "my_even_iterator = even_iterator(10)\n", + "for i in my_even_iterator:\n", + " print(i)\n", " # This function produces an iterator containing all even numbers between 0 and n\n", " # Input: integer\n", " # Output: iterator\n", @@ -253,7 +301,7 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 70, "metadata": {}, "outputs": [], "source": [ @@ -270,12 +318,99 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 71, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
sepal_lengthsepal_widthpetal_lengthpetal_widthiris_type
05.13.51.40.2Iris-setosa
14.93.01.40.2Iris-setosa
24.73.21.30.2Iris-setosa
34.63.11.50.2Iris-setosa
45.03.61.40.2Iris-setosa
\n", + "
" + ], + "text/plain": [ + " sepal_length sepal_width petal_length petal_width iris_type\n", + "0 5.1 3.5 1.4 0.2 Iris-setosa\n", + "1 4.9 3.0 1.4 0.2 Iris-setosa\n", + "2 4.7 3.2 1.3 0.2 Iris-setosa\n", + "3 4.6 3.1 1.5 0.2 Iris-setosa\n", + "4 5.0 3.6 1.4 0.2 Iris-setosa" + ] + }, + "execution_count": 71, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "iris.head()\n" ] }, { @@ -287,12 +422,27 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 72, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "sepal_length 5.843333\n", + "sepal_width 3.054000\n", + "petal_length 3.758667\n", + "petal_width 1.198667\n", + "dtype: float64" + ] + }, + "execution_count": 72, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "iris.mean()\n" ] }, { @@ -304,12 +454,27 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 73, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "sepal_length 0.825301\n", + "sepal_width 0.432147\n", + "petal_length 1.758529\n", + "petal_width 0.760613\n", + "dtype: float64" + ] + }, + "execution_count": 73, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "np.std(iris)\n" ] }, { @@ -321,12 +486,34 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 74, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " sepal_length sepal_width petal_length petal_width\n", + "0 5.1 3.5 1.4 0.2\n", + "1 4.9 3.0 1.4 0.2\n", + "2 4.7 3.2 1.3 0.2\n", + "3 4.6 3.1 1.5 0.2\n", + "4 5.0 3.6 1.4 0.2\n", + ".. ... ... ... ...\n", + "145 6.7 3.0 5.2 2.3\n", + "146 6.3 2.5 5.0 1.9\n", + "147 6.5 3.0 5.2 2.0\n", + "148 6.2 3.4 5.4 2.3\n", + "149 5.9 3.0 5.1 1.8\n", + "\n", + "[150 rows x 4 columns]\n" + ] + } + ], "source": [ "# Your code here:\n", - "\n" + "iris_numeric = iris.drop(\"iris_type\",'columns')\n", + "print(iris_numric)\n" ] }, { @@ -338,11 +525,22 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 78, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.393701\n" + ] + } + ], "source": [ "def cm_to_in(x):\n", + " return x*0.393701\n", + "print(cm_to_in(1))\n", + "\n", " # This function takes in a numeric value in centimeters and converts it to inches\n", " # Input: numeric value\n", " # Output: float\n", @@ -363,12 +561,34 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 79, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " sepal_length sepal_width petal_length petal_width\n", + "0 2.007875 1.377954 0.551181 0.078740\n", + "1 1.929135 1.181103 0.551181 0.078740\n", + "2 1.850395 1.259843 0.511811 0.078740\n", + "3 1.811025 1.220473 0.590552 0.078740\n", + "4 1.968505 1.417324 0.551181 0.078740\n", + ".. ... ... ... ...\n", + "145 2.637797 1.181103 2.047245 0.905512\n", + "146 2.480316 0.984253 1.968505 0.748032\n", + "147 2.559057 1.181103 2.047245 0.787402\n", + "148 2.440946 1.338583 2.125985 0.905512\n", + "149 2.322836 1.181103 2.007875 0.708662\n", + "\n", + "[150 rows x 4 columns]\n" + ] + } + ], "source": [ "# Your code here:\n", - "\n" + "iris_inch = cm_to_in(iris_numeric)\n", + "print(iris_inch)" ] }, { @@ -380,14 +600,37 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 82, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " sepal_length sepal_width petal_length petal_width\n", + "0 7.1 5.5 3.4 2.2\n", + "1 6.9 5.0 3.4 2.2\n", + "2 6.7 5.2 3.3 2.2\n", + "3 6.6 5.1 3.5 2.2\n", + "4 7.0 5.6 3.4 2.2\n", + ".. ... ... ... ...\n", + "145 8.7 5.0 7.2 4.3\n", + "146 8.3 4.5 7.0 3.9\n", + "147 8.5 5.0 7.2 4.0\n", + "148 8.2 5.4 7.4 4.3\n", + "149 7.9 5.0 7.1 3.8\n", + "\n", + "[150 rows x 4 columns]\n" + ] + } + ], "source": [ "# Define constant below:\n", "\n", - "\n", - "def add_constant(x):\n", + "def add_constant(x, error = 2):\n", + " return x + error\n", + "iris_constant = add_constant(iris_numeric)\n", + "print(iris_constant)\n", " # This function adds a global constant to our input.\n", " # Input: numeric value\n", " # Output: numeric value\n", @@ -456,7 +699,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.7.3" } }, "nbformat": 4, diff --git a/module-1_labs/lab-functional-programming/your-code/shared-language-patterns.pdf b/module-1_labs/lab-functional-programming/your-code/shared-language-patterns.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f971bd4daa504787fdc46c95d4ae32c752fd7441 GIT binary patch literal 537315 zcmd3Oc|26_`*$VETC%lBW8cln%-HvR-**OsVGL%*t`wC>wrtTxA(iY|qFodsZMIS( zLJLv$o^xiVQlHQF`~05Q>-poS*L2Rkoa^4+*K)3N-M6@Xs!%gL73YJa;vfhl8pySVn&X1-6bJ%^q@^rE@FXp7Dj}HUfN6lrCaI6u5uun!(;N5TIrgo2p>MWhm~img8xkMjXrfYZ}a zA$X_`&;w$ypSn65p5z1ejNThYA5HNjKdL_jj>2G|Hep^=@CipVQ>ZO?^K$^|>J%zK zIf#=@RU~AOs&Z5eG#xm|2Jp-k)F?O~%_qo7;Lv2YO?D zL^RadR3numgF=FU>3~EA5lIx~NHq~0&=6EwBLMXl4n~2`1wq zC0g1sXVbF3A1Pq3S!jzyegghLnjDRU46(Nj25p_1;PL=HAt8A^S z&u9=xsfqYgsUgZxXhcMWLIhGFnCu6IW3d1k1Qdag2WrSuqDWL+q&$ftN+xsA?i2U_-zD=pzeR*AR)KKpUlkcW@9CD1gEhkkDV0fd^HAOl3=Q zuuqsbo~*9rO%C?LQ6ahn3Y9=4;>i%S0t_PMKme94f+DR7lK5Sl(Y7iS?9jRn(nb%` z{wx3g)^T8ge$CJy9goC?03C<@*>Rw@vJLnSkC?a4`hjnxrPya<2;1q&y)X&ag=I zkEpD#`~Q1we7t`xO-LA-NQ17AHxy6A2jNLn3a~uzKbObHTiG|59E78)<3d7+1aBM& zT@XL2(BDPtMhj$82~;BfCwS8AA zk!YlR=*T1z{(PFA`zKLar~YXF|0k-=%zjPYzv4P5=+C(WU}n&b2-*dX1a+%5sH?!M8(l}y zG~l`xXsQov0U$|x&h7Wez%-+AeF(6QAQ`9;ps8&^@Jj{Z0BI9Rl~xD-emz91#dydZ zc!<^|s3o9d=_=dW1?VgqqXgf9 zi3-Xt2og!3Q5|w{h<0$K3)m$^tfB$}sEI+r6);#gzz*>t;QmvgC5{Xb`eg%I<0-*m zWN$nLSXP~2VldeTFj(+l!UhIGU})V@SBL6FQVndVfbIfH48RgBZ7zU&I0Q*E;;eyt z1aMEA8{i3jpvNFo;2t0yhJgk5fCCBoY6B$*AVD|ofCLgq&@loeP(Xri#{mfdEEqbQ z00|`^L7NZZeUgjo=hdshH9n*19*?# z5i=cN3;=?FwFIFIwGIXc3V}gw{lkL10CuJim1g3B?6VF{G`RjoCxb;SfASoZhITlB z3lN=fH2g1gDlsPOC-=}<^-pxd8R&yE&D6%dVZ2KwL(^uZbEgVQ?) zl+)1+r?VOaPVWRTceIsog97MOVgOo+0dPhY26wJUBZI5|SD}%Hn|~ni7fe6|{(=^W zz+cz|5%>#^sQ-$le}f4FqTrjr-!K82_ze^K%mYG- zfL9zEKhR(HfPA`0h0~=lkY?}!U3vj)!JtQ%AwZfzj}CDlO{a&XYY94^FcgLoy$As; zAkgF={6UA^|0@3YDbxRy(6k|dG8Nfd+@ELsOK+SG$Q^$TLa0s;sFnOzC>55&^CzMccXjCJJb4gW<>36P~A zy?;S0ZJpQC12fjqqfeD3!#HDbJjei`+44_@Vyw|m2B4XAf8rlYhbNYfb}X&G5P(BL z%mcgyUXXOvL5C{Cuu!5Et%oRGuR#AdL6olI=mrH{&HY21Gk`&d>n~7(aHS3OCtQC4 z8GtMLS2e};*aZy=`sx6vMg!I8!VgGbfCSyz0utE&st^8YUBD5vnTCSa1)O1|0QWG! zUq$abkN`>$^ajjyfUd)S-XkG!pbX?XGaaDgaQZ0Bbbx-te?APzclgg1fL_CYJ_~dj z@$*?Ma8G;o-|ZSY%lxZd15V;P^wJwzhh9LvfV>500|XlNw>F@4Wj!x|8SALgSI82; zJ#CDCC<8d`Z&pRq%&*_%Xixpg3v>$&LKjXDB;6vS!Jhsw@LoY{>JQk{NB_SH_Vl%- z+0k_C?Z3f(9Z>&a#r(qaf45@(iCTtb1cH`fWrN7X&=<-~2MNK_u=VeFVldmk2y5Ch ztU~~u-Z}*Qmev0P07jEPg&~5*$iJ!4*BB7}^f~)ew!*Q0!;{Y6zwtzS>Q6i|OlF3~ z%rKZ4_A9QMvrcE5cNpwqw zKE6N92*!)W|0=N3*N_HQ`qcb4u&#S&17$Q_o&ZwyFO&NZ8NJTf_^&ehw;A&PDx>Ld z*EA7LR~!G1YlcGjH(Y~7>yStnyni7P0mJ+UHBVpo-%z9@VI4hs%j@X2a0hN8u*Cvhbsn6lSb>wff?(_(FG`AA~B@+Zyx@qK|`PE z-^9RY7^HrBVL&PnIw#Qig4RBSZqd*H1EF&g4S0aIq&+~_lYpM1r|8ea=>+Jy643SZ zGCB=7od{iD0v|?bWps@Rp*sWs-v~XEPKBij z5ytBX<86fTGQxNlVZ4ek-b5HLB8>MC#%l=UErjtB!gvQ^IH~{*49*$DO~vpNFx&(T zF9E|z!0-_u>B5Vy8EMnIUL(>)+W#s;kS<>Tn_yY@67rW8{BO=6fZ{*AJaicUn>9oO z?>gYqX6_FkB>4KyFy;Y2%HNDcTc+RGN6^III(l?%{g;mv4x{@>|Aih6d+X_e8SCiL z+WVt_fY<=Nbl}SdQVI5V|7Z-go*tO7jvlSOKj;AlGZI)EMSx+@h`$8~U0?pDhg|Qi z&?gY7crsL<2!0F0dxIZn8Q)aVN?7dgFQQgB z<8^Lw1@adg>zw2Uk?JNy^swm3ui^X3GkKdxgEG}uC-_%yF1Fb;JD#dDdPlBWJYp)S zV8%3W^l;O)z3Sev-?*K0i!KN17@v&KY1*rv9CqDNs6b<|NqHn9b$E?RNwQy5E@t8@ zm&*yG1U!DZEj=HaGx*-+w2$A;b6L!tS0E}-&*Ax=$|D80(%tq`4jtyGHezu%^AMA9 zZj5)pneM))>HLWNEzoBu{~1+HI%JMR`I{*z;^OUxTFw_MC|{Y#9117=s@0Be?8vfm?yO%%p+KwB&s#5;k7GN=M?7vH0(}$H^@z%9A7suUO>`#>t z9ow9;ns{Bd7$4rrVwsr*%TRQ=%F)JU@UraDH8gWh zOE2V7YMPP{OWEaZa+hjXYIRiFw?*r}Iy3bSQ@i(a&PnFn{v5Xoi;w1*PoDQfPE71% z-Bn-zt+`EkSa~*WN3fua;0SNvRDE)#{$;CcPwPw!xIFlnJNj@fQtYuO=A80*cZFbw zQeWM~q8%ayUrWE^*rPEJlyFY(VUm*T<$U*D@g<9Tm;3gsYiE+KWIYmgQuP`1AS6CY z3|Idif-YC=>ezy{$XQk5(lL=RA)TwrczOz&J2}LaXoM|;XguL=P&1jCPs(B2I<&8> z_aQc6P2F-=W7d_GbLAqtqn?hAm}Twh2VNK-#>>j52L>M6n7DNl#=rDdkAsY-uhZgT zKDGOWTLZF9Zc0R5BrI=C#FRXjuKu!p(44h0cW=`Rw@^;I=bFqnkj>dWXE-W3x{mUM zXiTs@eB8bv;i8QzsWQu0&A>inWgDNeNbno-^$k&jG7r!Yv$u_K8JV29txh{Ff(W(N&hvVHrs2p6;-{Wj<0X)w9D=qV+y|Z9~7hyjktyXB&S3`vb@~ zJ>S&7$H`6Or0$6m*rkp353zqUKFpr(TdXe|i~q8W zyp@%6)cEW7V`>M!N+<6Mc{{JV68j<`p(f~omVs&zH@n~R&MLN$Jc;aW#QOLR%Eq@v zpMSI|z5&_NDaU4vpLe^xkq`u+&%U7 zTx5oMu^2ACV7~3&6B)&}!2|EQ*)(>O+1E|>ql@HcO<$rGTI}?Al%JT$Jzafef>HZs zISql?4x~bksd6wmUDqL*2wy0Z*{N{THT^otem_r^u}0~lrkh~Q*+UM>2MK)?9!-iWWAOX^x!yK3P)@>~I@|WIk z%Y5+5c?W*sXXL1Azn=Tq&sx!n#G(JLUGil{z|Aa9{G)1rxG~M3+q`9+90G zoZ#Ql`{3m{N@udY*$96@^v33pq!}^(;hLR~8?(C0-^Cj`G>%80d^5-P$e@qf8q3Kx zYq=y@vjuIe7Fko%?No#H7$TOKCNAhbGG6wwPBO>T5u&;ab8p)D*_0ellNO&%IYaR7 zy0z0p)y$g5Kk7R649fX%^c7WnuS!%Vd#7qxfb;UsnpxXuPv33wMXF}2L;0l~MZ;GW zC7)~59eE_IThM!`S9%#|Ea9pgE$UvR%VH^b*GpvLEN?U=Q$vRQbgOu+b6rJ`DQ{@v zg$Gq;q-yEfnGU# zwXjK4V(k`^U)YZHW#Ojfgaf9Tn|K$HZRIfMhidsbo?jjxF-WqWn@Lx}@jk~{Z#Bbo z^iQ&$5;8Q2oy-t7&|3|t&=oivuOy2TQ>zM74oUyA%lwEmQ{t|Z`e9K4lXogoMs@~` zE{|cyIBN=#sKpeHmhrrX@|c*@wWs0g@j;2>2Q^mOZkBVS?@iw0VG@pPXqsB_HJvEP z3_Ey|^B8vg&hs=aq{0(^7MK33C!YUsyJ8=-g>-Ae2g&UEY02TE?L z(yj9}m>z!g+WUsXukrA1w>R~ehrHJU$4=blyOkax_58@1&T^NTy)tF>3a)L>{9CW2&m^mjK=7dTVM?PT;{ai_;D^ zZiFlQXQCTMYNWk%m+yX7Rd}G9*Cl@*k!Yx)mAZO%Bh~yv^(D_-L}Ut404|CSGJm(xsyBdxD;DF!oX7=qP#l(hF-*GLN->mK>=9Q^|^ zd`^_SE4QKR-OC0-jU`t_Oi00zmGeUUB05zv?>m>Q^p5ViHuIX8f3m1=_SwiO_8lEg zHIs=~O9TpfPnm6NHj^+44@eIfIu$i>kV1W{bR{wAsQXFh!I0wfX5q{R;i<38Ay=5y z_{#!38i!g^GiCb)B4VADHA%f4((a1$vknzrawDF|0vrcCn|YRV1>i@;m5vQ&XmIz z&sU4y96In(T%uMc`*~R3z1)D>?JuIa1?D+J_ll=voXhKHu30VNxiOKoxI?oJq|+ZMjAARWEzV&YIyx4GsE^~q-2wjD9&3T@Tv+Ecq~ zB2&AJl+r#Pn;Xw6^p-B{z}_}DKV4abrBG)0y6@oEWF3kF%Xc>x6=pN%jt(f!hxD}g zw0~LZ$N7(J{gMg|E*sHD`W}G`slP_lTEZncvM1@l6y?1smwT^PFuhqZCbjo6@5f zb?^D;pTOH4NVt)^o#=BKd);ky!7$*bvt6rMsay$9I^CJfa{`X?<+-@n8|^l#v{&oDZD@WtobEl^M=lSSHgBgZMu6H z!J+Ew5%gXlV(G~JIOS%+!Trx|iM%I~A4PzlL-H%I;de&v zVQ?=Kb;VD750w+DnbNbFZhaNP(wsF^{yy&mpVc^TOhrJ`$NmJ~H;rxYYc|+iJ(-8Xg-323(Y@buG{{Mq+f#)GX< z@jMr==f2s`W!i-Ef2pB(BYf2fR+MAxyqj~}pU-asXI_Ic)_AMg!5>Rf1xJ
    Wd8ua;6;{tfh&P!72Q64 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
    N+{|@;&Fdy!}1A+LlLrn6R**UTq@{$%i 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 z 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

    |zai94xsqKFnAi$mYy8b) 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 Date: Fri, 18 Oct 2019 14:47:58 +0200 Subject: [PATCH 4/6] y first project: keys --- .../your-code/Q2.ipynb | 171 +- .../your-code/Q3.ipynb | 32 +- .../your-code/Untitled.ipynb | 73 + .../lab-lambda-functions/your-code/main.ipynb | 50 +- .../your-code/main.ipynb | 1630 ++++++++++++++++- .../your-code/main.ipynb | 2 +- .../your-code/challenge-2.ipynb | 10 +- 7 files changed, 1907 insertions(+), 61 deletions(-) create mode 100644 module-1_labs/lab-functional-programming/your-code/Untitled.ipynb diff --git a/module-1_labs/lab-functional-programming/your-code/Q2.ipynb b/module-1_labs/lab-functional-programming/your-code/Q2.ipynb index f50f442..633ca76 100644 --- a/module-1_labs/lab-functional-programming/your-code/Q2.ipynb +++ b/module-1_labs/lab-functional-programming/your-code/Q2.ipynb @@ -15,40 +15,143 @@ }, { "cell_type": "code", - "execution_count": 60, + "execution_count": 10, "metadata": {}, "outputs": [], "source": [ + "import string\n", + "import re\n", + "test_string = ['**6X&y/2LgI§Tmuz\"Fc&Q,Ye@LH2\\1i', ':iuU$DXkg*%;&q$JqRWv,h81MVg(bNK', 'fB%%2T$R;F#X,2PnV3i^7KX{hypr_yK'\n", + " '/:ZV606bf5A*%=@NQR*o6=F,^U5*7r2', 'IOM)*S7){UB\"gY(HK&N;Q,yXEUecH§M']\n", + "test_string2 = ['tool!', 'your%', 'no\"', 'zuu?' ]\n", "# Define your string handling functions below\n", - "# Minimal 3 functions\n" + "# Minimal 3 functions\n", + "def lowercases_list(corpus):\n", + " new_corpus = [i.lower() for i in corpus]\n", + " return new_corpus\n", + "\n", + "def remove_punctuation_and_html(corpus):\n", + " new_corpus = []\n", + " for string in corpus: \n", + " string = str(re.sub(r'\\W+', '', string))\n", + " string = re.sub('<[^<]+?>', '', string)\n", + " new_corpus.append(string)\n", + " return new_corpus\n", + "\n", + "\n", + "def remove_unicode(corpus):\n", + " new_corpus = []\n", + " for string in corpus:\n", + " string = str(re.sub(r'[^\\x00-\\x7f]',r'', string))\n", + " print(string)\n", + " new_corpus.append(string)\n", + " return new_corpus\n", + " \n", + " # def remove__punctuation(corpus):" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "Next, paste your previously written `get_bow_from_docs` function below. Call your functions above at the appropriate place." + "def lowecases_n_remove_punctuation(corpus):\n", + " new_corpus = []\n", + " for i in corpus:\n", + " i = i.replace('.', '').lower()\n", + " new_corpus.append(i)\n", + " return new_corpus\n", + " \n", + " \n", + "def make_a_unique_word_list(corpus, stop_words= []):\n", + " bag_of_words = []\n", + " for i in corpus:\n", + " i = i.split(\" \")\n", + " for j in i:\n", + " if j not in bag_of_words and j not in stop_words:\n", + " bag_of_words.append(j)\n", + " return bag_of_words\n", + "\n", + "def find_freq_word_in_list(corpus, bag_of_words):\n", + " term_freq = []\n", + " for string in corpus:\n", + " new_string=string.split()\n", + " print(new_string)\n", + " temp=[]\n", + " for word in bag_of_words:\n", + " temp.append(new_string.count(word))\n", + " term_freq.append(temp)\n", + " print(term_freq)\n", + " return term_freq\n", + "\n", + "\n", + "def get_bow_from_docs(docs, stop_words= []):\n", + " corpus = []\n", + " bag_of_words = []\n", + " term_freq = []\n", + " for string in docs: \n", + " with open(string) as file:\n", + " corpus.append(file.read())\n", + " corpus = lowecases_n_remove_punctuation(corpus)\n", + " print(corpus)\n", + " bag_of_words = make_a_unique_word_list(corpus, stop_words)\n", + " term_freq = find_freq_word_in_list(corpus, bag_of_words)\n", + " return {\n", + " \"bag_of_words\": bag_of_words,\n", + " \"term_freq\": term_freq }" ] }, { "cell_type": "code", - "execution_count": 61, + "execution_count": 12, "metadata": {}, "outputs": [], "source": [ - "def get_bow_from_docs(docs, stop_words=[]):\n", - " # In the function, first define the variables you will use such as `corpus`, `bag_of_words`, and `term_freq`.\n", + "def lowercases_n_remove_punctuation(corpus):\n", + " new_corpus = []\n", + " for i in corpus:\n", + " i = i.replace('.', '').lower()\n", + " new_corpus.append(i)\n", + " return new_corpus\n", + " \n", + " \n", + "def make_a_unique_word_list(corpus, stop_words= []):\n", + " bag_of_words = []\n", + " for i in corpus:\n", + " i = i.split(\" \")\n", + " for j in i:\n", + " if j not in bag_of_words and j not in stop_words:\n", + " bag_of_words.append(j)\n", + " return bag_of_words\n", + "\n", + "def find_freq_word_in_list(corpus, bag_of_words):\n", + " term_freq = []\n", + " for string in corpus:\n", + " new_string=string.split()\n", + " print(new_string)\n", + " temp=[]\n", + " for word in bag_of_words:\n", + " temp.append(new_string.count(word))\n", + " term_freq.append(temp)\n", + " print(term_freq)\n", + " return term_freq\n", + "\n", + "\n", + "def get_bow_from_docs(docs, stop_words= []):\n", " corpus = []\n", " bag_of_words = []\n", " term_freq = []\n", - " \n", - " # write your codes here\n", - " \n", + " for string in docs: \n", + " with open(string) as file:\n", + " corpus.append(file.read())\n", + " corpus = lowercases_list(corpus)\n", + " corpus = remove_punctuation_and_html(corpus)\n", + " corpus = remove_unicode(corpus)\n", + " print(corpus)\n", + " bag_of_words = make_a_unique_word_list(corpus, stop_words)\n", + " term_freq = find_freq_word_in_list(corpus, bag_of_words)\n", " return {\n", " \"bag_of_words\": bag_of_words,\n", - " \"term_freq\": term_freq\n", - " }\n", - " " + " \"term_freq\": term_freq }" ] }, { @@ -60,9 +163,25 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 13, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "doctypehtmlifie8htmlclassieie8ltie9endififie9htmlclassieie9endififgteie9iehtmlendifheadmetanamecsrftokencontentywezkhdwaz2mhvtxtvdmpx8fjrbshm6rkq6fxpoe1b7be08ryu7duj3zzkzbmen38lnubysnguaehcqvwbu0glinkhrefplusgooglecom110399277954088556485relpublisherlinkhrefhttpswwwcoursereportcomschoolsironhackrelcanonicaltitleironhackreviewscoursereporttitlelinkrelstylesheetmediaallhrefhttpscoursereportproductionherokuappcomglobalsslfastlynetassetsbs_application2cfe4f1bb97ebbc1bd4fb734d851ab26csslinkrelstylesheetmediaallhrefhttpscoursereportproductionherokuappcomglobalsslfastlynetassetspagespecificschools_show3aca16603f6c41cf77b882baac389298cssscriptsrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetsapplication97e43e4dd7351ce897ee40f2003f85e5jsscriptscriptsrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetsheader_scripts1272387b23dc58490e6c20be1c15de53jsscriptscriptsrcusetypekitnetgqs4iacjsscriptscriptsrcwwwgstaticcomchartsloaderjsscriptscripttrytypekitloadcatchescriptifltie9scriptsrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetsapplicationieca5de91f657224405fe23d9d509a85edjsscriptendiflinkrelappletouchicontypeimagepnghrefhttpscoursereportproductionherokuappcomglobalsslfastlynetassetsappletouchicon57x57precomposed66c7a975616a2eca967795cf265b337apnglinkrelappletouchicontypeimagepnghrefhttpscoursereportproductionherokuappcomglobalsslfastlynetassetsappletouchicon72x72precomposedc34da9bf9a1cd0f34899640dfe4c1c61pngsizes72x72linkrelappletouchicontypeimagepnghrefhttpscoursereportproductionherokuappcomglobalsslfastlynetassetsappletouchicon114x114precomposedb8e8c4c1ff2adddb6978bec0265a75ecpngsizes114x114linkrelappletouchicontypeimagepnghrefhttpscoursereportproductionherokuappcomglobalsslfastlynetassetsappletouchicon144x144precomposeda1658624352b61eb99c13d767260533cpngsizes144x144html5shimandrespondjsie8supportofhtml5elementsandmediaquerieswarningrespondjsdoesntworkifyouviewthepageviafileifltie9javascript_include_tagossmaxcdncomlibshtml5shiv370html5shivjsjavascript_include_tagossmaxcdncomlibsrespondjs142respondminjsendiflinkrelnexthrefschoolsironhackpage2headbodydataspyscrolldatatargettocstylepositionrelativeheadernavclassnavbarnavbardefaultrolenavigationdivclasscontaineridnavcontaineritemscopeitemtypehttpschemaorgorganizationdivclassnavbarheaderbuttonclassnavbartogglecollapseddatatargetnavbarcollapsedatatogglecollapsetypebuttonspanclasssronlytogglenavigationspanspanclassiconbarspanspanclassiconbarspanspanclassiconbarspanbuttonaclassnavbarbrandlogosmallhrefhttpswwwcoursereportcomitempropurlimgaltcoursereporttitlecoursereportitemproplogosrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetslogosmalla04da9639b878f3d36becf065d607e0epngadivdivclasscollapsenavbarcollapseidnavbarcollapseulclassnavnavbarnavliclasstoplevelnavidschoolsaclassmpgbheaderhrefschoolsbrowseschoolsaulclasstracksliclasstrackidmenu_full_stackahreftrackswebdevelopmentbootcampfullstackwebdevelopmentaliliclasstrackidmenu_mobileahreftracksappdevelopmentbootcampmobiledevelopmentaliliclasstrackidmenu_front_endahreftracksfrontenddeveloperbootcampsfrontendwebdevelopmentaliliclasstrackidmenu_data_scienceahreftracksdatasciencebootcampdatasciencealiliclasstrackidmenu_ux_designahreftracksuxuidesignbootcampsuxdesignaliliclasstrackidmenu_digital_marketingahreftracksmarketingbootcampdigitalmarketingaliliclasstrackidmenu_menu_product_managementahreftracksproductmanagerbootcampproductmanagementaliliclasstrackidmenu_menu_securityahreftrackscybersecuritybootcampsecurityaliliclasstrackidmenu_menu_otherahreftracksothercodingbootcampsotheraliulliliclasstoplevelnavidblogaclassmpgbheaderhrefblogblogaliliclasstoplevelnavidresourcesaclassmpgbheaderhrefresourcesadviceaulclasstracksliclasstrackidmenu_ultimate_guideahrefcodingbootcampultimateguideultimateguidechoosingaschoolaliliclasstrackidmenu_best_bootcampsahrefbestcodingbootcampsbestcodingbootcampsaliliclasstrackidmenu_data_scienceahrefblogdatasciencebootcampsthecompleteguidebestindatasciencealiliclasstrackidmenu_ui_uxahrefbloguiuxdesignbootcampsthecompleteguidebestinuiuxdesignaliliclasstrackidmenu_cyber_securityahrefblogultimateguidetosecuritybootcampsbestincybersecurityaliulliliclasstoplevelnavidwriteareviewaclassmpgbheaderhrefwriteareviewwriteareviewaliliclasstoplevelnavidloginaclassmpgbheaderhrefloginsigninaliuldivdivnavheadersectionclassmainitemscopeitemtypehttpschemaorglocalbusinessdivclasscontainerdivclassrowdivclasscolxs12visiblexsvisiblesmidmobileheaderahrefschoolsironhackdivclassschoolimagetextcenterimgaltironhacklogotitleironhacklogosrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4017s300logoironhackbluepngdivadivclassaltheaderh1itempropnameironhackh1pclassdetailsspanclasslocationspanclassiconlocationspanamsterdambarcelonaberlinmadridmexicocitymiamiparissaopaulospanpdivdivdivdivclassrowdivclassnavigablecolmd8idmaincontentdivclasshiddenschoolslugironhackdivdivclassmainheaderhideonmobileh1classresizeheaderironhackh1divclassaggregateratingdivclassshowratingspclassratingsspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starpclassratingnumberitempropaggregateratingitemscopeitemtypehttpschemaorgaggregateratingavgratingspanclassratingvalueitempropratingvalue489spanspanspanspanitempropreviewcount596spanspanreviewsspanppdivdivdivdivclassnavwrapperdivclassschoolnavulclassnavnavpillsnavjustifiedhiddenxsidschoolsectionsroletablistliclassactivedatadeeplinktargetaboutdatatoggletabidabout_tabahrefaboutaboutalilidatadeeplinktargetcoursesdatatoggletabidcourses_tabahrefcoursescoursesalilidatadeeplinktargetreviewsdatatoggletabidreviews_tabahrefreviewsreviewsalilidatadeeplinktargetnewsdatatoggletabidnews_tabahrefnewsnewsaliuldivdivdivdataformcontactdataschoolironhackidcontactmobilebuttonclassbuttonbtnspanimgsrchttpss3amazonawscomcourse_report_productionmisc_imgsmailsvgtitlecontactschoolspancontactalexwilliamsfromironhackbuttondivdivclasstabcontentpanelgroupdivclasspanelwrapperdatadeeplinkpathaboutdatatababout_tabidaboutdivclasspanelpaneldefaultpanelcontentdivclasspanelheadingcollapsedvisiblexsdatadeeplinktargetaboutdatatargetaboutcollapsedatatogglecollapseidaboutcollapseheadingh4classpaneltitleabouth4divdivclasspanelcollapsecollapseinidaboutcollapsedivclasspanelbodyh2classhiddenxsabouth2sectionclassaboutdivclassexpandablepironhackisa9weekfulltimeand24weekparttimewebdevelopmentanduxuidesignbootcampinmiamifloridamadridandbarcelonaspainparisfrancemexicocitymexicoandberlingermanyironhackusesacustomizedapproachtoeducationbyallowingstudentstoshapetheirexperiencebasedonpersonalgoalstheadmissionsprocessincludessubmittingawrittenapplicationapersonalinterviewandthenatechnicalinterviewstudentswhograduatefromthewebdevelopmentbootcampwillbeskilledintechnologieslikejavascripthtml5andcss3theuxuiprogramcoversdesignthinkingphotoshopsketchbalsamiqinvisionandjavascriptppthroughouteachironhackprogramstudentswillgethelpnavigatingcareerdevelopmentthroughinterviewprepenhancingdigitalbrandpresenceandnetworkingopportunitiesstudentswillhaveachancetodelveintothetechcommunitywithironhackeventsworkshopsandmeetupswithmorethan1000graduatesironhackhasanextensiveglobalnetworkofalumniandpartnercompaniesgraduatesofironhackwillbewellpositionedtofindajobasawebdeveloperoruxuidesignerupongraduationasallstudentshaveaccesstocareerservicestopreparethemforthejobsearchandfacilitatinginterviewsintheircityslocaltechecosystempdivdivclassdividerdivh4recentironhackreviewsrating489h4ulclassunstyledrecentreviewslidivclassrowdivclasscolxs3ratingsspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs9paclassmobilereviewdatadeeplinkpathreviewsreview16341datadeeplinktargetreview_16341fromnursetodesignerintwomonthsapdivdivlilidivclassrowdivclasscolxs3ratingsspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs9paclassmobilereviewdatadeeplinkpathreviewsreview16340datadeeplinktargetreview_16340100recomendableapdivdivlilidivclassrowdivclasscolxs3ratingsspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs9paclassmobilereviewdatadeeplinkpathreviewsreview16338datadeeplinktargetreview_16338funexperienceandgreatjobafterapdivdivliulaclassreadmorelinkmobilereviewdatadeeplinktargetreviewsdatatoggletabhrefreviewsreadall596reviewsforironhackreadadivclassdividerdivh4recentironhacknewsh4ulclassunstyledliahrefblogparttimecodingbootcampswebinarwebinarchoosingaparttimecodingbootcampaliliahrefblogdafnebecameadeveloperinbarcelonaafterironhackhowdafnebecameadeveloperinbarcelonaafterironhackaliliahrefbloghowtolandauxuijobinspainhowtolandauxuidesignjobinspainaliulaclassreadmorelinkmobilenewsdatadeeplinktargetnewshrefnewsreadall23articlesaboutironhackasectiondivdivdivdivdivclasspanelwrapperdatadeeplinkpathcoursesdatatabcourses_tabidcoursesdivclasspanelpaneldefaultpanelcontentdivclasspanelheadingcollapsedvisiblexsdatadeeplinktargetcoursesdatatargetcoursescollapsedatatogglecollapseidcoursescollapseheadingh4classpaneltitlecoursesh4divdivclasspanelcollapsecollapseinidcoursescollapsedivclasspanelbodyh2classhiddenxscoursesh2ulclasscoursecardliheaderh3dataanalyticsbootcampfulltimeh3spanclassbtnbtndefaultbtnapplysmallatarget_blankhrefhttpswwwironhackcomencoursesdataanalyticsbootcampapplyaspanheaderdivclasscontentdivclassdetailsspanclassiconeyetitlefocusspanahrefsubjectsmysqlmysqlaahrefsubjectsdatasciencedatascienceaahrefsubjectsgitgitaahrefsubjectsrraahrefsubjectspythonpythonaahrefsubjectsmachinelearningmachinelearningaahrefsubjectsdatastructuresdatastructuresabrspanclasstypespanclassiconusertitlecoursetypespaninpersonspandivdldtstartdatedtddspanclassiconcalendarspannonescheduleddddtcostdtddnadddtclasssizedtddnadddtlocationdtddspanmadridspandddldivclassexpandablethiscourseenablesstudentstobecomeafullfledgeddataanalystin9weeksstudentswilldeveloppracticalskillsusefulinthedataindustryrampuppreworkandlearnintermediatetopicsofdataanalyticsusingpandasanddataengineeringtocreateadataapplicationusingrealdatasetsyou39llalsolearntousepythonandbusinessintelligencethroughthebootcampyouwilllearnbydoingprojectscombiningdataanalyticsandprogrammingironhack39sdataanalyticsbootcampismeanttohelpyousecureaspotinthedataindustryhoweverthemostimportantskillthatstudentswilltakeawayfromthiscourseistheabilitytolearntechnologyisfastmovingandeverchangingdivdivdetailssummaryfinancingsummarydldtdepositdtdd750dddldetailsdetailssummarygettinginsummarydldtminimumskillleveldtddbasicprogrammingknowledgedddtprepworkdtdd4050hoursofonlinecontentthatyou39llhavetocompleteinordertoreachtherequiredlevelatthenextmoduledddtplacementtestdtddyesdddtinterviewdtddyesdddldetailsliulscripttypeapplicationldjsoncontexthttpschemaorgtypecoursenamedataanalyticsbootcampfulltimedescriptionthiscourseenablesstudentstobecomeafullfledgeddataanalystin9weeksstudentswilldeveloppracticalskillsusefulinthedataindustryrampuppreworkandlearnintermediatetopicsofdataanalyticsusingpandasanddataengineeringtocreateadataapplicationusingrealdatasetsyou39llalsolearntousepythonandbusinessintelligencethroughthebootcampyouwilllearnbydoingprojectscombiningdataanalyticsandprogrammingironhack39sdataanalyticsbootcampismeanttohelpyousecureaspotinthedataindustryhoweverthemostimportantskillthatstudentswilltakeawayfromthiscourseistheabilitytolearntechnologyisfastmovingandeverchangingprovidertypelocalbusinessnameironhacksameashttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagescriptulclasscoursecardliheaderh3uxuidesignbootcampfulltimeh3spanclassbtnbtndefaultbtnapplysmallatarget_blankhrefhttpswwwironhackcomencoursesuxuidesignbootcamplearnuxdesignapplyapplyaspanheaderdivclasscontentdivclassdetailsspanclassiconeyetitlefocusspanahrefsubjectshtmlhtmlaahrefsubjectsuserexperiencedesignuserexperiencedesignaahrefsubjectscsscssabrspanclasstypespanclassiconusertitlecoursetypespaninpersonspanspanclasstypespanclassiconclocktitlecommitmentspanfulltimespanspanclasshoursweekspanclasshoursweeknumber50spanspanhoursweekspanspanspanclasstypespanclassiconcalendartitledurationspan9weeksspandivdldtstartdatedtddspanclassiconcalendarspanjanuary72019dddtcostdtddspanspanspan6500spandddtclasssizedtdd16dddtlocationdtddspanmiamimadridbarcelonaparismexicocityberlinspandddldivclassexpandablethis8weekimmersivecourseiscateredtobeginnerswithnopreviousdesignortechnicalexperiencestudentswillbetaughtthefundamentalsofusercentereddesignandlearntovalidateideasthroughuserresearchrapidprototypingampheuristicevaluationthecoursewillendwithacapstoneprojectwherestudentswilltakeanewproductideafromvalidationtolaunchbytheendofthecoursestudentswillbereadytostartanewcareerasauxdesignerfreelanceorturbochargetheircurrentprofessionaltrajectorydivdivdetailssummaryfinancingsummarydldtdepositdtddnadddldetailsdetailssummarygettinginsummarydldtminimumskillleveldtddnonedddtprepworkdtddthepreworkisa40hoursselfguidedcontentthatwillhelpyoutounderstandbasicuxuidesignconceptsanditwillmakeyoudesignyourfirstworksinsketchandflintodddtplacementtestdtddyesdddtinterviewdtddyesdddldetailsliulscripttypeapplicationldjsoncontexthttpschemaorgtypecoursenameuxuidesignbootcampfulltimedescriptionthis8weekimmersivecourseiscateredtobeginnerswithnopreviousdesignortechnicalexperiencestudentswillbetaughtthefundamentalsofusercentereddesignandlearntovalidateideasthroughuserresearchrapidprototypingampheuristicevaluationthecoursewillendwithacapstoneprojectwherestudentswilltakeanewproductideafromvalidationtolaunchbytheendofthecoursestudentswillbereadytostartanewcareerasauxdesignerfreelanceorturbochargetheircurrentprofessionaltrajectoryprovidertypelocalbusinessnameironhacksameashttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagescriptulclasscoursecardliheaderh3uxuidesignbootcampparttimeh3spanclassbtnbtndefaultbtnapplysmallatarget_blankhrefhttpswwwironhackcomencoursesuxuidesignparttimeapplyaspanheaderdivclasscontentdivclassdetailsspanclassiconeyetitlefocusspanahrefsubjectsdesigndesignaahrefsubjectsproductmanagementproductmanagementaahrefsubjectsuserexperiencedesignuserexperiencedesignaahrefsubjectscsscssabrspanclasstypespanclassiconusertitlecoursetypespaninpersonspanspanclasstypespanclassiconclocktitlecommitmentspanparttimespanspanclasshoursweekspanclasshoursweeknumber16spanspanhoursweekspanspanspanclasstypespanclassiconcalendartitledurationspan26weeksspandivdldtstartdatedtddspanclassiconcalendarspannovember132018dddtcostdtddspanspanspan7500spandddtclasssizedtdd20dddtlocationdtddspanmiamimadridbarcelonamexicocityberlinspandddldivclassexpandabletheuxuidesignparttimecoursemeetstuesdaysthursdaysandsaturdayswithadditionalonlinecourseworkoveraperiodof6monthsstudentswillbetaughtthefundamentalsofusercentereddesignandlearntovalidateideasthroughuserresearchrapidprototypingampheuristicevaluationthecoursewillendwithacapstoneprojectwherestudentswilltakeanewproductideafromvalidationtolaunchbytheendofthecoursestudentswillbereadytostartanewcareerasauxdesignerfreelanceorturbochargetheircurrentprofessionaltrajectorydivdivdetailssummaryfinancingsummarydldtdepositdtdd750or9000mxndddtfinancingdtddfinancingoptionsavailablewithcompetitiveinterestratesskillsfundclimbcreditdddldetailsdetailssummarygettinginsummarydldtminimumskillleveldtddbasicprogrammingskillsbasicalgorithmsandnotionsofobjectorientedprogrammingdddtprepworkdtdd4050hoursofonlinecontentthatyou39llhavetocompleteinordertoreachtherequiredlevelwhenthecoursebeginsdddtplacementtestdtddyesdddtinterviewdtddyesdddldetailsliulscripttypeapplicationldjsoncontexthttpschemaorgtypecoursenameuxuidesignbootcampparttimedescriptiontheuxuidesignparttimecoursemeetstuesdaysthursdaysandsaturdayswithadditionalonlinecourseworkoveraperiodof6monthsstudentswillbetaughtthefundamentalsofusercentereddesignandlearntovalidateideasthroughuserresearchrapidprototypingampheuristicevaluationthecoursewillendwithacapstoneprojectwherestudentswilltakeanewproductideafromvalidationtolaunchbytheendofthecoursestudentswillbereadytostartanewcareerasauxdesignerfreelanceorturbochargetheircurrentprofessionaltrajectoryprovidertypelocalbusinessnameironhacksameashttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagescriptulclasscoursecardliheaderh3webdevelopmentbootcampfulltimeh3spanclassbtnbtndefaultbtnapplysmallatarget_blankhrefhttpswwwironhackcomencourseswebdevelopmentbootcampapplyaspanheaderdivclasscontentdivclassdetailsspanclasstypespanclassiconusertitlecoursetypespaninpersonspandivdldtstartdatedtddspanclassiconcalendarspanoctober292018dddtcostdtddnadddtclasssizedtddnadddtlocationdtddspanamsterdammiamimadridbarcelonaparismexicocityberlinspandddldivclassexpandablethiscourseenablesstudentstodesignandbuildfullstackjavascriptwebapplicationsstudentswilllearnthefundamentalsofprogrammingwithabigemphasisonbattletestedpatternsandbestpracticesbytheendofthecoursestudentswillhavetheabilitytoevaluateaproblemandselecttheoptimalsolutionusingthelanguageframeworkbestsuitedforaprojectsscopeinadditiontotechnicalskillsthecoursewilltrainstudentsinhowtothinklikeaprogrammerstudentswilllearnhowtodeconstructcomplexproblemsandbreakthemintosmallermoduleshoweverthemostimportantskillthatstudentswilltakeawayfromthiscourseistheabilitytolearntechnologyisfastmovingandeverchangingagoodprogrammerhasageneralunderstandingofthevariousprogramminglanguagesandwhentousethemagreatprogrammerunderstandsthefundamentalstructureandpossessestheabilitytolearnanynewlanguagewhenrequireddivdivdetailssummaryfinancingsummarydldtdepositdtdd1000dddtfinancingdtddmonthlyinstalmentsavailablefor122436monthsquotandadddtscholarshipdtdd1000scholarshipforwomendddldetailsdetailssummarygettinginsummarydldtminimumskillleveldtddbasicprogrammingknowledgedddtprepworkdtdd4050hoursofonlinecontentthatyou39llhavetocompleteinordertoreachtherequiredlevelatthenextmoduledddtplacementtestdtddyesdddtinterviewdtddyesdddldetailsdetailssummarymorestartdatessummarydivclasscontentdivclassstartdatespanclassiconcalendarspanspancontent20181029october292018spanspanmexicocityspandivdivclassstartdatespanclassiconcalendarspanspancontent20190114january142019spanspanmexicocityspandivdivclassstartdatespanclassiconcalendarspanspancontent20190325march252019spanspanmexicocityspandivdivclassstartdatespanclassiconcalendarspanspancontent20190107january72019spanspanbarcelonaspanspanapplybyjanuary12019spandivdivdetailsliulscripttypeapplicationldjsoncontexthttpschemaorgtypecoursenamewebdevelopmentbootcampfulltimedescriptionthiscourseenablesstudentstodesignandbuildfullstackjavascriptwebapplicationsstudentswilllearnthefundamentalsofprogrammingwithabigemphasisonbattletestedpatternsandbestpracticesbytheendofthecoursestudentswillhavetheabilitytoevaluateaproblemandselecttheoptimalsolutionusingthelanguageframeworkbestsuitedforaprojectsscopeinadditiontotechnicalskillsthecoursewilltrainstudentsinhowtothinklikeaprogrammerstudentswilllearnhowtodeconstructcomplexproblemsandbreakthemintosmallermoduleshoweverthemostimportantskillthatstudentswilltakeawayfromthiscourseistheabilitytolearntechnologyisfastmovingandeverchangingagoodprogrammerhasageneralunderstandingofthevariousprogramminglanguagesandwhentousethemagreatprogrammerunderstandsthefundamentalstructureandpossessestheabilitytolearnanynewlanguagewhenrequiredprovidertypelocalbusinessnameironhacksameashttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagescriptulclasscoursecardliheaderh3webdevelopmentbootcampparttimeh3spanclassbtnbtndefaultbtnapplysmallatarget_blankhrefhttpswwwironhackcomescursoswebdevelopmentparttimeaplicarapplyaspanheaderdivclasscontentdivclassdetailsspanclassiconeyetitlefocusspanahrefsubjectsangularjsbootcampangularjsaahrefsubjectsmongodbmongodbaahrefsubjectshtmlhtmlaahrefsubjectsjavascriptjavascriptaahrefsubjectsexpressjsexpressjsaahrefsubjectsnodejsnodejsaahrefsubjectsfrontendfrontendabrspanclasstypespanclassiconusertitlecoursetypespaninpersonspanspanclasstypespanclassiconclocktitlecommitmentspanfulltimespanspanclasshoursweekspanclasshoursweeknumber13spanspanhoursweekspanspanspanclasstypespanclassiconcalendartitledurationspan24weeksspandivdldtstartdatedtddspanclassiconcalendarspanjanuary152019dddtcostdtddspanspanspan12000spandddtclasssizedtddnadddtlocationdtddspanmiamimadridbarcelonaparismexicocityberlinspandddldivclassexpandablethiscourseenablesstudentstodesignandbuildfullstackjavascriptwebapplicationsstudentswilllearnthefundamentalsofprogrammingwithabigemphasisonbattletestedpatternsandbestpracticesbytheendofthecoursestudentswillhavetheabilitytoevaluateaproblemandselecttheoptimalsolutionusingthelanguageframeworkbestsuitedforaprojectsscopeinadditiontotechnicalskillsthecoursewilltrainstudentsinhowtothinklikeaprogrammerstudentswilllearnhowtodeconstructcomplexproblemsandbreakthemintosmallermoduleshoweverthemostimportantskillthatstudentswilltakeawayfromthiscourseistheabilitytolearntechnologyisfastmovingandeverchangingagoodprogrammerhasageneralunderstandingofthevariousprogramminglanguagesandwhentousethemagreatprogrammerunderstandsthefundamentalstructureandpossessestheabilitytolearnanynewlanguagewhenrequireddivdivdetailssummaryfinancingsummarydldtdepositdtdd1000dddldetailsdetailssummarygettinginsummarydldtminimumskillleveldtddbasicprogrammingknowledgedddtprepworkdtdd4050hoursofonlinecontentthatyou39llhavetocompleteinordertoreachtherequiredlevelatthenextmoduledddtplacementtestdtddyesdddtinterviewdtddyesdddldetailsliulscripttypeapplicationldjsoncontexthttpschemaorgtypecoursenamewebdevelopmentbootcampparttimedescriptionthiscourseenablesstudentstodesignandbuildfullstackjavascriptwebapplicationsstudentswilllearnthefundamentalsofprogrammingwithabigemphasisonbattletestedpatternsandbestpracticesbytheendofthecoursestudentswillhavetheabilitytoevaluateaproblemandselecttheoptimalsolutionusingthelanguageframeworkbestsuitedforaprojectsscopeinadditiontotechnicalskillsthecoursewilltrainstudentsinhowtothinklikeaprogrammerstudentswilllearnhowtodeconstructcomplexproblemsandbreakthemintosmallermoduleshoweverthemostimportantskillthatstudentswilltakeawayfromthiscourseistheabilitytolearntechnologyisfastmovingandeverchangingagoodprogrammerhasageneralunderstandingofthevariousprogramminglanguagesandwhentousethemagreatprogrammerunderstandsthefundamentalstructureandpossessestheabilitytolearnanynewlanguagewhenrequiredprovidertypelocalbusinessnameironhacksameashttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagescriptdivdivdivdivdivclasspanelwrapperdatadeeplinkpathreviewsdatatabreviews_tabidreviewsdivclasspanelpaneldefaultpanelcontentdivclasspanelheadingcollapsedvisiblexsdatadeeplinktargetreviewsdatatargetreviewscollapsedatatogglecollapseidreviewscollapseheadingh4classpaneltitlereviewsh4divdivclasspanelcollapsecollapseinidreviewscollapsedivclasspanelbodyh2classhiddenxsironhackreviewsh2sectionclassreviewsdivclassrowfilterdropdowndivclasscolsm3aariacontrolsreviewformcontainerariaexpandedfalseclassbtnbtndefaultbtnwriteareviewdatadeeplinkpathreviewswriteareviewdatadeeplinktargetbtnwriteareviewdatatargetreviewformcontainerdatatogglecollapseidbtnwriteareviewwriteareviewadivdivclasscolsm5dropdowntextcenterdivpclassreviewlength596reviewssortedbypbuttonclassbtnsorterbtndatatoggledropdowntypebuttondefaultsortspanclasscaretspanbuttonulclasssorteduldropdownmenusortfiltersliadatasorttypedefaultclassactivesorthrefschoolsironhackdefaultsortaliliadatasorttyperecentclasshrefschoolsironhackmostrecentaliliadatasorttypehelpfulclasshrefschoolsironhackmosthelpfulaliuldivdivdivclasscolsm4dropdowndivclasspagenumberhidden1divdivpfilteredbypbuttonclassbtnfilterbtndatatoggledropdowntypebuttonallreviewsspanclasscaretspanbuttonulclassfiltereduldropdownmenureviewsfilterdataschoolironhackliclassallreviewsadatafiltertypedefaultclassactivehrefschoolsironhackallreviewsaliliadatafiltertypeanonymoushrefschoolsironhackanonymousaliliadatafiltertypeverifiedhrefschoolsironhackverifiedaliliclasscategorycampusesliliadatafiltertypecampusdatafiltervalmadridhrefschoolsironhackmadridaliliadatafiltertypecampusdatafiltervalmadridhrefschoolsironhackmadridaliliadatafiltertypecampusdatafiltervalmiamihrefschoolsironhackmiamialiliadatafiltertypecampusdatafiltervalmexicocityhrefschoolsironhackmexicocityaliliadatafiltertypecampusdatafiltervalmiamihrefschoolsironhackmiamialiliadatafiltertypecampusdatafiltervalbarcelonahrefschoolsironhackbarcelonaaliliadatafiltertypecampusdatafiltervalberlinhrefschoolsironhackberlinaliliadatafiltertypecampusdatafiltervalparishrefschoolsironhackparisaliliclasscategorycoursesliliadatafiltertypecoursedatafiltervalwebdevelopmentbootcampfulltimehrefschoolsironhackwebdevelopmentbootcampfulltimealiliadatafiltertypecoursedatafiltervaluxuidesignbootcampfulltimehrefschoolsironhackuxuidesignbootcampfulltimealiliadatafiltertypecoursedatafiltervalwebdevelopmentbootcampparttimehrefschoolsironhackwebdevelopmentbootcampparttimealiuldivdivdivdivclassrowdivclasscolxs12divclassreviewformcontainercollapsedivclassreviewguidelineshackboxpreviewguidelinespullionlyapplicantsstudentsandgraduatesarepermittedtoleavereviewsoncoursereportlilipostclearvaluableandhonestinformationthatwillbeusefulandinformativetofuturecodingbootcampersthinkaboutwhatyourbootcampexcelledatandwhatmighthavebeenbetterlilibenicetoothersdontattackothersliliusegoodgrammarandcheckyourspellinglilidontpostreviewsonbehalfofotherstudentsorimpersonateanypersonorfalselystateorotherwisemisrepresentyouraffiliationwithapersonorentitylilidontspamorpostfakereviewsintendedtoboostorlowerratingslilidontpostorlinktocontentthatissexuallyexplicitlilidontpostorlinktocontentthatisabusiveorhatefulorthreatensorharassesotherslilipleasedonotsubmitduplicateormultiplereviewsthesewillbedeletedahrefmailtohellocoursereportcomemailmoderatorsatorevisearevieworclickthelinkintheemailyoureceivewhensubmittingareviewlilipleasenotethatwereservetherighttoreviewandremovecommentarythatviolatesourpoliciesliuldivxclassreviewformdivclassrevieweremailcheckstrongyoumustlogintosubmitareviewstrongpahrefloginredirect_pathhttps3a2f2fwwwcoursereportcom2fschools2fironhack232freviews2fwriteareviewclickhereanbsptologinorsignupandcontinuepdivdivclasscrformformclassreviewformdataparsleyvalidatedataparsleyexcludeddisableddisabledidnew_reviewactionreviewsacceptcharsetutf8dataremotetruemethodpostinputnameutf8typehiddenvaluex2713inputtypehiddennameutm_sourceidutm_sourceinputtypehiddennameutm_mediumidutm_mediuminputtypehiddennameutm_termidutm_terminputtypehiddennameutm_contentidutm_contentinputtypehiddennameutm_campaignidutm_campaigninputvalue84typehiddennamereviewschool_ididreview_school_iddivclasshackwarningpheythereasof11116spanclassschoolnamespanisnowhackreactorifyougraduatedfromspanclassschoolnamespanpriortooctober2016pleaseleaveyourreviewforspanclassschoolnamespanotherwisepleaseleaveyourreviewforahrefschoolshackreactorhackreactorapdivh5titleh5divclassformgrouplabelclasssronlyforreview_titletitlelabelinputclassformcontrolrequiredrequireddataparsleyrequiredmessagetitleisrequiredtypetextnamereviewtitleidreview_titledivh5descriptionh5divclassformgrouplabelclasssronlyforreview_bodydescriptionlabeltextarearows10classformcontrolparsleyerrordataparsleyrequiredtruedataparsleyrequiredmessagepleasewriteashortreviewtohelpfuturebootcampapplicantsnamereviewbodyidreview_bodytextareadivh5ratingh5divclassformgroupdivclassratingsdivclassrowdivclasscolxs7colsm4overallexperiencedivinputstyledisplaynonerequiredrequireddataparsleytriggerchangedataparsleyerrorscontainerrating_errorsdataparsleyrequiredmessageoverallexperienceratingisrequiredtypenumbernamereviewoverall_experience_ratingidreview_overall_experience_ratingdivclasscolxs5colsm2ratingtextrightidoverall_experience_ratingspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspandivdivclasscolxs7colsm3curriculumdivinputstyledisplaynonerequiredrequireddataparselytriggerchangedataparsleyerrorscontainerrating_errorsdataparsleyrequiredmessagecurriulumratingisrequiredtypenumbernamereviewcourse_curriculum_ratingidreview_course_curriculum_ratingdivclasscolxs5colsm3ratingtextrightidcourse_curriculum_ratingspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspandivdivdivclassrowdivclasscolxs7colsm4instructorsdivinputstyledisplaynonerequiredrequireddataparselytriggerchangedataparsleyerrorscontainerrating_errorsdataparsleyrequiredmessageinstructorsratingisrequiredtypenumbernamereviewcourse_instructors_ratingidreview_course_instructors_ratingdivclasscolxs5colsm2ratingtextrightidcourse_instructors_ratingspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspandivdivclasscolxs7colsm3jobassistjobassistancedivinputstyledisplaynonerequiredrequireddataparselytriggerchangedataparsleyerrorscontainerrating_errorsdataparsleyrequiredmessagejobassistanceratingisrequiredtypenumbernamereviewschool_job_assistance_ratingidreview_school_job_assistance_ratingdivclasscolxs5colsm3ratingtextrightjobassistratingidschool_job_assistance_ratingspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspandivdivclasspullrightspanclassnotapplicableinputtyperadiovaluetruenamereviewjob_assist_not_applicableidreview_job_assist_not_applicable_truelabelforjob_assist_not_applicable_notapplicablenotapplicablelabelspandivdivdivdivclassrowdivclasscolxs12dividrating_errorsdivdivdivdivh5schooldetailsh5divclassrowdivclassformgroupcolsm6labelclasssronlyforreview_campuscampuslabelselectclassformcontroldatadynamicselectabletargetreview_course_iddataparsleyerrorscontainerschool_errorsdatadynamicselectableurldynamic_selectcampus_idcoursesdatatargetplaceholderselectcoursedataallowothertruenamereviewcampus_ididreview_campus_idoptionvalueselectcampusoptionoptionvalue108madridoptionoptionvalue197miamioptionoptionvalue107miamioptionoptionvalue779madridoptionoptionvalue780barcelonaoptionoptionvalue843parisoptionoptionvalue913mexicocityoptionoptionvalue995berlinoptionoptionvalue1089amsterdamoptionoptionvalue1090saopaulooptionoptionvalueotherotheroptionselectdivdivclassformgroupcolsm6labelclasssronlyforreview_coursecourselabelselectclassformcontroldataparsleyerrorscontainerschool_errorsdataallowothertruenamereviewcourse_ididreview_course_idoptionvalueselectcourseoptionselectdivdivdivclassformgrouplabelclasssronlyforreview_reviewer_typeschoolaffiliationlabelselectclassformcontroldataparsleyerrorscontainerschool_errorsnamereviewreviewer_typeidreview_reviewer_typeoptionvalueschoolaffiliationoptionoptionvaluestudentstudentoptionoptionvaluegraduategraduateoptionoptionvalueapplicantapplicantoptionselectdivdivclassrowidgraduation_date_dropdownslabelclasssronlyforreview_graduation_dategraduationmonthlabelinputtypehiddenidreview_graduation_date_3inamereviewgraduation_date3ivalue1selectidreview_graduation_date_2inamereviewgraduation_date2iclassformcontroldataparsleyerrorscontainerschool_errorsoptionvaluegraduationmonthoptionoptionvalue1januaryoptionoptionvalue2februaryoptionoptionvalue3marchoptionoptionvalue4apriloptionoptionvalue5mayoptionoptionvalue6juneoptionoptionvalue7julyoptionoptionvalue8augustoptionoptionvalue9septemberoptionoptionvalue10octoberoptionoptionvalue11novemberoptionoptionvalue12decemberoptionselectselectidreview_graduation_date_1inamereviewgraduation_date1iclassformcontroldataparsleyerrorscontainerschool_errorsoptionvaluegraduationyearoptionoptionvalue20052005optionoptionvalue20062006optionoptionvalue20072007optionoptionvalue20082008optionoptionvalue20092009optionoptionvalue20102010optionoptionvalue20112011optionoptionvalue20122012optionoptionvalue20132013optionoptionvalue20142014optionoptionvalue20152015optionoptionvalue20162016optionoptionvalue20172017optionoptionvalue20182018optionoptionvalue20192019optionoptionvalue20202020optionoptionvalue20212021optionoptionvalue20222022optionoptionvalue20232023optionselectdivdivclassrowdivclassformgroupcolsm6review_campus_otherstyledisplaynonelabelclasssronlyforreview_campus_otherotherlabelinputclassformcontrolplaceholderothercampusdataparsleyerrorscontainerschool_errorstypetextnamereviewcampus_otheridreview_campus_otherdivdivclassformgroupcolsm6review_course_otherstyledisplaynonelabelclasssronlyforreview_course_otherotherlabelinputclassformcontrolplaceholderothercoursedataparsleyerrorscontainerschool_errorstypetextnamereviewcourse_otheridreview_course_otherdivdivdivclassrowdivclasscolxs12dividschool_errorsdivdivdivh5aboutyouh5divclassformgroupcolsm6labelclasssronlyforreview_reviewer_namenamelabelinputclassformcontrolplaceholdernamedataparsleyerrorscontainerabout_errorsdataparsleytriggerchangerequiredrequireddataparsleyrequiredmessagenameisrequiredbutwillbekeptanonymousifboxischeckedtypetextnamereviewreviewer_nameidreview_reviewer_namespanclassreview_anoninputnamereviewreviewer_anonymoustypehiddenvalue0inputtypecheckboxvalue1namereviewreviewer_anonymousidreview_reviewer_anonymouslabelforreview_reviewer_anonymousreviewanonymouslylabelspanpclasssmalltextnonanonymousverifiedreviewsarealwaysmorevaluableandtrustworthytofuturebootcampersanonymousreviewswillbeshowntoreaderslastpdivdivclassformgroupcolsm6labelclasssronlyforreview_reviewer_job_titlereviewerjobtitlelabelinputclassformcontrolplaceholderjobtitleoptionaldataparsleyerrorscontainerabout_errorstypetextnamereviewreviewer_job_titleidreview_reviewer_job_titledivdivclassrowdivdivclassrowdivclasscolxs12dividabout_errorsdivdivdivdivclassformgroupdivclassrowdivclasscolxs12divclassrevieweremailcheckstrongyoumustlogintosubmitareviewstrongpahrefloginredirect_pathhttps3a2f2fwwwcoursereportcom2fschools2fironhack232freviews2fwriteareviewclickhereanbsptologinorsignupandcontinuepdivinputtypesubmitnamecommitvaluesubmitclassbtnbtndefaultbtnlgpullrightreviewsubmitreviewlogindivdivdivformdivxdivdivdivdivclassrowdivclasscolxs12reviewcontainerbrdivdivclassreviewdatacampusmadridironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16341datadeeplinktargetreview_16341datareviewid16341hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16341reviewsreview16341idreview_16341fromnursetodesignerintwomonthsabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltmarialuisauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqfwswrrtugbhaprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptau4trwyta5rrmekqqqfnrakckmprxqqr6zbpk_dfn8divspanclassreviewernamemarialuisaspanspanuxuidesignerspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominmarialuisapedauyeverifiedvialinkedinaspandivdivclassratingsspanclasshiddenfromnursetodesignerintwomonthsspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepppspaniwantedtoturnmylifearoundbecauseialwayslikeddesignbutmaybeoutoffearididnotdoitbeforeuntililuckilygotintoironhackmylifehaschangedintwomonthsitsmethodologyandwayofteachingmakesyougofrom0to100inarecordtimeirecommenditwithoutanydoubtspanppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16341dataremotetruedatamethodposthrefreviews16341votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20from20nurse20to20designer20in20two20months207c20id3a2016341flagasinappropriateapdivdivdivdivdivclassreviewdatacampusdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16340datadeeplinktargetreview_16340datareviewid16340hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16340reviewsreview16340idreview_16340100recomendableabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltnicolaealexeuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqhtdojuxozttgprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptszskngag0gyyqxooagfkuyfw3anpdnpjw4boixzxvtedivspanclassreviewernamenicolaealexespanspanspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxsspanspanclassreviewernameahrefhttpwwwlinkedincominnicolaealexeverifiedvialinkedinaspandivdivclassratingsspanclasshidden100recomendablespandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepiamaseniorstudentofcomputerengineeringdegreebutiwasfeelinglikesomethingwasmissinginmyacademicprogramihadnocontactwiththecurrenttechnologiesbrduetothiswheniheardaboutironhackiknewthatwaswhatineededtocompletemyeducationandiwascompletelyrightppfromdayonetheatmospherewasamazingtheleadteacherwasfundamentaltomylearningexperiencebecauseofhisamazingskillsbutthemostkeyelementsoftheironhackexperiencewasthetastheyarealumnithatsupportsyouduringyourbootcampppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16340dataremotetruedatamethodposthrefreviews16340votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c201002520recomendable2121207c20id3a2016340flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16338datadeeplinktargetreview_16338datareviewid16338hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16338reviewsreview16338idreview_16338funexperienceandgreatjobafterabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltgabrielcebrinlucasuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsavatars1githubusercontentcomu36677458v4divspanclassreviewernamegabrielcebrinlucasspanspanspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpsgithubcomkunryverifiedviagithubaspandivdivclassratingsspanclasshiddenfunexperienceandgreatjobafterspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepicametoironhacktolookforajobiknewilovedprogrammingbecauseistudiedengineeringandhadlearntprogrammingbymyselfbutneverwebdevelopmentiwantedtolearnin9weekssomwthingiwouldtakemonthslearningbymyselfppitwasareallyfunexperienceandigotagreatjobafterppirecomendironhackppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16338dataremotetruedatamethodposthrefreviews16338votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20fun20experience20and20great20job20after207c20id3a2016338flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16335datadeeplinktargetreview_16335datareviewid16335hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16335reviewsreview16335idreview_16335fromteachertodeveloperabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltjacobcasadoprezuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqeaprrzi28isqprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptyl6q7ppc5_ductoz9xqfps2p77l_imvr_qpii5zpdidivspanclassreviewernamejacobcasadoprezspanspanjuniorfullstackdeveloperspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominjacobcasadoverifiedvialinkedinaspandivdivclassratingsspanclasshiddenfromteachertodeveloperspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepwheniheardaboutironhackonseptember2017ihadnoideathatitgoingtobemyschoolandmyfutureiwasmusicteacherandialwaysthoughthatmylifewaslinkingwiththeeducationbutmylifechangeinablinkofaneyeandidecidedtolookforanewchanceinaworldwithmoreprofessionalopportunitiesandforthisreasonistudiedatironhackbrihadnotechnologybackgroundbutihadabigdesiretoimproveandtobeagooddeveloperbrduringthebootcamplittlebylittleiwasgrewandwasabletoovercomechallengesineverthoughtiwouldallofthiswaspossiblewiththeenormoussupportofteacherassistantsmycollegesandfriendswithoutthemthisbootcamphadbeenverydifficultppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16335dataremotetruedatamethodposthrefreviews16335votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20from20teacher20to20developer207c20id3a2016335flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16334datadeeplinktargetreview_16334datareviewid16334hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16334reviewsreview16334idreview_16334newwayoflearningabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltesperanzauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4d03aqgkf5xzyf9eaprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptfyprbwzon2x9kyh8qp5wmbxej1gxkvjh4ouydqk_m3mdivspanclassreviewernameesperanzaspanspanjuniorfullstackdeveloperspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominesperanzaamayaverifiedvialinkedinaspandivdivclassratingsspanclasshiddennewwayoflearningspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepthisbootcamphasbeenatotalchangeoflifeformeatotallynewwayoflearningnewpossibilitiesnewwayofthinkingnewdisciplinesitsabigchallengebutiwouldabsolutelyrepeatitthequalityofthisteachingisuncompareablebrihadnocodingexperienceiworkedinbiomedicalresearchiwasjustlookingalittleapproachtocodingifoundatotallynewstyleoflifeppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16334dataremotetruedatamethodposthrefreviews16334votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20new20way20of20learning207c20id3a2016334flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16333datadeeplinktargetreview_16333datareviewid16333hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16333reviewsreview16333idreview_16333ironhackdoesn39tteachyoutocodeitteachesyoutobeadeveloperabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltrubenuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4d03aqfbea1tkoodgprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptm5khvu8u8dhve0kdy_ps5wbz1fdrph2n9zbt3tdp5mdivspanclassreviewernamerubenspanspanjuniorfullstackdeveloperspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominrubenarmendarizverifiedvialinkedinaspandivdivclassratingsspanclasshiddenironhackdoesn39tteachyoutocodeitteachesyoutobeadeveloperspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepihadnocodingexperienceihadstudiedpsychologyandworkedasatechnicianassistantthebootcampwasveryintenseandveryenrichingbrmylearningcurvewasverticleupwardsistartedfrom0andnowimamazedofwhatiknowppironhacksimulatesperfectlythereallyworkingenvironmentofaprogrammeryouworkinginteamswiththerealtoolscompaniesuseyouresolveproblemsandreallyitslikeavirtualprofesionalatmospherebrwhenwevisitedtuentiabigspanishcompanyiwasamazedthatiunderstoodwhattheyweretalkingtomeabouticouldseemyselfworkingthereasaprogrammerbrironhackdoesntteachyoutocodeitteachesyoutobeadeveloperppironhackhelpsyoudiscoverifyoureallywanttoworkasadeveloperornotandafterthebootcampicandefinetlysayiwillworkasacoderppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16333dataremotetruedatamethodposthrefreviews16333votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20ironhack20doesn27t20teach20you20to20code2c20it20teaches20you20to20be20a20developer207c20id3a2016333flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16332datadeeplinktargetreview_16332datareviewid16332hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16332reviewsreview16332idreview_16332aboutmyexperinceabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltpablotabaodaortizuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqfrwvtzz9vtiaprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptl1zw6ienmebscbcvwfwpj9li3hiz62voiy0bor4qfzmdivspanclassreviewernamepablotabaodaortizspanspanjuniorfullstackdeveloperspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominpablotaboada04254316bverifiedvialinkedinaspandivdivclassratingsspanclasshiddenaboutmyexperincespandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepiwanttotalkaboutmylast9weeksicametoironhackwithoutanybackgroundandaftercompletingthebootcampifeelreallyimpressedofhowmuchilearntthesupportandfacilitiesareamazingandalsotheleveloftheteachersmyfullyrecommendationironhacktoeveryonenotonlyprofessionalsthatarelookingforrenewtheirskillsbutalsotopeopletryingtofindnewchallengesppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16332dataremotetruedatamethodposthrefreviews16332votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20about20my20experince207c20id3a2016332flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16331datadeeplinktargetreview_16331datareviewid16331hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16331reviewsreview16331idreview_16331webdevabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltricardoalonzouserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4d03aqfik4zkpmlezaprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptttjn_xwha0tl9kpcrhetmgd8u4j2javyojiddzde3tsdivspanclassreviewernamericardoalonzospanspanwebdeveloperspanspanstudentspanspanclasshiddenxsspanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominalonzoricardoverifiedvialinkedinaspandivdivclassratingsspanclasshiddenwebdevspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepironhackitsperfectifyouwanttostartacareerinwebdevelopmentitopenssomanydoorsasaprofessionalitstrullyimpresivewhatyoucanlearninashortperiodoftimeppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16331dataremotetruedatamethodposthrefreviews16331votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20web20dev207c20id3a2016331flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16330datadeeplinktargetreview_16330datareviewid16330hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16330reviewsreview16330idreview_16330anawesomewaytokickstartyourdevelopercarreerabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltjhonscarzouserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5103aqeqztty60r3zaprofiledisplayphotoshrink_100_1000e1545868800ampvbetaampt6ly760vnykzcrmbcvrszlub1dvz3gxqgkfp5ocaw7mdivspanclassreviewernamejhonscarzospanspanspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominjhonscarzoverifiedvialinkedinaspandivdivclassratingsspanclasshiddenanawesomewaytokickstartyourdevelopercarreerspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivdivclassbodydivclassexpandablepatironhacktheirgoalistoteacheveryonefromthebasicsandthecoreconceptsofprogrammingandbuildupfromtheretoprovideyouaverywellroundededucationandincentivizeyoutokeeplearningonyourownppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16330dataremotetruedatamethodposthrefreviews16330votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20an20awesome20way20to20kickstart20your20developer20carreer21207c20id3a2016330flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16329datadeeplinktargetreview_16329datareviewid16329hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16329reviewsreview16329idreview_16329reallycoolbootcampabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltsarauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqh1a9lrqrrjawprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptvxf6lkkwu1tcqultrae47hxgs6ljbcidrpsvd1i8oudivspanclassreviewernamesaraspanspanfullstackwebdeveloperspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominsaracurielverifiedvialinkedinaspandivdivclassratingsspanclasshiddenreallycoolbootcampspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepihavebeenalwaysmotivatedtolearnnewthingsandthankstoironhackiintegratedallmypreviousknowledgeinapowerfulwaycreating3differentprojectsandenjoyingeverythingabouttheexperiencepeoplehereareamazingandalwaysdisposedtohelpyouduringtheprocessbr100recommendableppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16329dataremotetruedatamethodposthrefreviews16329votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20really20cool20bootcamp21207c20id3a2016329flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16282datadeeplinktargetreview_16282datareviewid16282hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16282reviewsreview16282idreview_16282changeyourlifeinjust2monthsabrdivclassreviewdate10222018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltyagovegauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4d03aqhuojooprtmqprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptiptv1p7pcjrmpu2syig1fbhjdfvcxnzo_ng_laltlcdivspanclassreviewernameyagovegaspanspanfullstackdeveloperspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominyagovegaverifiedvialinkedinaspandivdivclassratingsspanclasshiddenchangeyourlifeinjust2monthsspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepitshardtoputinafewwordwhatihaveexperiencedin4monthsoffullcommitmenttoironhackswebdevelopmentanduxuibootcampsppivemetamazingpeopleivelearnedfromamazingpeopleandimgladicouldaswellhelpamazingpeopleppnomatterwhereyoucomefromorifyouhaventreadasinglelineofcodeinyourlifeaftertwomonthsyouareadifferentpersonimsogladimadethisdecisionitswortheverypennyppfromhtmltoangular5reactarollercoasterofemotionsandalotofhardworkicansaytodaythatimofficiallyafullstackdeveloperworkingforagreatcompanyinareallycoolprojectandthatwouldntbepossiblewithoutironhackppifyouarejustbrowsingforpossibleeducationaloptionsjuststopandtrustandjoinalltheironhackersaroundtheworldthatareconnectedandhelpingeachothereverydayppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16282dataremotetruedatamethodposthrefreviews16282votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20change20your20life20in20just20220months207c20id3a2016282flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16276datadeeplinktargetreview_16276datareviewid16276hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16276reviewsreview16276idreview_16276anincredibleexperienceabrdivclassreviewdate10222018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltdiegomndezpeouserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqhsxmvcrdirqqprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptbd_0rdi82jyeticnsxbxl9mzu01ynbm1sqlqrb3isdgdivspanclassreviewernamediegomndezpeospanspanspanspanstudentspanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincomindiegomendezpec3b1overifiedvialinkedinaspandivdivclassratingsspanclasshiddenanincredibleexperiencespandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepcomingfromuniversityironhackhasexceededallmyexpectationsitseverythingiwaslookingforbecauseironhackgavemeeverythingtobepreparedforajobinprogrammingppteacherassistantsaregreatandeveryonefrommybootcampwasawesomewelearntfromeachotheralotppirecommendironhacktoeveryonenotonlytotechenthusiastbutalsotopeoplewhoarelookingtochangecareerorlookingtoboostitppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16276dataremotetruedatamethodposthrefreviews16276votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20an20incredible20experience21207c20id3a2016276flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16275datadeeplinktargetreview_16275datareviewid16275hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16275reviewsreview16275idreview_16275howtochangeyourliveinonly9weeksabrdivclassreviewdate10222018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltteodiazuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4d03aqfz0kjtldo9pgprofiledisplayphotoshrink_100_1000e1545868800ampvbetaampttqcf0vxr6theusvc822ffkiuvpclusssr_geq9opj9udivspanclassreviewernameteodiazspanspanspanspanstudentspanspanclasshiddenxsspanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominteodiazverifiedvialinkedinaspandivdivclassratingsspanclasshiddenhowtochangeyourliveinonly9weeksspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepironhackwasthewaytochangemylifeandtobeabletolearninatotallydifferentwaythanusualtheymakeyoufeelthatyoubelongtoabigfamilyandallyourcolleaguesaretheretohelpyouafterfinishingthebootcampirealizedeverythingihadlearnedandthatiwasreadytoenteracompanywiththeguaranteethatiwoulddowellppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16275dataremotetruedatamethodposthrefreviews16275votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20how20to20change20your20live20in20only20920weeks207c20id3a2016275flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacourseuxuidesignbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16248datadeeplinktargetreview_16248datareviewid16248hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16248reviewsreview16248idreview_16248besteducationalexperienceeverabrdivclassreviewdate10202018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltronaldricardouserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqexcvlptm0ecwprofiledisplayphotoshrink_100_1000e1545264000ampvbetaampt7ioz6g8kcywmstzy3uczzuatswmhhkfyoa4ln_obpu4divspanclassreviewernameronaldricardospanspanspanspangraduatespanspanclasshiddenxscourseuxuidesignbootcampfulltimespanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincominronaldricardoverifiedvialinkedinaspandivdivclassratingsspanclasshiddenbesteducationalexperienceeverspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepandyesiwenttoatraditional4yearuniversityppiwenttolearnuxuiandendeduplearningsomuchmoreisawhowanorganizationthatcaresaboutitsemployeesandclientsisrundontjustaskthestudenthowmuchtheylikeattendingironhackasktheemployeeshowmuchtheylikeworkinghereyoucantellthateveryoneishappyandincludedthatisonlypossibleifthecultureiswellestablishedfromtoptobottomtheyhaveweeklysurveyswhichaimatgatheringfeedbackregularlythatshowstheycareaboutbeingthehighlyregardedbootcampthattheyareppthestartalexisverypersonalbleandhelpfulguidingtheprocessfromapplicationtofinancialaidprocessingjessicaisalsoinstrumentalinguidingthenewlyregisteredsothattheystartoffthecourseontherightfoottheymaketasavailablesothatyouhaveanyquestionsansweredbeforethecoursebeginsthepreworkcanbeafreestandingcoursedavidfastandkarenlumareverystronginstructorsthatreallycareaboutyourprogressasauxuidesignerthenwhenitsalldoneyouknowthatyouarepartofanewcommunitysocontinuingyourlearningjourneyisalmostunavoidablepptoppingitoffisdanielbritowhoismaniacalinhisdrivetohelpgradsfindthenecessaryemploymentresourcesnoonewhoisseriousshouldexpectanyonetofindyouajobbutreallyyouhavetogooutofyourwayinordertofailppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16248dataremotetruedatamethodposthrefreviews16248votesthisreviewishelpfulspanclasshelpfulcount1spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20best20educational20experience20ever207c20id3a2016248flagasinappropriateapdivdivdivdivdivclassreviewdatacampusdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16199datadeeplinktargetreview_16199datareviewid16199hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16199reviewsreview16199idreview_16199auniqueoportunityabrdivclassreviewdate10182018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltmontserratmonroyuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqe8kv0gzohmqaprofiledisplayphotoshrink_100_1000e1545264000ampvbetaamptdz8ssbztddzi2ts0gmokah4i51ywngxpf7zzk3eyvkdivspanclassreviewernamemontserratmonroyspanspanspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxsspanspanclassreviewernameahrefhttpwwwlinkedincominmonroylc3b3pezbmverifiedvialinkedinaspandivdivclassratingsspanclasshiddenauniqueoportunityspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepduringmysearchtostartmytriptolearnaboutthevirtualareaironhackwasthebestoptioninwhichtheytaughtmemyskillsandabilitiestocreatematerializeandsolveproblemsthroughacoordinatedeffortwithteacherswhothroughouttheprocessareaccompanyingyouandsharingyourachievementsppwithoutadoubtthebestjourneyihavelivedandfromwhichihavelearnedalotduringthesesixmonthsgeneratingagratitudeandrespectforthosewhoaccompaniedduringmystudyandthosepeoplewhowithasmileandtheirkindwordshelpedintheprocessesadministrativeppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16199dataremotetruedatamethodposthrefreviews16199votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20a20unique20oportunity207c20id3a2016199flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursewebdevelopmentbootcampparttimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16183datadeeplinktargetreview_16183datareviewid16183hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16183reviewsreview16183idreview_16183greatdecisionabrdivclassreviewdate10182018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltmariafernandaquezadauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsavatars2githubusercontentcomu35006493v4divspanclassreviewernamemariafernandaquezadaspanspanstudentspanspanspanspanclasshiddenxscoursewebdevelopmentbootcampparttimespanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpsgithubcommafeq03verifiedviagithubaspandivdivclassratingsspanclasshiddengreatdecisionspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepbeforedecidingonsigninguptoironhackiresearchedandvisitedotherbootcampsironhackscurriculumattractedmethemostbecausetheyteachyouthelatesttechnologiesforwebdevelopmentppthestaffwasveryhelpfulcommunicativeandknowledgeabletheclassroomenvironmentwasofhighqualityeveryonewasveryrespectfulandeagertolearnppmyoverallexperiencewasgreatandhighlyvaluableitalreadyhasimpactedmycareeranddecisiontocontinuelearningandgrowinginthisindustryppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16183dataremotetruedatamethodposthrefreviews16183votesthisreviewishelpfulspanclasshelpfulcount2spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20great20decision207c20id3a2016183flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmexicocityironhackdatacoursewebdevelopmentbootcampparttimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16160datadeeplinktargetreview_16160datareviewid16160hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16160reviewsreview16160idreview_16160myfavoriteexperiencetillnowabrdivclassreviewdate10172018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltsalemmuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqhvl6y_jryi4gprofiledisplayphotoshrink_100_1000e1545264000ampvbetaamptmvrgzyc9d36js0oab0ozura79phsirrplt620oikz1qdivspanclassreviewernamesalemmspanspanspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampparttimespanspanclasshiddenxscampusmexicocityspanspanclassreviewernameahrefhttpwwwlinkedincominsalvadoremmanueljuc3a1rezgranados13604a117verifiedvialinkedinaspandivdivclassratingsspanclasshiddenmyfavoriteexperiencetillnowspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandableponeofthemostamazingexperiencesofallbeingpartofagreatcommunityaroundtheworldandbeingwrappedbytheirsenseofcommunityandvaluesitsnotjustthelearningparttheyreallymakeyoufeellikepartofitanditsworldwidejustamazingppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16160dataremotetruedatamethodposthrefreviews16160votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20my20favorite20experience20till20now207c20id3a2016160flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16149datadeeplinktargetreview_16149datareviewid16149hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16149reviewsreview16149idreview_16149bestdecisioneverabrdivclassreviewdate10172018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltjulieturbinauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqfglxipjr8ijwprofiledisplayphotoshrink_100_1000e1545264000ampvbetaampthyxxnaigicxavvk3ibssew1py7qdt3gwucrnszsfgkidivspanclassreviewernamejulieturbinaspanspanstudentspanspanstudentspanspanclasshiddenxsspanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincominjulieturbinaverifiedvialinkedinaspandivdivclassratingsspanclasshiddenbestdecisioneverspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivdivclassbodydivclassexpandablepspaniresearchedwellandconsideredmyoptionscarefullybeforedecidingtotakethewebdevcourseatironhackitwasarollercoasterrideandinowregretnotdoingitsoonerspanppspanthecoursewaschallengingbutwiththeguidanceandencouragementreadilyavailableitbecameaprocessthatgavemeanincrediblesenseofaccomplishmentihadthesupportthatwasessentialandtheencouragementthatineededtoseeitthroughspanppspanironhackopenedanewdoorformespanppspantodayicanhonestlysaythatimadethebestdecisiontotakeawellstructuredcourseandmostimportantlytotakethecourseatironhackspanppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16149dataremotetruedatamethodposthrefreviews16149votesthisreviewishelpfulspanclasshelpfulcount2spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20best20decision20ever21207c20id3a2016149flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16143datadeeplinktargetreview_16143datareviewid16143hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16143reviewsreview16143idreview_16143bestcourseeverabrdivclassreviewdate10162018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltpablorezolauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4d03aqfepicebdodqwprofiledisplayphotoshrink_100_1000e1545264000ampvbetaampt878evt_vk0pnksbgfrqso1g66_9sskfaey8axejlqy0divspanclassreviewernamepablorezolaspanspanspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominpablorezolaverifiedvialinkedinaspandivdivclassratingsspanclasshiddenbestcourseeverspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepirecentlycompletedthefulltimewebdevelopmentcourseandihighlyrecommendittoanyonelookingtoexpandtheirskillsthiscoursehaschangedmylifestyletoabetteroneihadneverthoughtaboutallthethingsacomputerisabletodoandtheonlyrealuseigavetothembeforethisfantasticexperiencewereschoolprojectsatlawschoolppatthebeginningofthecourseiwaswarnedjusthowhardandintensethiscoursewouldbemyclosestfriendsandrelativesalsoencouragedmetodothisandshowedmethehugeimportanceoflearningtechnologiesandhowthiswouldhelpmegetajobbecausewearecurrentlylivinginaworldwhichalmosteveryoneworkwithacomputerppiamimpressedabouteverythingilearnedtherenotonlycodingihadtolivetogetherwithmyclassmateseverydayaskingforhelpinthegoodtimesandbadtimesimademanyfriendswhichistillkeepintouchwiththemironhackisabigcommunitytobepartofitdefinetelyiamreallypleasedwithironhackineverysingleaspectofthecoursepptasspendtheirtimeintensivelytostudentsnomatterhowlongitwilltakepptechnologieslearnedarecompletelyupdatedtofirmsrequisitesmeanstackppsocialeventsandspeechesenrichourknowledgeandappetitetolearnmorethingsppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16143dataremotetruedatamethodposthrefreviews16143votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20best20course20ever21207c20id3a2016143flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16131datadeeplinktargetreview_16131datareviewid16131hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16131reviewsreview16131idreview_16131bestexperienceeverabrdivclassreviewdate10162018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltjoshuamatosuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqegrlwnfajumaprofiledisplayphotoshrink_100_1000e1545264000ampvbetaampt7pa6hqinwgh9zo2a4fwsio7ovg3hvd9us4touc8dicdivspanclassreviewernamejoshuamatosspanspanspanspanspanspanclasshiddenxsspanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincominjoshuamatos1verifiedvialinkedinaspandivdivclassratingsspanclasshiddenbestexperienceeverspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepmyonlyregretisnotdoingthissoonertheniwishedididthisbootcamphasshiftedmylifetoamorepositivesideandihavelearnedsomuchinsuchasmallamountoftimeexcitedtoseewhatthefutureholdsformeaftergainingtheknowledgeofgreatdevelopersppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16131dataremotetruedatamethodposthrefreviews16131votesthisreviewishelpfulspanclasshelpfulcount2spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20best20experience20ever21207c20id3a2016131flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16118datadeeplinktargetreview_16118datareviewid16118hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16118reviewsreview16118idreview_16118mostcurrentcontentyoucanlearnaboutfullstackwebdevabrdivclassreviewdate10162018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltjonathanharrisuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqgsvxeyi7bovgprofiledisplayphotoshrink_100_1000e1545264000ampvbetaamptx4nk5sf7zlxospu3pppqxyz2tahuq_iyoecrnasmyzadivspanclassreviewernamejonathanharrisspanspanspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincominyonatanharrisverifiedvialinkedinaspandivdivclassratingsspanclasshiddenmostcurrentcontentyoucanlearnaboutfullstackwebdevspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepiwassearchingforalongtimefortherightschoolandthenifoundironhacktheyalwaysstayuptodateandiamveryhappyichosethisschooliwasveryworriedformanyreasonsbeforeistartedwillitbetohardwillitbetoeasywillwelearnenoughwillimanagetokeepupnowthatiamaftergraduationandicansayiamveryhappywithmychoiceallthesequestionswereansweredinthebestcasescenarioformetheteacherswerereallyawesomeiwasaskingmanyquestionsconstantlyduringtheclassandtheyansweredallofthemwithgreatpatienceireallyfeltigotthemostoutofthetimeicouldpossiblygetitwasnteasyitwassuperhardactuallybuttheypushedmetomylimitwithoutbreakingmeandifeelilearnedthemaximumicouldinthisamountoftimeandilearnedalotiamveryhappyichosethisbootcampppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16118dataremotetruedatamethodposthrefreviews16118votesthisreviewishelpfulspanclasshelpfulcount2spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20most20current20content20you20can20learn20about20full20stack20web20dev207c20id3a2016118flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16117datadeeplinktargetreview_16117datareviewid16117hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16117reviewsreview16117idreview_16117kitchenstocomputersabrdivclassreviewdate10162018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgalteranushauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqfof7aaornb_aprofiledisplayphotoshrink_100_1000e1545264000ampvbetaamptqhr8x9u8_21lete57pjspk857h2e4msisk6jqkflrzgdivspanclassreviewernameeranushaspanspanspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincomineranushaverifiedvialinkedinaspandivdivclassratingsspanclasshiddenkitchenstocomputersspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepatthebeginningofthecourseiwaswarnedjusthowhardandintensethiscoursewouldbefortheseeminglyshort9weeksthatiwasenrolledilearnedanovelsworthofinformationbutwhatsomeofthebestthingsilearnedwereaboutmyselfthiscoursehelpedmetoseeareasofmyselfthatineededtoimproveonasapersonandaprofessionaltheteachersandassitantswerefantasticandwerereadytohelpthiscoursereallyhelpsyoutodevelopaspecialrelationshipwithyourfellowclassmatesseeingaseveryoneisgoingthroughthesameintensedevelopmentinlifeifeelmoreconfidentaboutenteringthisprofessioncomingfromabackgroundinhospitalitywith0experiencethanieverthoughtiwouldppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16117dataremotetruedatamethodposthrefreviews16117votesthisreviewishelpfulspanclasshelpfulcount2spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20kitchens20to20computers207c20id3a2016117flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview15838datadeeplinktargetreview_15838datareviewid15838hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review15838reviewsreview15838idreview_15838verygooddecisionabrdivclassreviewdate9282018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltvctorgabrielpeguerogarcauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqeddlnkhdrecwprofiledisplayphotoshrink_100_1000e1543449600ampvbetaampt86mx9w5pirjucixnjpxsy8048ywiagnfhrp_wq5qgdivspanclassreviewernamevctorgabrielpeguerogarcaspanspancofounderofleemurappspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominvictorgabrielpegueroverifiedvialinkedinaspandivdivclassratingsspanclasshiddenverygooddecisionspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepthankstotheuxuibootcampfromironhackihaveimprovedalotasadesigneriapproachedtheworldofappsafewyearsagoandistarteddesigningiloveddesigningandtheironhackexperiencehasbeenaveryimportantqualitativeimprovementformeppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid15838dataremotetruedatamethodposthrefreviews15838votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20very20good20decision207c20id3a2015838flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview15837datadeeplinktargetreview_15837datareviewid15837hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review15837reviewsreview15837idreview_15837ironhackexperiencefulltimewebdevabrdivclassreviewdate9282018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltjosearjonauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqhr_gdkooskxwprofiledisplayphotoshrink_100_1000e1543449600ampvbetaamptbz49dlovqzgfx8oobuqannst9tubvu_vmzvxeh6xe9wdivspanclassreviewernamejosearjonaspanspanfullstackdeveloperspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincominjosedarjonaverifiedvialinkedinaspandivdivclassratingsspanclasshiddenironhackexperiencefulltimewebdevspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandabledivdivdivdivdivpstrongaboutmestrongppiworkedinitanddidsomecodingbutnothingpastbasicjavascriptitpeakedmyinterestsoibeganlearningonmyownbytakingcoursesonlineirealizedineededtogoaboutlearninginadifferentwayiresearchedcoursesbootcampsandranintoironhackanddecidedtodiveinandtakeitsfulltimewebdevcourseaftercomingacrossgreatreviewsratingsppstrongexpectationsandcourserundownstrongppbereadytolearnbecauseyouregoingtolearnalotitsafulltime95pmeverydayfor9weeksnotincludingtheafterhoursyouwanttoputinaswellitsnojokesojustpreparetofullyinvestthenext9weeksintoironhackyoulearnfor2weeksandthenimmediatelyaresentofftocreateaprojectwithinaweekrepeatagain2moretimesafterthatcomeinpreparedtolearntakeinallthematerialandbewillingtoputintheworkppspanstronghelpduringcourseworkcurriculumtasandteacherstrongspanpptheinstructorforourcohortnickwasveryknowledgeabletheonlydownsidewasthatitwashisfirsttimeteachingthecoursesoitfeltlikehewasalsolearningaswewerealltryingtolearnsomethingtoobesidesthathewasmostdefinitelyagreatinstructorandwithouthisproficiencyonthesubjectiwouldnothavelearnedasmuchasididasfortheteachingassistantsallthreeofthemwereamazingsandramarcosiantheywereallveryfamiliarwiththecourseworksincetheywereallironhackgraduatesaswellitwasextremelyhelpfulhavingdedicatedtaswhowereformerstudentshelpingusbecausetheyknowthestrugglesotheystrongwantstrongtohelptheresmorethanenoughhelptogoaroundjustmakesuretostrongaskstrongforitwhenyouneeditandyouwontfallbehindppthecourseworkdefinitelyneededsometweakingonsomedaysourinstructornickpushedasidewhathefeltwaswrongandobsoleteandtaughtitthebestwayhecouldanditdefinitelyworkedoutduringthecoursethiswasoneofmytopissuesthecurriculumforsureneededanupdatebutfromwhatihaveseenaftermytimetheretheyareoralreadyhavetakenthestepsnecessarytodosowhichmeanstheytakeyourfeedbackseriouslyandwontbrushyourinputasideppstrongrestofironhackstaffstrongppsincethefirstdayiappliedandevennowthestaffatironhackhasntmissedabeattheyhavebeenhelpfulandthereformewithanyquestionsihadtheyhaveanideaastowhattheywanttodowiththecourseandtheydefinitelymakesurethatyoureceivethebestexperiencepossibleitdoesntmatterwhoyoutrytocontacttheownerdowntothetastheyallrespondhappilyandmakeyoufeellikeoneofthemppstronghiringfairprepstrongppfromthefirstweekatironhackyoubecomewellacquaintedwithamannamedbritotakehisadviceseriouslyifyourgoalisgettingajobhewalksyouthroughallthenecessarystepstoprepareyousuchasbuildingyourresumecreatingyourlinkedinandletsyouknowaboutnetworkingeventstoattendheconstantlybringsinpeopletogivespeechestoyouweeklybritoisagreatsourceforhelpandinformationsomakesureyouareconstantlycheckinginwithhimalongwithallthisprepworkyouarealsocreatingyourportfolioduringthecourseyoucreate3projectsonyourownorinasmallgroupwhichshowcaseeverythingyouvelearnedinthecoursefrombeginningtoendandisthefirststeptothebuildingofyourportfolioppstronghiringfaireventstrongppattheendofthecoursebritoarrangescompaniestocometoironhackandsitdownwithyouforinterviewsthisisavaluableintroductionforyourfirstinterviewseventuallyyouwillbeoffdoinginterviewsonyourownandthishiringfairisagreatwaytoevaluatewhatyoudidanddidntdosothatultimatelyyoubecomemoreandmorecomfortableduringthemstillthatdoesntmeanyoushouldnttaketheseinterviewsatthehiringfairseriouslydefinitelycomepreparedtonailthemduringtheeventpeoplestrongdostronggethiredoutofthesethisiswhatyouprepareforandithelpstoprepareforfutureinterviewsppstrongpostironhackexperiencestrongppafterironhackfindingajobifthatiswhatyouarethereforisthenextbattlebritoistherewithyoueverystepofthewayheholdsplacementshelpmeetingsatironhackeveryotherweekandisalwaysavailableforanyquestionsyouhaveheguidesyouandremindsyouthatyoumuststrongkeepcodingstrongandstrongkeepapplyingstrongifyouslackoffonthosetwostepsthejobhuntinstantlybecomesmuchhardertakeyourlinkedinnetworkingandresumeseriouslydolittleprojectsonyourownafterthecohortandmakesureyourjavascriptknowledgeisfreshbydoingcodingchallengesonhackerrankcodewarsbecausetheywillhelpwiththetechnicalinterviewsppididnotgethiredimmediatelyafterironhackiappliedtoaround300jobsandonlygotabouttwohandfulsofphoneinterviewsandinpersoninterviewsigothired3andahalfmonthsafterineverstoppedcodingineverstoppedapplyingandialwayskeptintouchwithbritothisprocessinitselfcouldfeelmorestressfulthanthebootcampbutdonotquitppstrongconclusionstrongppyesyoulearnalotatironhackandaregivengreatguidancebutnotheywillnothandyouajobyougeteverythingyouneedfromthemandnowitsuptoyoutoputintheworkandlandittheyaretherewithyoueverystepofthewayiwould100doitagainiputmylifeonholdinvestedinmyselfpushedthroughandchangedmycareerintosomethingifeltwouldbemorefulfillingsofarithasntdisappointedonebitnotonlydoyoulearnalotatironhackbutyoumaketonsoffriendsandbecomepartoftheirgreatcommunitypdivdivspanifyouhaveanyquestionsfeelfreetomessagemeonlinkedinandiwillgladlyanswerthemforyouspandivdivdivdivdivdivdivdivdivdivdivpclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid15837dataremotetruedatamethodposthrefreviews15837votesthisreviewishelpfulspanclasshelpfulcount4spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20ironhack20experience2020full20time20web20dev207c20id3a2015837flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview15757datadeeplinktargetreview_15757datareviewid15757hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review15757reviewsreview15757idreview_15757awesomelearningexperienceabrdivclassreviewdate9232018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltalexanderteodormaziluuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqeuue2gds42wwprofiledisplayphotoshrink_100_1000e1543449600ampvbetaamptmi4sex_czdgkec3dqgvm9wqiyopwwgvk7rwu19fbagdivspanclassreviewernamealexanderteodormaziluspanspanspanspanspanspanclasshiddenxsspanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincominalexmaziluverifiedvialinkedinaspandivdivclassratingsspanclasshiddenawesomelearningexperiencespandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepirecentlycompletedtheparttimewebdevelopmentcourseandihighlyrecommendittoanyonelookingtoexpandtheirskillsortechnologicalknowledgebaseihadanallaroundwonderfullearningexperienceyoudontneedtohavemuchcomputerknowledgegoingintoitbecauseeachclasshasmultipleteachingassistantswhowillbetheretohelpifyoufallbehindorarestrugglingtokeepupmyclasshad3exceptionaltasmanuelcolbyandadrianwhoconstantlywereabletoprovideassistancewheniranintotroublehadbugsorjustgotlosttheywerealwaysnicepatientandwillingtogotheextramilejusttomakesureireallyunderstooddeeplywhatwewerelearningincludingcominginextraearlyontheweekendsandspendingoneononetimewithmeinfrontofthewhiteboardtogoovereachaspectofwhatwewerelearningindetailiwasreallyimpressedwithandgratefulforeachofthembrbriwasalsoveryimpressedwiththeprofessoralanheisanextremelyknowledgeablepersonwithanaturalaptitudeforteachingalwayspatientcourteousandwelcomingofquestionsfeedbackandtakingtimetoaskusifweallunderstoodorwererunningintoanyproblemswhatreallyimpressedmemostaboutalanishowhewouldtakealittlebitoftimeatthestartofeachclasstogobeyondthecurriculumandtochallengeuswithcomputersciencecodingchallengestoprepareustothinklikecomputerscientistsandgetusreadyforthetypesofquestionswewouldlikelyseeinacodinginterviewandexplainthedifferentwaystoapproachtheproblemsandhowtothinkaboutthemintermsoftimecomplexityormemorymanagementitwaswellbeyondwhatiexpectedfromawebdevelopmentcourseandifoundtheselessonsparticularlyrewardingalanhasaknackforbreakingdowncomplexandabstractconceptsintodigestiblebitsandgettingtheclasscomfortableenoughtotryandcollectivelyattemptasolutionprotipalwaysvolunteertotryandsolvetheproblemshepresentsinoticedthestudentsbraveenoughtoattempttheseproblemsretainedinformationbetterandwalkedawaywithamoresolidunderstandingifhegivesyouthemarkergetupthereandgiveityourbesteffortgohomeandresearchtheconceptsfurtherjustdoitgetawhiteboardforyourhouseandwriteimportantconceptsobjectivesgoalsandproblemexamplesfromclassthiswillforceyourbraintoreconcilethisnewinformationonadailybasisyouwillalmostcertainlyseethesetypesofcodingchallengesinjobinterviewsandtheyreabstractandfrustratingifyouarenotpreparedbrbraftergraduationyoullbecounseledbybritoyourcareercounselorwhoisalsoaverycooldowntoearthandknowledgeablepersonhehassomerealwisdomtoshareabouttheinterviewingprocesshowtoconstructyourresumeandspecificallytellsyoutoreachouttohimbeforeacceptinganyjoboffersiamreallyimpressedwithhisinsightandwillingnesstobesupportivehelpfulandmakesureyoulandagoodstartingjobwellaftergraduationbrbrlookingbackiamextremelythankfultoironhackandhumbledtohavehadtheopportunitytostudywithsuchanawesomeclasseveryonefrommyclassmatestotheteacherstotheteachersassistantstothecareercounselorhaveallbeenanabsolutepleasuretodealwithbrbralsoiwasblownawaybytheuxuistudentswethewebdevclassgotachancetoworkwiththeminthehackathonwhichwasatotallyawesomeexperienceandtheywereveryimpressiveilegitimatelywishicouldgotaketheirclassaswellbecausetheyabsolutelyblewmymindwiththeirsystematicmethodologycreativityandorganizedthoughtprocessestheywereamazingilovedworkingwiththembrbrsotowrapitupiwholeheartedlyrecommendedironhackswebdevelopmentcourse110activelyparticipateaskquestionsbeengagedhelpclassmateskeepapositiveattitudeandthisbootcampwillbealifechangingeventforyouasithasbeenformebrppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid15757dataremotetruedatamethodposthrefreviews15757votesthisreviewishelpfulspanclasshelpfulcount2spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20awesome20learning20experience21207c20id3a2015757flagasinappropriateapdivdivdivdivdivdivdivsectiondividpaginatornavclasspaginationspanclasspagecurrent1spanspanclasspageaclassparamifydataremotetruehrefschoolsironhackpage2reviews2aspanspanclasspageaclassparamifydataremotetruehrefschoolsironhackpage3reviews3aspanspanclasspageaclassparamifydataremotetruehrefschoolsironhackpage4reviews4aspanspanclasspageaclassparamifydataremotetruehrefschoolsironhackpage5reviews5aspanspanclasspagegaphellipspanspanclassnextaclassparamifydataremotetruehrefschoolsironhackpage2reviewsnextrsaquoaspanspanclasslastadataremotetruehrefschoolsironhackpage24reviewslastraquoaspannavdivdivdivdivdivdivclasspanelwrapperdatadeeplinkpathnewsdatatabnews_tabidnewsdivclasspanelpaneldefaultpanelcontentdivclasspanelheadingcollapsedvisiblexsdatadeeplinktargetnewsdatatargetnewscollapsedatatogglecollapseidnewscollapseheadingh4classpaneltitlenewsh4divdivclasspanelcollapsecollapseinidnewscollapsedivclasspanelbodyh2classhiddenxsnewsh2sectionh4ourlatestonironhackh4ulidpostsliclasspostdatadeeplinkpathnewsparttimecodingbootcampswebinardatadeeplinktargetpost_1059idpost_1059h2ahrefblogparttimecodingbootcampswebinarwebinarchoosingaparttimecodingbootcampah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan962018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsnewyorkcodedesignacademynewyorkcodedesignacademyaaclassbtnbtninversehrefschoolsfullstackacademyfullstackacademyappstrongdidyouwanttoswitchcareersintotechbutnotsureifyoucanquityourjobandlearntocodeatafulltimestrongstrongbootcampstrongstronginthishourlongwebinarwetalkedwithapanelofparttimestrongstrongbootcampstrongstrongalumnifromfullstackacademyironhackandnewyorkcodedesignacademytohearhowtheybalancedothercommitmentswithlearningtocodeplustheyansweredtonsofaudiencequestionsrewatchitherestrongppiframeheight507srchttpswwwyoutubecomembednv6apa8vthawidth902iframepahrefblogparttimecodingbootcampswebinarcontinuereadingrarraliliclasspostdatadeeplinkpathnewsdafnebecameadeveloperinbarcelonaafterironhackdatadeeplinktargetpost_1056idpost_1056h2ahrefschoolsironhacknewsdafnebecameadeveloperinbarcelonaafterironhackhowdafnebecameadeveloperinbarcelonaafterironhackah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan8132018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4685s1200dafnedeveloperinbarcelonaafterironhackpngppstrongafterlivingallovertheworldanddippinghertoesingraphicdesignfinanceandentrepreneurshipdafneolcawaslookingforacareerwhereshewouldalwayskeeplearningsheeventuallytriedafreecodingcourseloveditanddecidedtoenrollinahrefhttpswwwironhackcomencourseswebdevelopmentbootcamputm_mediumsponsoredcontentamputm_sourcecoursereportamputm_campaignwebdevbootcampbcnamputm_contentalumnispotlightrelfollowtarget_blankironhackswebdevelopmentbootcampainbarcelonaspaintaughtinenglishdafnetellsushowlearningtocodewasbothverydifficultandverysatisfyinghowsupportiveahrefhttpswwwcoursereportcomschoolsironhackrelfollowironhackawasandstillisforhercareerandhowmuchsheisenjoyingbeingafrontenddeveloperinhernewjobatstrongstrongeverisstrongstrongaeuropeanconsultingfirmstrongppstrongqampastrongppstrongwhatsyourcareerandeducationbackgroundhowdidyourpathleadtoabootcampstrongppmycareerpathhasbeenverydiversesofarimoriginallyfromaustriaandididabachelorsdegreeinmultimediainlondonandhonoluluwiththeaimofworkingingraphicdesignandvideoproductionbutifoundthejobopportunitieswerenotthekindofjobsiimaginedthemtobethenididanmbainviennaandsandiegotoincreasemycareeroptionsandendedupinfinanceinbarcelonappafterthreeyearsigotboredwithfinanceandwantedtofigureoutwhattodowithmylifeihadalwaysbeeninterestedintechnologyandworkedforawhileonafamilybusinessfocusedontheinternetofthingsienjoyedresearchingtechnologiesphilosophicalaspectsofthebusinessandlookingatthedirectioninwhichtheworldisheadingppieventuallycameacrossfreecodecampandenjoyeditalotmyfriendswhoworkinwebdevelopmenttoldmeifibecameawebdeveloperiwouldbelearningfortherestofmylifeatfirstthatsoundedintimidatingbutitmademerealizethatsexactlywhatiwanttodowithmylifeitsawaytomakesureiwontgetboredicankeeplearningandgettingbetteratwhatidoitgoeshandinhandwithmypersonalitybecauseilovetolearnanddonewthingsithinkthatswhywebdevelopmentistherightchoiceformeppstrongyouvestrongstrongtraveledstrongstrongalotwhatmadeyouchooseironhackinbarcelonaratherthananotherbootcampinstrongstrongadifferentstrongstrongcitygoingbacktocollegeorteachingyourselfstrongppiconsideredteachingmyselfbutgoingtouniversitywasntanoptionitwasbetweenteachingmyselfandgoingtothebootcampasabeginnerthebestwaytochangecareerswastogofullonandbearoundprofessionalstheteachersatironhackareverytalentedandareprofessionalswhohavebeeninthefieldforalongtimeppimovedtobarcelonathreeyearsagoandfellinlovewiththecitysoitwascleartomethatiwantedtodoabootcamphereitalkedtopeopleaboutthebesttechnologiesandlanguagestolearnandeveryoneconfirmedthatironhackhadthebestfullstackjavascriptcurriculumbarcelonahasagoodtechatmosphereandagrowingstartupsceneideventuallyliketohavetheflexibilitytoworkremotelyandithinkthatbarcelonawillallowthatppalsothecourseididwastaughtinenglishinbarcelonaironhackoffersonefulltimecohortinenglishandonefulltimecohortandoneparttimecohortinspanishppstrongwhatwastheironhackapplicationandinterviewprocesslikeforyoustrongppthefirstpartwasapersonalityinterviewtoseeifyourereallygenuinelyinterestedindoingthecourseandpursuingacareerinwebdevelopmentafterpassingthatfirstinterviewiwasgivensomeverybasiccodingexercisesafterthoseexercisesihadatechnicalinterviewwithateacherassistantwhichipassedbeforegettingacceptedintoironhackppstrongwhatwasthelearningexperiencelikeatironhackwhatwastheteachingstylestrongppihavetobehonestitwasveryverytoughformethiswasthefirsttimeihaddoneacourseinwebdevelopmentironhackwassplitintothreemodulesfirstwehadthebasicfrontendmodulewhichwasprettydoablethesecondmodulewasbackendwhichformewasverydifficultthenthefinalmodulewasbackendwiththeangularframeworkwhichwasalsodemandingppthehourswereveryintenseofficiallythehoursare9amto6pmlikeafulltimejobbutidontremembermanydayswhenweactuallyfinishedat6ifyoureatironhackthenitsinyourbestinteresttogetasmuchoutoftheprogramasyoucanpptheteachingwasalsoquiteintenseim30nowsoihadbeenoutofschoolformanyyearsandgoingbacktolectureswasalotmoredemandingthanithoughtitwouldbebutasintenseasitwasitwasalsoverysatisfyingyourcharacterreallyshowswhenyourelearningwebdevelopmentyouhavetodealwithdailyfrustrationsandalotofchallengesbutovercomingthosechallengesisreallyrewardingppstrongwhatwasyourcohortlikestrongppironhackwasoneofthemostdiverseexperiencesiveeverhadsomeofmyclassmateswere18andhadcomestraightoutofhighschoolandtheoldestguywasinhislate40stheaveragepersonwassomebodywhohaddecidedtochangetheircareerppwewereveryinternationaltherewerearound22studentsinmyclassfourofthosestudentswerespanishandtherestofthemwerefromallovertheworldincludingeuropeansandlatinamericansppstrongwhatwasyourfavoriteprojectthatyoubuiltatironhackstrongppmyfavoriteprojectwasmyfirstprojecticreatedagameofblackjackwithfrontendjavascriptsinceitwasmyfirstprojectifeltlikeihadaccomplishedsomethingthatineverinmylifethoughticouldhaveaccomplishedofcoursewegothelpfromtheteachersbutitsquiteimpressivetoseewhatyouyourselfarecapableofdoingbeforewestartedtheprojectiwascluelessihonestlyhadnoideawhatiwasgoingtodohowiwasgoingtodoitandididntbelieveicoulddoitbutaftercompletingtheprojectitwasreallyimpressivetoseewhaticouldgetmyselftodoppstronghowdidironhackprepareyouforjobhuntingstrongppwheniwasresearchingbootcampsitwasreallyimportantformetobeabletolandajobassoonaspossibleandironhackprettymuchguaranteesthatalmostallalumniwhowanttofindworkwillfindworkinthefieldrightafterbootcampwehadahiringdaywheremorethan20recruitersfromtechcompaniescametothecampustoseeourworkitwasaquickinterviewwhereweshowthemourprojecttheyaskquestionstheygettoknowusandwegettoknowthecompaniesppsoniamycareersadviserwasalwaysgettingintouchwithcompaniesandgettingmyinputaboutwhatidliketodoontopofthatithoughtitwasamazingthatafterilandedajobandneededsomeguidanceoneofthetasstillgavemeadviceandinputevennowifeellikeicangobacktoironhackandgetsupportanytimeineedititrynottomilkitbuttheyarejustsohelpfulandsocaringppstrongsoyouvebeenworkingatstrongstrongeverisstrongstrongfor7monthsnowcongratshowdidyoufindthejobstrongppeverisdidcometoironhackforthehiringdaybutididntgetachancetotalktothembecausethereweresomanycompaniestheresothenextdayicontactedthemandtoldthemihadmissedthembutiwantedtogettoknowthemiwasquiteactiveaboutreachingouttocompaniestheyrepliedimmediatelyiwentintotheofficethatsamedayforaninterviewwithintwoweekstheycalledmeinforasecondinterviewandshortlyafterthatireceivedanofferiwasexhaustedaftergraduatingfromironhacksoitookamonthoffovertheholidaysbutaboutamonthintomyjobsearchiwasworkingateverisppstrongcanyoutellmeabouteverisandwhatyouworkontherestrongppahrefhttpswwweveriscomglobalenrelfollowtarget_blankeverisaisaconsultancysoweworkonprojectswithdifferentclientsimajuniorfrontenddeveloperandiworkwithangularandtypescriptitsapurelyfrontendjobwhichiswhatiwantedppimonmysecondprojectsinceistartedateveristhefirstprojectwasawebapptohelporganizationsapplyforgovernmentalloansitwasaverysmallglobalteamtwopeopleinbarcelonatwopeopleinzaragozaspainandtheprojectmanagerwasbasedinbrusselsbelgiumformycurrentprojecttherearefourofusandwereallbasedinbarcelonaexceptfortheprojectmanagerwhoisbasedinzaragozappitsahugecompanyithinkthereareabout3000peopleinbarcelonaandtheyhavebranchesaroundtheworldthecompanyisverydiverseandtheteamsareverydiverseaswelltheyhaveanemphasisonhiringverygenderbalancedteamswhichisniceeverisisdefinitelymoregenderbalancedthanothercompaniesppstrongareyouusingthetechnologiesandprogramminglanguagesateveristhatyoulearnedatironhackstrongppimworkinginangularwhichisaframeworkwecoveredinthethirdmoduleofironhacktherearealwaysnewthingstolearninangularbecauseangularisquitecomplexandalwaysevolvingsoihaventlearnedanynewlanguagesorframeworksbutihadtolearnmoreaboutangularonthejobppironhackprovideduswiththetoolstobeabletoteachourselvesnewtechnologiesmoreeasilyinthefutureiwillinevitablyneedtolearnmorelanguagesandframeworksbutnowihavetherighttoolstobeabletoteachmyselfalotmoreeasilythanbeforethebootcampppstrongsinceyoujoinedeverishowdoyoufeelyouvegrownasafrontenddeveloperstrongppin6monthsifeellikeivebecomealotmoreindependentandimlessafraidoftouchingthecodeinadditionivedevelopedapassionforproblemsasweirdasthatsoundsienjoyrunningintoproblemsbecauseienjoysolvingthemitsveryfulfillinghonestlyithinkironhackisthebestdecisionivemadeinmylifeintermsofacademiaandcareerdevelopmentihaventregretteditonceppstronghowhasyourbackgroundingraphicdesignfinanceandentrepreneurshipbeenusefulinyournewjobasafrontenddeveloperstrongppgraphicdesignisverymuchabouttrendsanditsbeenalongtimesinceistudieditwhiletherearesomeaspectsofdesignthatstillapplyalothaschangedateveriswhenwegetanewprojectalotofthedesignisgivenbytheclientmyjobismoreaboutimplementingthelogicandfunctionsratherthanthedesignitselfppmyexperienceworkinginfinancehasdefinitelybeenusefulateverishavingexperienceinahugecorporationdefinitelyhelpsyouworkwithotherpeopleandclientsinaprofessionalenvironmentppstrongwhatsbeenthebiggestchallengeorroadblockinyourjourneytobecomingafrontenddeveloperstrongppsometimesyoucangetstuckonaproblemforareallylongtimeandyoustarthavingtodealwithyourownfrustrationsthemoreyougetfrustratedthemoreyoublockyourbrainandthelessyoucanreallythinklogicallythatsachallengethativehadtolearntodealwithandimreallylearninghowtobecalmandpatientiwasntapatientpersonbeforeandimnowreallyseeingtheresultsofpatienceppstrongitsoundslikeironhackhasstayedinvolvedinyourcareerhaveyoukeptintouchwithotheralumnistrongppiwasjustatironhacklastweekactuallyandimgoingagainsoonalotofpeoplefrommycohorthaveleftbutivegottentoknowpeoplefromthecohortsbeforeandaftermineandwevebecomequitetightitsaverystrongcommunitywheneverironhackhostseventsiprioritizethemitsaverygoodatmosphereandagreatnetworkandeverytimeigothereifeellikeimathomeppstrongwhatadvicedoyouhaveforpeoplemakingacareerchangethroughacodingbootcampstrongppjustdoitmybestadviceistostaycalmandbeawarethatyouregoingtoreachyourmentallimitsyouregoingtohaveahardtimebutitsreallyworthitanditsveryrewardingtherearegoingtobetimeswhenyoullwanttofeelverystupiddontifyoucanbeamasterofyouremotionsthenyouhaveagoodpathaheadppstrongfindoutmoreandreadahrefhttpswwwcoursereportcomschoolsironhackrelfollowironhackreviewsaoncoursereportcheckouttheahrefhttpswwwironhackcomencourseswebdevelopmentbootcamputm_mediumsponsoredcontentamputm_sourcecoursereportamputm_campaignwebdevbootcampbcnamputm_contentalumnispotlightrelfollowtarget_blankironhackawebsitestrongpdivclassauthorbiobootstraph4abouttheauthorh4imgclassimgroundedpullleftsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files1586s300imogencrispeheadshotjpgalthttpscourse_report_productions3amazonawscomrichrich_filesrich_files1586s300imogencrispeheadshotjpglogoppimogenisawriterandcontentproducerwhonbsploveswritingabouttechnologyandeducationnbspherbackgroundisinjournalismwritingfornewspapersandnewswebsitesshegrewupinenglanddubaiandnewzealandandnowlivesinbrooklynnyppdivliliclasspostdatadeeplinkpathnewshowtolandauxuijobinspaindatadeeplinktargetpost_1016idpost_1016h2ahrefbloghowtolandauxuijobinspainhowtolandauxuidesignjobinspainah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan5212018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappahrefhttpswwwcoursereportcomschoolsironhacknewshowtolandauxuijobinspainrelfollowtarget_blankimgaltsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4561originalhowtolandauxuidesignjobspainironhackpngappstrongdemandforuxanduidesignersisnotjustlimitedtosiliconvalleycompaniesallovertheworldarerealizingtheimportanceofsoliduxdesigncitieslikebarcelonaknownforitsarchitecturaldesignarebecomingdigitaldesignhubssofadalponteteachesuxuidesignatahrefhttpswwwcoursereportcomschoolsironhackrelfollowtarget_blankironhackastrongstrongbootcampstrongstronginbarcelonaandhasseenthedemandforuxuidesignersincreaseoverthelast18monthsandasahrefhttpswwwironhackcomencoursesuxuidesignbootcamplearnuxdesignutm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blankironhackasoutcomesmanagerjoanacahnermakessureironhackstudentsaresupportedinfindingtherightcareerpathaftergraduatingtheytelluswhythedesignmarketishotinspainrightnowwhatsortofbackgroundandskillsuxuidesignersneedandtipsforfindingauxuidesignjobstrongpahrefbloghowtolandauxuijobinspaincontinuereadingrarraliliclasspostdatadeeplinkpathnewscampusspotlightironhackberlindatadeeplinktargetpost_983idpost_983h2ahrefschoolsironhacknewscampusspotlightironhackberlincampusspotlightironhackberlinah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan3122018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappahrefhttpswwwcoursereportcomschoolsironhacknewscampusspotlightironhackberlinrelfollowtarget_blankimgaltcampusspotlightironhackberlinsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4430s1200ironhackberlincampusspotlightpngappstrongberlinisprovingtobeanincredibletechecosystemwithcampusesinmiamimadridparismexicoandbarcelonaahrefhttpswwwcoursereportcomschoolsironhackrelfollowtarget_blankironhackaislaunchingtheirwebdevelopmentstrongstrongbootcampstrongstronginberlingermanyin2018totakeadvantageofthegrowingtechscenewespokewithahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blankironhackasemeaexpansionleadalvarorojasabouttheberlincampusataweworkspacehowironhackisrecruitinglotsoflocalhiringpartnersandwhatsortofjobsironhackgraduatescanexpecttogetinberlinplusasanironhackgradhimselfalvarogivesadviceonwheretostartasanewcoderstrongph3strongqampastrongh3pstrongwhatsyourbackgroundandhowdidyougetinvolvedwithironhackstrongppmybackgroundisinstrategyconsultingistudiedbusinessinlondonandtheniworkedinstrategicconsultingfortechstartupsinspainandcaliforniaiworkedfortheembassyofspaininlosangelesforalittlewhileandthenilaunchedmyownventurethereppimactuallyanironhackgraduateworkinginthetechindustryihadalwaysbeeninterestedinlearninghowtocodesoididsomeresearchonlineandifoundironhackigraduatedfromironhackaroundayearandahalfagoppifellinlovewiththecompanysmissionandthecommunitytheywerecreatingyouhearsomereallyincrediblestorieswhenyoureworkingwithpeoplefromsuchdiversebackgroundsaftergraduatingikeptintouchwithahrefhttpswwwlinkedincomingonzalomanriquerelfollowtarget_blankgonzalomanriqueaoneofthecofounderssowhentheydecidedtoexpandineuropehecontactedmeabouttheemeaeuropemiddleeasternandafricaexpansionleadpositionitwasanobrainerformeppstrongdidyouattendironhacktobecomeadeveloperordidyoujustwanttopickupcodingskillsstrongppiwantedtopickupcodingskillsithinkeverybodyinthefutureshouldbecomeliterateinsomekindofcodinglanguageevenifyourenotplanningonworkingasadevelopermostjobsinthefuturewillrequireabasicknowledgeofprogrammingandiwantedtostayaheadofthecurveifyouworkintechunderstandinghowsoftwareisbuiltisamustregardlessofyourpositioneventuallymachineswilldominatetheworldandyoullhavetospeaktheirlanguageppstrongyouhavethisuniqueperspectiveofactuallybeingastudentbeforeworkingasstaffatironhackstrongppabsolutelyitseasierformetoexplainthebenefitsbehindironhackbecauseivelivedthroughthewholeexperienceitsreallygreatwhenwedoeventsandprospectivestudentsaskmeaboutironhackthefirstthingitellthemislookimanalumiwentthroughthewholeexperienceicantellyoueverythingyouneedtoknowandeverythingyoullgothroughitwasdefinitelyoneofthemostchallengingandrewardingtimesinmylifeppstrongtellusaboutyourroleatironhackstrongppthefirststepwhenistartedwasworkingwiththecofoundersandthevpofopsampexpansionalexberrichetomakeastrategyplanforeuropewehadvariouscitiesinmindanddecidedtotakeastructuredapproachandrankthemaccordingtofactorsweknowtobedeterminantsforsuccesswefinallydecidedberlinwasclearlythenextstepforusppafterdecidingonacityimovetheretoseteverythinguptherearetwomainareasimresponsibleforthefirstisoperationsamphrsettingupthelegalentityforironhacksnewcampussecuringfinancingforourstudentsetcandgettingtogetheradreamteamtorunthecampusppthesecondkeyareaismarketingwetailorourstrategytoeachmarketitsallaboutunderstandingthedifferentcustomersegmentsandbuildingbrandawarenessoncepeopleunderstandourvaluepropositiontheyrealwaysconvincedwefocusstronglyonpartneringupwithcoolcompaniesliken26ormoberriesanddoingfreeworkshopsandeventsforprospectivestudentsitsallaboutgettingpeopleexcitedaboutlearningnewdigitalskillsppourfirstcohortinberlinlaunchesmay212018ppstrongwhatstoodoutaboutberlingermanywhyisthiscityagreatplaceforironhacktohaveacampusstrongppironhackalreadyhascampusesineuropemadridbarcelonaandparissowewanttocontinuetobepresentinthestrongesttechecosystemsandberlinisprovingtobeanincredibletechecosystemberlinishometothesinglelargestsoftwaremarketineuropethatsaroundaquarteroftheeuropeanmarketbyvaluewhichisprettycrazytherearearound2000to2500activetechstartupshereincludingsomereallydisruptivecompaniesthetechecosystemisboomingandthecityhastheabilitytoattractandretaintalentedpeoplelikenootherplacepeopleareflockingtoberlinbecausetheylikelivinghereandtheresplentyofjobopportunitiesppalsotheitjobsmarketingermanyhasagrowingdigitalskillsgaptherearealotofnewstartupsthatdemanddevelopersanddesignersalongwithtraditionaloldercompanieswhoaregoingthroughadigitalizationprocessahrefhttpswwwmckinseydefiles131007_pm_berlin_builds_businessespdfrelfollowtarget_blankmckinseyreleasedastudyasayingtherewouldbe100000digitaljobsinberlinby2020sothatwasbigdatapointforusppstrongsincestudentscangotouniversityforfreeinberlinwhywouldtheywanttopaytogotoironhackstrongppcompaniesaredemandingmorepeoplewithdigitalskillsandfouryearuniversitiesjustcantcatertothatmarketironhackbelievesuniversitiesregardlessofwhethertheyareprivateorpublicarefailingtoadapttothedigitalrevolutiontheuniversityapproachhasntchangedin100yearsandgettingajobinthisdayandagerequiresadifferentupdatedapproachppironhackprovideshighimpactcondensededucationalexperienceswithoneobjectiveinmindgettingstudentsfromzerotojobreadyinthreemonthsbecauseofthiswebelievetherewillalwaysbeagapinthemarketwherewecanprovidevalueregardlessweareworkinghardtomakeiteasierforstudentstohaveaccesstoourprogramsbyprovidingfinancingoptionsthroughbothprivateandpublicchannelsppstrongwhatwillmakeironhackstandoutamongstthecompetitioninberlinstrongppwearelaserfocusedononeobjectiveenablingstudentstosecureajobwithinthreemonthsaftergraduationppsohowdoweachievethatwellfirstwemakeourstudentsemployableweconstantlyupdateourcurriculumtoensureweteachthelatesttechnologiesthatemployersactuallydemandandwehireprofessionalinstructorswithrealworldexperiencetoteachthemweprovidecareerguidanceandsupportthroughoutthewholeprogramandstudentsarepreparedfortechnicalinterviewsbehavioralinterviewsetcwebelieveinlearningbydoingsostudentscomeoutwiththreeprojectstoshowtotheworldoncetheyvegraduatedppwealsofocusongivingourstudentsaccesstothoseopportunitiesbysecuringhiringpartnersandorganizingacareerweekwherestudentsgettomeetprospectiveemployersattheendofeachcohortppstrongwhattypesofapplicantsareyoulookingtoenrollintheberlincampusstrongppwerelookingforcareerchangerstherearesomanytalentedpeopleinberlinwhohavemovedherelookingforopportunitiesironhackgivesyouthepossibilitytospecializeandlandajobinthreemonthswecatertoanyonewhorealizestheimportanceoflearningnewdigitalskillsandhasapassiontolearnppstronghowmanystudentsdoesironhackplantoaccommodateattheberlincampusstrongppweregoingtohavethreecohortsin2018thefirstonestartsinmaythesecondoneinjulyandthethirdoneinoctoberforthefirstcohortwerelookingatabout20studentswedontliketohavecohortsmuchbiggerthanthatbecausewewanttoguaranteequalitymovingforwardwewilllooktogrowourteamandnumberofcohortsalwaysensuringstudentshavethebestpossibleexperienceppstronghowdoyousourcenewinstructorswhatwillbetheinstructorstudentratiostrongppwehirerealprofessionalswhohaveworkedinthetechindustryourleadinstructorforberlinwasworkingattheironhackpariscampusastheleadinstructorforayearandhewantedtomovetoberlinhesoneofthosepeoplewhohasbeencodinghiswholelifehestartedhisowncompanyandhesworkedintheindustryasaleaddeveloperhehasaveryimpressivebackgroundandhealreadyknowstheironhackbootcampandourcoursesothatsalwaysaplusppatironhackaleadinstructorleadsthewholeprogramandthenwehaveteachingassistantswhoarealsocodingprofessionalsforeveryeightstudentstoprovidesupportandguidestudentsthroughthecourseforexampleinthefirstcohortifwehave20studentswewouldhaveoneleadinstructorandtwoorthreeteachingassistantshavinggonethroughthebootcampmyselfifeeltheteachingassistantsplayanincrediblyimportantrolebecausetheyprovidevaluableassistancethroughoutthewholebootcampppstrongwillthecurriculumatironhackberlinbethesameasotherironhackcampusesstrongppironhackscurrentcurriculumisdividedintothreemodulesfrontendhtmlcssampjavascriptbackendmeanstackandmicroserviceswithangular2apiswearealwayslookingtomakeourcurriculumbetterwewereteachingrubyonrailsbutwedecidedtomoveontoalsosomethingialwaystellprospectivestudentsisthatyoulearnhowtolearnigraduatedfromtherubyonrailscourseandwasabletolearnnodejsonmyownjustthenextmonthppwereincontactwithalotofstartupssowemakesureourcurriculumisexactlywhatemployersneedanddemandwemakeapointtokeepthecurriculumconsistentacrossallcampusesthisallowsustohaveafeedbackloopateverycampusandensureconsistentqualitysowerestickingwiththesamecurriculumineverycampusfornowbutalwayslookingtoiterateandmakeitbetterppstrongtellusabouttheberlincampuswhatistheclassroomlikestrongppaswithmostofournewcampuseswellbelocatedataweworkcoworkingspaceanewbuildingcalledatriumtowerrightonpotsdamerplatzthespaceitselfisabigroomwhichholdsaround40studentswhenwevisitedthespaceaboutamonthandahalfagowefellinlovewiththefacilitiesthecampusisaccessiblefromanywhereintownbecauseofitscentrallocationandithasanincredibleterraceatthetopppwhenyouregoingtobelearningforthreemonthsinanincrediblyintenseprogrambeinginanicespacewithamenitiescoffeesnacksreallyniceviewsissomethingreallyimportantppstrongwhataresomeexamplesofthetypesofjobsyouenvisionyourberlingraduateslandingafterstrongstrongbootcampstrongstrongstrongppwehaveaverystrongreputationworldwidewithaglobalcommunityofalumniandpartnersforexamplewejustsignedupn26amobilebanktobeourhiringpartnerwereintalkswithseveralberlincompaniestosignthemupashiringpartnerstooattheendofeachnineweekcourseweprepareprospectiveemployerstomeetwiththestudentslikeisaidwereveryfocusedoncareerchangersandensuringourstudentsgetajobwithinthreemonthsaftergraduationppinthepastwevehadcompanieslikegoogletwittervisarocketinternetandmagicleaphireironhackgraduatessoinberlinwerelookingforthesameprofilesthoseareglobalcompanieswealreadyhavepartnershipswithsoourstudentsalreadyhaveaccesstothatpoolofemployersthenlocallywearelookingforthemostdisruptivecompaniesthatarereadytohireentryleveljuniordevelopersppstrongdoyouenvisionberlingradsstayinginberlinisyourfocustogetpeoplehiredinthecitywheretheystudiedstrongppwehaveabigfocusonhavingaglobalcommunitysowereallyliketheideathatourstudentscanaccessallthecommunitiesinallourcitiesforexampleirecentlypassedontheresumesoftwograduatesfromthemadriduxuicoursetoberlinbasedn26itsuptoeachgraduatetodecidewhichcitytoworkinppalotofpeoplewanttostayintheirhomecityandothersdontsowecatertobothwetrytogiveopportunitiestogoabroadandoptionstoworkinthelocalmarketppstrongwhatwouldyourecommendacompletebeginnerdotolearnmoreaboutthetechsceneinberlinstrongppiwouldrecommendgoingtoasmanymeetupsandeventsasyoucanialwaystellpeoplethatyouneverknowwhatopportunitiescouldariseifyouputyourselfoutthereandstarttalkingtopeopleweactuallyjustwroteablogpostaboutahrefhttpsmediumcomironhackhowtolandatechjobinberlinbb391a96a2c0relfollowtarget_blankhowtolandthetechjobinberlinaandonepieceofadviceistominglejustnetworkppthenofcourseiwouldrecommendgoingtotheironhackmeetupsthereareabunchofworkshopsinberlinandourinformalnetworkishugeahrefhttpswwwmeetupcomironhackberlinrelfollowtarget_blankweredoingonefreeworkshopeveryweekaandwelldosomebiggereventsaswellppstrongwhatadvicedoyouhaveforsomeonewhosthinkingaboutattendingacodingstrongstrongbootcampstrongstronginberlinandconsideringironhackstrongppformmyexperienceasanalumithinkitsallabouttheattitudewhenyougointoacodingbootcamptheresalwaysthisfeelingwhereyourealittlebitscaredbecauseitissomethingreallydemandingpeoplehaveanaturaltendencytoberesistanttolearnsomethingsotechnicalbutjuststartcodingitsnotasdifficultasitmayseemandhavingtherightguidanceiskeywereactuallylaunchingacoolchallengeinberlinahrefhttpberlincodingchallengecomrelfollowtarget_blankafreeonlinecourseatoencouragepeopletogettheirfeetwetwithcodingppalotmorepeoplethanwebelievehavetheaptitudeforitandactuallybecomereallygoodprogrammersyoujusthavetotakealeapoffaithandcommittothreemonthsofveryintenseworkwehavea90placementrateandwhilewedohavearigorousadmissionsprocessthemajorityofourstudentsgethiredirecommendpeopletojustgoforiticanguaranteethatifyouhavetherightattitudeyoullsucceedppstrongfindoutmoreaboutahrefhttpswwwcoursereportcomschoolsironhackrelfollowtarget_blankironhackabyreadingcoursereportreviewscheckoutahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blanktheironhackwebsiteastrongpdivclassauthorbiobootstraph4abouttheauthorh4imgclassimgroundedpullleftsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpgalthttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpglogopplaurenisacommunicationsandoperationsstrategistwholovestohelpothersfindtheirideaofsuccesssheispassionateabouttechonologyeducationcareerdevelopmentstartupsandtheartsherbackgroundincludescareeryouthdevelopmentpublicaffairsnbspandphilanthropynbspsheisfromrichmondvaandnowcurrentlyresidesinlosangelescappdivliliclasspostdatadeeplinkpathnewsjanuary2018codingbootcampnewspodcastdatadeeplinktargetpost_966idpost_966h2ahrefblogjanuary2018codingbootcampnewspodcastjanuary2018codingbootcampnewspodcastah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan1312018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsrevaturerevatureaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolselewaeducationelewaeducationaaclassbtnbtninversehrefschoolsholbertonschoolholbertonschoolaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolsblocblocaaclassbtnbtninversehrefschoolseditbootcampeditaaclassbtnbtninversehrefschoolsandelaandelaaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsgalvanizegalvanizeaaclassbtnbtninversehrefschoolscodingdojocodingdojoaaclassbtnbtninversehrefschoolsthinkfulthinkfulaaclassbtnbtninversehrefschoolsredacademyredacademyaaclassbtnbtninversehrefschoolsorigincodeacademyorigincodeacademyaaclassbtnbtninversehrefschoolshackbrightacademyhackbrightacademyaaclassbtnbtninversehrefschoolscodercampscodercampsaaclassbtnbtninversehrefschoolsmuktekacademymuktekacademyappiframeheight300srchttpswsoundcloudcomplayerurlhttps3aapisoundcloudcomtracks392107080ampcolor23ff5500ampauto_playfalseamphide_relatedfalseampshow_commentstrueampshow_usertrueampshow_repostsfalseampshow_teasertrueampvisualtruewidth100iframeppstrongwelcometothefirstnewsroundupof2018werealreadyhavingabusy2018wepublishedourlatestoutcomesanddemographicsreportandwereseeingapromisingfocusondiversityintechinjanuarywesawasignificantfundraisingannouncementfromanonlinebootcampwesawjournalistsexploringwhyemployersshouldhirebootcampandapprenticeshipgraduateswereadaboutcommunitycollegesversusbootcampsandhowbootcampsarehelpingtogrowtechecosystemspluswelltalkaboutthenewestcampusesandschoolsonthesceneandourfavoriteblogpostsreadbeloworahrefhttpssoundcloudcomcoursereportepisode23january2018codingbootcampnewsrounduprelfollowtarget_blanklistentothepodcastastrongbrpahrefblogjanuary2018codingbootcampnewspodcastcontinuereadingrarraliliclasspostdatadeeplinkpathnewscampusspotlightironhackmexicocitydatadeeplinktargetpost_945idpost_945h2ahrefschoolsironhacknewscampusspotlightironhackmexicocitycampusspotlightironhackmexicocityah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan1242017spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappahrefhttpswwwcoursereportcomschoolsironhacknewscampusspotlightironhackmexicocityrelfollowtarget_blankimgaltironhackcampusmexicocitysrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4129s1200ironhackcampusmexicocitypngappstrongglobaltechschoolironhackislaunchinganewcampusinmexicocityonjanuary152018wespokewithahrefhttpswwwcoursereportcomschoolsironhackrelfollowtarget_blankironhackasvpofoperationsampexpansionalexandreberrichetolearnaboutthemexicocitytechecosystemandwhythereisagrowingdemandfordevelopersintheareathisschoolusesfeedbackfromtheircampusesaroundtheworldtocontinuallyimprovethecurriculumdiscoverhowahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagerelfollowtarget_blankironhackacanconnectyoutoa1000networkofalumnihelpyouwithjobplacementandgetsometipsforyourapplicationstrongppspanstylefontsize16pxstrongqampastrongspanppstrongwhatsyourbackgroundwhatdrewyoutowanttoworkwithironhackstrongppafterstartingmycareerinprivateequityijoinedjumiaarocketinternetcompanyalsocalledtheafricanamazoniwasheadofoperationsinnorthafricaandthenmanagingdirectoroftunisiaigotintouchwitharielandgonzalothefoundersofironhackandwasreallyinspiredbytheirvisionalsosinceiactuallyattendedacodingbootcampmyselfiwasexcitedtocomeandworkinthisindustryisawthegreatpotentialthebootcampmodelhadineuropeandalsolatinamericaiwaskeentohaveanimpactonpeopleslivessoiwassuperreceptivetoourconversationandworkingwithironhackitwasagreatfitppstrongasthevpofexpansioncanyoudescribeyourrolestrongppasvpofexpansioniworkwiththefounderstocreateastrategyanddecidewhichmarketsmakesenseforustoopeninnexttheniminvolvedwiththeoperationspreparationwhereiactuallylaunchthenewmarketspptherearethreemainareastoconsiderwhenlaunchinginanewmarketthefirstishumanresourceswewanttobuildanawesometeamincludingageneralmanagerweweresuperexcitedtofindagreatgmforourmexicocampusmarketingandbrandawarenessisnumbertwowhenyourelaunchinginanewmarketyouwanttoincreasethebrandawarenessandconvinceyourfirststudentsofthebenefitsofthenewcampusitcanbedifficultinanewmarketbecausewearestartingfromscratchsowehavetoleveragetheuseofmarketingchannelssuchaspublicrelationseventsandpartnershipstointegrateourselvesintothelocalecosystemthethirdareaislegalmakingsurethelegaladministrationiscompletedifyousucceedinthosethreeareasyouarereadytoopeninanymarketppstrongwhatstoodoutaboutmexicocitywhydidironhackchoosetoopenacampustherestrongppweareoneoftheleadersinthecodingbootcampindustrygloballyandwevebeenthinkingaboutopeninginlatinamericaforquitesometimelatinamericaisagreatmarketbecausethereissomuchdemandfortechskillsbutthereisalimitednumberofestablishedbootcampsintheareain2019itisestimatedtherewillbeadeficitof150000itjobsinmexicosowecanhaveagreatimpactonthatwewanttotrainthenewgenerationoftechnologyprofessionalstojointheindustrynotmanyifanybootcampshavecampusesintheuseuropeandinlatinamericasolatinamericawasveryattractivetousppmexicocitywasthepreferredchoicebecauseithasaboomingtechecosystemitsoneofthelargestmarketsforstartupsmexicocityistheentryformanytechcompaniesmovingtolatinamericafacebookamazonandsoonsomanytechmultinationalsaremovingintheecosystemisnotjustboomingitsalsomaturingsignificantlywellasthereareplentyofvcsacceleratorsandcompanybuildersppfinallyitsaprettyfriendlyenvironmentforinternettechnologyandcomputerscienceitsabigmarkettopenetratebutitslessdifficultthansomeothermarketsbecausetherearenoglobalcompetitorsthereareobviouslysomelocalcompetitorswhomwerespectalotbutwearegoingtogivethemexicocityecosystemaccesstoironhacksglobalcommunitywhichisalreadypresentinmiamiparisbarcelonaandmadridwethinkbuildingtieswithinthosemarketswillexcitestudentslearninginmexicocityppstrongthereareonlyafewstrongstrongbootcampsstrongstronginmexicocityhowwillironhackstandoutonceotherstrongstrongbootcampsstrongstrongstarttopopupstrongppironhackwillstandoutbecauseweareglobalwehavealreadylearnedsomuchaboutrunningabootcampbecauseeachmarketweoperateinhasdifferentstandardsanddifferentchallengessobybringingthisexperienceintothemarketweareraisingthecodingbootcampstandardsformexicocityironhackhasgraduated1000studentssowehavealargecommunitywehavealumniworkingforamazongoogleandibmwhichisabigpluswehavegreatreviewsoncoursereportandwehavegreatstudentsatisfactionforourcurriculumoverthefouryearswehavebeenoperatingwehavecontinuedtoimproveourteachingmethodsppstrongwhatistheironhackmexicocitycampuslikestrongppourofficesareattheweworkinsurgentescoworkingspaceanditsamazingtoworkalongsidedifferentmexicocitystartupsandseehowdynamicthespaceisitssuperexcitingwereinthecolonianapoleswhichislikeadistrictofstartupsatweworkwetakeuptworoomsof20x30feeteachwhichholdbetween15to20studentswewillstartwithoneclassandtheneventuallyhavetwoclassesrollingatthesametimeoneuxuidesigncourseandonewebdevelopmentcourseppourobjectiveatironhackisnotquantitativeitsmorequalitativesowearenotgoingtoacceptstudentsiftheydonthavetherequiredtechnicallevelweareselectivewithstudentsandwedontaccepteveryoneppstrongcouldyoudescribetheironhackapplicationprocessisitthesameacrosscampusesstrongppyeswehavetwointerviewsonepersonalinterviewandonetechnicalinterviewyoucanmakeitthroughthetechnicalinterviewevenifyoudonthavetonsofknowledgebutyoumustbeahardworkerifyouprepareyourcaseyoucanmakeitinbutwewanttobeselectiveppbeforethebootcampstartswealsohavepreworkandtheobjectiveistohaveeveryoneatthesameknowledgelevelwhenwestartthecoursepeoplearespendingalotoftimeandmoneytoreallyimprovesothecoursesareveryintensiveforthatreasonppstrongironhackteachesuxuidesignandwebdevelopmentwillyoubeteachingthesamecurriculuminmexicocitystrongppwecollectfeedbackineachmarketandwitheachpieceoffeedbackwereceiveweimproveourcurriculumlittlebylittlewetrustandusethesamecurriculumineverymarketyoucantscaleefficientlyifyouhaveeachmarketdoingdifferentclassesthefeedbackloopsinallthedifferentmarketsallowustohavethebestqualityprogramidontthinkwecouldhavethebestqualityifwemadetoomanyspecificitiesforthevariouscitiesppstronghowmanyinstructorswillyouhaveatthemexicocitycampusstrongppthenumberofinstructorswillgrowasthenumberofstudentsandthenumberofclassesincreaseforinstanceatthepariscampusfourmonthsafterlaunchingwehadseventeachersitwillbethesameformexicosowellstartwithoneinstructorandthenafterafewmonthssevenandafteroneyearmaybe10weregoingtoseehowfastitgrowsppstrongsinceironhackisaglobalstrongstrongbootcampstrongstronghowdoyouhelpwiththejobsearchandplacementwhatsortofjobsdoyouexpectgraduatestogetstrongppwearetryingtobuildpartnershipswithliniotipandmanymexicanstartupswherewecanplaceourstudentscompanieswillbeinvitedtohiringweekattheendofthebootcamptoseewhattypeoftalentweproducewellstartbytargetingcompaniesinmexicocityandthenwellexpandandmakepartnershipswithcompaniesinguadalajaraandmonterreyasasecondstepppmostofourgraduatesbecomejuniordeveloperswehavelessentrepreneursandmorejuniordevelopersironhackfocusesoncareerchangersandtryingtohelpthemtoachievetheirambitionssothatswhywearesofocusedonplacementwithironweekandaplacementmanagerineachmarketppstrongisitprettynormalforgraduatestostayinthecitywheretheystudiedstrongppweareseeinggraduatesstayinthecitywheretheystudiedunlesstheyrecomingfromabroadwehaveafewinternationalstudentsandcurrentlymostofthemgotothebarcelonaandpariscampuseswedontknowaboutmexicocitygraduatesyetbutmostofourapplicationssofararefrommexicowithsomeinternationalapplicantsaswellppstrongifsomeoneisabeginnerandthinkingaboutattendingacodingbootcampinmexicocitylikeironhackdoyouhaveanymeetuporeventsuggestionsstrongppyesironhackisdoingahrefhttpswwwmeetupcomesironhackmexicoevents245056900utm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blankahugefulldayeventatweworkondecember9thaanyonecanattendanditsfreethisisagreatopportunitytolearnabouttechdiscoverthemexicocityecosystemanddecideifyouwanttoapplytoironhackppstrongwhatadvicedoyouhaveforpeoplethinkingaboutattendingacodingbootcamplikeironhackstrongppthefirstthingisitsanamazingcommitmentandifyouareapplyingforgoodreasonsandhavethetechnicalabilityyouwillbeacceptedandgetthebestexperienceitsaonceinalifetimeexperiencetospendnineweekschangingyourcareeryouwilllearnsomuchmeetnewcompaniesandgethiredifyouwanttolearnmoreahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagerelfollowtarget_blankgototheironhackwebsiteadownloadtheapplicationguideandcometosomeeventswehaveameetupgroupandfacebookpageyoucanreadplentyofreviewsoftheschooloncoursereportifyouaresureofyourmotivationsyouareahardworkerandyourecommittedimsureyouwillbeacceptedppstrongdoyouhaveanyadditionalcommentsabouttheironhacksnewmexicocitycampusstrongppweareveryexcitedabouthavinganamazingteamatweworkinmexicocityweareatthecenterofthestartupecosystemsoithinkitwillbeanamazingexperienceforourstudentsppstrongreadahrefhttpswwwcoursereportcomschoolsironhackrelfollowtarget_blankironhackreviewsaoncoursereportandcheckouttheahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagerelfollowtarget_blankironhackwebsiteastrongpdivclassauthorbiobootstraph4abouttheauthorh4imgclassimgroundedpullleftsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpgalthttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpglogopplaurenisacommunicationsandoperationsstrategistwholovestohelpothersfindtheirideaofsuccesssheispassionateabouttechonologyeducationcareerdevelopmentstartupsandtheartsherbackgroundincludescareeryouthdevelopmentpublicaffairsnbspandphilanthropynbspsheisfromrichmondvaandnowcurrentlyresidesinlosangelescappdivliliclasspostdatadeeplinkpathnewsmeetourreviewsweepstakeswinnerluisnagelofironhackdatadeeplinktargetpost_892idpost_892h2ahrefschoolsironhacknewsmeetourreviewsweepstakeswinnerluisnagelofironhackmeetourreviewsweepstakeswinnerluisnagelofironhackah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan892017spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappahrefhttpswwwcoursereportcomschoolsironhacknewsmeetourreviewsweepstakeswinnerluisnagelofironhackrelfollowimgaltironhacksweepstakeswinnerluisnagelsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files3764s1200ironhacksweepstakeswinnerluisnagelpngappstrongthankstostrongstrongbootcampstrongstronggraduateswhoenteredoursweepstakescompetitiontowina500amazongiftcardbyleavingaverifiedreviewoftheirstrongstrongbootcampstrongstrongexperienceoncoursereportthistimeourluckywinnerwasluiswhograduatedfromironhackinmadridthisaprilwecaughtupwithhimtofindoutabitabouthiscodingstrongstrongbootcampstrongstrongexperienceandwhyhedecidedtoattendironhackstrongppstrongwanttobeournextreviewssweepstakeswinnerahrefhttpswwwcoursereportcomwriteareviewrelfollowtarget_blankwriteaverifiedreviewofyourcodingastrongahrefhttpswwwcoursereportcomwriteareviewrelfollowtarget_blankstrongbootcampstrongaahrefhttpswwwcoursereportcomwriteareviewrelfollowtarget_blankstrongexperienceherestrongaph3strongmeetluisstrongh3pstrongwhatwereyouuptobeforeironhackstrongppbeforedoingtheironhacksuxuibootcampihadalongcareerworkingasamarketingandadvertisingdesignerppstrongwhatsyourjobtitletodaystrongppimauxuidesigneratdevialabauxuiandsoftwaredevelopmentconsultingagencymainlyfocusedonstartupsandbasedinmadridwhatmakesdevialabspecialisthatwelauncheveryprojectlikeitwereourownandalsoworkreallyclosewiththeentrepreneurppstrongwhatsyouradvicetosomeoneconsideringironhackoranothercodingstrongstrongbootcampstrongstrongstrongppmyadvicetoanyoneconsideringironhackisdoititisagreatopportunityyouarebringingyourselfitmaybehardsometimesbutyouwillneverregretitppbeforestartingfreeyourmindandyouragendaandbereadyforagreatimmersiveexperienceyouwillgrowasmuchasyourewillingtoandyouwillnotonlylearnbutyouwillalsoexperiencewhatyourjobisgoingtobeandalsoyouwillmeetamazingprofessionalsnetworkingisoneofthebestopportunitiesofferedbyabootcamplikeironhackppstrongcongratsahrefhttpswwwtwittercomluisnagelrelfollowluisatolearnmoreahrefhttpswwwcoursereportcomschoolsthinkfulreviewsrelfollowtarget_blankreadironhackreviewsaoncoursereportorahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagerelfollowtarget_blankvisittheironhackwebsiteastrongppstrongwanttobeournextreviewssweepstakeswinnerahrefhttpswwwcoursereportcomwriteareviewrelfollowtarget_blankleaveaverifiedreviewofyourcodingbootcampexperiencehereastrongpppdivclassauthorbiobootstraph4abouttheauthorh4imgclassimgroundedpullleftsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpgalthttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpglogopplaurenisacommunicationsandoperationsstrategistwholovestohelpothersfindtheirideaofsuccesssheispassionateabouttechonologyeducationcareerdevelopmentstartupsandtheartsherbackgroundincludescareeryouthdevelopmentpublicaffairsnbspandphilanthropynbspsheisfromrichmondvaandnowcurrentlyresidesinlosangelescappdivliliclasspostdatadeeplinkpathnewsjuly2017codingbootcampnewspodcastdatadeeplinktargetpost_888idpost_888h2ahrefblogjuly2017codingbootcampnewspodcastjuly2017codingbootcampnewsrounduppodcastah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan812017spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsgeorgiatechbootcampsgeorgiatechbootcampsaaclassbtnbtninversehrefschoolstheironyardtheironyardaaclassbtnbtninversehrefschoolsdevbootcampdevbootcampaaclassbtnbtninversehrefschoolsupacademyupacademyaaclassbtnbtninversehrefschoolsuscviterbidataanalyticsbootcampuscviterbidataanalyticsbootcampaaclassbtnbtninversehrefschoolscovalencecovalenceaaclassbtnbtninversehrefschoolsdeltavcodeschooldeltavcodeschoolaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolssoutherncareersinstitutesoutherncareersinstituteaaclassbtnbtninversehrefschoolslaunchacademylaunchacademyaaclassbtnbtninversehrefschoolssefactorysefactoryaaclassbtnbtninversehrefschoolswethinkcode_wethinkcode_aaclassbtnbtninversehrefschoolsdevtreeacademydevtreeacademyaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsunitfactoryunitfactoryaaclassbtnbtninversehrefschoolstk2academytk2academyaaclassbtnbtninversehrefschoolsmetismetisaaclassbtnbtninversehrefschoolscodeplatooncodeplatoonaaclassbtnbtninversehrefschoolscodeupcodeupaaclassbtnbtninversehrefschoolscodingdojocodingdojoaaclassbtnbtninversehrefschoolsuniversityofrichmondbootcampsuniversityofrichmondbootcampsaaclassbtnbtninversehrefschoolsthinkfulthinkfulaaclassbtnbtninversehrefschoolsuniversityofminnesotabootcampsuniversityofminnesotabootcampsaaclassbtnbtninversehrefschoolshackbrightacademyhackbrightacademyaaclassbtnbtninversehrefschoolsfullstackacademyfullstackacademyaaclassbtnbtninversehrefschoolsuniversityofmiamibootcampsuniversityofmiamibootcampsappiframeheight100srchttpswsoundcloudcomplayerurlhttps3aapisoundcloudcomtracks335711318ampauto_playfalseamphide_relatedfalseampshow_commentstrueampshow_usertrueampshow_repostsfalseampvisualtruewidth100iframeppstrongneedasummaryofnewsaboutcodingbootcampsfromjuly2017coursereporthasjustwhatyouneedweveputtogetherthemostimportantnewsanddevelopmentsinthisblogpostandpodcastinjulywereadabouttheclosureoftwomajorcodingbootcampswedivedintoanumberofnewindustryreportsweheardsomestudentsuccessstorieswereadaboutnewinvestmentsinbootcampsandwewereexcitedtohearaboutmorediversityinitiativesplusweroundupallthenewcampusesandnewcodingbootcampsaroundtheworldstrongpahrefblogjuly2017codingbootcampnewspodcastcontinuereadingrarraliliclasspostdatadeeplinkpathnewscampusspotlightironhackparisdatadeeplinktargetpost_857idpost_857h2ahrefschoolsironhacknewscampusspotlightironhackpariscampusspotlightironhackparisah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan5262017spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltcampusspotlightironhackparissrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files3440s1200campusspotlightironhackparispngppstrongahrefhttpswwwcoursereportcomschoolsironhackrelfollowtarget_blankironhackaisaglobalwebdevelopmentstrongstrongbootcampstrongstrongwithlocationsinmadridmiamibarcelonaandnowpariswespokewithahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blankironhackasgeneralmanagerforfrancefranoisstrongstrongfillettestrongstrongtolearnmoreabouttheirnewpariscampuslaunchingjune26thfranceisthesecondlargesttechecosystemineuropelearnwhyironhackchosetoexpandtotheareareadhowthestrongstrongbootcampstrongstrongwillstandoutfromtherestandseewhatresourcesareavailabletobecomeasuccessfulstrongstrongbootcampstrongstronggradinparisstrongppstrongfirstasthefrancegeneralmanagertellmehowyouvebeeninvolvedwiththenewironhackcampusstrongppsureasageneralmanagerihavebeeninvolvedinallthedimensionsrelatedtothenewcampusfindinganamazingplaceforourstudentsrecruitingateamofaplayerssettingupthedocsandprocessesandsoonihavebeenworkingwithalexourheadofinternationalexpansionwhohasbeentremendouslyhelpfulwehaveworkedsuperhardoverthelastfewweekstomakesurethatourpariscampuswillbeonthesamestandardsastheothersppstrongwhatsyourbackgroundandhowdidyougetinvolvedwithstrongstrongbootcampsstrongstrongwhatdrewyoutowanttoworkwithironhackstrongppiwascomingbackfromsanfranciscowhereiwasworkingasvpofstrategyandbusinessdevelopmentforahrefhttpswwwcodingamecomstartutm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blankcodingameaoneofmyvcfriendstoldmethatarielandgonzalothecofounderswerelookingforsomeonetolaunchironhackinfranceimetthetwoofthemandimmediatelyembracedtheirvisionandgotimpressedbytheirabilitytoexecutefastandwelligotsuperexcitedbytheprojectandtheteamsoacoupleofdayslateriwasinmiamitoworkonthestrategyandthelaunchplanforfranceitsbeen3monthsnowandhonestlyiveneverbeenhappiertowakeupinthemorningandstartanewdayppstrongironhackislaunchingtheirpariscampusonjune26thwhyisparisagreatplaceforacodingstrongstrongbootcampstrongstrongcouldyouexplainironhacksmotivationtoexpandtherestrongppintermsoffundingfranceisnowthe2ndlargesttechecosystemineuroperightafterenglandoverthelast5yearsithasgrownexponentiallyandisnowoneofthekeytechhubsintheworldtakeahrefhttpsstationfcorelfollowtarget_blankstationfaforinstancethankstoxaviernielcofounderoffreepariswillnowhavethebiggestincubatorintheworldthatgrowthhasfueledanincreasingdemandfornewskillsinthetecheconomyandthetalentshortageisnotfilledbythetraditionaleducationplayerstheresanamazingopportunityforustoexpandhereandwelldoeverythingwecantoreachourtargetsppstrongthereareafewothercodingstrongstrongbootcampsstrongstronginpariswhatwillmakeironhackstandoutamongstthecompetitionstrongppseveralinitiativesandplayershaveappearedoverthelastcoupleofyearswhichshowsyouhowdynamicthemarketisithink3elementswillsetironhackapartfromthecompetitionfirstourcoursesarefocusedonthelatesttechnologiesforexamplefullstackjavascriptforwebdevelopmentandweconstantlyiteratetoimproveboththecontentandtheacademicexperiencethenwededicatealargeshareofthecourse6070tohandsonreallifeapplicationsstudentsworkonrealprojectssubmittedbypartnersorbythemselvesiftheywanttocreatetheirstartupbusinesslastwehelpwiththeplacementofourstudentsiftheyrelookingforajobcoachingfortechnicalandbehavioralinterviewsconnectionstocompaniesstartupseventsetcwehaveanaverageplacementrateof90after3monthsacrossourcampusesppstrongletsdiscussthepariscampuswhatistheclassroomlikewhatneighborhoodisitinstrongppthecampusislocatedinthenewspaceopenedbyweworkitislocatedinthe9tharrondissementneartheparisoperaitisaccessiblevia3metrolines8buslines2bikesharingstationsand2carsharingstationsitwillbeopen247forourstudentspptheplaceisabsolutelymagnificentbothintermsofdesignandcommunitystudentswillenjoyalargeclassroomclosetothepatioandmeetingworkingroomstocompletetheirprojectsandassignmentsppstrongwhatwebdevelopmentanduxuidesigntracksorlanguagesareyouteachingatthiscampusandwhyaretheonesyouvechosenparticularlypopularorrelevantinparisstrongppthecorecurriculumisthesameacrossthedifferentcampusestomakesurestudentshavethesameacademicexperienceandthatwehaveastrongexpertiseinourareathenwetailorthementorstheeventsandtheprojectstothelocalspecificitiesofthestudentsandoftheecosystemsoforwebdevelopmentwellbefocusingonfullstackjavascriptbutwellbeintegratingeventsandmentorsaroundframeworksreallypopularhereexreactormeteorandindustriesthataretherisingtrendsexonlinemediaandentertainmentppstronghowmanyinstructorsandormentorswillyouhaveinparisstrongppwellhavealeadinstructorwhoisaprofessionaldeveloperandhighlyinvolvedintheopensourcecommunityhehasseveralyearsofexperienceinstartupsanditservicesagencieshellbeassistedbyatawhoisabitmorejuniorbutpassionateabouteducationandteachingstudentspluswellhaveanetworkof1520mentorstohelpandcoachstudentsforcodingaswellasformanagementmentorswillbechosenbasedontheprojectsofthestudentsalsothestudentsofthefirstwebdevelopmentsessionwillbesponsoredbyflorianjourdaflorianwasthe1stengineeratboxandscaledtheirdevteamfrom2to300peoplehespent8yearsinthesiliconvalleyandisnowchiefproductofficeratbayesimpactanngofundedbygooglethatusesmachinelearningtosolvesocialproblemslikeunemploymentppstronghowmanystudentsdoyouusuallyhaveinacohorthowmanycanyouaccommodatestrongppforthatfirstcohortweplantohave20studentsmaximumbecausewewanttomakesureweprovidethebestexperiencethatwillensureastrongmonitoringofstudentsaswellasaperfectoperationalexecutiononoursideforthenextcohortswellincreasethenumberofstudentsbutwewontgoabove30andwellrecruit1or2moretastokeepthesamequalityppstrongwhatkindofhourswillstudentsneedtoputintobesuccessfulstrongppstudentsoftenaskthatquestionanditsalwayshardtoanswereverythingdependsontheirlearningcurveonaveragestudentsworkbetween50to70hoursaweekmainlyonprojectsandassignmentsbutwerefullytransparentonthisyoucantlearnrealhardskillsandgetajobin3monthswithoutfullydedicatingyourselfwemakesurethattheatmosphereisasgoodasitcanbesothatstudentswontseetimepassingbyppstronghowisyourcampussimilarordifferenttotheotherironhackcampusesstrongppithinkthatourcampusisprettysimilartomiamiswearelocatedinanamazingcoworkingspaceinaveryniceneighborhoodandwithlotsofstartupsaroundthemaindifferencewouldbeourrooftoponthe8thfloorofthebuildingwhereweregularlyorganizeeventsandlunchesppstronghowareyouapproachingjobplacementinanewcitydoesironhackhaveanemployernetworkalreadystrongppjobplacementisoneoftheelementswetailortothelocalrealitiesandneedswehavealreadypartneredwith20techcompaniessuchasdrivyworldleaderinpeertopeercarrentaljumiatheequivalentofamazoninafricaandmiddleeaststootieeuropeleaderinpeertopeerserviceskimaventuresvcfundofxaviernielwith400portfoliocompaniesetcusuallytheyarelargestartupsfromseriesatoseriesdlookingtohirewebdevelopersasagmitwillbepartofmyjobtosupportandhelpstudentsaccomplishtheirprofessionalprojectswithouremployerpartnersppstrongwhattypesofcompaniesarehiringdevelopersinparisandwhytypesofcompaniesdoyouexpecttohirefromironhackspariscampusstrongppithinkthereare3typesofcompaniesthatcouldhirewebdeveloperswhograduatedfromironhackcorporationsintelecommediatechnologystartupsfromseriesatoseriesdanditservicescompaniesthedemandisreallyintenseforthelasttwooptionsastheyrelookingforpeoplemasteringthelatesttechnologiesinhighvolumesbasedontheenthusiasmtheyveexpressedwhentalkingwithironhackweknowtheyllbegreatrecruitingpartnersppstrongwhatsortofjobshaveyouseengraduatesgetatotherironhackcampusesandwhatdoyouexpectforironhackparisgraduatesdotheyusuallystayinthecityaftergraduationstrongppbasedonthemetricsofothercampusesusually5060ofpeoplejoinastartupasanemployeeajuniorwebdeveloperprojectmanagerorgrowthhacker2030createtheirownstartupafterthecoursewhile2030becomefreelancersusuallyinwebdevelopmentandworkonaremotebasiswellhaveagoodshareofstudentswhoarenotfromfranceoriginallysowethinksomeofthemmightleaveparisafterthecoursebutwellhelpthemfindtherightopportunityabroadandwellkeepconstantinteractionwiththosestudentsppstrongwhatmeetupsorresourceswouldyourecommendforacompletebeginnerinpariswhowantstogetstartedstrongppfrancehassomegreatplayersinthefieldifyouwanttogetanintrotojavascriptiwouldrecommendyouvisitopenclassroomscodecademyorcodecombatthenintermsofmeetupsthefamilyandnumaaretwoacceleratorswithoutstandingweeklyeventssomeofthemarerelatedtoonespecificcodingtopicandtheyreusuallyapprehendedatabeginnerlevelppstronganyfinalthoughtsthatyoudlikeourreaderstoknowaboutironhackparisstrongppwewanttobuildsomethingthatisnothinglikewhatexistsinparisin3monthsyoullbeoperationalinwebdevelopmentyoullmeetawesomepeoplestudentsmentorsentrepreneursandyoullaccomplishyourprofessionalprojectsendusanemailtoknowmoreatahrefmailtoparisironhackcomsubjectim20interested20in20ironhack20parisrelfollowparisironhackcomawehaveafewseatsleftforthesessionstartingonjune26thnextsessionwillstartonseptember4thifyouwanttoapplyjustsendusyourapplicationthroughthisahrefhttpswwwironhackcomenwebdevelopmentbootcampapplyrelfollowtarget_blanktypeformappstrongreadmoreahrefhttpswwwcoursereportcomschoolsironhackreviewsrelfollowtarget_blankironhackreviewsaandbesuretocheckouttheahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blankironhackwebsiteastrongpdivclassauthorbiobootstraph4abouttheauthorh4imgclassimgroundedpullleftsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpgalthttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpglogopplaurenisacommunicationsandoperationsstrategistwholovestohelpothersfindtheirideaofsuccesssheispassionateabouttechonologyeducationcareerdevelopmentstartupsandtheartsherbackgroundincludescareeryouthdevelopmentpublicaffairsnbspandphilanthropynbspsheisfromrichmondvaandnowcurrentlyresidesinlosangelescappdivliliclasspostdatadeeplinkpathnewsepisode13april2017codingbootcampnewsrounduppodcastdatadeeplinktargetpost_841idpost_841h2ahrefblogepisode13april2017codingbootcampnewsrounduppodcastepisode13april2017codingbootcampnewsrounduppodcastah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan7222017spanppclassrelatedschoolsaclassbtnbtninversehrefschoolstheironyardtheironyardaaclassbtnbtninversehrefschoolsdevbootcampdevbootcampaaclassbtnbtninversehrefschoolsgreenfoxacademygreenfoxacademyaaclassbtnbtninversehrefschoolsrevaturerevatureaaclassbtnbtninversehrefschoolsgrandcircusgrandcircusaaclassbtnbtninversehrefschoolsacclaimeducationacclaimeducationaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolsplaycraftingplaycraftingaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsuniversityofarizonabootcampsuniversityofarizonabootcampsaaclassbtnbtninversehrefschoolsgalvanizegalvanizeaaclassbtnbtninversehrefschoolshackreactorhackreactoraaclassbtnbtninversehrefschoolstech901tech901aaclassbtnbtninversehrefschoolsbigskycodeacademybigskycodeacademyaaclassbtnbtninversehrefschoolscodingdojocodingdojoaaclassbtnbtninversehrefschoolsumassamherstcodingbootcampumassamherstcodingbootcampaaclassbtnbtninversehrefschoolsaustincommunitycollegecontinuingeducationaustincommunitycollegecontinuingeducationaaclassbtnbtninversehrefschoolscodechrysaliscodechrysalisaaclassbtnbtninversehrefschoolsdeepdivecodersdeepdivecodingaaclassbtnbtninversehrefschoolsunhcodingbootcampunhcodingbootcampaaclassbtnbtninversehrefschoolsqueenstechacademyqueenstechacademyaaclassbtnbtninversehrefschoolscoderacademycoderacademyaaclassbtnbtninversehrefschoolszipcodewilmingtonzipcodewilmingtonaaclassbtnbtninversehrefschoolsdevacademydevacademyaaclassbtnbtninversehrefschoolscodecodeappiframeheight450srchttpswsoundcloudcomplayerurlhttps3aapisoundcloudcomtracks320348426ampauto_playfalseamphide_relatedfalseampshow_commentstrueampshow_usertrueampshow_repostsfalseampvisualtruewidth100iframeppstrongmissedoutoncodingbootcampnewsinaprilneverfearcoursereportisherewevecollectedeverythinginthishandyblogpostandpodcastthismonthwereadaboutwhyoutcomesreportingisusefulforstudentshowanumberofschoolsareworkingtoboosttheirdiversitywithscholarshipsweheardaboutstudentexperiencesatbootcampplusweaddedabunchofinterestingnewschoolstothecoursereportschooldirectoryreadbeloworlistentoourlatestcodingbootcampnewsrounduppodcaststrongpahrefblogepisode13april2017codingbootcampnewsrounduppodcastcontinuereadingrarraliliclasspostdatadeeplinkpathnewsyour2017learntocodenewyearsresolutiondatadeeplinktargetpost_771idpost_771h2ahrefblogyour2017learntocodenewyearsresolutionyour2017learntocodenewyearsresolutionah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan12302016spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsdevbootcampdevbootcampaaclassbtnbtninversehrefschoolscodesmithcodesmithaaclassbtnbtninversehrefschoolsvschoolvschoolaaclassbtnbtninversehrefschoolslevellevelaaclassbtnbtninversehrefschoolsdavincicodersdavincicodersaaclassbtnbtninversehrefschoolsgracehopperprogramgracehopperprogramaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolsclaimacademyclaimacademyaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolswecancodeitwecancodeitaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsmetismetisaaclassbtnbtninversehrefschoolsbovacademybovacademyaaclassbtnbtninversehrefschoolshackreactorhackreactoraaclassbtnbtninversehrefschoolsdesignlabdesignlabaaclassbtnbtninversehrefschoolstheappacademynltheappacademynlaaclassbtnbtninversehrefschoolstechelevatortechelevatoraaclassbtnbtninversehrefschoolsthinkfulthinkfulaaclassbtnbtninversehrefschoolslearningfuzelearningfuzeaaclassbtnbtninversehrefschoolsredacademyredacademyaaclassbtnbtninversehrefschoolsgrowthxacademygrowthxacademyaaclassbtnbtninversehrefschoolsstartupinstitutestartupinstituteaaclassbtnbtninversehrefschoolswyncodewyncodeaaclassbtnbtninversehrefschoolsfullstackacademyfullstackacademyaaclassbtnbtninversehrefschoolsturntotechturntotechaaclassbtnbtninversehrefschoolscodingtemplecodingtempleappimgaltnewyearsresolution2017learntocodesrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files3600s1200newyearsresolution2017learntocodev2pngppstrongitsthattimeagainatimetoreflectontheyearthatiscomingtoanendandatimetoplanforwhatthenewyearhasinstorewhileitmaybeeasytobeatyourselfupaboutcertainunmetgoalsonethingisforsureyoumadeitthroughanotheryearandwebetyouaccomplishedmorethanyouthinkmaybeyoufinishedyourfirstcodecademystrongstrongclassstrongstrongmadea30daygithubcommitstreakormaybeyoueventookastrongstrongbootcampstrongstrongprepcoursesoletscheerstothatbutiflearningtocodeisstillatthetopofyourresolutionslistthentakingtheplungeintoacodingstrongstrongbootcampstrongstrongmaybethebestwaytoofficiallycrossitoffwevecompiledalistofstellarschoolsofferingemfulltimeememparttimeemandemonlineemcourseswithstartdatesatthetopoftheyearfiveofthesestrongstrongbootcampsstrongstrongevenhavescholarshipmoneyreadytodishouttoaspiringcoderslikeyoustrongpahrefblogyour2017learntocodenewyearsresolutioncontinuereadingrarraliliclasspostdatadeeplinkpathnewsdecember2016codingbootcampnewsroundupdatadeeplinktargetpost_770idpost_770h2ahrefblogdecember2016codingbootcampnewsroundupdecember2016codingbootcampnewsroundupah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan12292016spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsdevbootcampdevbootcampaaclassbtnbtninversehrefschoolscodinghousecodinghouseaaclassbtnbtninversehrefschoolsrevaturerevatureaaclassbtnbtninversehrefschoolsfounderscodersfoundersampcodersaaclassbtnbtninversehrefschoolsasidatascienceasidatascienceaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolslabsiotlabsiotaaclassbtnbtninversehrefschoolsopencloudacademyopencloudacademyaaclassbtnbtninversehrefschoolshackeryouhackeryouaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolselevenfiftyacademyelevenfiftyacademyaaclassbtnbtninversehrefschools42school42aaclassbtnbtninversehrefschoolsthefirehoseprojectthefirehoseprojectaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolssoftwareguildsoftwareguildaaclassbtnbtninversehrefschoolsgalvanizegalvanizeaaclassbtnbtninversehrefschoolshackreactorhackreactoraaclassbtnbtninversehrefschoolscodingnomadscodingnomadsaaclassbtnbtninversehrefschoolsupscaleacademyupscaleacademyaaclassbtnbtninversehrefschoolscodingdojocodingdojoaaclassbtnbtninversehrefschoolsthinkfulthinkfulaaclassbtnbtninversehrefschoolsnycdatascienceacademynycdatascienceacademyaaclassbtnbtninversehrefschoolscodingacademybyepitechcodingacademybyepitechaaclassbtnbtninversehrefschoolsorigincodeacademyorigincodeacademyaaclassbtnbtninversehrefschoolskeepcodingkeepcodingaaclassbtnbtninversehrefschoolsfullstackacademyfullstackacademyaaclassbtnbtninversehrefschoolsucirvinebootcampsucirvinebootcampsappimgaltcodingbootcampnewsroundupdecember2016srchttpscourse_report_productions3amazonawscomrichrich_filesrich_files3601s1200codingbootcampnewsroundupdecember2016v2pngppstrongwelcometoourlastmonthlycodingbootcampnewsroundupof2016eachmonthwelookatallthehappeningsfromthecodingbootcampworldfromnewbootcampstofundraisingannouncementstointerestingtrendsweretalkingaboutintheofficethisdecemberweheardaboutabootcampscholarshipfromuberemployerswhoarehappilyhiringbootcampgradsinvestmentsfromnewyorkstateandatokyobasedstaffingfirmdiversityintechandasusualnewcodingschoolscoursesandcampusesstrongpahrefblogdecember2016codingbootcampnewsroundupcontinuereadingrarraliliclasspostdatadeeplinkpathnewsinstructorspotlightjacquelinepastoreofironhackdatadeeplinktargetpost_709idpost_709h2ahrefschoolsironhacknewsinstructorspotlightjacquelinepastoreofironhackinstructorspotlightjacquelinepastoreofironhackah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan10122016spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltjacquelinepastoreironhackinstructorspotlightsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files2486s1200jacquelinepastoreironhackinstructorspotlightpngppstrongmiamicodingbootcampahrefhttpswwwcoursereportcomschoolsironhackrelfollowironhackarecentlylaunchedanintensivecourseinuxuidesignwherestudentslearneverythingtheyneedtoknowaboutuserresearchrapidprototypingusertestingandfrontendwebdevelopmenttolandtheirfirstjobinuxdesignwesatdownwithinstructoranduxsuperstarjacquelinepastoreontheirfirstdayofclasstofindoutwhatmakesagreatuxuidesignerthinklisteningskillsempathyandcommunicationhowtheschoolproducesuserexperienceunicornsbyincorporatinghtmlbootstrapskillsintothecurriculumandtheteachingstylethatfuturestudentscanexpectatahrefhttpswwwironhackcomenrelfollowtarget_blankironhackmiamiastrongph3strongqampastrongh3pstronghowdidyoubecomeasuccessfuluxdesignerdidyougetadegreeinuxdesignstrongppimacareerchangermybackgroundwasfirstinfilmandcreativewritingandiworkedinthefilmindustryinmiamibeforeiendedupinbostontempingasaprojectmanagerforaventurecapitalcompanywithanincubatorfocusedonharvardandmitstartupsilearnedfromreallysmartpeopleaboutcomputerssoftwaregraphicdesignandprojectmanagementandibmhadtheirlotusnotesusabilitylabsnextdoorsoigottoparticipateasausabilitytesteriwentbacktogradschoolatbentleyuniversityformymastersinhumanfactorsininformationdesignandhadamagicalcareerdoingethnographyanduserresearchatmicrosoftstaplesadidasandreebokanduxdesignforfidelityinvestmentsstaplesthefederalreservejpmorganchasehamprblocknovartispharmaceuticalsandzumbafitnesspptwoyearsagoimovedbacktomiamiandstartedmyownproductahrefhttpuxgofercomwhatisgoferrelfollowtarget_blankuxgoferawhichisauxresearchtoolppstrongafterspendingyearslearninguserexperienceandevengettingamastersdegreewhydoyoubelieveinthebootcampmodelasaneffectivewaytolearnuxdesignstrongppiwentthroughmygradprogramveryquicklyinoneyearsoibelievethatyoucanlearnthismaterialveryquicklyandthencontinuelearningonthejobthatsexactlywhyivehadasuccessfulcareerbyspecificallygoingafterdifferentverticalstechnologiesandplatformsifihadntusedsomethingbeforeiwantedtotryitibelievethatyoucanlearnthefundamentalsquicklyandthenrefinethemthroughoutyourcareerppstrongwhatmadeyouexcitedtoworkatironhackinparticularwhatstandsoutaboutironhacktoyouasaprofessionaluxdesignerstrongppitwasthepeopleiwasreferredtoironhackbysomeoneiverespectedintheindustryforyearsandtheywererightthepeoplerunningironhackarewhatconvincedmetoworkonthisuxbootcampppstrongdidyouhaveteachingexperiencepriortoteachingatthebootcampwhatisdifferentaboutteachingatacodingbootcampstrongppiteachnowattheuniversityofmiamiatconferencesandbootcampsatironhackmypersonalteachingstyleistolectureverylittleandfocusonhandsonworkitsimportanttoknowthefoundationsandprinciplesandsciencebehindwhatwedobutattheendofthedayyouhavetodeliversowespendthemajorityofourdaysdoingactivitieswhichmeansrunningsurveysdoinginterviewsrunningusabilitytestsdesigningproductsithinkitssoimportantforstudentstocreatetheirportfoliopiecesthroughoutthebootcampinsteadofjusthavingoneportfolioprojectattheendofthecourseforsomeonebreakingintotheuxcommunitytheportfolioishowstudentsdemonstratetheirknowledgeandhowtheyapproachprojectsppimgaltironhackmiamiclassroomstudentssrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files2489s1200ironhack20classroomjpgppstrongthisisironhacksfirstforayintouxuidesigncoursestellusaboutthecurriculumstrongppmarcelopaivaandicreatedtheironhackcurriculumbasedonwhatwewouldhavewantedtolearninabootcampifweweretojustgetstartedinthisfieldwefollowtheuserandproductdevelopmentlifecyclestomakesurethatourstudentshavealltheskillstheyneedtobeusefulrightnowinthecurrentmarketplaceppwestartwithstronguserresearchstronghowtotalktoyourtargetmarketthemethodologybehindthatresearchwhattodowiththatdatadeliverablesandturningthatdataintoconceptdesignppwemoveintostronginformationarchitectureandinteractiondesignstrongwithlowfidelityallthewayintohighfidelityandmicrointeractionmodelsweuseinvisionsketchandprincipalasthetoolsforthatpieceofthecurriculumthenwemoveintostrongvisualstrongstrongdesignstrongformobileandwebbecausetheyaretwodifferentbeastsppthenwemoveintostrongfrontenddevelopmentstrongwherestudentslearnhowtoimplementthedesignstheyrecreatingthisiswhattheindustryislookingforrightnowtheunicornsthatcandothehtmlandbootstraptoimplementtheirowndesignsthatwillmakeironhackstudentsreallyeffectiveandmarketableppfinallywemoveintostrongindividualprojectsstrongironhackstudentsarebuildingportfoliopiecesfromdayonebuttowardstheendofthecoursetheyworkonmorespecificprojectsandbreakoutsforadditionaltopicsthatwehaventcoveredyetppimsosuperexcitedaboutthisbootcampandithinkitsreallyvaluableppstrongisthepushfordesignerstolearntocodethebiggesttrendstrongstronginstrongstrongtheuxuifieldrightnowstrongppitdependsonwhereourgraduateschoosetoworkaspartofasmallerteamauxdesignerwillhavetobemoreofageneralistandneedtodoresearchdesignanddevelopmentiftheyreworkingforalargerorganizationtheycanspecializeinaparticularfieldwithinuxlikeethnographyormobiledesignordesignthinkingasawholeithinkcareersintheuxcommunityarebecomingbothbroaderandmorespecializedtheuxcommunityisbothcomingtogetherandbreakingintonichesppstronghowmanyinstructorsstrongstrongtasstrongstrongandormentorsdoyouhaveisthereanidealstudentteacherratiostrongppthestudentteacherratiofortheuxuicourseis101manyoftherequiredactivitiesaretackledingroupsamongthestudentsingroupsof3or4astheprincipalinstructorileadandteachthemainflowofthecourseandwehavesubjectmatterexpertsandmentorscomeintoteachsectionsofthecurriculumthataremorespecializedegdesignthinkingfrontenddevelopmentetcppstrongcanyoutellusalittlebitabouttheidealstudentforironhacksuxuidesignbootcampwhatsyourclasslikerightnowandhowdotheuxstudentsdifferfromthecodingbootcampstudentsstrongpptheidealstudentfortheuxuidesignbootcampissomeonewhopossessesstrongcommunicationskillscanuseempathytojumpintootherpeoplesshoesandhasapassionforuserexperiencethecurrentclassisawonderfulmixofmanyprofessionalbackgroundsforexamplesomeprofilesincludeaformermarketingmanagerforsonymusicaresearchdirectorfromthenonprofitspaceandanmbagradlookingtousetheirpreviousbusinessprocessskillstocrackintotheuxsectorppimgaltironhackstudentsgroupoutsideironhacklogomiamisrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files2488s1200ux20group20picjpgppstrongthisisafulltimebootcampbuthowmanyhoursaweekdoyouexpectyourstudentstocommittoironhackmiamistrongppinadditiontothedailyscheduleof9amto6pmweexpectstudentstospendapproximately20hoursoutsideofclasstimetoworkonassignmentsandprojectssoabout65hoursweekppstronginauxbootcampisthestylelargelyprojectbasedcanyougiveusanexamplestrongppyesstudentswillworkon2projectsduringthefirst6weeksoneindividualprojectandonegroupprojecttheseprojectsareasumoftheindividualunitswecoveronaweekbyweekbasisthecapstoneofthecourseisa2weekfinalprojectthateachstudentcompletesindividuallyastheygothroughtheentireuserandproductdevelopmentlifecyclestheresultattheendofthecourseisthateachstudenthas3prototypesthattheycanuseasportfoliopiecesmovingforwardppstrongwhatsthegoalforastudentthatgraduatesfromironhackintermsofcareerandabilityforexamplewilltheybepreparedforajunioruxuiroleaseniorrolestrongppthegoalofthiscourseistoprovidestudentstheskillstocarryoutauxuidesignprocessfrombeginningtoendinmultiplecircumstanceswithvaryinggoalsasaresultstudentswillbepreparedforjuniorandentrylevelrolesinuxuifieldsdependingonwhichpartofthatprocessmostintereststhemppstrongforourreaderswhoarebeginnerswhatresourcesormeetupsdoyourecommendforaspiringbootcampersinmiamistrongppweholdopenhousesandfreeintroductoryworkshopstocodinganddesignmonthlywhichcanbefoundontheahrefhttpwwwmeetupcomlearntocodeinmiamirelfollowtarget_blankironhackmeetuppageaourfriendsatahrefhttpswwwmeetupcomixdamiamirelfollowtarget_blankixdaaalsooffersomecoolworkshopsonmeetupppwealsoreallylovethefreeahrefhttpshackdesignorgrelfollowtarget_blankhackdesignacoursewhichisafantasticresourceforsomeonewhowantstodelvemoreintothisworldppstrongisthereanythingelsethatyouwanttomakesureourreadersknowaboutironhacksnewuxuidesignbootcampstrongppifyouhaveanymorequestionsaboutthecoursecodingorironhackingeneralpleaseemailusatadmissionsmiaironhackcomwedbehappytohelpyoufigureoutwhatnextstepsmightworkbestforyourprofileandindividualgoalsppstrongtolearnmorecheckoutahrefhttpswwwcoursereportcomschoolsironhackrelfollowironhackreviewsaoncoursereportorvisittheahrefhttpswwwironhackcomenuxuidesignbootcamplearnuxdesignrelfollowtarget_blankironhackuxuidesignbootcampawebsiteformorestrongpdivclassauthorbiobootstraph4abouttheauthorh4imgclassimgroundedpullleftsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files1527s300lizpicjpgalthttpscourse_report_productions3amazonawscomrichrich_filesrich_files1527s300lizpicjpglogopplizisthenbspcofounderofnbspahrefhttpwebinarscoursereportcomcsdegreevscodingbootcampclknhttpcoursereportcomrelnofollowcoursereportathemostcompletenbspresourceforstudentsconsideringacodingbootcampshelovesbreakfasttacosandspendingtimegettingtoknowbootcampalumniandfoundersallovertheworldcheckoutlizampcoursereportonahrefhttptwittercomcoursereportrelnofollowtwitteraahrefhttpswwwquoracomprofilelizegglestonrelnofollowquoraaandahrefhttpswwwyoutubecomchannelucb9w1ftkcrikx3w7c8elegvideosrelnofollowyoutubeanbspppdivliliclasspostdatadeeplinkpathnewslearntocodein2016atasummercodingbootcampdatadeeplinktargetpost_582idpost_582h2ahrefbloglearntocodein2016atasummercodingbootcamplearntocodein2016atasummercodingbootcampah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan7242016spanppclassrelatedschoolsaclassbtnbtninversehrefschoolslogitacademylogitacademyaaclassbtnbtninversehrefschoolslevellevelaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsmetismetisaaclassbtnbtninversehrefschoolsnycdatascienceacademynycdatascienceacademyaaclassbtnbtninversehrefschoolsnewyorkcodedesignacademynewyorkcodedesignacademyaaclassbtnbtninversehrefschoolsmakeschoolmakeschoolaaclassbtnbtninversehrefschoolswyncodewyncodeaaclassbtnbtninversehrefschoolstechtalentsouthtechtalentsouthaaclassbtnbtninversehrefschoolsfullstackacademyfullstackacademyaaclassbtnbtninversehrefschoolscodefellowscodefellowsappstrongahrefhttpswwwcoursereportcombloglearnatthese9summercodingprogramsrelfollowseeourmostrecentrecommendationsforsummercodingastrongstrongahrefhttpswwwcoursereportcombloglearnatthese9summercodingprogramsrelfollowbootcampsastrongstrongahrefhttpswwwcoursereportcombloglearnatthese9summercodingprogramsrelfollowhereastrongppstrongifyoureacollegestudentanincomingfreshmanorateacherwithasummerbreakyouhavetonsofsummercodingbootcampoptionsaswellasseveralcodeschoolsthatcontinuetheirnormalofferingsinthesummermonthsstrongpahrefbloglearntocodein2016atasummercodingbootcampcontinuereadingrarraliliclasspostdatadeeplinkpathnews5techcitiesyoushouldconsiderforyourcodingbootcampdatadeeplinktargetpost_542idpost_542h2ahrefblog5techcitiesyoushouldconsiderforyourcodingbootcamp5techcitiesyoushouldconsiderforyourcodingbootcampah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan2182016spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolstechelevatortechelevatoraaclassbtnbtninversehrefschoolswyncodewyncodeaaclassbtnbtninversehrefschoolszipcodewilmingtonzipcodewilmingtonappstrongwevepickedfivecitieswhichareupandcominginthetechsceneandhaveagreatrangeofcodingbootcampoptionswhenyouthinkofcodingbootcampsyoumightfirstthinkofcitieslikeahrefhttpswwwcoursereportcomcitiessanfranciscorelfollowsanfranciscoaahrefhttpswwwcoursereportcomcitiesnewyorkcityrelfollownewyorkaahrefhttpswwwcoursereportcomcitieschicagorelfollowchicagoaahrefhttpswwwcoursereportcomcitiesseattlerelfollowseattleaandahrefhttpswwwcoursereportcomcitiesaustinrelfollowaustinabutthosearentyouronlyoptionstherearenowbootcampsinalmost100citiesacrosstheusstrongbrpppahrefblog5techcitiesyoushouldconsiderforyourcodingbootcampcontinuereadingrarraliliclasspostdatadeeplinkpathnewscodingbootcampcostcomparisonfullstackimmersivesdatadeeplinktargetpost_537idpost_537h2ahrefblogcodingbootcampcostcomparisonfullstackimmersivescodingbootcampcostcomparisonfullstackimmersivesah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan10172018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolscodesmithcodesmithaaclassbtnbtninversehrefschoolsvschoolvschoolaaclassbtnbtninversehrefschoolsdevmountaindevmountainaaclassbtnbtninversehrefschoolsgrandcircusgrandcircusaaclassbtnbtninversehrefschoolsredwoodcodeacademyredwoodcodeacademyaaclassbtnbtninversehrefschoolsgracehopperprogramgracehopperprogramaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolsclaimacademyclaimacademyaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolslaunchacademylaunchacademyaaclassbtnbtninversehrefschoolsrefactorurefactoruaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolssoftwareguildsoftwareguildaaclassbtnbtninversehrefschoolsappacademyappacademyaaclassbtnbtninversehrefschoolshackreactorhackreactoraaclassbtnbtninversehrefschoolsrithmschoolrithmschoolaaclassbtnbtninversehrefschoolscodingdojocodingdojoaaclassbtnbtninversehrefschoolsdevpointlabsdevpointlabsaaclassbtnbtninversehrefschoolsmakersquaremakersquareaaclassbtnbtninversehrefschoolsdigitalcraftsdigitalcraftsaaclassbtnbtninversehrefschoolsnewyorkcodedesignacademynewyorkcodedesignacademyaaclassbtnbtninversehrefschoolslearnacademylearnacademyaaclassbtnbtninversehrefschoolsbottegabottegaaaclassbtnbtninversehrefschoolswyncodewyncodeaaclassbtnbtninversehrefschoolshackbrightacademyhackbrightacademyaaclassbtnbtninversehrefschoolscodecraftschoolcodecraftschoolaaclassbtnbtninversehrefschoolsfullstackacademyfullstackacademyaaclassbtnbtninversehrefschoolscodefellowscodefellowsaaclassbtnbtninversehrefschoolsturingturingaaclassbtnbtninversehrefschoolscodingtemplecodingtempleappstronghowmuchdocodingbootcampscostfromstudentslookingforahrefhttpswwwcoursereportcomblogbestfreebootcampoptionsrelfollowfreecodingastrongahrefhttpswwwcoursereportcomblogbestfreebootcampoptionsrelfollowstrongbootcampsstrongastrongtothosewonderingifan18000strongstrongbootcampstrongstrongisworthitweunderstandthatcostisimportanttofuturestrongstrongbootcampersstrongstrongwhileahrefhttpswwwcoursereportcomreports2018codingbootcampmarketsizeresearchrelfollowtarget_blanktheaveragefulltimeprogrammingaahrefhttpswwwcoursereportcomreports2018codingbootcampmarketsizeresearchrelfollowtarget_blankbootcampaahrefhttpswwwcoursereportcomreports2018codingbootcampmarketsizeresearchrelfollowtarget_blankintheuscosts11906astrongstrongahrefhttpswwwcoursereportcomreports2018codingbootcampmarketsizeresearchrelfollowtarget_blankastrongstrongbootcampstrongstrongtuitioncanrangefrom9000to21000andsomecodingbootcampshavedeferredtuitionsohowdoyoudecideahrefhttpswwwcoursereportcomresourcescalculatecodingbootcamproirelfollowwhattobudgetforaherewebreakdownthecostsofcodingstrongstrongbootcampsfromaroundtheusastrongstrongstrongppthisisacostcomparisonoffullstackfrontendandbackendinpersononsiteimmersivebootcampsthatarenineweeksorlongerandmanyofthemalsoincludeextraremotepreworkstudywehavechosencourseswhichwethinkarecomparableincoursecontenttheyallteachhtmlcssandjavascriptplusbackendlanguagesorframeworkssuchasrubyonrailspythonangularandnodejsallschoolslistedherehaveatleastonecampusintheusatofindoutmoreabouteachbootcamporreadreviewsclickonthelinksbelowtoseetheirdetailedcoursereportpagespahrefblogcodingbootcampcostcomparisonfullstackimmersivescontinuereadingrarraliliclasspostdatadeeplinkpathnewscodingbootcampinterviewquestionsironhackdatadeeplinktargetpost_436idpost_436h2ahrefschoolsironhacknewscodingbootcampinterviewquestionsironhackcrackingthecodeschoolinterviewironhackmiamiah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan922015spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltcrackingthecodinginterviewwithironhacksrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files884s1200codingbootcampinterviewironhackpngppstrongironhackisanimmersiveiosandwebdevelopmentbootcampthatstartedinspainandhasnowexpandedtomiamiwithahiringnetworkandahrefhttpswwwcoursereportcomschoolsironhacknewsstudentspotlightmartafondaironhackrelfollowhappyalumniaironhackisagreatfloridabootcampoptionbutwhatexactlydoesittaketogetintoironhackwecaughtupwiththeironhackteamtolearneverythingemyouemneedtoknowabouttheironhackapplicationandinterviewprocessincludinghowlongitwilltaketheircurrentacceptancerateandasneakpeekatthequestionsyoullhearintheinterviewstrongph3strongtheapplicationstrongh3pstronghowlongdoestheironhackapplicationtypicallytakestrongpptheironhackapplicationprocessfallsinto3stagesthewrittenapplicationfirstinterviewandsecondtechnicalinterviewandtakesonaverage1015daystocompleteinentiretyppstrongwhatgoesintothewrittenapplicationdoesironhackrequireavideosubmissionstrongppthewrittenapplicationisachanceforstudentstogiveaquicksummaryoftheirbackgroundandmotivationsforwantingtoattenditstheiropportunitytotellusaboutthemselvesinanutshellandpeaktheadmissioncommitteesinterestppstrongwhattypesofbackgroundshavesuccessfulironhackstudentshaddoeseveryonecomefromatechnicalbackgroundstrongppweareimpressedandinspiredbythediversityofstudentsthatironhackattractswevehadformerflightattendantsworldtravellingyoginisandcsgradsfromivyleaguesallattendironhackwevebeenamazedathowcodingissodemocraticandattractsallsortsofpeopleregardlessofeducationalbackgroundorpedigreethosewhotendtoperformthebestatironhackarethosewhohavecommittedtodoingsonotnecessarilythosewithatechnicalbackgroundppimgaltironhackstudenttypingsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files893s1200ironhackpre132jpgph3strongtheinterviewstrongh3pstrongcanyougiveusasamplequestionfromthefirstinterviewstrongppwhatmotivatesyouonadaytodaybasisandwhatdoyoulovetodoppstrongcanyougiveusasamplequestionfromthetechnicalinterviewstrongppwhathappenswhenyouputafunctioninsidealoopppstrongwhatareafewresourcesthatyousuggestapplicantsusetoreallyacethetechnicalinterviewstrongppwhenanapplicantisinthemidstofourprocessweactuallysendthemmaterialsspecificallytoprepareforthetechnicalinterviewandsetofficehourswithourteachingassistantssotheycangetsomeoneononetimetoaddressspecificquestionsapartfromthatiftheyalreadyhavesomeexperienceprogrammingahrefhttpsautotelicumgithubiosmoothcoffeescriptliteratejsintrohtmlrelfollowtarget_blankhttpsautotelicumgithubiosmoothcoffeescriptliteratejsintrohtmlawerecommendthisresourceforcompletebeginnersjavascriptforcatsahrefhttpjsforcatscomrelfollowtarget_blankhttpjsforcatscomappstronghowdoyouevaluateanapplicantsfuturepotentialwhatqualitiesareyoulookingforstrongppironhacksapplicationprocessrevealsalotofqualitiesinpotentialcandidatesbecauseitisabitlongerthanmostcodingschoolstheadvantageofthisisitallowsustoseehowcandidatesandapplicantsrespondtolearningmaterialinashortamountoftimeandhowdedicatedtheyaretotheirgoalsiftheycantevencompletetheinterviewprocessitsanindicatorthattheymightnothavethepassionordrivetogetthrough8weeksofacodingbootcampwelookforcuriositypassionanddrivedriveisprobablythemostimportantqualitytosucceedatironhackppimgaltstudentsdoingyogairohacksrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files892s1200ironhackpre090jpgppstrongisthereatechnicalcodingchallengeintheironhackapplicationstrongppyesppstronghowlongshouldittakeisthereatimelimitstrongppwegiveourstudentsexactly7daystoprepareforthetechnicalinterviewafterthe1stinterviewandprovidethematerialstheyneedtoprepforitthetechnicalinterviewisledbyoneofourmiamiinstructorsandconsistsofacodingchallengethattheapplicanthas30minutestosolveppstrongcananapplicantcompletethecodingchallengeinanyprogramminglanguagestrongpptheapplicantcancompletethechallengeinwhateverprogramminglanguagetheyfeelmostcomfortableinaslongasthatlanguagecansolveabreadthofproblemsthatmeansthatsomethinglikecssisoutph3stronggettingacceptedstrongh3pstrongwhatisthecurrentacceptancerateatironhackstrongppasofnowourcurrentacceptancerateis20235tobeexactppstrongarestudentsacceptedonarollingbasisstrongppyesspotsfillupquicklysothesoonertheapplicantgetsstartedthebetterppstrongdoesironhackmiamihavealotofinternationalstudentssinceyourrootsareinspaindointernationalstudentsgetstudentvisastouristvisastodotheprogramstrongppyeswehavemorethan25countriesrepresentedinourbootcampsgloballyegthailandpakistangermanyfrancebraziletcthemajorityofourstudentswhotraveltomiamifromabroaduseatouristvisatovisittheusandattendourprogramwelovethemeltingpotofmiamicombinedwithironhacksreputationgloballyitsreallyafunplacetolearnandstudyppimgaltstudentsatroundtablecodingsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files894s1200ironhackpre249jpgppstrongwanttolearnmoreaboutironhackcheckoutahrefhttpwwwironhackcomrelfollowtarget_blanktheirwebsiteastrongppstronghavequestionsabouttheironhackapplicationthatwerentansweredinthisarticleletusknowinthecommentsstrongpliliclasspostdatadeeplinkpathnews9bestcodingbootcampsinthesouthdatadeeplinktargetpost_335idpost_335h2ahrefblog9bestcodingbootcampsinthesouth14bestcodingbootcampsinthesouthah2pclassdetailsspanclassauthorspanclassiconuserspanharryhantelspanspanclassdatespanclassiconcalendarspan462015spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsdevmountaindevmountainaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolsnashvillesoftwareschoolnashvillesoftwareschoolaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsaustincodingacademyaustincodingacademyaaclassbtnbtninversehrefschoolscodeupcodeupaaclassbtnbtninversehrefschoolscodecampcharlestoncodecampcharlestonaaclassbtnbtninversehrefschoolscodingdojocodingdojoaaclassbtnbtninversehrefschoolsmakersquaremakersquareaaclassbtnbtninversehrefschoolscoderfoundrycoderfoundryaaclassbtnbtninversehrefschoolswyncodewyncodeaaclassbtnbtninversehrefschoolstechtalentsouthtechtalentsouthaaclassbtnbtninversehrefschoolscodercampscodercampsappemupdatedapril2018emppstrongslideacrosstheroofofthegeneralleewereheadingsouthofthemasondixontocheckoutthebestcodingbootcampsinthesouthernunitedstatestherearesomefantasticcodeschoolsfromthecarolinastogeorgiaandallthewaytotexasandwerecoveringthemalltalkaboutsouthernhospitalitystrongpahrefblog9bestcodingbootcampsinthesouthcontinuereadingrarraliliclasspostdatadeeplinkpathnewsstudentspotlightgorkamaganaironhackdatadeeplinktargetpost_191idpost_191h2ahrefschoolsironhacknewsstudentspotlightgorkamaganaironhackstudentspotlightgorkamaganaironhackah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan1012014spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltgorkaironhackstudentspotlightsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files343s1200gorka20ironhack20student20spotlightpngppstronginthisstudentspotlightwetalktoahrefhttpcoursereportcomschoolsironhackrelfollowtarget_blankironhackagraduategorkamaganaabouthisexperienceatthebootcampbasedinspainreadontolearnabouthisapplicationprocesstheprojecthecreatedduringthecourseandhowironhackhelpedhimnailajobasaniosdeveloperatrushmorefmstrongppppstrongwhatwereyoudoingbeforeyoustartedatironhackstrongppiwasafreelancerforayearfocusedonwebfrontenddevelopmentiworkedatanagencybeforealsoforayearintermsofeducationididntstudyanythingrelatedtocomputersciencebeforeironhackppppstrongdidyouhaveatechnicalbackgroundbeforeyouappliedstrongppivebeendevelopingsinceiwas14andallthatiknowisselftaughtandnotinanyconcreteplatformbuthavingprojectsofmyownwheretheneedoflearningmoreeverytimedrovemetogetthemdoneppppstrongwhydidyouchooseironhackdidyouapplytoanyotherbootcampsstrongppichoseironhackbasicallybecauseittookverygoodadvantageofgoogleadwordssoicouldnotavoidreachingitswebsiteandgettinginterestedonittheyofferedmeameritscholarshipsoifinallymadethedecisionihaveneverappliedtoanythinglikeironhackppppstrongwhatwastheapplicationprocesslikestrongpptheapplicationprocesswasgoodtheinterviewsweremoreofculturefitandtheywerenotmuchseparatedintimewitheachothersoittooklessthanamonthtohaveitallapprovedppppstrongwhatwasyourcohortlikedidyoufinddiversityinagegenderetcstrongppitwasquitegoodformetherewascleardiversityinagebutnotingenderatallaswewerejustmenaboutthelevelitwasnotasfairisitshouldvebeenbutingeneraltheclasswasabletofollowthecoursesprocessppppstrongwhowereyourinstructorswhatwastheteachingstylelikeandhowdiditworkwithyourlearningstylestrongppthereweremanyinstructorssotryingtogivefeedbackaboutallofthemwouldbeendlesstheteachingstylewasagileaskingforfeedbackcontinuouslyandadaptingthecoursetoitsoitmadetheexperiencereallyenrichingiveneverhadateachingstylelikethisbeforeanditreallyfitwithmeppppstrongdidyoueverexperienceburnouthowdidyoupushthroughitstrongppididnotreallyexperienceburnoutbuttherewasaweekwhenwelearnedaboutusingcoredatathatigotreallytiredbecauseitwasboringtomeitwastheuglysideofiosdevelopmentbuttheprofessorwassogoodthatigotitallandlearnedalotthose5daysppppstrongcanyoutellusaboutatimewhenyouwerechallengedintheclasshowdidyousucceedstrongbrformethechallengewasnotinaconcretesituationbutinfollowingthecoursesspeeditwasthefirsttimeformetoneedtolearnsofastandsomuchppppstrongtellusaboutaprojectyoureproudofthatyoumadeduringironhackstrongppimcurrentlyworkingonanappwhichistheoneistartedatironhackasthefinalprojectbutididnthavetimeenoughtofinishitsoimstilldevelopingitincollaborationwithmypartnerwhoisagraphicdesignerandtheonewhodesignedtheappiwillprovidelinksassoonasitisreleaseditiscalledsnapreminderstaytunedppppstrongwhatareyouuptotodaywhereareyouworkingandwhatdoesyourjobentailstrongppimworkingatrushmorefmasaleadiosdeveloperbuildingthenewapplicationwellbereleasingsoonimcurrentlytheonlyiosdeveloperbutillleadtheteamwhenitgrowsigotthisjobbecausetheycontactedmedirectlyppppstrongdidyoufeellikeironhackpreparedyoutogetajobintherealworldstrongppittotallypreparedmeforarealworldjobitwasworththemoneyformeidontregretatallppppstronghaveyoucontinuedyoureducationafteryougraduatedstrongppnotformallybutikeeplearningeverydayandtryingtoenrichmyselfppppstrongwanttolearnmoreaboutironhackcheckouttheirahrefhttpswwwcoursereportcomschoolsironhackrelfollowschoolpageaoncoursereportortheirahrefhttpwwwironhackcomenrelfollowtarget_blankwebsitehereastrongpliliclasspostdatadeeplinkpathnewsexclusivecoursereportbootcampscholarshipsdatadeeplinktargetpost_148idpost_148h2ahrefblogexclusivecoursereportbootcampscholarshipsexclusivecoursereportbootcampscholarshipsah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan222018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsmakersacademymakersacademyaaclassbtnbtninversehrefschoolsdevmountaindevmountainaaclassbtnbtninversehrefschoolsrutgersbootcampsrutgersbootcampsaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolsstarterleaguestarterleagueaaclassbtnbtninversehrefschoolsblocblocaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsmetismetisaaclassbtnbtninversehrefschoolsdigitalprofessionalinstitutedigitalprofessionalinstituteaaclassbtnbtninversehrefschools10xorgil10xorgilaaclassbtnbtninversehrefschoolsvikingcodeschoolvikingcodeschoolaaclassbtnbtninversehrefschoolsvikingcodeschoolvikingcodeschoolaaclassbtnbtninversehrefschoolsguildofsoftwarearchitectsguildofsoftwarearchitectsaaclassbtnbtninversehrefschoolsdevpointlabsdevpointlabsaaclassbtnbtninversehrefschoolsthinkfulthinkfulaaclassbtnbtninversehrefschoolslearningfuzelearningfuzeaaclassbtnbtninversehrefschoolsdigitalcraftsdigitalcraftsaaclassbtnbtninversehrefschoolsnycdatascienceacademynycdatascienceacademyaaclassbtnbtninversehrefschoolsnewyorkcodedesignacademynewyorkcodedesignacademyaaclassbtnbtninversehrefschoolsorigincodeacademyorigincodeacademyaaclassbtnbtninversehrefschoolsbyteacademybyteacademyaaclassbtnbtninversehrefschoolsdevleaguedevleagueaaclassbtnbtninversehrefschoolssabiosabioaaclassbtnbtninversehrefschoolscodefellowscodefellowsaaclassbtnbtninversehrefschoolsturntotechturntotechaaclassbtnbtninversehrefschoolsdevcodecampdevcodecampaaclassbtnbtninversehrefschoolslighthouselabslighthouselabsaaclassbtnbtninversehrefschoolscodingtemplecodingtempleappstronglookingforcodingbootcampexclusivescholarshipsdiscountsandpromocodescoursereporthasexclusivediscountstothetopprogrammingbootcampsstrongppstrongquestionsemailahrefmailtoscholarshipscoursereportcomrelfollowtarget_blankscholarshipscoursereportcomastrongpahrefblogexclusivecoursereportbootcampscholarshipscontinuereadingrarraliliclasspostdatadeeplinkpathnewsstudentspotlightjaimemunozironhackdatadeeplinktargetpost_129idpost_129h2ahrefschoolsironhacknewsstudentspotlightjaimemunozironhackstudentspotlightjaimemunozironhackah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan7182014spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltjaimeironhackstudentspotlightsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files248s1200jaime20ironhack20student20spotlightpngppstrongafterworkingatanitcompanymanagingprogrammersjaimemunozdecidedthathewantedtolearncodingskillssoheenrolledinahrefhttpcoursereportcomschoolsironhackrelfollowtarget_blankironhackaacodingbootcampinmadridwithlocationsinmiamiandbarcelonajaimetellsuswhyhechoseironhackthetechnicalemandemsoftskillshelearnedinhiscourseandthementorswhohavehelpedhimalongthewaystrongppppstrongwhatwereyouuptobeforedecidingtoenrollinironhackdidyouhaveatechnicalbackgroundbeforeapplyingstrongppbeforebeingaprogrammeriwasprojectmanagerinabigitcompanyihiredprogrammersandmanagedtheirworkaftersometimeibegantobemoreandmoreinterestedintheworkthoseprogrammersweredoingsomuchthatidecidedtoquitmyjobandlearntocodeididamastersdegreeof400hoursinciceaitschoolinmadridwiththegreatlucktohaveanamazingteachercalledahrefhttptwittercomdevtasrelfollowtarget_blankdevtasinghailearnedmuchmorethanjustcodingfromhimheshowedmehowtofacetheproblemfindthebettersolutionandhowtosucceedonititwasapersonalrevelationandsincethismomentiknewthatiwantedtobeaprogrammerppafterthedegreeistartedtoworkinadigitaladvertisingcompanycalledthefactweworkedfortraditionalofflineadvertisingcompaniestheyneededdigitaldevelopmentforhisclientsiimprovedmyphpandjavascriptskillsthereduringalmost2yearsbutihadthefeelingiwasntimprovingfasterenoughitriedtolookforsomethingnewtostimulatemyselfandbegantoteachcodinginaitacademyfrommadridcalledtrazosbutineededachangetokeeppushingmyskillsthatswhyiturnedtoironhackppppstrongwasironhacktheonlybootcampyouappliedtowhataboutironhackconvincedyoutogotherethelanguagestheytaughtinstructorspriceetcstrongppironhackwasmyfirstandlastchoicehonestlyididntknewmanybootcampsbutthemainreasonweretheinstructorsandthegreatprofessionalstheytalkedverygoodaboutthecoursemanyofthecodersiadmirelikeahrefhttpstwittercomkeyvanakbaryrelfollowtarget_blankkeyvanakbaryaorahrefhttptwittercomcarlosblerelfollowtarget_blankcarlosblawereinvolvedandinterestedonthebootcampthiswasenoughtomakethechoiceppppstrongcanyoutalkaboutatimewhenyougotstuckintheclassandhowyoupushedthroughstrongppfortunatelyididnotgotstuckalotinclassbutwhenididnotunderstoodsomethingiaskedformoreexplanationsandireceiveditimmediatelyandsolvedtheproblemppppstrongwhatwereyourclassmatesandinstructorslikestrongpptheywereallamazingiguessiwasveryveryveryluckyonthatpointbecauseallmyclassmateswereamazingnotonlybecausetheywerefriendlytheyreallywerebutbecausetheywereskilledandinterestedtopushlikeiwasbritsamazingwhenyousharesuchexperiencewithpeopletheythinkandlikethesamethinkslikeyoubecauseitpushedthelevelveryhighbrtheinstructorswerealsogreatveryfriendlyandopentodiscussortrywhateverweaskedforithinktheycantimaginehowthankfuliambutnotonlywiththeteachersorstudentsalsowithironhacksstafftheydideverythingpossibletomakeusreceivewhatweneededppppstrongtellusaboutyourfinalprojectwhatdoesitdowhattechnologiesdidyouusehowlongdidittakeetcstrongppformyfinalprojectiusedrubyonrailspostgresqlhtmlcssandjavascripttodevelopaonlinemedicalappointmentsapplicationittookaweektohavesomethingworkingandabletobeshowninthedemodayppppstrongwhatareyouworkingonnowdoyouhaveajobasadeveloperwhatdoesitentailstrongppimworkingnowinmarketgoocomawebsitemarketingandseoonlinedoityourselftoolasfullstackdeveloperiusephpmysqlhtml5lessphinxphpactiverecordjavascriptandothertechnologieseverydaybutthekeyisthatimnotonlyadeveloperthereimalsoinvolvedintheproductmanagementcollaboratingeverydayindecisionsabouttheproducthislookandfeelhisbehaviorandthebusinessitselfppppstrongwouldyouhavebeenabletolearnwhatyounowknowwithoutironhackstrongppmaybeicouldbeabletolearnthetechnicalpartbutthereisnowaytolearnitin2monthswithoutabootcampitsjusttoomuchinformationtohandleitalonebesidesthereismuchmorethanthetechnicalknowledgethatyoureceiveinironhackyoualsogetalotofcontactsfriendsexperienceknowhowandthemostimportantthingaperspectiveofwhatyoudontknowyetppppstrongwanttolearnmoreaboutironhackcheckouttheirahrefhttpswwwcoursereportcomschoolsironhackrelfollowschoolpageaoncoursereportorahrefhttpwwwironhackcomenrelfollowtarget_blanktheirwebsitehereawanttocatchupwithjaimereadahrefhttpjaimemmpcomrelfollowtarget_blankhisblogaorfollowhimonahrefhttptwittercomjaime_mmpe2808brelfollowtarget_blanktwitterastrongbrpliliclasspostdatadeeplinkpathnewsstudentspotlightmartafondaironhackdatadeeplinktargetpost_127idpost_127h2ahrefschoolsironhacknewsstudentspotlightmartafondaironhackstudentspotlightmartafondaironhackah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan7162014spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltmartaironhackstudentspotlightsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files244s1200marta20ironhack20student20spotlightpngppstrongmartafondaneededtoimproveherwebdevelopmentskillsinordertocompeteforjobsatherdreamcompaniessosheenrolledinahrefhttpcoursereportcomschoolsironhackrelfollowtarget_blankironhackaan8weekintensiveprogrammingcoursefordevelopersandentrepreneurswetalktomartaabouthowshesucceededintheclassandgotajobasafrontendengineeratfloqqcomstrongppstrongwhatwereyouuptobeforedecidingtoenrollinironhackdidyouhaveatechnicalbackgroundbeforeapplyingstrongppwhenidecidedtoenrollinironhackihadjustfinishedmydegreesinsoftwareengineeringandbusinessadministrationwhenifinishedmystudiesirealizedthatmybackgroundinmobileandwebdevelopmentwasnotenoughsoiwaslookingforanopportunityinacompanythatwouldbetonmebrimaverymotivatedpersonandinfactiinterviewedwithcompanieslikegoogleandibmbutididnothaveenoughexperienceitwasaroundthattimethatifoundironhackbootcampandidecidedtotryitppihadtechnicalbackgroundasasoftwareengineerbutmostofmyexperienceprogrammingwasbasedonlanguagessuchcjavaorsqlineededtoimprovemyskillsinordertobecomeabetterdeveloperppppstrongwasironhacktheonlybootcampyouappliedtowhataboutironhackconvincedyoutogotherestrongppthiswastheonlybootcampiappliedtoandthemainreasonwasthattheywerelookingforpeoplelikememotivatedpeoplewhohadthedrivetobecomeagreatprofessionalandwereonlylackingtheopportunitytoshowtheirpotentialtheytrainpeopleinmodernlanguageslikerubybrthiswasnotonlyanawesomeopportunitytolearnrailsbutalsotobeinanenvironmentthatisdifficulttofindinotherplacesiwaslearningfromtheverybestprofessionalsandfromanincrediblytalentedgroupofstudentsppppstrongcanyoutalkaboutatimewhenyougotstuckintheclassandhowyoupushedthroughstrongppironhackisanintensivebootcampyoumustbesurethatyouareabletopushthroughanyproblemyouhaveandmyclassmateswereanimportantpointtoleanonononeofmyveryfirstdaysatironhackiwashavingtroubleunderstandingoneoftheconceptsthatwewerecoveringanditwasthroughteamworkwithmyotherclassmatesthatwewereallabletounderstanditppmyclassmateswereasmotivatedasmesoitwaseasytofindpeopletocontinueprogrammingonweekendsoraftertheclassitwasgreatformeppppstrongwhatwereyourclassmatesandinstructorslikestrongppinthisbootcampiwassurroundedbytheverybestprofessionalsfromalloverthecountrysoicanonlysaythatitwasapleasuretoconverttheirknowledgeintominebeingabletosharethisexperiencewithmyclassmateswasawesomeificouldhavetheopportunitytodoanotherironhackbootcampitwouldbeamazingtheyarethefastesttwomonthsiveeverlivedppppstrongtellusaboutyourfinalprojectwhatdoesitdowhattechnologiesdidyouusehowlongdidittakeetcstrongppwellmyfinalprojectwasaboutatravelapplicationwiththiswebapplicationyouwereabletosaveorganizeandshareallyourtripinformationthisprojectwasdevelopedintwoweeksandinordertoachieveallthefeaturesthatiwantedtoincludeonitiusedrailsasiwantedtodemonstrateallthethingsthatihadlearnedinironhackidecidedtoincluderesponsivewebdesignusingcss3andjavascriptjqueryandhtml5functionalitieslikegeolocalizationorwebstoragetoimprovetheuserexperienceppattheendofthosetwoweeksihadahugefrontendprojectwhichwasmorethanideverexpectedthankstomyhardworkandeffortsinthisprojectiwasoneofthefinalistsinthehackshowtheironhackfinalshowwherethefinalistscanshowwhattheyhavemadeintwoweeksandicouldshowmyprojecttomorethanahundredpeopleppppstrongwhatareyouworkingonnowdoyouhaveajobasadeveloperwhatdoesitentailstrongppthankstothehackshowtwodaysaftertheendofironhackiwasworkingatfloqqcomthebiggestonlineeducationmarketplaceinspanishallovertheworldnowadaysimfrontenddeveloperandproductmanageratfloqqcomandimworkingdoingwhatilovetodobrironhackgavemetheopportunitythatothercompaniesdidntgivemeihadnoexperienceandnobodywantedtohiremeandnowimstilllearningandimprovingmyskillsinthebestplaceicouldeverfindppppstrongwouldyouhavebeenabletolearnwhatyounowknowwithoutironhackstrongppitwouldbeimpossibletolearnwhativelearnedinironhackintwomonthsonmyownbutitsnotonlyaboutthedevelopmentskillsthativeimprovedinthosetwomonthsitsalsoaboutthepersonalskillsthativebeenabletodevelopandtheopportunitytomeetthebestitprofessionalsfromallaroundspainironhackwasjusta180experiencethatchangedmywholelifeandthatallowedmetodowhatibelieveiwasborntodoppppstrongwanttolearnmoreaboutironhackcheckouttheirahrefhttpcoursereportcomschoolsironhackrelfollowtarget_blankschoolpageaoncoursereportortheirahrefhttpwwwironhackcomenrelfollowtarget_blankwebsitehereastrongpliliclasspostdatadeeplinkpathnewsfounderspotlightarielquinonesofironhackdatadeeplinktargetpost_64idpost_64h2ahrefschoolsironhacknewsfounderspotlightarielquinonesofironhackfounderspotlightarielquinonesofironhackah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan4212014spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltfounderspotlightarielquinonesironhacksrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files148s1200founder20spotlight20ironhackpngppstrongahrefhttpcoursereportcomschoolsironhackrelfollowtarget_blankironhackaisan8weekcodingbootcampwithcampusesinmadridbarcelonaandsoonmiamiwetalkedwithcofounderarielquinonesabouttheirrailscurriculumhowtheyattractamericanstudentstostudyabroadinspainandwhatsetsironhackapartstrongppppstrongtellusabouthowironhackstartedstrongppicomefromafinancebackgroundimoriginallyfrompuertoricobutspent5yearsinnewyorkmycofoundergonzalocomesfromtheconstructionindustryhesacivilengineerandhebuiltallsortsofmajorinfrastructureprojectsineuropehavingsaidthaticomefromahouseholdofeducatorsbothofmyparentswereteacherswheniwasgrowingupandmyfatheractuallystartedaprivateuniversityinpuertorico20yearsagothatstartedwith15studentsandnowtheyhave6campusesandover10000studentsenrolledppithinkeducationwasalwaysapartofmydnaandiwantedtodosomethingaftercompletingmyeducationimetgonzaloduringourmbawewerebothatwhartonhealsowantedtodosomethingineducationineuropeandpossiblyinedtechaswellduringthose2yearsofthembawewereiteratingideasconstantlyandithinkhadthesameissuethatmostnontechnicalfoundershaveintheuswhichishavingbrilliantideasbutonceyougettothepointwhereyouneedtoexecutethemandproduceanmvpyourenotabletodoititsincrediblychallengingtofindacofounderanditsincrediblychallengingfromacostandalsofromanoperationalperspectivetooutsourcethedevelopmentppgonzaloanditooka2daycourseatwhartonwheretheytaughtustodoverybasicrailseventhoughwedidntacquiretheskillsnecessarytobuildourmvpwewereexcitedaboutthepossibilityofteachingbothtechnicalandnontechnicalpeopletheseskillsthroughahighlyintensiveandcompressedtimeperiodafterthatexperiencewestartedlookingatthebootcampmodelatthatpointtheearlieroneswerestartingtogetalittlebitoftractionwethoughtitwouldbeinterestingtodothissomewhereabroadiddonealotofbusinessinlatinamericasoihadsometiestotheregiongonzalomypartnerisspanishsoourfirstbetwasspainppppstrongwouldyousaythatironhackismoregearedtowardsmakersortechnicalcofoundersasopposedtopeoplewhowanttogetajobatanestablishedcompanyasajuniordeveloperstrongppwevehadbothprofileswevebeenselectiveinthepeopleweadmitfromatechnicalbackgroundwevebeenhesitantsofartosaygofromtotalnewbietoprofessionalwebdeveloperinxweeksourapproachisappealingtofolksthataremaybealreadyinclosetouchwithtechnologyandcodedevelopersthatwanttoprofessionalizetheirskillsandtakethemtothenextlevelorpeoplethatareverysmartanalyticalandarelookingforahardcoreexperiencethatwillallowthemtolearnfromthesetypesofpeopleppppstrongwhenwasthefirstcohortstrongppthefirstcohortwasinoctoberof2013eachcourseis8weekslongppppstrongwhatwasthebiggestlessonthatyoulearnedafterrunningyourfirstcohortstrongpponethingwelearnedisthatthe8weeksjustflybywhenyouplanforpeopletobecoding10to12hoursadaythatseemslikealotbuteverydaygoesbysoquicklypptheotherthingwelearnedwasthatnomatterhowmuchyoufiltertomakesureyoudonthavedisparatelevelspriortoarrivingpeoplejustlearndifferentlyatdifferentvelocitieswithdifferentlearningstylessowithinthestructureof8weeksweneededdifferentexercisesandflexibilitytogivepeoplethechancetolearnrightattheirownpacewhileensuringthateveryoneslearningfundamentalsppppstrongdoyouhavestudentsdopreworkbeforetheygettoironhackstrongppyeahtheydo100hoursofpreworkppppstrongwhatcitiesareyouliveinnowstrongppwereliveinmadridandbarcelonaandwerelaunchinginmiamiinseptemberppppstrongcouldyoutellusaboutthetechscenesinthelocationsthatyoureliveinmadridandbarcelonastrongpppeoplelovetocometospainandstudyabroaditsacountrythathasalottoofferfromthelifestyleperspectiveyouknowyouhavegreatfoodthepartiesstudyabroadinspainhasbeenanintegralpartofspanishsocietyformanyyearswithinthetraditionalhighereducationarenainourcaseweretryingtopositionspaininasimilarfashioninthefirstcohortswetrainedalotofpeoplefromspainbutgoingforwardwewanttomakeitattractiveforforeignerstocomeoverandenjoyeverythingthatspainhastoofferandatthesametimelearnhowtocodeppbarcelonaisveryexcitingbecauseyouhavepeoplefromallovertheworldthatarelaunchingstartupsthereobviouslywithintheeutheresalotofmobilityifyoureaeuropeanunioncitizenyoucangoanywherewithoutanysortofvisarequirementsandithinkalotofnortherneuropeansandpeoplefromgermanyforinstancelovebarcelonaforweatherreasonsthegreatbeachesthelifestylesoalotofthemarecomingovertobarcelonatolaunchtheirownventureshereinbarcelonathetechecosystemisthrivinganditsveryinternationaltheresalotofmobilestartupsthataregettingtractionoverthereppmadridisstillverymuchacosmopolitancityandwereseeingalotoftractioninthestartupspaceitsobviouslyanemergingecosystemnowherenearsiliconvalleybutwereseeingearlystagecompaniesgeteitheracquiredorgoforsubstantialroundsoffinancinghereinmadridwhichisultimatelyadriverforourtypeofbusinesscompaniesneedfundingtoemployengineersandwereseeingthatcapitalflowtoearlystageprojectsppppstrongdoyougetinterestfrompeopleintheusstrongppyesrightnowweregettingalotofinterestfrompeopleallovertheworldincludingtheusiinterviewedafewcandidatesfromthenortheastwehaveanotherstudentfromcaliforniawhosenrollinginourjunecourseppppstrongisitpossibleforsomeonefromtheustocompleteironhackandthenworkinspainorintheeustrongppyesitsdefinitelypossibleitsnotaschallengingassomeonefromeuropetogototheusforsuretheresstillcoststhattheemployerhastoincurbutithasnowherenearthecostsandalltheredtapethatyouhavetodealwithintheusppppstronghasironhackraisedanymoneystrongppnorightnowwerebootstrappedandwewanttokeepitthatwayaslongaspossibleppppstrongsotelluswhatprogramminglanguagesstudentsaremasteringatironhacktellusabouttheteachingstylestrongppwehavetwocoursesthatareliverightnowwebandmobileppthewebcourseisan8weekcourseidsayonaveragestudentsarewithusinouroffices1012hoursadaywecoverhtmlcssandjavascriptonthefrontendandthenonthebackweworkwithrubyonrailsandteachalittlebitofsinatraaswellthefirst6weekswereteachingthosecoretechnologiesandthelast2weeksstudentsareworkingontheirownprojectfromscratchtheculminationoftheprogramisademodaywheretheypresenttheirprojectstothecommunitydevelopersstartupcofoundersthattypeofaudienceppidsay90ofourcontentispracticalwerebigbelieversintheflippedclassroommodelsowewanttomakesurethatwereducetheamountoftheorytimetotheextentpossiblewegetthemalltheresourcesvideosandexercisestocompleteathomepriortoarrivingherewhiletheyreherewegivethemhomeworkandassignmentsfortheweekendsowecanreducethattheorytimeppthetechnologydemandsinspainareveryfragmenteditsnotlikesanfranciscowhereyoucanproduceagazillionrubyonrailsgradseveryyearandtheyllbehiredbyrailsstartupsherewereseeingsomedemandforrailsstartupsbutalsopythonphpetcppppstrongdoyouexpectthataftercompletingyourcourseagraduatewouldbeabletolearnpythonorphpontheirownstrongppahundredpercentandwereseeingthateventhoughlovethetechnologiesweworkwithwerenotobsessedwiththemeithertoustheyreaninstrumenttoteachgooddevelopmentpracticesithinkonethingthatdifferentiatesusfrombootcampsisourfocusandobsessionwithgoodcodingpracticeswereobsessedwithtestingcleancodeandgooddesignpatternswevedoneourjobifthestudentgetagoodbackgroundintechnologybutmoreimportantlytakeawaythosegoodcodingpracticesthattheyapplytowhateverlanguageorframeworktheyuseppppstrongisthemobileclassstructuredthesamewaystrongppsameformatexactsamestructureslightlyhigherrequirementstobeacceptedinordertobeacceptedintothemobilecourseyoualreadyhavetoprogramwithanotherobjectorientedlanguageourfirstcourseisfocusedoniosdevelopmentppppstrongdoyouthinkyoulleverdoanandroidcoursestrongppwellprobablydoandroidinthenearfutureppppstronghowmanystudentsdoyouhaveineachcohortstrongpprightnowwevecappedat20wecanprobablygoabitmorethanthatbutwedontwanttodomorethanthatppppstronghowmanyinstructorsdoyouhaveperclassstrongppwealwaysliketohavearatioofatleast6studentsperteachersowhenwehave15studentswehaveonemainprofessorandtwoteachingassistantsourviewisthatifweregoingtoteachyouonetechnologywewanttomakesurethatthepersonthatisinstructingyouisthebestmostcapablepersonandishighlyspecializedinthatlanguageppppstronghowhaveyoufoundinstructorsstrongppwewenttothebestcompanieshereinspainandotherpartsofeuropeandbasicallyfoundthebestpeopletheretheyworkparttimeforusitsverydifferenttohavesomeonewhosfulltimebootcampprofessorversussomeonewhoisadeveloperandisteachingatabootcampfor2weeksppandalsofromarecruitingperspectivealotofourstudentshavebeenhiredbytheirteachersalsoourstudentshaveanetworkthatgoesbeyondtheirpeersandtheironhackstafftheyhaveanetworkthatconnectstoallthesecompaniesthattheseprofessorsarecomingfromppppstrongyousaidthatpotentialstudentsshouldhavesomevestedinterestinprogrammingandshouldhavesomebackgroundandbeabletoprovethattheycanreallyhandlethematerialwhatstheapplicationprocessstrongppwehavea3stepapplicationprocessthefirstpartisawrittenformthatwescreenandthenwedotwo30minuteskypeinterviewsthefirst30minuteskypeinterviewistogetasenseofwhoyouarewhyyouwanttodothisandgetasenseofisyoufitwithinourcultureandifyouhavethatintrinsicmotivationtomakethemostoutofthe400hoursthatyouhavehereppwesaylistenyouregoingtobecodingmondaythroughfriday10hoursadayandthenyouregoingtohaveworkeverydayonsaturdaysundaywhenitellthemthatwewantsomeonewhobeamsenergyandpositivityiftheymakeitthroughthatinterviewwehaveasecondroundwhichisbasicallytoassesstechnicalskillsweveactuallyacceptedabunchofpeoplethathaveneverprogrammedbeforebutwewanttomakesurethatyouhavethemotivationandtheanalyticalskillsettobeabletocatchuppriortoarrivingtoourcampppinsomecaseswehavepeoplethatwethinkareverysmartandincrediblymotivatedbuthavenevercodedintheirliveshaveneverevenworkedwithhtmlweadmitthemsubjecttoanothervaluationpostthatsecondinterviewsowellgetthemtocomplete60hoursofpreworkandthenseewheretheyareppppstronghowdoesironhackprepareyourgraduatestofindjobsstrongppthedemodayisagreatwaytoshowcaseourtalenttoouremployersandyouhaveallsortsofemployerstherefromthefoundingstagewheretheyhaventraisedanymoneyorarestillpreproducttotechemployerswhohavetechnicalteamsandmorethan3040employeesppontopofthecorecurriculumwehavespeakerslikeemployerscomeinduringthe8weekstopresenttheirproductsandalsoitservesasanopportunityforthemtogetintouchwiththeirstudentsandidentifypotentialhiringleadsppwealsobringinleadinghrpeoplefromsomeofourtoptechemployersheretoofferworkshopsonhowtosetupyourcvhowtooptimizeyourlinkedinprofileseoandallthesethingsandwecoachthemonhowtoconductaninterviewrightnowwevehadtheluxuryofbeingsmallsowereallveryinvolvedintheprocessppppstrongarethosecompaniespayingafeetogetintothedemodayoraretheypayingarecruitingfeeoncetheyvehiredsomeonestrongpprightnowwerenotchargingemployerswerefocusedonplacing100ofourgraduatesandgivingaccesstogreatcompanieseventhosethatwouldntbeinterestedinpayingarecruitingfeeppppstronghaveyoubeensuccessfulinplacingyourgraduatesstrongppwerestartingtoplaceasecondcohortbutinourfirstcohortweplacednearly100percentofourgraduatesithinkinthefirstcohortweplaced60ofthepeople3weekafterthefirstcourseandthentherestoverthenext2monthsppppstrongistheaccreditationbuzzthatshappeningincaliforniaanywhereonyourradardoyougetanypressurefromthegovernmentinspainorareyouthinkingaboutgoingthroughtheaccreditationprocesswhenyouexpandtomiamistrongppweredefinitelygoingtopayattentiontothisinmiamiwereallforitifithelpsthestudentaslongasitdoesntinterferewiththemodelanddoesntlimittheabilityoftheseinstitutionstooffereducationthatsagileandthatcanadapttothetimesandthetechnologiesppppstrongareyouplanningonexpandingbeyondmiamianytimesoonstrongppithinkforthenextyearorevenbeyondthatweregoingtofocusonmiamiandspainhoweverweregoingtousemiamiandspainashubsforotherregionsweregettingalotofinterestfromlatinamericanstudentstocometospainsoforthosewhowouldrathercometomiamibecauseitscloserwecanofferthataswellppppstrongtofindoutmoreaboutironhackcheckouttheirahrefhttpcoursereportcomschoolsironhackrelfollowtarget_blankschoolpageaoncoursereportorahrefhttpwwwironhackcomenrelfollowtarget_blanktheirwebsiteastrongpliulsectiondivdivdivdivdivdivdivclasscolmd4idsidebardivclasshiddenxshiddensmidschoolheaderahrefschoolsironhackdivclassvanityimageimgaltironhacklogotitleironhacklogosrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4017s200logoironhackbluepngdivadivclassaltheaderh1ironhackh1pclassdetailsspanclasslocationspanclassiconlocationspanamsterdambarcelonaberlinmadridmexicocitymiamiparissaopaulospanpdivdivdivdataformcontactdataschoolironhackidcontactbuttonclassbuttonbtnspanimgsrchttpss3amazonawscomcourse_report_productionmisc_imgsmailsvgtitlecontactschoolspancontactalexwilliamsfromironhackbuttondivdivclasspanelgroupidaccordiondivclasspanelpanelsidepaneldefaultidschooldetailsdivclasspanelheadingvisiblexsdatadeeplinktargetmoreinfodatatargetschoolinfocollapsedatatogglecollapseidschoolinfocollapseheadingh4classpaneltitleschoolinfoh4divh4classhiddenxstextcenterschoolinfoh4divclasspanelcollapsecollapseinidschoolinfocollapsedivclasspanelbodypaneldivclassflexfavoritetextcenterbuttonclassbtnbtninversefavlogindatarequestid84dataschoolid84savenbspspanclassglyphiconglyphiconheartemptyspanbuttondivulclassschoolinfoliclassurltextcenterdesktoponlyspanclassiconearthspanaitempropurltarget_blankhrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageironhackwebsitealiliclassemailtextcenterdesktoponlyspanclassiconmailspanaitempropemailhrefmailtohiironhackcomhiironhackcomaliliclassschooltrackstextleftspanclassiconbookspanahreftracksfrontenddeveloperbootcampsfrontendwebdevelopmentabrahreftrackswebdevelopmentcoursesfullstackwebdevelopmentabrahreftracksuxuidesignbootcampsuxdesignabrliliclasslocationtextleftspanclassiconlocationspanahrefcitiesamsterdamamsterdamabrahrefcitiesbarcelonabarcelonaabrahrefcitiesberlinberlinabrahrefcitiesmadridmadridabrahrefcitiesmexicocitymexicocityabrahrefcitiesmiamicodingbootcampsmiamiabrahrefcitiesparisparisabrahrefcitiessaopaulosaopauloabrliululliclassurltextcenteraclassnodecorationhrefhttpswwwfacebookcomtheironhackutm_sourcecoursereportamputm_mediumschoolpagespanclassiconfacebook2largeiconspanaaclassnodecorationhrefhttpstwittercomironhackutm_sourcecoursereportamputm_mediumschoolpagespanclassicontwitterlargeiconspanaaclassnodecorationhrefhttpswwwlinkedincomcompanyironhackutm_sourcecoursereportamputm_mediumschoolpagespanclassiconlinkedinlargeiconspanaaclassnodecorationhrefhttpsgithubcomtheironhackutm_sourcecoursereportamputm_mediumschoolpagespanclassicongithublargeiconspanaaclassnodecorationhrefhttpswwwquoracomtopicironhackutm_sourcecoursereportamputm_mediumschoolpagespanclassiconquoralargeiconspanaliuldivdivdivdivclasspanelpanelsidepaneldefaultidmoreinfodivclasspanelheadingvisiblexsdatadeeplinktargetmoreinfodatatargetmoreinfocollapsedatatogglecollapseidmoreinfocollapseheadingh4classpaneltitlemoreinformationh4divh4classhiddenxstextcentermoreinformationh4divclasspanelcollapsecollapseinidmoreinfocollapsedivclasspanelbodypanelh5spanclassglyphiconglyphiconremovecircleredspannbspguaranteesjobh5h5spanclassglyphiconglyphiconremovecircleredspannbspacceptsgibillh5h5spanclassglyphiconglyphiconokcirclegreenspannbspjobassistanceh5h5licensingh5plicensedbythefloridadeptofeducationph5spanclassglyphiconglyphiconremovecircleredspannbsphousingh5h5spanclassglyphiconglyphiconokcirclegreenspanahrefenterpriseofferscorporatetrainingah5divdivclasspanelpanelsideidcoursereportdivclasspanelheadingahrefbestcodingbootcampsdivclassbestbootcampcontainerimgclasssrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetsbest_bootcamp_course_report_white4a07db772ccb9aee4fa0f3ad6a6b9a23pngalthttpscoursereportproductionherokuappcomglobalsslfastlynetassetsbest_bootcamp_course_report_white4a07db772ccb9aee4fa0f3ad6a6b9a23pnglogoimgclasssrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetsbest_bootcamp_badge_course_report_green_20187fa206d8283713de4d0c00391f0109d7pngalthttpscoursereportproductionherokuappcomglobalsslfastlynetassetsbest_bootcamp_badge_course_report_green_20187fa206d8283713de4d0c00391f0109d7pnglogodivbrdivclassbannercontainerimgclassbannersrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetsestablished_school_badgeebe0a3f352bb36a13f02710919cda647pngalthttpscoursereportproductionherokuappcomglobalsslfastlynetassetsestablished_school_badgeebe0a3f352bb36a13f02710919cda647pnglogoimgclassbannersrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetslarge_alumni_network_badge848ae03429d96b6db30c413d38dad62apngalthttpscoursereportproductionherokuappcomglobalsslfastlynetassetslarge_alumni_network_badge848ae03429d96b6db30c413d38dad62apnglogoimgclassbannersrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetstop_rated_badge2a537914dae4979722e66430ef0756bdpngalthttpscoursereportproductionherokuappcomglobalsslfastlynetassetstop_rated_badge2a537914dae4979722e66430ef0756bdpnglogodivadivdivdivdivdivdivclasssidebarapplymoduleaclassgagetmatchedmpgetmatcheddatacityhrefgetmatchedspanclasstopnotsurewhatyourebrlookingforspanspanclassbottomwellmatchyouspanadivdivdivdivsectiondivclasscontactoverlaydivclassmodalcontainerdivclassmodalheaderh4starttheconversationh4pcompletethisformtoconnectwithironhackpdivformactioncontactclasscontactformcontactformvalidatedataschoolironhackidmpcontactformmethodpostinputtypehiddennameauthenticity_tokenidauthenticity_tokenvalueabw0cnplttay8fpejyrzu8qt6ndnpuxge1vyl2xjz2mocitetxsmgzavt6tydakzu0dovdcwz98meoe9ginputtypehiddennameschool_emailidschool_emailvaluehiironhackcominputtypehiddennameschool_ididschool_idvalue84inputtypehiddennameschool_contact_nameidschool_contact_namevaluealexwilliamsinputtypehiddennameschool_contact_emailidschool_contact_emailvaluealexwilliamsironhackcominputidschool_namenameschoolstyledisplaynonetypetextvalueironhackdivclassfieldcolmd12divclassbricklabelmynamelabelinputidnamenameuser_nametypetextdivdivclassbricklabelmyemaillabelinputclasscontactformidcontactemailnameuser_emailtypeemaildividresultdivdivdivclassbricklabelmyphonenumberoptionallabelinputclasscontactformidcontactphonenamephonetypeteldivdivdivclassfieldmidfieldcolmd12divclassbricktextrightlabelimmostinterestedinlabeldivdivclassbrickselectnamecontact_campus_ididcontact_campus_iddatadynamicselectabletargetcontact_course_iddatadynamicselectableurldynamic_selectcontact_campus_idcoursesdatatargetplaceholderselectcourseoptionvalueselectcampusoptionoptionvalue1089amsterdamoptionoptionvalue780barcelonaoptionoptionvalue995berlinoptionoptionvalue779madridoptionoptionvalue913mexicocityoptionoptionvalue107miamioptionoptionvalue843parisoptionoptionvalue1090saopaulooptionselectdivdivclassbrickselectnamecontact_course_ididcontact_course_idselectdivdividschool_errorsdivdivdivclassfieldcolmd12labelanyotherinformationyoudliketosharewithalexwilliamsfromironhacklabeltextareaclasscontactformidmessagenamemessageplaceholderoptionaltypetextboxtextareabrdivdivclassfieldinputclassbtnbuttoncontactformvalidatetypesubmitvaluegetintouchpclassh6bysubmittingiacknowledgethatmyinformationwillbesharedwithironhackpdivformaidclosecontactbtnclasscloserhrefspanclassiconcrossspanadivdivclassmodallowerdivdivclasssuccessmessagespanclassiconcheckaltspanh2thanksh2divdivscriptsrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetspagespecificintltelinputc585d5ec48fb4f7dbb37d0c2c31e7d17jsscriptdivclassopeninstructionsdivdivclassinstructionsoverlaydivclassmodalcontainerdivclassmodalheaderloginguestmodalheaderdivclasstextcenterdivclassloginerrorsdivdivclassloginsuccessdivdivdivclassrowno_bordercolmd12divdivclasspreconfirmationcontainerclasstextcenterh2classtextcenterrevpubtitleh2divclassrevpubpdivpclasstextcenterrevanonpph4classtextcenterrevpubh4verifyviah4divclasstextcenterrevpubconfirmemailbuttondatareviewdataurlidverifyreviewbuttonclassbtnbtndefaultonclickjavascriptemailverifyemailbuttonbuttonclassbtnbtndefaultonclickjavascriptopenverify3939linkedinbuttonbuttonclassbtnbtndefaultonclickjavascriptopenverify3939githubbuttondivpclasstextcentersubscriptbyclickingverifyvialinkedingithubyouagreetoletcoursereportstoreyourpublicprofiledetailsppclasstextcenterthankssomuchfortakingthetimetoshareyourexperiencewiththecoursereportcommunitypcontainerdivdivclassconfirmedviaemaildivclassreviewinstructionscontainerclasstextcenterh2greath2pwejustsentaspeciallinktoyouremailgoclickthatlinktopublishthisreviewph4classrevconfirmlinkonceyouveconfirmedyourpostyoucanviewyourlivereviewh4pthankssomuchfortakingthetimetoshareyourexperiencewiththecoursereportcommunitypcontainerdivdivdivclasscolmd12textcenterbottombufferahrefschoolsbuttonclassbtnbtndefaultbrowseschoolsbuttonadivdivdivdivscriptvarnewwindowfunctionopenverifyprovider_urlvarscreenxtypeofwindowscreenxundefinedwindowscreenxwindowscreenleftscreenytypeofwindowscreenyundefinedwindowscreenywindowscreentopouterwidthtypeofwindowouterwidthundefinedwindowouterwidthdocumentbodyclientwidthouterheighttypeofwindowouterheightundefinedwindowouterheightdocumentbodyclientheight22leftparseintscreenxouterwidth800210topparseintscreenyouterheight8002510featureswidth800height800leftlefttoptopreviewverifyreviewdatareviewtostringparamsreview_idreviewurlprovider_urlparamsbodycsscursorprogressnewwindowwindowopenurlloginfeaturesifwindowfocusnewwindowfocusreturnfalsefunctionemailverifyprovider_urlreviewverifyreviewdatareviewtostringurlverifyreviewdataurltostringpostsendconfirmationreviewreviewurlurlsuccessfunctiondatapreconfirmationhideconfirmedviaemailshowbottombuffershowscriptdivclassduplicateinstructionsoverlaydivclassmodalcontainerdivclassmodalheaderloginguestmodalheaderdivclassreviewinstructionscontainerclasstextcenterh2classduprevtitleh2hrpifyouwouldliketoreviseordeleteareviewpleaseemailahrefmailtohellocoursereportcomcoursereportmoderatorsapcontainerdivdivclasscolmd12textcenterbottombufferbuttonclassbtnbtndefaultidloginconfirmbacktoreviewbuttondivaidinstructionsclosehrefspanclassiconcrossspanadivdivdivscriptclose_instructions_modalfunctioninstructionsoverlayfadeout250duplicateinstructionsoverlayfadeout250returnfalseinstructionsconfirminstructionscloseonclickclose_instructions_modalscriptdivclassconfirmscholarshipoverlaydivclassmodalcontainerdivclassmodalheaderconfirmscholarshipmodalheaderdivclasstextcenterdivclassloginerrorsdivdivclassloginsuccessdivdivcontainerclasstextcenterh2successh2pph4classrevconfirmlinkanemailwiththesedetailshasbeensenttoironhackh4containerdivclasscolmd12textcenterbuttonclassbtnbtndefaultonclickjavascriptviewscholarshipsviewmyscholarshipsbuttondivdivaonclickjavascriptclosethismodalidscholarshipclosehrefspanclassiconcrossspanadivdivscriptvarnewwindowfunctionclosethismodalconfirmscholarshipoverlayfadeout500bodycssoverflowscrollfunctionviewscholarshipswindowlocationhrefresearchcenterscholarshipsscriptdivclassconfirmscholarshipappliedoverlaydivclassmodalcontainerdivclassmodalheaderconfirmscholarshipmodalheaderdivclasstextcenterdivclassloginerrorsdivdivclassloginsuccessdivdivcontainerclasstextcenterh2hangonh2pph4classrevconfirmlinkyouvealreadyappliedtothisscholarshipwithironhackh4containerdivclasscolmd12textcenterbuttonclassbtnbtndefaultonclickjavascriptclosethismodalclosebuttondivdivaonclickjavascriptclosethismodalidscholarshipclosehrefspanclassiconcrossspanadivdivscriptvarnewwindowfunctionclosethismodalconfirmscholarshipoverlayfadeout500bodycssoverflowscrollscriptdivclasserrorsoverlaydivclassmodalcontainerdivclassmodalheaderloginguestmodalheaderdivclasstextcenterh3classlogtitlewhoah3psomethingmusthavegoneterriblywrongfixthefollowingandtryagainpdivclassloginerrorsdivdivclassloginsuccessdivdivdivaidsubmiterrorclosehrefspanclassiconcrossspanadivdivdivclassshareoverlaydivclassmodalcontainerdivclassshareheaderh2sharethisreviewh2divdivclasssharebodypclasssharereviewtitlepinputclassshareableurlidshareinputreadonlybuttonclassbtnbtnreversesharebuttonspanclassglyphiconglyphiconsharenbspspancopytoclipboardbuttondivaidshareclosehrefspanclassiconcrossspanadivdivdivclassmatchpopupdivclassmodalcontainerdivclassmodalheadersectionclassfindbootcampwrapperdivclasscontainerdivclassonethirdfbwdescriptionpclassh1dataaossliderightdataaosduration400findthebrbestbrbootcampbrforyoupdivdivclasstwothirdsdivclasshalfpclassh2dataaossliderightdataaosduration800telluswhatyouresearchingforandwellmatchyouwithourhighestratedschoolspdivdivclasshalfaclassacceptlinkgagetmatcheddataoriginmodalhrefgetmatchedoriginmodalbuttonclassbtnbtnmatchgetmatchedbuttonadivdivdivsectiondivaidmatchclosebtnhrefspanclassiconcrossspanadivclasssuccessmessagespanclassiconcheckaltspanh2thanksh2divdivdivdivclassemailfootersectionclassemailfootercontainersectionclassheadercontainerdivclassimageboximgaltguidetopayingforbootcampssrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetspaying_for_bootcamp_ipad_mincb6dec01480a37f8f37dbdc1c919ae6cpngdivdivclassheaderboxh2getourfreeultimateguidetopayingforacodingbootcamph2divsectionsectionclassemailsubmissionboxformidoptinparsleyvalidateclassflexcolumnleftactionmodal_saveacceptcharsetutf8dataremotetruemethodpostinputnameutf8typehiddenvaluex2713inputtypeemailnameemailidemailplaceholderemailaddressrequiredrequiredsectionclassflexrowselectnamemailing_list_categoryidmailingcategoryinputoptionvalueiamoptionoptionvalueresearchingcodingbootcampsresearchingcodingbootcampsoptionoptionvaluecurrentstudentalumcurrentstudentalumoptionoptionvalueindustryprofessionalindustryprofessionaloptionoptionvalueotherotheroptionselectinputtypehiddennameutm_sourceidutm_sourceinputtypehiddennameutm_mediumidutm_mediuminputtypehiddennameutm_termidutm_terminputtypehiddennameutm_contentidutm_contentinputtypehiddennameutm_campaignidutm_campaigninputtypesubmitnamecommitvaluesignmeupclassbuttonbuttonbluesectiondivclassemailerrorlookslikeyourealreadyonourmailinglistifyourenotshootusannbspahrefmailtohellocoursereportcomemailadivdivclasssuccessgreatwevesignedyouupdivdivclassformnotesplusyoullbethefirsttoknowaboutcodingbootcampnewsandyouremailissafewithusdivformsectionsectiondivfooterdivclasscontainerlargerfooterdivclassrowdivclasscolsm3h4coursereporth4ulliidhomeahrefhomealiliidschoolsahrefschoolsschoolsaliliidblogahrefblogblogaliliidresourcesahrefresourcesadvicealiliidwriteareviewahrefwriteareviewwriteareviewaliliidaboutahrefaboutaboutaliliidconnectahrefconnectconnectwithusaliuldivdivclasscolsm3h4legalh4ulliahreftermsofservicetermsofservicealiliahrefprivacypolicyprivacypolicyaliulh4followush4ulclasscontactlinksliahreftwittercomcoursereporttarget_blankspanclassicontwitterspanaahrefwwwfacebookcomcoursereporttarget_blankspanclassiconfacebookspanaaahrefplusgooglecom110399277954088556485relpublishertarget_blankspanclassicongoogleplusspanaahrefmailtohellocoursereportcomspanclassiconmailspanaliuldivdivclasscolsm3h4researchh4ulliahrefcodingbootcampultimateguideultimateguidetochoosingacodingbootcampaliliahrefbestcodingbootcampsbestcodingbootcampsof2017aliliahrefreports2017codingbootcampmarketsizeresearch2017codingbootcampmarketsizereportaliliahrefreportscodingbootcampjobplacement20172017codingbootcampoutcomesdemographicsstudyaliuldivdivclasscolsm3aclasslogosmallpullrighthrefimgaltcoursereporttitlecoursereportsrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetslogosmalla04da9639b878f3d36becf065d607e0epngadivdivdivdivclasscontainermobilefooterdivclassrowdivclasscolxs6h4coursereporth4ulliidhomeahrefhomealiliidschoolsahrefschoolsschoolsaliliidblogahrefblogblogaliliidresourcesahrefresourcesadvicealiliidwriteareviewahrefwriteareviewwriteareviewaliliidaboutahrefaboutaboutaliliidconnectahrefconnectconnectwithusaliuldivdivclasscolxs6h4legalh4ulliahreftermsofservicetermsofservicealiliahrefprivacypolicyprivacypolicyaliulh4followush4ulclasscontactlinksliahreftwittercomcoursereporttarget_blankspanclassicontwitterspanaahrefwwwfacebookcomcoursereporttarget_blankspanclassiconfacebookspanaaahrefplusgooglecom110399277954088556485relpublishertarget_blankspanclassicongoogleplusspanaahrefmailtohellocoursereportcomspanclassiconmailspanaliulh4ahrefreportsresearchah4divdivdivfooterdivclassloginoverlaydivclassmodalcontainerdivclassmodalheaderloginmodalheaderdivclasstextcenterdivclassloginerrorsdivdivclassloginsuccessdivdivdivclassrowno_bordercolmd12divclasscolmd6textcenterh3classlogtitleloginh3divclassloginrevealidlog_informclassnew_useridnew_useractionloginacceptcharsetutf8dataremotetruemethodpostinputnameutf8typehiddenvaluex2713divclassfieldtextcenterinputplaceholderemailtypeemailvaluenameuseremailiduser_emaildivdivclassfieldtextcenterinputplaceholderpasswordtypepasswordnameuserpasswordiduser_passworddivdivclassfieldlinktextcenterahrefresetpasswordforgotpasswordadivdivclasstextcenterpclasstextcenterno__marginorpdivclasstextcenterinlinemediaaclasssocialmedialoginvaluefacebookdataauthfacebookhrefusersauthfacebookimgclasssociallogosrchttpss3amazonawscomcourse_report_productionmisc_imgsfbflogo__blue_29pngalthttpss3amazonawscomcourse_report_productionmisc_imgsfbflogo__blue_29pnglogoadivdivclasstextcenterinlinemediaaclasssocialmedialoginvaluetwitterdataauthtwitterhrefusersauthtwitterimgclasssociallogosrchttpss3amazonawscomcourse_report_productionmisc_imgstwitter_logo_white_on_bluepngalthttpss3amazonawscomcourse_report_productionmisc_imgstwitter_logo_white_on_bluepnglogoadivdivclasstextcenterinlinemediaaclasssocialmedialoginvaluegoogledataauthgooglehrefusersauthgoogle_oauth2imgclasssociallogosrchttpss3amazonawscomcourse_report_productionmisc_imgs1473366122_newgooglefaviconpngalthttpss3amazonawscomcourse_report_productionmisc_imgs1473366122_newgooglefaviconpnglogoadivdivdivclassactionstextcentersubmitlogintrayinputtypesubmitnamecommitvalueloginclassbtnbtndefaultdivformdivdivclasssignuprevealidsign_upformclassnew_useridnew_useractionsignupacceptcharsetutf8dataremotetruemethodpostinputnameutf8typehiddenvaluex2713divclassfieldtextcenterinputplaceholderemailtypeemailvaluenameuseremailiduser_emaildivdivclassfieldtextcenterinputplaceholderpasswordtypepasswordnameuserpasswordiduser_passworddivdivclasstextcenterpclasstextcenterno__marginorpdivclasstextcenterinlinemediaaclasssocialmedialoginvaluefacebookdataauthfacebookhrefusersauthfacebookimgclasssociallogosrchttpss3amazonawscomcourse_report_productionmisc_imgsfbflogo__blue_29pngalthttpss3amazonawscomcourse_report_productionmisc_imgsfbflogo__blue_29pnglogoadivdivclasstextcenterinlinemediaaclasssocialmedialoginvaluetwitterdataauthtwitterhrefusersauthtwitterimgclasssociallogosrchttpss3amazonawscomcourse_report_productionmisc_imgstwitter_logo_white_on_bluepngalthttpss3amazonawscomcourse_report_productionmisc_imgstwitter_logo_white_on_bluepnglogoadivdivclasstextcenterinlinemediaaclasssocialmedialoginvaluegoogledataauthgooglehrefusersauthgoogle_oauth2imgclasssociallogosrchttpss3amazonawscomcourse_report_productionmisc_imgs1473366122_newgooglefaviconpngalthttpss3amazonawscomcourse_report_productionmisc_imgs1473366122_newgooglefaviconpnglogoadivdivdivclassactionstextcentersubmitlogintrayinputtypesubmitnamecommitvaluesignupclassbtnbtndefaultdivformdivdivdivclasscolmd6textcenterleftborderpclasslogintextlogintoclaimtrackandfollowuponyourscholarshipplusyoucantrackyourbootcampreviewscomparebootcampsandsaveyourfavoriteschoolspdivclassformtraydivclasstextcenterloginrevealpnewtocoursereportpbuttonclassbtnbtndefaultidclose_log_insignupbuttondivdivclasstextcenterdisplaynonesignuprevealpalreadyhaveanaccountpbuttonclassbtnbtndefaultidclose_sign_uploginbuttondivdivdivdivdivspanclassiconcrossidloginclosespandivdivdivclassdisplaynoneidcurrentuseremailcurrent_useremaildivbodyhtml\n", + "doctypehtmlhtmlclassclientnojslangendirltrheadmetacharsetutf8titledataanalysiswikipediatitleheadbodyclassmediawikiltrsitedirltrmwhideemptyeltns0nssubjectpagedata_analysisrootpagedata_analysisskinvectoractionviewdividmwpagebaseclassnoprintdivdividmwheadbaseclassnoprintdivdividcontentclassmwbodyrolemainaidtopadividsitenoticeclassmwbodycontentcentralnoticedivdivclassmwindicatorsmwbodycontentdivh1idfirstheadingclassfirstheadinglangendataanalysish1dividbodycontentclassmwbodycontentdividsitesubclassnoprintfromwikipediathefreeencyclopediadivdividcontentsubdivdividjumptonavdivaclassmwjumplinkhrefmwheadjumptonavigationaaclassmwjumplinkhrefpsearchjumptosearchadividmwcontenttextlangendirltrclassmwcontentltrdivclassmwparseroutputtableclassverticalnavboxnowraplinksplainliststylefloatrightclearrightwidth220emmargin0010em10embackgroundf9f9f9border1pxsolidaaapadding02emborderspacing04em0textaligncenterlineheight14emfontsize88tbodytrtdstylepaddingtop04emlineheight12empartofaseriesonahrefwikistatisticstitlestatisticsstatisticsatdtrtrthstylepadding02em04em02empaddingtop0fontsize145lineheight12emahrefwikidata_visualizationtitledatavisualizationdatavisualizationathtrtrtdstylepadding001em04emdivclassnavframestylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftbackgroundddffddmajordimensionsdivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterulliahrefwikiexploratory_data_analysistitleexploratorydataanalysisexploratorydataanalysisa160822632ahrefwikiinformation_designtitleinformationdesigninformationdesignaliliahrefwikiinteractive_data_visualizationtitleinteractivedatavisualizationinteractivedatavisualizationaliliahrefwikidescriptive_statisticstitledescriptivestatisticsdescriptivestatisticsa160822632ahrefwikistatistical_inferencetitlestatisticalinferenceinferentialstatisticsaliliahrefwikistatistical_graphicstitlestatisticalgraphicsstatisticalgraphicsa160822632ahrefwikiplot_graphicstitleplotgraphicsplotaliliaclassmwselflinkselflinkdataanalysisa160822632ahrefwikiinfographictitleinfographicinfographicaliliahrefwikidata_sciencetitledatasciencedatasciencealiuldivdivtdtrtrtdstylepadding001em04emdivclassnavframestylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftbackgroundddffddimportantfiguresdivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterulliahrefwikitamara_munznertitletamaramunznertamaramunznera160822632ahrefwikiben_shneidermantitlebenshneidermanbenshneidermana160822632ahrefwikijohn_w_tukeyclassmwredirecttitlejohnwtukeyjohnwtukeya160822632ahrefwikiedward_tuftetitleedwardtufteedwardtuftea160822632ahrefwikifernanda_vic3a9gastitlefernandavigasfernandavigasa160822632ahrefwikihadley_wickhamtitlehadleywickhamhadleywickhamaliuldivdivtdtrtrtdstylepadding001em04emdivclassnavframestylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftbackgroundddffddinformationgraphictypesdivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterulliahrefwikiline_charttitlelinechartlinecharta160822632ahrefwikibar_charttitlebarchartbarchartaliliahrefwikihistogramtitlehistogramhistograma160822632ahrefwikiscatterplotclassmwredirecttitlescatterplotscatterplotaliliahrefwikiboxplotclassmwredirecttitleboxplotboxplota160822632ahrefwikipareto_charttitleparetochartparetochartaliliahrefwikipie_charttitlepiechartpiecharta160822632ahrefwikiarea_charttitleareachartareachartaliliahrefwikicontrol_charttitlecontrolchartcontrolcharta160822632ahrefwikirun_charttitlerunchartrunchartaliliahrefwikistemandleaf_displaytitlestemandleafdisplaystemandleafdisplaya160822632ahrefwikicartogramtitlecartogramcartogramaliliahrefwikismall_multipletitlesmallmultiplesmallmultiplea160822632ahrefwikisparklinetitlesparklinesparklinealiliahrefwikitable_informationtitletableinformationtablealiuldivdivtdtrtrtdstylepadding001em04emdivclassnavframestylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftbackgroundddffddrelatedtopicsdivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterulliahrefwikidatatitledatadataa160822632ahrefwikiinformationtitleinformationinformationaliliahrefwikibig_datatitlebigdatabigdataa160822632ahrefwikidatabasetitledatabasedatabasealiliahrefwikichartjunktitlechartjunkchartjunka160822632ahrefwikivisual_perceptiontitlevisualperceptionvisualperceptionaliliahrefwikiregression_analysistitleregressionanalysisregressionanalysisa160822632ahrefwikistatistical_modeltitlestatisticalmodelstatisticalmodelaliliahrefwikimisleading_graphtitlemisleadinggraphmisleadinggraphaliuldivdivtdtrtrtdstyletextalignrightfontsize115paddingtop06emdivclassplainlinkshlistnavbarminiulliclassnvviewahrefwikitemplatedata_visualizationtitletemplatedatavisualizationabbrtitleviewthistemplatevabbraliliclassnvtalkahrefwindexphptitletemplate_talkdata_visualizationampactioneditampredlink1classnewtitletemplatetalkdatavisualizationpagedoesnotexistabbrtitlediscussthistemplatetabbraliliclassnveditaclassexternaltexthrefenwikipediaorgwindexphptitletemplatedata_visualizationampactioneditabbrtitleeditthistemplateeabbraliuldivtdtrtbodytabletableclassverticalnavboxnowraplinksstylefloatrightclearrightwidth220emmargin0010em10embackgroundf9f9f9border1pxsolidaaapadding02emborderspacing04em0textaligncenterlineheight14emfontsize88tbodytrthstylepadding02em04em02emfontsize145lineheight12emahrefwikicomputational_physicstitlecomputationalphysicscomputationalphysicsathtrtrtdstylepadding02em004emahrefwikifilerayleightaylor_instabilityjpgclassimageimgaltrayleightaylorinstabilityjpgsrcuploadwikimediaorgwikipediacommonsthumb554rayleightaylor_instabilityjpg220pxrayleightaylor_instabilityjpgwidth220height220srcsetuploadwikimediaorgwikipediacommonsthumb554rayleightaylor_instabilityjpg330pxrayleightaylor_instabilityjpg15xuploadwikimediaorgwikipediacommonsthumb554rayleightaylor_instabilityjpg440pxrayleightaylor_instabilityjpg2xdatafilewidth500datafileheight500atdtrtrtdstylepadding001em04empahrefwikinumerical_analysistitlenumericalanalysisnumericalanalysisa160b183b32ahrefwikicomputer_simulationtitlecomputersimulationsimulationabrpaclassmwselflinkselflinkdataanalysisa160b183b32ahrefwikiscientific_visualizationtitlescientificvisualizationvisualizationatdtrtrtdstylepadding001em04emdivclassnavframecollapsedstylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftahrefwikipotentialtitlepotentialpotentialsadivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterahrefwikimorselongrange_potentialtitlemorselongrangepotentialmorselongrangepotentiala160b183b32ahrefwikilennardjones_potentialtitlelennardjonespotentiallennardjonespotentiala160b183b32ahrefwikiyukawa_potentialtitleyukawapotentialyukawapotentiala160b183b32ahrefwikimorse_potentialtitlemorsepotentialmorsepotentialadivdivtdtrtrtdstylepadding001em04emdivclassnavframecollapsedstylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftahrefwikicomputational_fluid_dynamicstitlecomputationalfluiddynamicsfluiddynamicsadivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterahrefwikifinite_difference_methodtitlefinitedifferencemethodfinitedifferencea160b183b32ahrefwikifinite_volume_methodtitlefinitevolumemethodfinitevolumeabrpahrefwikifinite_element_methodtitlefiniteelementmethodfiniteelementa160b183b32ahrefwikiboundary_element_methodtitleboundaryelementmethodboundaryelementabrahrefwikilattice_boltzmann_methodstitlelatticeboltzmannmethodslatticeboltzmanna160b183b32ahrefwikiriemann_solvertitleriemannsolverriemannsolverabrahrefwikidissipative_particle_dynamicstitledissipativeparticledynamicsdissipativeparticledynamicsabrahrefwikismoothedparticle_hydrodynamicstitlesmoothedparticlehydrodynamicssmoothedparticlehydrodynamicsabrpahrefwikiturbulence_modelingtitleturbulencemodelingturbulencemodelsadivdivtdtrtrtdstylepadding001em04emdivclassnavframecollapsedstylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftahrefwikimonte_carlo_methodtitlemontecarlomethodmontecarlomethodsadivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterahrefwikimonte_carlo_integrationtitlemontecarlointegrationintegrationa160b183b32ahrefwikigibbs_samplingtitlegibbssamplinggibbssamplinga160b183b32ahrefwikimetropolise28093hastings_algorithmtitlemetropolishastingsalgorithmmetropolisalgorithmadivdivtdtrtrtdstylepadding001em04emdivclassnavframecollapsedstylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftparticledivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterahrefwikinbody_simulationtitlenbodysimulationnbodya160b183b32ahrefwikiparticleincelltitleparticleincellparticleincellabrahrefwikimolecular_dynamicstitlemoleculardynamicsmoleculardynamicsadivdivtdtrtrtdstylepadding001em04emdivclassnavframecollapsedstylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftscientistsdivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterahrefwikisergei_k_godunovtitlesergeikgodunovgodunova160b183b32ahrefwikistanislaw_ulamtitlestanislawulamulama160b183b32ahrefwikijohn_von_neumanntitlejohnvonneumannvonneumanna160b183b32ahrefwikiboris_galerkintitleborisgalerkingalerkina160b183b32ahrefwikiedward_norton_lorenztitleedwardnortonlorenzlorenza160b183b32ahrefwikikenneth_g_wilsontitlekennethgwilsonwilsonadivdivtdtrtrtdstyletextalignrightfontsize115paddingtop06emdivclassplainlinkshlistnavbarminiulliclassnvviewahrefwikitemplatecomputational_physicstitletemplatecomputationalphysicsabbrtitleviewthistemplatevabbraliliclassnvtalkahrefwikitemplate_talkcomputational_physicstitletemplatetalkcomputationalphysicsabbrtitlediscussthistemplatetabbraliliclassnveditaclassexternaltexthrefenwikipediaorgwindexphptitletemplatecomputational_physicsampactioneditabbrtitleeditthistemplateeabbraliuldivtdtrtbodytablepbdataanalysisbisaprocessofinspectingahrefwikidata_cleansingtitledatacleansingcleansingaahrefwikidata_transformationtitledatatransformationtransformingaandahrefwikidata_modelingtitledatamodelingmodelingaahrefwikidatatitledatadataawiththegoalofdiscoveringusefulinformationinformingconclusionsandsupportingdecisionmakingdataanalysishasmultiplefacetsandapproachesencompassingdiversetechniquesunderavarietyofnameswhilebeingusedindifferentbusinessscienceandsocialsciencedomainsppahrefwikidata_miningtitledataminingdataminingaisaparticulardataanalysistechniquethatfocusesonmodelingandknowledgediscoveryforpredictiveratherthanpurelydescriptivepurposeswhileahrefwikibusiness_intelligencetitlebusinessintelligencebusinessintelligenceacoversdataanalysisthatreliesheavilyonaggregationfocusingmainlyonbusinessinformationsupidcite_ref1classreferenceahrefcite_note191193asupinstatisticalapplicationsdataanalysiscanbedividedintoahrefwikidescriptive_statisticstitledescriptivestatisticsdescriptivestatisticsaahrefwikiexploratory_data_analysistitleexploratorydataanalysisexploratorydataanalysisaedaandahrefwikistatistical_hypothesis_testingtitlestatisticalhypothesistestingconfirmatorydataanalysisacdaedafocusesondiscoveringnewfeaturesinthedatawhilecdafocusesonconfirmingorfalsifyingexistingahrefwikihypothesesclassmwredirecttitlehypotheseshypothesesaahrefwikipredictive_analyticstitlepredictiveanalyticspredictiveanalyticsafocusesonapplicationofstatisticalmodelsforpredictiveforecastingorclassificationwhileahrefwikitext_analyticsclassmwredirecttitletextanalyticstextanalyticsaappliesstatisticallinguisticandstructuraltechniquestoextractandclassifyinformationfromtextualsourcesaspeciesofahrefwikiunstructured_datatitleunstructureddataunstructureddataaalloftheabovearevarietiesofdataanalysisppahrefwikidata_integrationtitledataintegrationdataintegrationaisaprecursortodataanalysissupclassnoprintinlinetemplatestylemarginleft01emwhitespacenowrap91iahrefwikiwikipediamanual_of_stylewords_to_watchunsupported_attributionstitlewikipediamanualofstylewordstowatchspantitlethematerialnearthistagmayuseweaselwordsortoovagueattributionmarch2018accordingtowhomspanai93supanddataanalysisiscloselylinkedsupclassnoprintinlinetemplatestylewhitespacenowrap91iahrefwikiwikipediaplease_clarifytitlewikipediapleaseclarifyspantitlepleaseclarifythefollowingstatementorstatementswithagoodexplanationfromareliablesourcemarch2018howspanai93suptoahrefwikidata_visualizationtitledatavisualizationdatavisualizationaanddatadisseminationthetermidataanalysisiissometimesusedasasynonymfordatamodelingpdividtocclasstocinputtypecheckboxrolebuttonidtoctogglecheckboxclasstoctogglecheckboxstyledisplaynonedivclasstoctitlelangendirltrh2contentsh2spanclasstoctogglespanlabelclasstoctogglelabelfortoctogglecheckboxlabelspandivulliclasstoclevel1tocsection1ahrefthe_process_of_data_analysisspanclasstocnumber1spanspanclasstoctexttheprocessofdataanalysisspanaulliclasstoclevel2tocsection2ahrefdata_requirementsspanclasstocnumber11spanspanclasstoctextdatarequirementsspanaliliclasstoclevel2tocsection3ahrefdata_collectionspanclasstocnumber12spanspanclasstoctextdatacollectionspanaliliclasstoclevel2tocsection4ahrefdata_processingspanclasstocnumber13spanspanclasstoctextdataprocessingspanaliliclasstoclevel2tocsection5ahrefdata_cleaningspanclasstocnumber14spanspanclasstoctextdatacleaningspanaliliclasstoclevel2tocsection6ahrefexploratory_data_analysisspanclasstocnumber15spanspanclasstoctextexploratorydataanalysisspanaliliclasstoclevel2tocsection7ahrefmodeling_and_algorithmsspanclasstocnumber16spanspanclasstoctextmodelingandalgorithmsspanaliliclasstoclevel2tocsection8ahrefdata_productspanclasstocnumber17spanspanclasstoctextdataproductspanaliliclasstoclevel2tocsection9ahrefcommunicationspanclasstocnumber18spanspanclasstoctextcommunicationspanaliulliliclasstoclevel1tocsection10ahrefquantitative_messagesspanclasstocnumber2spanspanclasstoctextquantitativemessagesspanaliliclasstoclevel1tocsection11ahreftechniques_for_analyzing_quantitative_dataspanclasstocnumber3spanspanclasstoctexttechniquesforanalyzingquantitativedataspanaliliclasstoclevel1tocsection12ahrefanalytical_activities_of_data_usersspanclasstocnumber4spanspanclasstoctextanalyticalactivitiesofdatausersspanaliliclasstoclevel1tocsection13ahrefbarriers_to_effective_analysisspanclasstocnumber5spanspanclasstoctextbarrierstoeffectiveanalysisspanaulliclasstoclevel2tocsection14ahrefconfusing_fact_and_opinionspanclasstocnumber51spanspanclasstoctextconfusingfactandopinionspanaliliclasstoclevel2tocsection15ahrefcognitive_biasesspanclasstocnumber52spanspanclasstoctextcognitivebiasesspanaliliclasstoclevel2tocsection16ahrefinnumeracyspanclasstocnumber53spanspanclasstoctextinnumeracyspanaliulliliclasstoclevel1tocsection17ahrefother_topicsspanclasstocnumber6spanspanclasstoctextothertopicsspanaulliclasstoclevel2tocsection18ahrefsmart_buildingsspanclasstocnumber61spanspanclasstoctextsmartbuildingsspanaliliclasstoclevel2tocsection19ahrefanalytics_and_business_intelligencespanclasstocnumber62spanspanclasstoctextanalyticsandbusinessintelligencespanaliliclasstoclevel2tocsection20ahrefeducationspanclasstocnumber63spanspanclasstoctexteducationspanaliulliliclasstoclevel1tocsection21ahrefpractitioner_notesspanclasstocnumber7spanspanclasstoctextpractitionernotesspanaulliclasstoclevel2tocsection22ahrefinitial_data_analysisspanclasstocnumber71spanspanclasstoctextinitialdataanalysisspanaulliclasstoclevel3tocsection23ahrefquality_of_dataspanclasstocnumber711spanspanclasstoctextqualityofdataspanaliliclasstoclevel3tocsection24ahrefquality_of_measurementsspanclasstocnumber712spanspanclasstoctextqualityofmeasurementsspanaliliclasstoclevel3tocsection25ahrefinitial_transformationsspanclasstocnumber713spanspanclasstoctextinitialtransformationsspanaliliclasstoclevel3tocsection26ahrefdid_the_implementation_of_the_study_fulfill_the_intentions_of_the_research_designspanclasstocnumber714spanspanclasstoctextdidtheimplementationofthestudyfulfilltheintentionsoftheresearchdesignspanaliliclasstoclevel3tocsection27ahrefcharacteristics_of_data_samplespanclasstocnumber715spanspanclasstoctextcharacteristicsofdatasamplespanaliliclasstoclevel3tocsection28ahreffinal_stage_of_the_initial_data_analysisspanclasstocnumber716spanspanclasstoctextfinalstageoftheinitialdataanalysisspanaliliclasstoclevel3tocsection29ahrefanalysisspanclasstocnumber717spanspanclasstoctextanalysisspanaliliclasstoclevel3tocsection30ahrefnonlinear_analysisspanclasstocnumber718spanspanclasstoctextnonlinearanalysisspanaliulliliclasstoclevel2tocsection31ahrefmain_data_analysisspanclasstocnumber72spanspanclasstoctextmaindataanalysisspanaulliclasstoclevel3tocsection32ahrefexploratory_and_confirmatory_approachesspanclasstocnumber721spanspanclasstoctextexploratoryandconfirmatoryapproachesspanaliliclasstoclevel3tocsection33ahrefstability_of_resultsspanclasstocnumber722spanspanclasstoctextstabilityofresultsspanaliliclasstoclevel3tocsection34ahrefstatistical_methodsspanclasstocnumber723spanspanclasstoctextstatisticalmethodsspanaliulliulliliclasstoclevel1tocsection35ahreffree_software_for_data_analysisspanclasstocnumber8spanspanclasstoctextfreesoftwarefordataanalysisspanaliliclasstoclevel1tocsection36ahrefinternational_data_analysis_contestsspanclasstocnumber9spanspanclasstoctextinternationaldataanalysiscontestsspanaliliclasstoclevel1tocsection37ahrefsee_alsospanclasstocnumber10spanspanclasstoctextseealsospanaliliclasstoclevel1tocsection38ahrefreferencesspanclasstocnumber11spanspanclasstoctextreferencesspanaulliclasstoclevel2tocsection39ahrefcitationsspanclasstocnumber111spanspanclasstoctextcitationsspanaliliclasstoclevel2tocsection40ahrefbibliographyspanclasstocnumber112spanspanclasstoctextbibliographyspanaliulliliclasstoclevel1tocsection41ahreffurther_readingspanclasstocnumber12spanspanclasstoctextfurtherreadingspanaliuldivh2spanclassmwheadlineidthe_process_of_data_analysistheprocessofdataanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection1titleeditsectiontheprocessofdataanalysiseditaspanclassmweditsectionbracketspanspanh2divclassthumbtrightdivclassthumbinnerstylewidth352pxahrefwikifiledata_visualization_process_v1pngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumbbbadata_visualization_process_v1png350pxdata_visualization_process_v1pngwidth350height263classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumbbbadata_visualization_process_v1png525pxdata_visualization_process_v1png15xuploadwikimediaorgwikipediacommonsthumbbbadata_visualization_process_v1png700pxdata_visualization_process_v1png2xdatafilewidth960datafileheight720adivclassthumbcaptiondivclassmagnifyahrefwikifiledata_visualization_process_v1pngclassinternaltitleenlargeadivdatascienceprocessflowchartfromdoingdatasciencecathyoneilandrachelschutt2013divdivdivpanalysisreferstobreakingawholeintoitsseparatecomponentsforindividualexaminationdataanalysisisaahrefwikiprocess_theorytitleprocesstheoryprocessaforobtainingrawdataandconvertingitintoinformationusefulfordecisionmakingbyusersdataiscollectedandanalyzedtoanswerquestionstesthypothesesordisprovetheoriessupidcite_refjudd_and_mcclelland_1989_20classreferenceahrefcite_notejudd_and_mcclelland_1989291293asupppstatisticianahrefwikijohn_tukeytitlejohntukeyjohntukeyadefineddataanalysisin1961asproceduresforanalyzingdatatechniquesforinterpretingtheresultsofsuchprocedureswaysofplanningthegatheringofdatatomakeitsanalysiseasiermorepreciseormoreaccurateandallthemachineryandresultsofmathematicalstatisticswhichapplytoanalyzingdatasupidcite_ref3classreferenceahrefcite_note391393asupppthereareseveralphasesthatcanbedistinguisheddescribedbelowthephasesareiterativeinthatfeedbackfromlaterphasesmayresultinadditionalworkinearlierphasessupidcite_refo39neil_and_schutt_2013_40classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupph3spanclassmwheadlineiddata_requirementsdatarequirementsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection2titleeditsectiondatarequirementseditaspanclassmweditsectionbracketspanspanh3pthedataisnecessaryasinputstotheanalysiswhichisspecifiedbasedupontherequirementsofthosedirectingtheanalysisorcustomerswhowillusethefinishedproductoftheanalysisthegeneraltypeofentityuponwhichthedatawillbecollectedisreferredtoasanexperimentalunitegapersonorpopulationofpeoplespecificvariablesregardingapopulationegageandincomemaybespecifiedandobtaineddatamaybenumericalorcategoricalieatextlabelfornumberssupidcite_refo39neil_and_schutt_2013_41classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupph3spanclassmwheadlineiddata_collectiondatacollectionspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection3titleeditsectiondatacollectioneditaspanclassmweditsectionbracketspanspanh3pdataiscollectedfromavarietyofsourcestherequirementsmaybecommunicatedbyanalyststocustodiansofthedatasuchasinformationtechnologypersonnelwithinanorganizationthedatamayalsobecollectedfromsensorsintheenvironmentsuchastrafficcamerassatellitesrecordingdevicesetcitmayalsobeobtainedthroughinterviewsdownloadsfromonlinesourcesorreadingdocumentationsupidcite_refo39neil_and_schutt_2013_42classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupph3spanclassmwheadlineiddata_processingdataprocessingspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection4titleeditsectiondataprocessingeditaspanclassmweditsectionbracketspanspanh3divclassthumbtrightdivclassthumbinnerstylewidth352pxahrefwikifilerelationship_of_data_information_and_intelligencepngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumbeeerelationship_of_data2c_information_and_intelligencepng350pxrelationship_of_data2c_information_and_intelligencepngwidth350height263classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumbeeerelationship_of_data2c_information_and_intelligencepng525pxrelationship_of_data2c_information_and_intelligencepng15xuploadwikimediaorgwikipediacommonsthumbeeerelationship_of_data2c_information_and_intelligencepng700pxrelationship_of_data2c_information_and_intelligencepng2xdatafilewidth960datafileheight720adivclassthumbcaptiondivclassmagnifyahrefwikifilerelationship_of_data_information_and_intelligencepngclassinternaltitleenlargeadivthephasesoftheahrefwikiintelligence_cycletitleintelligencecycleintelligencecycleausedtoconvertrawinformationintoactionableintelligenceorknowledgeareconceptuallysimilartothephasesindataanalysisdivdivdivpdatainitiallyobtainedmustbeprocessedororganisedforanalysisforinstancethesemayinvolveplacingdataintorowsandcolumnsinatableformatieahrefwikidata_modeltitledatamodelstructureddataaforfurtheranalysissuchaswithinaspreadsheetorstatisticalsoftwaresupidcite_refo39neil_and_schutt_2013_43classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupph3spanclassmwheadlineiddata_cleaningdatacleaningspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection5titleeditsectiondatacleaningeditaspanclassmweditsectionbracketspanspanh3ponceprocessedandorganisedthedatamaybeincompletecontainduplicatesorcontainerrorstheneedfordatacleaningwillarisefromproblemsinthewaythatdataisenteredandstoreddatacleaningistheprocessofpreventingandcorrectingtheseerrorscommontasksincluderecordmatchingidentifyinginaccuracyofdataoverallqualityofexistingdatasupidcite_ref5classreferenceahrefcite_note591593asupdeduplicationandcolumnsegmentationsupidcite_ref6classreferenceahrefcite_note691693asupsuchdataproblemscanalsobeidentifiedthroughavarietyofanalyticaltechniquesforexamplewithfinancialinformationthetotalsforparticularvariablesmaybecomparedagainstseparatelypublishednumbersbelievedtobereliablesupidcite_refkoomey1_70classreferenceahrefcite_notekoomey1791793asupunusualamountsaboveorbelowpredeterminedthresholdsmayalsobereviewedthereareseveraltypesofdatacleaningthatdependonthetypeofdatasuchasphonenumbersemailaddressesemployersetcquantitativedatamethodsforoutlierdetectioncanbeusedtogetridoflikelyincorrectlyentereddatatextualdataspellcheckerscanbeusedtolessentheamountofmistypedwordsbutitishardertotellifthewordsthemselvesarecorrectsupidcite_ref8classreferenceahrefcite_note891893asupph3spanclassmwheadlineidexploratory_data_analysisexploratorydataanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection6titleeditsectionexploratorydataanalysiseditaspanclassmweditsectionbracketspanspanh3poncethedataiscleaneditcanbeanalyzedanalystsmayapplyavarietyoftechniquesreferredtoasahrefwikiexploratory_data_analysistitleexploratorydataanalysisexploratorydataanalysisatobeginunderstandingthemessagescontainedinthedatasupidcite_ref9classreferenceahrefcite_note991993asupsupidcite_ref10classreferenceahrefcite_note10911093asuptheprocessofexplorationmayresultinadditionaldatacleaningoradditionalrequestsfordatasotheseactivitiesmaybeiterativeinnatureahrefwikidescriptive_statisticstitledescriptivestatisticsdescriptivestatisticsasuchastheaverageormedianmaybegeneratedtohelpunderstandthedataahrefwikidata_visualizationtitledatavisualizationdatavisualizationamayalsobeusedtoexaminethedataingraphicalformattoobtainadditionalinsightregardingthemessageswithinthedatasupidcite_refo39neil_and_schutt_2013_44classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupph3spanclassmwheadlineidmodeling_and_algorithmsmodelingandalgorithmsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection7titleeditsectionmodelingandalgorithmseditaspanclassmweditsectionbracketspanspanh3pmathematicalformulasormodelscalledahrefwikialgorithmsclassmwredirecttitlealgorithmsalgorithmsamaybeappliedtothedatatoidentifyrelationshipsamongthevariablessuchasahrefwikicorrelation_and_dependencetitlecorrelationanddependencecorrelationaorahrefwikicausalitytitlecausalitycausationaingeneraltermsmodelsmaybedevelopedtoevaluateaparticularvariableinthedatabasedonothervariablesinthedatawithsomeresidualerrordependingonmodelaccuracyiedatamodelerrorsupidcite_refjudd_and_mcclelland_1989_21classreferenceahrefcite_notejudd_and_mcclelland_1989291293asupppahrefwikiinferential_statisticsclassmwredirecttitleinferentialstatisticsinferentialstatisticsaincludestechniquestomeasurerelationshipsbetweenparticularvariablesforexampleahrefwikiregression_analysistitleregressionanalysisregressionanalysisamaybeusedtomodelwhetherachangeinadvertisingindependentvariablexexplainsthevariationinsalesdependentvariableyinmathematicaltermsysalesisafunctionofxadvertisingitmaybedescribedasyaxberrorwherethemodelisdesignedsuchthataandbminimizetheerrorwhenthemodelpredictsyforagivenrangeofvaluesofxanalystsmayattempttobuildmodelsthataredescriptiveofthedatatosimplifyanalysisandcommunicateresultssupidcite_refjudd_and_mcclelland_1989_22classreferenceahrefcite_notejudd_and_mcclelland_1989291293asupph3spanclassmwheadlineiddata_productdataproductspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection8titleeditsectiondataproducteditaspanclassmweditsectionbracketspanspanh3padataproductisacomputerapplicationthattakesdatainputsandgeneratesoutputsfeedingthembackintotheenvironmentitmaybebasedonamodeloralgorithmanexampleisanapplicationthatanalyzesdataaboutcustomerpurchasinghistoryandrecommendsotherpurchasesthecustomermightenjoysupidcite_refo39neil_and_schutt_2013_45classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupph3spanclassmwheadlineidcommunicationcommunicationspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection9titleeditsectioncommunicationeditaspanclassmweditsectionbracketspanspanh3divclassthumbtrightdivclassthumbinnerstylewidth252pxahrefwikifilesocial_network_analysis_visualizationpngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumb99bsocial_network_analysis_visualizationpng250pxsocial_network_analysis_visualizationpngwidth250height186classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumb99bsocial_network_analysis_visualizationpng375pxsocial_network_analysis_visualizationpng15xuploadwikimediaorgwikipediacommonsthumb99bsocial_network_analysis_visualizationpng500pxsocial_network_analysis_visualizationpng2xdatafilewidth1185datafileheight883adivclassthumbcaptiondivclassmagnifyahrefwikifilesocial_network_analysis_visualizationpngclassinternaltitleenlargeadivahrefwikidata_visualizationtitledatavisualizationdatavisualizationatounderstandtheresultsofadataanalysissupidcite_ref11classreferenceahrefcite_note11911193asupdivdivdivdivrolenoteclasshatnotenavigationnotsearchablemainarticleahrefwikidata_visualizationtitledatavisualizationdatavisualizationadivponcethedataisanalyzeditmaybereportedinmanyformatstotheusersoftheanalysistosupporttheirrequirementstheusersmayhavefeedbackwhichresultsinadditionalanalysisassuchmuchoftheanalyticalcycleisiterativesupidcite_refo39neil_and_schutt_2013_46classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupppwhendetermininghowtocommunicatetheresultstheanalystmayconsiderahrefwikidata_visualizationtitledatavisualizationdatavisualizationatechniquestohelpclearlyandefficientlycommunicatethemessagetotheaudiencedatavisualizationusesahrefwikiinformation_displaysclassmwredirecttitleinformationdisplaysinformationdisplaysasuchastablesandchartstohelpcommunicatekeymessagescontainedinthedatatablesarehelpfultoauserwhomightlookupspecificnumberswhilechartsegbarchartsorlinechartsmayhelpexplainthequantitativemessagescontainedinthedataph2spanclassmwheadlineidquantitative_messagesquantitativemessagesspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection10titleeditsectionquantitativemessageseditaspanclassmweditsectionbracketspanspanh2divrolenoteclasshatnotenavigationnotsearchablemainarticleahrefwikidata_visualizationtitledatavisualizationdatavisualizationadivdivclassthumbtrightdivclassthumbinnerstylewidth252pxahrefwikifiletotal_revenues_and_outlays_as_percent_gdp_2013pngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumbffbtotal_revenues_and_outlays_as_percent_gdp_2013png250pxtotal_revenues_and_outlays_as_percent_gdp_2013pngwidth250height118classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumbffbtotal_revenues_and_outlays_as_percent_gdp_2013png375pxtotal_revenues_and_outlays_as_percent_gdp_2013png15xuploadwikimediaorgwikipediacommonsthumbffbtotal_revenues_and_outlays_as_percent_gdp_2013png500pxtotal_revenues_and_outlays_as_percent_gdp_2013png2xdatafilewidth1025datafileheight484adivclassthumbcaptiondivclassmagnifyahrefwikifiletotal_revenues_and_outlays_as_percent_gdp_2013pngclassinternaltitleenlargeadivatimeseriesillustratedwithalinechartdemonstratingtrendsinusfederalspendingandrevenueovertimedivdivdivdivclassthumbtrightdivclassthumbinnerstylewidth252pxahrefwikifileus_phillips_curve_2000_to_2013pngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumb77eus_phillips_curve_2000_to_2013png250pxus_phillips_curve_2000_to_2013pngwidth250height188classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumb77eus_phillips_curve_2000_to_2013png375pxus_phillips_curve_2000_to_2013png15xuploadwikimediaorgwikipediacommonsthumb77eus_phillips_curve_2000_to_2013png500pxus_phillips_curve_2000_to_2013png2xdatafilewidth960datafileheight720adivclassthumbcaptiondivclassmagnifyahrefwikifileus_phillips_curve_2000_to_2013pngclassinternaltitleenlargeadivascatterplotillustratingcorrelationbetweentwovariablesinflationandunemploymentmeasuredatpointsintimedivdivdivpstephenfewdescribedeighttypesofquantitativemessagesthatusersmayattempttounderstandorcommunicatefromasetofdataandtheassociatedgraphsusedtohelpcommunicatethemessagecustomersspecifyingrequirementsandanalystsperformingthedataanalysismayconsiderthesemessagesduringthecourseoftheprocesspollitimeseriesasinglevariableiscapturedoveraperiodoftimesuchastheunemploymentrateovera10yearperiodaahrefwikiline_charttitlelinechartlinechartamaybeusedtodemonstratethetrendlilirankingcategoricalsubdivisionsarerankedinascendingordescendingordersuchasarankingofsalesperformancetheimeasureibysalespersonstheicategoryiwitheachsalespersonaicategoricalsubdivisioniduringasingleperiodaahrefwikibar_charttitlebarchartbarchartamaybeusedtoshowthecomparisonacrossthesalespersonsliliparttowholecategoricalsubdivisionsaremeasuredasaratiotothewholeieapercentageoutof100aahrefwikipie_charttitlepiechartpiechartaorbarchartcanshowthecomparisonofratiossuchasthemarketsharerepresentedbycompetitorsinamarketlilideviationcategoricalsubdivisionsarecomparedagainstareferencesuchasacomparisonofactualvsbudgetexpensesforseveraldepartmentsofabusinessforagiventimeperiodabarchartcanshowcomparisonoftheactualversusthereferenceamountlilifrequencydistributionshowsthenumberofobservationsofaparticularvariableforgivenintervalsuchasthenumberofyearsinwhichthestockmarketreturnisbetweenintervalssuchas0101120etcaahrefwikihistogramtitlehistogramhistogramaatypeofbarchartmaybeusedforthisanalysislilicorrelationcomparisonbetweenobservationsrepresentedbytwovariablesxytodetermineiftheytendtomoveinthesameoroppositedirectionsforexampleplottingunemploymentxandinflationyforasampleofmonthsaahrefwikiscatter_plottitlescatterplotscatterplotaistypicallyusedforthismessagelilinominalcomparisoncomparingcategoricalsubdivisionsinnoparticularordersuchasthesalesvolumebyproductcodeabarchartmaybeusedforthiscomparisonliligeographicorgeospatialcomparisonofavariableacrossamaporlayoutsuchastheunemploymentratebystateorthenumberofpersonsonthevariousfloorsofabuildingaahrefwikicartogramtitlecartogramcartogramaisatypicalgraphicusedsupidcite_ref12classreferenceahrefcite_note12911293asupsupidcite_ref13classreferenceahrefcite_note13911393asupliolh2spanclassmwheadlineidtechniques_for_analyzing_quantitative_datatechniquesforanalyzingquantitativedataspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection11titleeditsectiontechniquesforanalyzingquantitativedataeditaspanclassmweditsectionbracketspanspanh2divrolenoteclasshatnotenavigationnotsearchableseealsoahrefwikiproblem_solvingtitleproblemsolvingproblemsolvingadivpauthorjonathankoomeyhasrecommendedaseriesofbestpracticesforunderstandingquantitativedatatheseincludepullicheckrawdataforanomaliespriortoperformingyouranalysislilireperformimportantcalculationssuchasverifyingcolumnsofdatathatareformuladrivenliliconfirmmaintotalsarethesumofsubtotalslilicheckrelationshipsbetweennumbersthatshouldberelatedinapredictablewaysuchasratiosovertimelilinormalizenumberstomakecomparisonseasiersuchasanalyzingamountsperpersonorrelativetogdporasanindexvaluerelativetoabaseyearlilibreakproblemsintocomponentpartsbyanalyzingfactorsthatledtotheresultssuchasahrefwikidupont_analysistitledupontanalysisdupontanalysisaofreturnonequitysupidcite_refkoomey1_71classreferenceahrefcite_notekoomey1791793asupliulpforthevariablesunderexaminationanalyststypicallyobtainahrefwikidescriptive_statisticstitledescriptivestatisticsdescriptivestatisticsaforthemsuchasthemeanaverageahrefwikimediantitlemedianmedianaandahrefwikistandard_deviationtitlestandarddeviationstandarddeviationatheymayalsoanalyzetheahrefwikiprobability_distributiontitleprobabilitydistributiondistributionaofthekeyvariablestoseehowtheindividualvaluesclusteraroundthemeanpdivclassthumbtrightdivclassthumbinnerstylewidth252pxahrefwikifileus_employment_statistics__march_2015pngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumbddbus_employment_statistics__march_2015png250pxus_employment_statistics__march_2015pngwidth250height163classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumbddbus_employment_statistics__march_2015png375pxus_employment_statistics__march_2015png15xuploadwikimediaorgwikipediacommonsthumbddbus_employment_statistics__march_2015png500pxus_employment_statistics__march_2015png2xdatafilewidth1200datafileheight783adivclassthumbcaptiondivclassmagnifyahrefwikifileus_employment_statistics__march_2015pngclassinternaltitleenlargeadivanillustrationoftheahrefwikimece_principletitlemeceprinciplemeceprincipleausedfordataanalysisdivdivdivptheconsultantsatahrefwikimckinsey_and_companyclassmwredirecttitlemckinseyandcompanymckinseyandcompanyanamedatechniqueforbreakingaquantitativeproblemdownintoitscomponentpartscalledtheahrefwikimece_principletitlemeceprinciplemeceprincipleaeachlayercanbebrokendownintoitscomponentseachofthesubcomponentsmustbeahrefwikimutually_exclusive_eventsclassmwredirecttitlemutuallyexclusiveeventsmutuallyexclusiveaofeachotherandahrefwikicollectively_exhaustive_eventstitlecollectivelyexhaustiveeventscollectivelyaadduptothelayerabovethemtherelationshipisreferredtoasmutuallyexclusiveandcollectivelyexhaustiveormeceforexampleprofitbydefinitioncanbebrokendownintototalrevenueandtotalcostinturntotalrevenuecanbeanalyzedbyitscomponentssuchasrevenueofdivisionsabandcwhicharemutuallyexclusiveofeachotherandshouldaddtothetotalrevenuecollectivelyexhaustiveppanalystsmayuserobuststatisticalmeasurementstosolvecertainanalyticalproblemsahrefwikihypothesis_testingclassmwredirecttitlehypothesistestinghypothesistestingaisusedwhenaparticularhypothesisaboutthetruestateofaffairsismadebytheanalystanddataisgatheredtodeterminewhetherthatstateofaffairsistrueorfalseforexamplethehypothesismightbethatunemploymenthasnoeffectoninflationwhichrelatestoaneconomicsconceptcalledtheahrefwikiphillips_curveclassmwredirecttitlephillipscurvephillipscurveahypothesistestinginvolvesconsideringthelikelihoodofahrefwikitype_i_and_type_ii_errorstitletypeiandtypeiierrorstypeiandtypeiierrorsawhichrelatetowhetherthedatasupportsacceptingorrejectingthehypothesisppahrefwikiregression_analysistitleregressionanalysisregressionanalysisamaybeusedwhentheanalystistryingtodeterminetheextenttowhichindependentvariablexaffectsdependentvariableyegtowhatextentdochangesintheunemploymentratexaffecttheinflationrateythisisanattempttomodelorfitanequationlineorcurvetothedatasuchthatyisafunctionofxpparelnofollowclassexternaltexthrefhttpswwwerimeurnlcentresnecessaryconditionanalysisnecessaryconditionanalysisancamaybeusedwhentheanalystistryingtodeterminetheextenttowhichindependentvariablexallowsvariableyegtowhatextentisacertainunemploymentratexnecessaryforacertaininflationrateywhereasmultipleregressionanalysisusesadditivelogicwhereeachxvariablecanproducetheoutcomeandthexscancompensateforeachothertheyaresufficientbutnotnecessarynecessaryconditionanalysisncausesnecessitylogicwhereoneormorexvariablesallowtheoutcometoexistbutmaynotproduceittheyarenecessarybutnotsufficienteachsinglenecessaryconditionmustbepresentandcompensationisnotpossibleph2spanclassmwheadlineidanalytical_activities_of_data_usersanalyticalactivitiesofdatausersspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection12titleeditsectionanalyticalactivitiesofdatauserseditaspanclassmweditsectionbracketspanspanh2pusersmayhaveparticulardatapointsofinterestwithinadatasetasopposedtogeneralmessagingoutlinedabovesuchlowleveluseranalyticactivitiesarepresentedinthefollowingtablethetaxonomycanalsobeorganizedbythreepolesofactivitiesretrievingvaluesfindingdatapointsandarrangingdatapointssupidcite_ref14classreferenceahrefcite_note14911493asupsupidcite_ref15classreferenceahrefcite_note15911593asupsupidcite_ref16classreferenceahrefcite_note16911693asupsupidcite_refcontaas_170classreferenceahrefcite_notecontaas17911793asupptableclasswikitableborder1tbodytrthaligncenterththwidth160taskththgeneralbrdescriptionththproformabrabstractththwidth35examplesthtrtrtdaligncenter1tdtdbretrievevaluebtdtdgivenasetofspecificcasesfindattributesofthosecasestdtdwhatarethevaluesofattributesxyzinthedatacasesabctdtdiwhatisthemileagepergallonofthefordmondeoipihowlongisthemoviegonewiththewindiptdtrtrtdaligncenter2tdtdbfilterbtdtdgivensomeconcreteconditionsonattributevaluesfinddatacasessatisfyingthoseconditionstdtdwhichdatacasessatisfyconditionsabctdtdiwhatkelloggscerealshavehighfiberipiwhatcomedieshavewonawardsippiwhichfundsunderperformedthesp500iptdtrtrtdaligncenter3tdtdbcomputederivedvaluebtdtdgivenasetofdatacasescomputeanaggregatenumericrepresentationofthosedatacasestdtdwhatisthevalueofaggregationfunctionfoveragivensetsofdatacasestdtdiwhatistheaveragecaloriecontentofpostcerealsipiwhatisthegrossincomeofallstorescombinedippihowmanymanufacturersofcarsarethereiptdtrtrtdaligncenter4tdtdbfindextremumbtdtdfinddatacasespossessinganextremevalueofanattributeoveritsrangewithinthedatasettdtdwhatarethetopbottomndatacaseswithrespecttoattributeatdtdiwhatisthecarwiththehighestmpgipiwhatdirectorfilmhaswonthemostawardsippiwhatmarvelstudiosfilmhasthemostrecentreleasedateiptdtrtrtdaligncenter5tdtdbsortbtdtdgivenasetofdatacasesrankthemaccordingtosomeordinalmetrictdtdwhatisthesortedorderofasetsofdatacasesaccordingtotheirvalueofattributeatdtdiorderthecarsbyweightipirankthecerealsbycaloriesiptdtrtrtdaligncenter6tdtdbdeterminerangebtdtdgivenasetofdatacasesandanattributeofinterestfindthespanofvalueswithinthesettdtdwhatistherangeofvaluesofattributeainasetsofdatacasestdtdiwhatistherangeoffilmlengthsipiwhatistherangeofcarhorsepowersippiwhatactressesareinthedatasetiptdtrtrtdaligncenter7tdtdbcharacterizedistributionbtdtdgivenasetofdatacasesandaquantitativeattributeofinterestcharacterizethedistributionofthatattributesvaluesoverthesettdtdwhatisthedistributionofvaluesofattributeainasetsofdatacasestdtdiwhatisthedistributionofcarbohydratesincerealsipiwhatistheagedistributionofshoppersiptdtrtrtdaligncenter8tdtdbfindanomaliesbtdtdidentifyanyanomalieswithinagivensetofdatacaseswithrespecttoagivenrelationshiporexpectationegstatisticaloutlierstdtdwhichdatacasesinasetsofdatacaseshaveunexpectedexceptionalvaluestdtdiarethereexceptionstotherelationshipbetweenhorsepowerandaccelerationipiarethereanyoutliersinproteiniptdtrtrtdaligncenter9tdtdbclusterbtdtdgivenasetofdatacasesfindclustersofsimilarattributevaluestdtdwhichdatacasesinasetsofdatacasesaresimilarinvalueforattributesxyztdtdiaretheregroupsofcerealswsimilarfatcaloriessugaripiisthereaclusteroftypicalfilmlengthsiptdtrtrtdaligncenter10tdtdbcorrelatebtdtdgivenasetofdatacasesandtwoattributesdetermineusefulrelationshipsbetweenthevaluesofthoseattributestdtdwhatisthecorrelationbetweenattributesxandyoveragivensetsofdatacasestdtdiisthereacorrelationbetweencarbohydratesandfatipiisthereacorrelationbetweencountryoforiginandmpgippidodifferentgendershaveapreferredpaymentmethodippiisthereatrendofincreasingfilmlengthovertheyearsiptdtrtrtdaligncenter11tdtdbahrefwikicontextualization_computer_sciencetitlecontextualizationcomputersciencecontextualizationasupidcite_refcontaas_171classreferenceahrefcite_notecontaas17911793asupbtdtdgivenasetofdatacasesfindcontextualrelevancyofthedatatotheuserstdtdwhichdatacasesinasetsofdatacasesarerelevanttothecurrentuserscontexttdtdiaretheregroupsofrestaurantsthathavefoodsbasedonmycurrentcaloricintakeitdtrtbodytableh2spanclassmwheadlineidbarriers_to_effective_analysisbarrierstoeffectiveanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection13titleeditsectionbarrierstoeffectiveanalysiseditaspanclassmweditsectionbracketspanspanh2pbarrierstoeffectiveanalysismayexistamongtheanalystsperformingthedataanalysisoramongtheaudiencedistinguishingfactfromopinioncognitivebiasesandinnumeracyareallchallengestosounddataanalysisph3spanclassmwheadlineidconfusing_fact_and_opinionconfusingfactandopinionspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection14titleeditsectionconfusingfactandopinioneditaspanclassmweditsectionbracketspanspanh3divclassquoteboxpullquotefloatrightstylewidth250px32styledatamwdeduplicatetemplatestylesr856303512mwparseroutputquoteboxbackgroundcolorf9f9f9border1pxsolidaaaboxsizingborderboxpadding10pxfontsize88mwparseroutputquoteboxfloatleftmargin05em14em08em0mwparseroutputquoteboxfloatrightmargin05em008em14emmwparseroutputquoteboxcenteredmargin05emauto08emautomwparseroutputquoteboxfloatleftpmwparseroutputquoteboxfloatrightpfontstyleinheritmwparseroutputquoteboxtitlebackgroundcolorf9f9f9textaligncenterfontsizelargerfontweightboldmwparseroutputquoteboxquotequotedbeforefontfamilytimesnewromanseriffontweightboldfontsizelargecolorgraycontentverticalalign45lineheight0mwparseroutputquoteboxquotequotedafterfontfamilytimesnewromanseriffontweightboldfontsizelargecolorgraycontentlineheight0mwparseroutputquoteboxleftalignedtextalignleftmwparseroutputquoteboxrightalignedtextalignrightmwparseroutputquoteboxcenteralignedtextaligncentermwparseroutputquoteboxcitedisplayblockfontstylenormalmediascreenandmaxwidth360pxmwparseroutputquoteboxminwidth100margin0008emimportantfloatnoneimportantstyledivclassquoteboxquoteleftalignedstyleyouareentitledtoyourownopinionbutyouarenotentitledtoyourownfactsdivpciteclassleftalignedstyleahrefwikidaniel_patrick_moynihantitledanielpatrickmoynihandanielpatrickmoynihanacitepdivpeffectiveanalysisrequiresobtainingrelevantahrefwikifacttitlefactfactsatoanswerquestionssupportaconclusionorformalahrefwikiopiniontitleopinionopinionaortestahrefwikihypothesesclassmwredirecttitlehypotheseshypothesesafactsbydefinitionareirrefutablemeaningthatanypersoninvolvedintheanalysisshouldbeabletoagreeuponthemforexampleinaugust2010theahrefwikicongressional_budget_officetitlecongressionalbudgetofficecongressionalbudgetofficeacboestimatedthatextendingtheahrefwikibush_tax_cutstitlebushtaxcutsbushtaxcutsaof2001and2003forthe20112020timeperiodwouldaddapproximately33trilliontothenationaldebtsupidcite_ref18classreferenceahrefcite_note18911893asupeveryoneshouldbeabletoagreethatindeedthisiswhatcboreportedtheycanallexaminethereportthismakesitafactwhetherpersonsagreeordisagreewiththecboistheirownopinionppasanotherexampletheauditorofapubliccompanymustarriveataformalopiniononwhetherfinancialstatementsofpubliclytradedcorporationsarefairlystatedinallmaterialrespectsthisrequiresextensiveanalysisoffactualdataandevidencetosupporttheiropinionwhenmakingtheleapfromfactstoopinionsthereisalwaysthepossibilitythattheopinionisahrefwikitype_i_and_type_ii_errorstitletypeiandtypeiierrorserroneousaph3spanclassmwheadlineidcognitive_biasescognitivebiasesspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection15titleeditsectioncognitivebiaseseditaspanclassmweditsectionbracketspanspanh3pthereareavarietyofahrefwikicognitive_biastitlecognitivebiascognitivebiasesathatcanadverselyaffectanalysisforexampleahrefwikiconfirmation_biastitleconfirmationbiasconfirmationbiasaisthetendencytosearchfororinterpretinformationinawaythatconfirmsonespreconceptionsinadditionindividualsmaydiscreditinformationthatdoesnotsupporttheirviewsppanalystsmaybetrainedspecificallytobeawareofthesebiasesandhowtoovercometheminhisbookipsychologyofintelligenceanalysisiretiredciaanalystahrefwikirichards_heuertitlerichardsheuerrichardsheuerawrotethatanalystsshouldclearlydelineatetheirassumptionsandchainsofinferenceandspecifythedegreeandsourceoftheuncertaintyinvolvedintheconclusionsheemphasizedprocedurestohelpsurfaceanddebatealternativepointsofviewsupidcite_refheuer1_190classreferenceahrefcite_noteheuer119911993asupph3spanclassmwheadlineidinnumeracyinnumeracyspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection16titleeditsectioninnumeracyeditaspanclassmweditsectionbracketspanspanh3peffectiveanalystsaregenerallyadeptwithavarietyofnumericaltechniqueshoweveraudiencesmaynothavesuchliteracywithnumbersorahrefwikinumeracytitlenumeracynumeracyatheyaresaidtobeinnumeratepersonscommunicatingthedatamayalsobeattemptingtomisleadormisinformdeliberatelyusingbadnumericaltechniquessupidcite_ref20classreferenceahrefcite_note20912093asupppforexamplewhetheranumberisrisingorfallingmaynotbethekeyfactormoreimportantmaybethenumberrelativetoanothernumbersuchasthesizeofgovernmentrevenueorspendingrelativetothesizeoftheeconomygdportheamountofcostrelativetorevenueincorporatefinancialstatementsthisnumericaltechniqueisreferredtoasnormalizationsupidcite_refkoomey1_72classreferenceahrefcite_notekoomey1791793asuporcommonsizingtherearemanysuchtechniquesemployedbyanalystswhetheradjustingforinflationiecomparingrealvsnominaldataorconsideringpopulationincreasesdemographicsetcanalystsapplyavarietyoftechniquestoaddressthevariousquantitativemessagesdescribedinthesectionaboveppanalystsmayalsoanalyzedataunderdifferentassumptionsorscenariosforexamplewhenanalystsperformahrefwikifinancial_statement_analysistitlefinancialstatementanalysisfinancialstatementanalysisatheywilloftenrecastthefinancialstatementsunderdifferentassumptionstohelparriveatanestimateoffuturecashflowwhichtheythendiscounttopresentvaluebasedonsomeinterestratetodeterminethevaluationofthecompanyoritsstocksimilarlythecboanalyzestheeffectsofvariouspolicyoptionsonthegovernmentsrevenueoutlaysanddeficitscreatingalternativefuturescenariosforkeymeasuresph2spanclassmwheadlineidother_topicsothertopicsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection17titleeditsectionothertopicseditaspanclassmweditsectionbracketspanspanh2h3spanclassmwheadlineidsmart_buildingssmartbuildingsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection18titleeditsectionsmartbuildingseditaspanclassmweditsectionbracketspanspanh3padataanalyticsapproachcanbeusedinordertopredictenergyconsumptioninbuildingssupidcite_reftowards_energy_efficiency_smart_buildings_models_based_on_intelligent_data_analytics_210classreferenceahrefcite_notetowards_energy_efficiency_smart_buildings_models_based_on_intelligent_data_analytics21912193asupthedifferentstepsofthedataanalysisprocessarecarriedoutinordertorealisesmartbuildingswherethebuildingmanagementandcontroloperationsincludingheatingventilationairconditioninglightingandsecurityarerealisedautomaticallybymimingtheneedsofthebuildingusersandoptimisingresourceslikeenergyandtimeph3spanclassmwheadlineidanalytics_and_business_intelligenceanalyticsandbusinessintelligencespanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection19titleeditsectionanalyticsandbusinessintelligenceeditaspanclassmweditsectionbracketspanspanh3divrolenoteclasshatnotenavigationnotsearchablemainarticleahrefwikianalyticstitleanalyticsanalyticsadivpanalyticsistheextensiveuseofdatastatisticalandquantitativeanalysisexplanatoryandpredictivemodelsandfactbasedmanagementtodrivedecisionsandactionsitisasubsetofahrefwikibusiness_intelligencetitlebusinessintelligencebusinessintelligenceawhichisasetoftechnologiesandprocessesthatusedatatounderstandandanalyzebusinessperformancesupidcite_refcompeting_on_analytics_2007_220classreferenceahrefcite_notecompeting_on_analytics_200722912293asupph3spanclassmwheadlineideducationeducationspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection20titleeditsectioneducationeditaspanclassmweditsectionbracketspanspanh3divclassthumbtrightdivclassthumbinnerstylewidth352pxahrefwikifileuseractivitiespngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumb880useractivitiespng350pxuseractivitiespngwidth350height279classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumb880useractivitiespng525pxuseractivitiespng15xuploadwikimediaorgwikipediacommonsthumb880useractivitiespng700pxuseractivitiespng2xdatafilewidth710datafileheight566adivclassthumbcaptiondivclassmagnifyahrefwikifileuseractivitiespngclassinternaltitleenlargeadivanalyticactivitiesofdatavisualizationusersdivdivdivpinahrefwikieducationtitleeducationeducationamosteducatorshaveaccesstoaahrefwikidata_systemtitledatasystemdatasystemaforthepurposeofanalyzingstudentdatasupidcite_ref23classreferenceahrefcite_note23912393asupthesedatasystemspresentdatatoeducatorsinanahrefwikioverthecounter_datatitleoverthecounterdataoverthecounterdataaformatembeddinglabelssupplementaldocumentationandahelpsystemandmakingkeypackagedisplayandcontentdecisionstoimprovetheaccuracyofeducatorsdataanalysessupidcite_ref24classreferenceahrefcite_note24912493asupph2spanclassmwheadlineidpractitioner_notespractitionernotesspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection21titleeditsectionpractitionernoteseditaspanclassmweditsectionbracketspanspanh2pthissectioncontainsrathertechnicalexplanationsthatmayassistpractitionersbutarebeyondthetypicalscopeofawikipediaarticleph3spanclassmwheadlineidinitial_data_analysisinitialdataanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection22titleeditsectioninitialdataanalysiseditaspanclassmweditsectionbracketspanspanh3pthemostimportantdistinctionbetweentheinitialdataanalysisphaseandthemainanalysisphaseisthatduringinitialdataanalysisonerefrainsfromanyanalysisthatisaimedatansweringtheoriginalresearchquestiontheinitialdataanalysisphaseisguidedbythefollowingfourquestionssupidcite_reffootnoteadr2008a337_250classreferenceahrefcite_notefootnoteadr2008a33725912593asupph4spanclassmwheadlineidquality_of_dataqualityofdataspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection23titleeditsectionqualityofdataeditaspanclassmweditsectionbracketspanspanh4pthequalityofthedatashouldbecheckedasearlyaspossibledataqualitycanbeassessedinseveralwaysusingdifferenttypesofanalysisfrequencycountsdescriptivestatisticsmeanstandarddeviationmediannormalityskewnesskurtosisfrequencyhistogramsnvariablesarecomparedwithcodingschemesofvariablesexternaltothedatasetandpossiblycorrectedifcodingschemesarenotcomparablepullitestforahrefwikicommonmethod_variancetitlecommonmethodvariancecommonmethodvariancealiulpthechoiceofanalysestoassessthedataqualityduringtheinitialdataanalysisphasedependsontheanalysesthatwillbeconductedinthemainanalysisphasesupidcite_reffootnoteadr2008a338341_260classreferenceahrefcite_notefootnoteadr2008a33834126912693asupph4spanclassmwheadlineidquality_of_measurementsqualityofmeasurementsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection24titleeditsectionqualityofmeasurementseditaspanclassmweditsectionbracketspanspanh4pthequalityoftheahrefwikimeasuring_instrumenttitlemeasuringinstrumentmeasurementinstrumentsashouldonlybecheckedduringtheinitialdataanalysisphasewhenthisisnotthefocusorresearchquestionofthestudyoneshouldcheckwhetherstructureofmeasurementinstrumentscorrespondstostructurereportedintheliteraturepptherearetwowaystoassessmeasurementnoteonlyonewayseemstobelistedpullianalysisofhomogeneityahrefwikiinternal_consistencytitleinternalconsistencyinternalconsistencyawhichgivesanindicationoftheahrefwikireliability_statisticstitlereliabilitystatisticsreliabilityaofameasurementinstrumentduringthisanalysisoneinspectsthevariancesoftheitemsandthescalestheahrefwikicronbach27s_alphatitlecronbach39salphacronbachsaofthescalesandthechangeinthecronbachsalphawhenanitemwouldbedeletedfromascalesupidcite_reffootnoteadr2008a341342_270classreferenceahrefcite_notefootnoteadr2008a34134227912793asupliulh4spanclassmwheadlineidinitial_transformationsinitialtransformationsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection25titleeditsectioninitialtransformationseditaspanclassmweditsectionbracketspanspanh4pafterassessingthequalityofthedataandofthemeasurementsonemightdecidetoimputemissingdataortoperforminitialtransformationsofoneormorevariablesalthoughthiscanalsobedoneduringthemainanalysisphasesupidcite_reffootnoteadr2008a344_280classreferenceahrefcite_notefootnoteadr2008a34428912893asupbrpossibletransformationsofvariablesaresupidcite_ref29classreferenceahrefcite_note29912993asuppullisquareroottransformationifthedistributiondiffersmoderatelyfromnormallililogtransformationifthedistributiondifferssubstantiallyfromnormalliliinversetransformationifthedistributiondiffersseverelyfromnormallilimakecategoricalordinaldichotomousifthedistributiondiffersseverelyfromnormalandnotransformationshelpliulh4spaniddid_the_implementation_of_the_study_fulfill_the_intentions_of_the_research_design3fspanspanclassmwheadlineiddid_the_implementation_of_the_study_fulfill_the_intentions_of_the_research_designdidtheimplementationofthestudyfulfilltheintentionsoftheresearchdesignspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection26titleeditsectiondidtheimplementationofthestudyfulfilltheintentionsoftheresearchdesigneditaspanclassmweditsectionbracketspanspanh4poneshouldcheckthesuccessoftheahrefwikirandomizationtitlerandomizationrandomizationaprocedureforinstancebycheckingwhetherbackgroundandsubstantivevariablesareequallydistributedwithinandacrossgroupsbrifthestudydidnotneedorusearandomizationprocedureoneshouldcheckthesuccessofthenonrandomsamplingforinstancebycheckingwhetherallsubgroupsofthepopulationofinterestarerepresentedinsamplebrotherpossibledatadistortionsthatshouldbecheckedarepulliahrefwikidropout_electronicsclassmwredirecttitledropoutelectronicsdropoutathisshouldbeidentifiedduringtheinitialdataanalysisphaseliliitemahrefwikiresponse_rate_surveytitleresponseratesurveynonresponseawhetherthisisrandomornotshouldbeassessedduringtheinitialdataanalysisphaselilitreatmentqualityusingahrefwikimanipulation_checktitlemanipulationcheckmanipulationchecksasupidcite_reffootnoteadr2008a344345_300classreferenceahrefcite_notefootnoteadr2008a34434530913093asupliulh4spanclassmwheadlineidcharacteristics_of_data_samplecharacteristicsofdatasamplespanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection27titleeditsectioncharacteristicsofdatasampleeditaspanclassmweditsectionbracketspanspanh4pinanyreportorarticlethestructureofthesamplemustbeaccuratelydescribeditisespeciallyimportanttoexactlydeterminethestructureofthesampleandspecificallythesizeofthesubgroupswhensubgroupanalyseswillbeperformedduringthemainanalysisphasebrthecharacteristicsofthedatasamplecanbeassessedbylookingatpullibasicstatisticsofimportantvariablesliliscatterplotslilicorrelationsandassociationslilicrosstabulationssupidcite_reffootnoteadr2008a345_310classreferenceahrefcite_notefootnoteadr2008a34531913193asupliulh4spanclassmwheadlineidfinal_stage_of_the_initial_data_analysisfinalstageoftheinitialdataanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection28titleeditsectionfinalstageoftheinitialdataanalysiseditaspanclassmweditsectionbracketspanspanh4pduringthefinalstagethefindingsoftheinitialdataanalysisaredocumentedandnecessarypreferableandpossiblecorrectiveactionsaretakenbralsotheoriginalplanforthemaindataanalysescanandshouldbespecifiedinmoredetailorrewrittenbrinordertodothisseveraldecisionsaboutthemaindataanalysescanandshouldbemadepulliinthecaseofnonahrefwikinormal_distributiontitlenormaldistributionnormalsashouldoneahrefwikidata_transformation_statisticstitledatatransformationstatisticstransformavariablesmakevariablescategoricalordinaldichotomousadapttheanalysismethodliliinthecaseofahrefwikimissing_datatitlemissingdatamissingdataashouldoneneglectorimputethemissingdatawhichimputationtechniqueshouldbeusedliliinthecaseofahrefwikioutliertitleoutlieroutliersashouldoneuserobustanalysistechniquesliliincaseitemsdonotfitthescaleshouldoneadaptthemeasurementinstrumentbyomittingitemsorratherensurecomparabilitywithotherusesofthemeasurementinstrumentsliliinthecaseoftoosmallsubgroupsshouldonedropthehypothesisaboutintergroupdifferencesorusesmallsampletechniqueslikeexacttestsorahrefwikibootstrapping_statisticstitlebootstrappingstatisticsbootstrappingaliliincasetheahrefwikirandomizationtitlerandomizationrandomizationaprocedureseemstobedefectivecanandshouldonecalculateahrefwikipropensity_score_matchingtitlepropensityscorematchingpropensityscoresaandincludethemascovariatesinthemainanalysessupidcite_reffootnoteadr2008a345346_320classreferenceahrefcite_notefootnoteadr2008a34534632913293asupliulh4spanclassmwheadlineidanalysisanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection29titleeditsectionanalysiseditaspanclassmweditsectionbracketspanspanh4pseveralanalysescanbeusedduringtheinitialdataanalysisphasesupidcite_reffootnoteadr2008a346347_330classreferenceahrefcite_notefootnoteadr2008a34634733913393asuppulliunivariatestatisticssinglevariablelilibivariateassociationscorrelationsliligraphicaltechniquesscatterplotsliulpitisimportanttotakethemeasurementlevelsofthevariablesintoaccountfortheanalysesasspecialstatisticaltechniquesareavailableforeachlevelsupidcite_reffootnoteadr2008a349353_340classreferenceahrefcite_notefootnoteadr2008a34935334913493asuppullinominalandordinalvariablesullifrequencycountsnumbersandpercentagesliliassociationsullicircumambulationscrosstabulationslilihierarchicalloglinearanalysisrestrictedtoamaximumof8variableslililoglinearanalysistoidentifyrelevantimportantvariablesandpossibleconfoundersliulliliexacttestsorbootstrappingincasesubgroupsaresmalllilicomputationofnewvariablesliullilicontinuousvariablesullidistributionullistatisticsmsdvarianceskewnesskurtosislilistemandleafdisplaysliliboxplotsliulliulliulh4spanclassmwheadlineidnonlinear_analysisnonlinearanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection30titleeditsectionnonlinearanalysiseditaspanclassmweditsectionbracketspanspanh4pnonlinearanalysiswillbenecessarywhenthedataisrecordedfromaahrefwikinonlinear_systemtitlenonlinearsystemnonlinearsystemanonlinearsystemscanexhibitcomplexdynamiceffectsincludingahrefwikibifurcation_theorytitlebifurcationtheorybifurcationsaahrefwikichaos_theorytitlechaostheorychaosaahrefwikiharmonicsclassmwredirecttitleharmonicsharmonicsaandahrefwikisubharmonicsclassmwredirecttitlesubharmonicssubharmonicsathatcannotbeanalyzedusingsimplelinearmethodsnonlineardataanalysisiscloselyrelatedtoahrefwikinonlinear_system_identificationtitlenonlinearsystemidentificationnonlinearsystemidentificationasupidcite_refsab1_350classreferenceahrefcite_notesab135913593asupph3spanclassmwheadlineidmain_data_analysismaindataanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection31titleeditsectionmaindataanalysiseditaspanclassmweditsectionbracketspanspanh3pinthemainanalysisphaseanalysesaimedatansweringtheresearchquestionareperformedaswellasanyotherrelevantanalysisneededtowritethefirstdraftoftheresearchreportsupidcite_reffootnoteadr2008b363_360classreferenceahrefcite_notefootnoteadr2008b36336913693asupph4spanclassmwheadlineidexploratory_and_confirmatory_approachesexploratoryandconfirmatoryapproachesspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection32titleeditsectionexploratoryandconfirmatoryapproacheseditaspanclassmweditsectionbracketspanspanh4pinthemainanalysisphaseeitheranexploratoryorconfirmatoryapproachcanbeadoptedusuallytheapproachisdecidedbeforedataiscollectedinanexploratoryanalysisnoclearhypothesisisstatedbeforeanalysingthedataandthedataissearchedformodelsthatdescribethedatawellinaconfirmatoryanalysisclearhypothesesaboutthedataaretestedppahrefwikiexploratory_data_analysistitleexploratorydataanalysisexploratorydataanalysisashouldbeinterpretedcarefullywhentestingmultiplemodelsatoncethereisahighchanceonfindingatleastoneofthemtobesignificantbutthiscanbeduetoaahrefwikitype_1_errorclassmwredirecttitletype1errortype1erroraitisimportanttoalwaysadjustthesignificancelevelwhentestingmultiplemodelswithforexampleaahrefwikibonferroni_correctiontitlebonferronicorrectionbonferronicorrectionaalsooneshouldnotfollowupanexploratoryanalysiswithaconfirmatoryanalysisinthesamedatasetanexploratoryanalysisisusedtofindideasforatheorybutnottotestthattheoryaswellwhenamodelisfoundexploratoryinadatasetthenfollowingupthatanalysiswithaconfirmatoryanalysisinthesamedatasetcouldsimplymeanthattheresultsoftheconfirmatoryanalysisareduetothesameahrefwikitype_1_errorclassmwredirecttitletype1errortype1errorathatresultedintheexploratorymodelinthefirstplacetheconfirmatoryanalysisthereforewillnotbemoreinformativethantheoriginalexploratoryanalysissupidcite_reffootnoteadr2008b361362_370classreferenceahrefcite_notefootnoteadr2008b36136237913793asupph4spanclassmwheadlineidstability_of_resultsstabilityofresultsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection33titleeditsectionstabilityofresultseditaspanclassmweditsectionbracketspanspanh4pitisimportanttoobtainsomeindicationabouthowgeneralizabletheresultsaresupidcite_reffootnoteadr2008b361371_380classreferenceahrefcite_notefootnoteadr2008b36137138913893asupwhilethisishardtocheckonecanlookatthestabilityoftheresultsaretheresultsreliableandreproducibletherearetwomainwaysofdoingthispulliahrefwikicrossvalidation_statisticstitlecrossvalidationstatisticscrossvalidationabysplittingthedatainmultiplepartswecancheckifananalysislikeafittedmodelbasedononepartofthedatageneralizestoanotherpartofthedataaswellliliahrefwikisensitivity_analysistitlesensitivityanalysissensitivityanalysisaaproceduretostudythebehaviorofasystemormodelwhenglobalparametersaresystematicallyvariedonewaytodothisiswithbootstrappingliulh4spanclassmwheadlineidstatistical_methodsstatisticalmethodsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection34titleeditsectionstatisticalmethodseditaspanclassmweditsectionbracketspanspanh4pmanystatisticalmethodshavebeenusedforstatisticalanalysesaverybrieflistoffourofthemorepopularmethodsispulliahrefwikigeneral_linear_modeltitlegenerallinearmodelgenerallinearmodelaawidelyusedmodelonwhichvariousmethodsarebasedegahrefwikit_testclassmwredirecttitlettestttestaahrefwikianovaclassmwredirecttitleanovaanovaaahrefwikiancovaclassmwredirecttitleancovaancovaaahrefwikimanovaclassmwredirecttitlemanovamanovaausableforassessingtheeffectofseveralpredictorsononeormorecontinuousdependentvariablesliliahrefwikigeneralized_linear_modeltitlegeneralizedlinearmodelgeneralizedlinearmodelaanextensionofthegenerallinearmodelfordiscretedependentvariablesliliahrefwikistructural_equation_modellingclassmwredirecttitlestructuralequationmodellingstructuralequationmodellingausableforassessinglatentstructuresfrommeasuredmanifestvariablesliliahrefwikiitem_response_theorytitleitemresponsetheoryitemresponsetheoryamodelsformostlyassessingonelatentvariablefromseveralbinarymeasuredvariableseganexamliulh2spanclassmwheadlineidfree_software_for_data_analysisfreesoftwarefordataanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection35titleeditsectionfreesoftwarefordataanalysiseditaspanclassmweditsectionbracketspanspanh2ulliahrefwikidevinfotitledevinfodevinfoaadatabasesystemendorsedbytheahrefwikiunited_nations_development_grouptitleunitednationsdevelopmentgroupunitednationsdevelopmentgroupaformonitoringandanalyzinghumandevelopmentliliahrefwikielkititleelkielkiadataminingframeworkinjavawithdataminingorientedvisualizationfunctionsliliahrefwikiknimetitleknimeknimeathekonstanzinformationminerauserfriendlyandcomprehensivedataanalyticsframeworkliliahrefwikiorange_softwaretitleorangesoftwareorangeaavisualprogrammingtoolfeaturingahrefwikiinteractive_data_visualizationtitleinteractivedatavisualizationinteractiveaahrefwikidata_visualizationtitledatavisualizationdatavisualizationaandmethodsforstatisticaldataanalysisahrefwikidata_miningtitledataminingdataminingaandahrefwikimachine_learningtitlemachinelearningmachinelearningaliliarelnofollowclassexternaltexthrefhttpsfolkuionoohammerpastpastafreesoftwareforscientificdataanalysisliliahrefwikiphysics_analysis_workstationtitlephysicsanalysisworkstationpawafortrancdataanalysisframeworkdevelopedatahrefwikicerntitlecerncernaliliahrefwikir_programming_languagetitlerprogramminglanguageraaprogramminglanguageandsoftwareenvironmentforstatisticalcomputingandgraphicsliliahrefwikiroottitlerootrootacdataanalysisframeworkdevelopedatahrefwikicerntitlecerncernaliliahrefwikiscipytitlescipyscipyaandahrefwikipandas_softwaretitlepandassoftwarepandasapythonlibrariesfordataanalysisliulh2spanclassmwheadlineidinternational_data_analysis_contestsinternationaldataanalysiscontestsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection36titleeditsectioninternationaldataanalysiscontestseditaspanclassmweditsectionbracketspanspanh2pdifferentcompaniesororganizationsholdadataanalysisconteststoencourageresearchersutilizetheirdataortosolveaparticularquestionusingdataanalysisafewexamplesofwellknowninternationaldataanalysiscontestsareasfollowspullikagglecompetitionheldbyahrefwikikaggletitlekagglekaggleasupidcite_ref39classreferenceahrefcite_note39913993asupliliahrefwikiltpp_international_data_analysis_contestclassmwredirecttitleltppinternationaldataanalysiscontestltppdataanalysiscontestaheldbyahrefwikifhwaclassmwredirecttitlefhwafhwaaandahrefwikiasceclassmwredirecttitleasceasceasupidcite_refnehme_20160929_400classreferenceahrefcite_notenehme_2016092940914093asupsupidcite_ref41classreferenceahrefcite_note41914193asupliulh2spanclassmwheadlineidsee_alsoseealsospanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection37titleeditsectionseealsoeditaspanclassmweditsectionbracketspanspanh2divrolenavigationarialabelportalsclassnoprintportalplainlisttrightstylemargin05em005em1embordersolidaaa1pxulstyledisplaytableboxsizingborderboxpadding01emmaxwidth175pxbackgroundf9f9f9fontsize85lineheight110fontstyleitalicfontweightboldlistyledisplaytablerowspanstyledisplaytablecellpadding02emverticalalignmiddletextaligncenterahrefwikifilefisher_iris_versicolor_sepalwidthsvgclassimageimgalticonsrcuploadwikimediaorgwikipediacommonsthumb440fisher_iris_versicolor_sepalwidthsvg32pxfisher_iris_versicolor_sepalwidthsvgpngwidth32height22classnoviewersrcsetuploadwikimediaorgwikipediacommonsthumb440fisher_iris_versicolor_sepalwidthsvg48pxfisher_iris_versicolor_sepalwidthsvgpng15xuploadwikimediaorgwikipediacommonsthumb440fisher_iris_versicolor_sepalwidthsvg64pxfisher_iris_versicolor_sepalwidthsvgpng2xdatafilewidth822datafileheight567aspanspanstyledisplaytablecellpadding02em02em02em03emverticalalignmiddleahrefwikiportalstatisticstitleportalstatisticsstatisticsportalaspanliuldivdivclassdivcolcolumnscolumnwidthstylemozcolumnwidth20emwebkitcolumnwidth20emcolumnwidth20emulliahrefwikiactuarial_sciencetitleactuarialscienceactuarialsciencealiliahrefwikianalyticstitleanalyticsanalyticsaliliahrefwikibig_datatitlebigdatabigdataaliliahrefwikibusiness_intelligencetitlebusinessintelligencebusinessintelligencealiliahrefwikicensoring_statisticstitlecensoringstatisticscensoringstatisticsaliliahrefwikicomputational_physicstitlecomputationalphysicscomputationalphysicsaliliahrefwikidata_acquisitiontitledataacquisitiondataacquisitionaliliahrefwikidata_blendingtitledatablendingdatablendingaliliahrefwikidata_governancetitledatagovernancedatagovernancealiliahrefwikidata_miningtitledataminingdataminingaliliahrefwikidata_presentation_architectureclassmwredirecttitledatapresentationarchitecturedatapresentationarchitecturealiliahrefwikidata_sciencetitledatasciencedatasciencealiliahrefwikidigital_signal_processingtitledigitalsignalprocessingdigitalsignalprocessingaliliahrefwikidimension_reductionclassmwredirecttitledimensionreductiondimensionreductionaliliahrefwikiearly_case_assessmenttitleearlycaseassessmentearlycaseassessmentaliliahrefwikiexploratory_data_analysistitleexploratorydataanalysisexploratorydataanalysisaliliahrefwikifourier_analysistitlefourieranalysisfourieranalysisaliliahrefwikimachine_learningtitlemachinelearningmachinelearningaliliahrefwikimultilinear_principal_component_analysistitlemultilinearprincipalcomponentanalysismultilinearpcaaliliahrefwikimultilinear_subspace_learningtitlemultilinearsubspacelearningmultilinearsubspacelearningaliliahrefwikimultiway_data_analysistitlemultiwaydataanalysismultiwaydataanalysisaliliahrefwikinearest_neighbor_searchtitlenearestneighborsearchnearestneighborsearchaliliahrefwikinonlinear_system_identificationtitlenonlinearsystemidentificationnonlinearsystemidentificationaliliahrefwikipredictive_analyticstitlepredictiveanalyticspredictiveanalyticsaliliahrefwikiprincipal_component_analysistitleprincipalcomponentanalysisprincipalcomponentanalysisaliliahrefwikiqualitative_researchtitlequalitativeresearchqualitativeresearchaliliahrefwikiscientific_computingclassmwredirecttitlescientificcomputingscientificcomputingaliliahrefwikistructured_data_analysis_statisticstitlestructureddataanalysisstatisticsstructureddataanalysisstatisticsaliliahrefwikisystem_identificationtitlesystemidentificationsystemidentificationaliliahrefwikitest_methodtitletestmethodtestmethodaliliahrefwikitext_analyticsclassmwredirecttitletextanalyticstextanalyticsaliliahrefwikiunstructured_datatitleunstructureddataunstructureddataaliliahrefwikiwavelettitlewaveletwaveletaliuldivh2spanclassmwheadlineidreferencesreferencesspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection38titleeditsectionreferenceseditaspanclassmweditsectionbracketspanspanh2h3spanclassmwheadlineidcitationscitationsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection39titleeditsectioncitationseditaspanclassmweditsectionbracketspanspanh3divclassrefliststyleliststyletypedecimaldivclassmwreferenceswrapmwreferencescolumnsolclassreferencesliidcite_note1spanclassmwcitebacklinkbahrefcite_ref1abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpswebarchiveorgweb20171018181046httpsspotlessdatacomblogexploringdataanalysisexploringdataanalysisaspanliliidcite_notejudd_and_mcclelland_19892spanclassmwcitebacklinkahrefcite_refjudd_and_mcclelland_1989_20supibabisupaahrefcite_refjudd_and_mcclelland_1989_21supibbbisupaahrefcite_refjudd_and_mcclelland_1989_22supibcbisupaspanspanclassreferencetextciteclasscitationbookjuddcharlesandmcclelandgary1989iahrefwikidata_analysisclassmwredirecttitledataanalysisdataanalysisaiharcourtbracejovanovichahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources0155167650titlespecialbooksources01551676500155167650acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenrebookamprftbtitledataanalysisamprftpubharcourtbracejovanovichamprftdate1989amprftisbn0155167650amprftaulastjudd2ccharlesandamprftaufirstmccleland2cgaryamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanstyledatamwdeduplicatetemplatestylesr861714446mwparseroutputcitecitationfontstyleinheritmwparseroutputqquotesmwparseroutputcodecs1codecolorinheritbackgroundinheritborderinheritpaddinginheritmwparseroutputcs1lockfreeabackgroundurluploadwikimediaorgwikipediacommonsthumb665lockgreensvg9pxlockgreensvgpngnorepeatbackgroundpositionright1emcentermwparseroutputcs1locklimitedamwparseroutputcs1lockregistrationabackgroundurluploadwikimediaorgwikipediacommonsthumbdd6lockgrayalt2svg9pxlockgrayalt2svgpngnorepeatbackgroundpositionright1emcentermwparseroutputcs1locksubscriptionabackgroundurluploadwikimediaorgwikipediacommonsthumbaaalockredalt2svg9pxlockredalt2svgpngnorepeatbackgroundpositionright1emcentermwparseroutputcs1subscriptionmwparseroutputcs1registrationcolor555mwparseroutputcs1subscriptionspanmwparseroutputcs1registrationspanborderbottom1pxdottedcursorhelpmwparseroutputcs1hiddenerrordisplaynonefontsize100mwparseroutputcs1visibleerrorfontsize100mwparseroutputcs1subscriptionmwparseroutputcs1registrationmwparseroutputcs1formatfontsize95mwparseroutputcs1kernleftmwparseroutputcs1kernwlleftpaddingleft02emmwparseroutputcs1kernrightmwparseroutputcs1kernwlrightpaddingright02emstylespanliliidcite_note3spanclassmwcitebacklinkbahrefcite_ref3abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpprojecteuclidorgdownloadpdf_1euclidaoms1177704711johntukeythefutureofdataanalysisjuly1961aspanliliidcite_noteo39neil_and_schutt_20134spanclassmwcitebacklinkahrefcite_refo39neil_and_schutt_2013_40supibabisupaahrefcite_refo39neil_and_schutt_2013_41supibbbisupaahrefcite_refo39neil_and_schutt_2013_42supibcbisupaahrefcite_refo39neil_and_schutt_2013_43supibdbisupaahrefcite_refo39neil_and_schutt_2013_44supibebisupaahrefcite_refo39neil_and_schutt_2013_45supibfbisupaahrefcite_refo39neil_and_schutt_2013_46supibgbisupaspanspanclassreferencetextciteclasscitationbookoneilcathyandschuttrachel2013iahrefwindexphptitledoing_data_scienceampactioneditampredlink1classnewtitledoingdatasciencepagedoesnotexistdoingdatascienceaioreillyahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources9781449358655titlespecialbooksources97814493586559781449358655acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenrebookamprftbtitledoingdatascienceamprftpubo27reillyamprftdate2013amprftisbn9781449358655amprftaulasto27neil2ccathyandamprftaufirstschutt2crachelamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note5spanclassmwcitebacklinkbahrefcite_ref5abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpswwwsuntecindiacomblogcleandataincrmthekeytogeneratesalesreadyleadsandboostyourrevenuepoolcleandataincrmthekeytogeneratesalesreadyleadsandboostyourrevenuepoolaretrieved29thjuly2016spanliliidcite_note6spanclassmwcitebacklinkbahrefcite_ref6abspanspanclassreferencetextciteclasscitationwebarelnofollowclassexternaltexthrefhttpresearchmicrosoftcomenusprojectsdatacleaningdatacleaningamicrosoftresearchspanclassreferenceaccessdateretrievedspanclassnowrap26octoberspan2013spancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenreunknownamprftbtitledatacleaningamprftpubmicrosoftresearchamprft_idhttp3a2f2fresearchmicrosoftcom2fenus2fprojects2fdatacleaning2famprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_notekoomey17spanclassmwcitebacklinkahrefcite_refkoomey1_70supibabisupaahrefcite_refkoomey1_71supibbbisupaahrefcite_refkoomey1_72supibcbisupaspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpwwwperceptualedgecomarticlesbeyequantitative_datapdfperceptualedgejonathankoomeybestpracticesforunderstandingquantitativedatafebruary142006aspanliliidcite_note8spanclassmwcitebacklinkbahrefcite_ref8abspanspanclassreferencetextciteclasscitationjournalhellersteinjoseph27february2008arelnofollowclassexternaltexthrefhttpdbcsberkeleyedujmhpaperscleaningunecepdfquantitativedatacleaningforlargedatabasesaspanclasscs1formatpdfspanieecscomputersciencedivisioni3spanclassreferenceaccessdateretrievedspanclassnowrap26octoberspan2013spancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3ajournalamprftgenrearticleamprftjtitleeecscomputersciencedivisionamprftatitlequantitativedatacleaningforlargedatabasesamprftpages3amprftdate20080227amprftaulasthellersteinamprftaufirstjosephamprft_idhttp3a2f2fdbcsberkeleyedu2fjmh2fpapers2fcleaningunecepdfamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note9spanclassmwcitebacklinkbahrefcite_ref9abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpwwwperceptualedgecomarticlesiethe_right_graphpdfstephenfewperceptualedgeselectingtherightgraphforyourmessageseptember2004aspanliliidcite_note10spanclassmwcitebacklinkbahrefcite_ref10abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpcllstanfordeduwillbcoursebehrens97pmpdfbehrensprinciplesandproceduresofexploratorydataanalysisamericanpsychologicalassociation1997aspanliliidcite_note11spanclassmwcitebacklinkbahrefcite_ref11abspanspanclassreferencetextciteclasscitationjournalgrandjeanmartin2014arelnofollowclassexternaltexthrefhttpwwwmartingrandjeanchwpcontentuploads201502grandjean2014connaissancereseaupdflaconnaissanceestunrseauaspanclasscs1formatpdfspanilescahiersdunumriqueib10b33754ahrefwikidigital_object_identifiertitledigitalobjectidentifierdoiaarelnofollowclassexternaltexthrefdoiorg1031662flcn1033754103166lcn1033754acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3ajournalamprftgenrearticleamprftjtitlelescahiersdunumc3a9riqueamprftatitlelaconnaissanceestunrc3a9seauamprftvolume10amprftissue3amprftpages3754amprftdate2014amprft_idinfo3adoi2f1031662flcn1033754amprftaulastgrandjeanamprftaufirstmartinamprft_idhttp3a2f2fwwwmartingrandjeanch2fwpcontent2fuploads2f20152f022fgrandjean2014connaissancereseaupdfamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note12spanclassmwcitebacklinkbahrefcite_ref12abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpwwwperceptualedgecomarticlesiethe_right_graphpdfstephenfewperceptualedgeselectingtherightgraphforyourmessage2004aspanliliidcite_note13spanclassmwcitebacklinkbahrefcite_ref13abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpwwwperceptualedgecomarticlesmiscgraph_selection_matrixpdfstephenfewperceptualedgegraphselectionmatrixaspanliliidcite_note14spanclassmwcitebacklinkbahrefcite_ref14abspanspanclassreferencetextrobertamarjameseaganandjohnstasko2005arelnofollowclassexternaltexthrefhttpwwwccgatechedustaskopapersinfovis05pdflowlevelcomponentsofanalyticactivityininformationvisualizationaspanliliidcite_note15spanclassmwcitebacklinkbahrefcite_ref15abspanspanclassreferencetextwilliamnewman1994arelnofollowclassexternaltexthrefhttpwwwmdnpresscomwmnpdfschi94proformas2pdfapreliminaryanalysisoftheproductsofhciresearchusingproformaabstractsaspanliliidcite_note16spanclassmwcitebacklinkbahrefcite_ref16abspanspanclassreferencetextmaryshaw2002arelnofollowclassexternaltexthrefhttpwwwcscmueducomposeftpshawfinetapspdfwhatmakesgoodresearchinsoftwareengineeringaspanliliidcite_notecontaas17spanclassmwcitebacklinkahrefcite_refcontaas_170supibabisupaahrefcite_refcontaas_171supibbbisupaspanspanclassreferencetextciteclasscitationwebarelnofollowclassexternaltexthrefhttpsscholarspacemanoahawaiieduhandle1012541879contaasanapproachtointernetscalecontextualisationfordevelopingefficientinternetofthingsapplicationsaischolarspaceihicss50spanclassreferenceaccessdateretrievedspanclassnowrapmay24span2017spancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3ajournalamprftgenreunknownamprftjtitlescholarspaceamprftatitlecontaas3aanapproachtointernetscalecontextualisationfordevelopingefficientinternetofthingsapplicationsamprft_idhttps3a2f2fscholarspacemanoahawaiiedu2fhandle2f101252f41879amprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note18spanclassmwcitebacklinkbahrefcite_ref18abspanspanclassreferencetextciteclasscitationwebarelnofollowclassexternaltexthrefhttpwwwcbogovpublication21670congressionalbudgetofficethebudgetandeconomicoutlookaugust2010table17onpage24aspanclasscs1formatpdfspanspanclassreferenceaccessdateretrievedspanclassnowrap20110331spanspancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenreunknownamprftbtitlecongressionalbudgetofficethebudgetandeconomicoutlookaugust2010table17onpage24amprft_idhttp3a2f2fwwwcbogov2fpublication2f21670amprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_noteheuer119spanclassmwcitebacklinkbahrefcite_refheuer1_190abspanspanclassreferencetextciteclasscitationwebarelnofollowclassexternaltexthrefhttpswwwciagovlibrarycenterforthestudyofintelligencecsipublicationsbooksandmonographspsychologyofintelligenceanalysisart3htmlintroductionaiciagovicitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3ajournalamprftgenreunknownamprftjtitleciagovamprftatitleintroductionamprft_idhttps3a2f2fwwwciagov2flibrary2fcenterforthestudyofintelligence2fcsipublications2fbooksandmonographs2fpsychologyofintelligenceanalysis2fart3htmlamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note20spanclassmwcitebacklinkbahrefcite_ref20abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpwwwbloombergviewcomarticles20141028badmaththatpassesforinsightbloombergbarryritholzbadmaththatpassesforinsightoctober282014aspanliliidcite_notetowards_energy_efficiency_smart_buildings_models_based_on_intelligent_data_analytics21spanclassmwcitebacklinkbahrefcite_reftowards_energy_efficiency_smart_buildings_models_based_on_intelligent_data_analytics_210abspanspanclassreferencetextciteclasscitationjournalgonzlezvidalauroramorenocanovictoria2016towardsenergyefficiencysmartbuildingsmodelsbasedonintelligentdataanalyticsiprocediacomputerscienceib83belsevier994999ahrefwikidigital_object_identifiertitledigitalobjectidentifierdoiaarelnofollowclassexternaltexthrefdoiorg1010162fjprocs201604213101016jprocs201604213acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3ajournalamprftgenrearticleamprftjtitleprocediacomputerscienceamprftatitletowardsenergyefficiencysmartbuildingsmodelsbasedonintelligentdataanalyticsamprftvolume83amprftissueelsevieramprftpages994999amprftdate2016amprft_idinfo3adoi2f1010162fjprocs201604213amprftaulastgonzc3a1lezvidalamprftaufirstauroraamprftaumorenocano2cvictoriaamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_notecompeting_on_analytics_200722spanclassmwcitebacklinkbahrefcite_refcompeting_on_analytics_2007_220abspanspanclassreferencetextciteclasscitationbookdavenportthomasandharrisjeanne2007iahrefwindexphptitlecompeting_on_analyticsampactioneditampredlink1classnewtitlecompetingonanalyticspagedoesnotexistcompetingonanalyticsaioreillyahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources9781422103326titlespecialbooksources97814221033269781422103326acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenrebookamprftbtitlecompetingonanalyticsamprftpubo27reillyamprftdate2007amprftisbn9781422103326amprftaulastdavenport2cthomasandamprftaufirstharris2cjeanneamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note23spanclassmwcitebacklinkbahrefcite_ref23abspanspanclassreferencetextaaronsd2009arelnofollowclassexternaltexthrefhttpsearchproquestcomdocview202710770accountid28180reportfindsstatesoncoursetobuildpupildatasystemsaieducationweek29i136spanliliidcite_note24spanclassmwcitebacklinkbahrefcite_ref24abspanspanclassreferencetextrankinj2013march28arelnofollowclassexternaltexthrefhttpssaselluminatecomsiteexternalrecordingplaybacklinktabledropinsid2008350ampsuidd4df60c7117d5a77fe3aed546909ed2howdatasystemsampreportscaneitherfightorpropagatethedataanalysiserrorepidemicandhoweducatorleaderscanhelpaipresentationconductedfromtechnologyinformationcenterforadministrativeleadershipticalschoolleadershipsummitispanliliidcite_notefootnoteadr2008a33725spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a337_250abspanspanclassreferencetextahrefciterefadr2008aadr2008aap160337spanliliidcite_notefootnoteadr2008a33834126spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a338341_260abspanspanclassreferencetextahrefciterefadr2008aadr2008aapp160338341spanliliidcite_notefootnoteadr2008a34134227spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a341342_270abspanspanclassreferencetextahrefciterefadr2008aadr2008aapp160341342spanliliidcite_notefootnoteadr2008a34428spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a344_280abspanspanclassreferencetextahrefciterefadr2008aadr2008aap160344spanliliidcite_note29spanclassmwcitebacklinkbahrefcite_ref29abspanspanclassreferencetexttabachnickampfidell2007p8788spanliliidcite_notefootnoteadr2008a34434530spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a344345_300abspanspanclassreferencetextahrefciterefadr2008aadr2008aapp160344345spanliliidcite_notefootnoteadr2008a34531spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a345_310abspanspanclassreferencetextahrefciterefadr2008aadr2008aap160345spanliliidcite_notefootnoteadr2008a34534632spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a345346_320abspanspanclassreferencetextahrefciterefadr2008aadr2008aapp160345346spanliliidcite_notefootnoteadr2008a34634733spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a346347_330abspanspanclassreferencetextahrefciterefadr2008aadr2008aapp160346347spanliliidcite_notefootnoteadr2008a34935334spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a349353_340abspanspanclassreferencetextahrefciterefadr2008aadr2008aapp160349353spanliliidcite_notesab135spanclassmwcitebacklinkbahrefcite_refsab1_350abspanspanclassreferencetextbillingssanonlinearsystemidentificationnarmaxmethodsinthetimefrequencyandspatiotemporaldomainswiley2013spanliliidcite_notefootnoteadr2008b36336spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008b363_360abspanspanclassreferencetextahrefciterefadr2008badr2008bap160363spanliliidcite_notefootnoteadr2008b36136237spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008b361362_370abspanspanclassreferencetextahrefciterefadr2008badr2008bapp160361362spanliliidcite_notefootnoteadr2008b36137138spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008b361371_380abspanspanclassreferencetextahrefciterefadr2008badr2008bapp160361371spanliliidcite_note39spanclassmwcitebacklinkbahrefcite_ref39abspanspanclassreferencetextciteclasscitationnewsarelnofollowclassexternaltexthrefhttpwwwsymmetrymagazineorgarticlejuly2014themachinelearningcommunitytakesonthehiggsthemachinelearningcommunitytakesonthehiggsaisymmetrymagazineijuly152014spanclassreferenceaccessdateretrievedspanclassnowrap14januaryspan2015spancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3ajournalamprftgenrearticleamprftjtitlesymmetrymagazineamprftatitlethemachinelearningcommunitytakesonthehiggsamprftdate20140715amprft_idhttp3a2f2fwwwsymmetrymagazineorg2farticle2fjuly20142fthemachinelearningcommunitytakesonthehiggs2famprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_notenehme_2016092940spanclassmwcitebacklinkbahrefcite_refnehme_20160929_400abspanspanclassreferencetextciteclasscitationwebnehmejeanseptember292016arelnofollowclassexternaltexthrefhttpswwwfhwadotgovresearchtfhrcprogramsinfrastructurepavementsltpp2016_2017_asce_ltpp_contest_guidelinescfmltppinternationaldataanalysiscontestafederalhighwayadministrationspanclassreferenceaccessdateretrievedspanclassnowrapoctober22span2017spancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenreunknownamprftbtitleltppinternationaldataanalysiscontestamprftpubfederalhighwayadministrationamprftdate20160929amprftaulastnehmeamprftaufirstjeanamprft_idhttps3a2f2fwwwfhwadotgov2fresearch2ftfhrc2fprograms2finfrastructure2fpavements2fltpp2f2016_2017_asce_ltpp_contest_guidelinescfmamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note41spanclassmwcitebacklinkbahrefcite_ref41abspanspanclassreferencetextciteclasscitationwebarelnofollowclassexternaltexthrefhttpswwwfhwadotgovresearchtfhrcprogramsinfrastructurepavementsltppdatagovlongtermpavementperformanceltppamay262016spanclassreferenceaccessdateretrievedspanclassnowrapnovember10span2017spancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenreunknownamprftbtitledatagov3alongtermpavementperformance28ltpp29amprftdate20160526amprft_idhttps3a2f2fwwwfhwadotgov2fresearch2ftfhrc2fprograms2finfrastructure2fpavements2fltpp2famprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanlioldivdivh3spanclassmwheadlineidbibliographybibliographyspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection40titleeditsectionbibliographyeditaspanclassmweditsectionbracketspanspanh3ulliciteidciterefadr2008aclasscitationbookahrefwikiherman_j_adc3a8rtitlehermanjadradrhermanja2008achapter14phasesandinitialstepsindataanalysisinadrhermanjahrefwikigideon_j_mellenberghtitlegideonjmellenberghmellenberghgideonjaahrefwikidavid_hand_statisticiantitledavidhandstatisticianhanddavidjaarelnofollowclassexternaltexthrefhttpwwwworldcatorgtitleadvisingonresearchmethodsaconsultantscompanionoclc905799857viewportiadvisingonresearchmethods160aconsultantscompanioniahuizennetherlandsjohannesvankesselpubpp160333356ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources9789079418015titlespecialbooksources97890794180159789079418015aahrefwikioclctitleoclcoclca160arelnofollowclassexternaltexthrefwwwworldcatorgoclc905799857905799857acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenrebookitemamprftatitlechapter143aphasesandinitialstepsindataanalysisamprftbtitleadvisingonresearchmethods3aaconsultant27scompanionamprftplacehuizen2cnetherlandsamprftpages333356amprftpubjohannesvankesselpubamprftdate2008amprft_idinfo3aoclcnum2f905799857amprftisbn9789079418015amprftaulastadc3a8ramprftaufirsthermanjamprft_idhttp3a2f2fwwwworldcatorg2ftitle2fadvisingonresearchmethodsaconsultantscompanion2foclc2f9057998572fviewportamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446liliciteidciterefadr2008bclasscitationbookahrefwikiherman_j_adc3a8rtitlehermanjadradrhermanja2008bchapter15themainanalysisphaseinadrhermanjahrefwikigideon_j_mellenberghtitlegideonjmellenberghmellenberghgideonjaahrefwikidavid_hand_statisticiantitledavidhandstatisticianhanddavidjaarelnofollowclassexternaltexthrefhttpwwwworldcatorgtitleadvisingonresearchmethodsaconsultantscompanionoclc905799857viewportiadvisingonresearchmethods160aconsultantscompanioniahuizennetherlandsjohannesvankesselpubpp160357386ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources9789079418015titlespecialbooksources97890794180159789079418015aahrefwikioclctitleoclcoclca160arelnofollowclassexternaltexthrefwwwworldcatorgoclc905799857905799857acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenrebookitemamprftatitlechapter153athemainanalysisphaseamprftbtitleadvisingonresearchmethods3aaconsultant27scompanionamprftplacehuizen2cnetherlandsamprftpages357386amprftpubjohannesvankesselpubamprftdate2008amprft_idinfo3aoclcnum2f905799857amprftisbn9789079418015amprftaulastadc3a8ramprftaufirsthermanjamprft_idhttp3a2f2fwwwworldcatorg2ftitle2fadvisingonresearchmethodsaconsultantscompanion2foclc2f9057998572fviewportamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446lilitabachnickbgampfidellls2007chapter4cleaningupyouractscreeningdatapriortoanalysisinbgtabachnickamplsfidelledsusingmultivariatestatisticsfiftheditionpp16060116bostonpearsoneducationincallynandbaconliulh2spanclassmwheadlineidfurther_readingfurtherreadingspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection41titleeditsectionfurtherreadingeditaspanclassmweditsectionbracketspanspanh2tablerolepresentationclassmboxsmallplainlinkssistersiteboxstylebackgroundcolorf9f9f9border1pxsolidaaacolor000tbodytrtdclassmboximageimgaltsrcuploadwikimediaorgwikipediacommonsthumb991wikiversitylogosvg40pxwikiversitylogosvgpngwidth40height32classnoviewersrcsetuploadwikimediaorgwikipediacommonsthumb991wikiversitylogosvg60pxwikiversitylogosvgpng15xuploadwikimediaorgwikipediacommonsthumb991wikiversitylogosvg80pxwikiversitylogosvgpng2xdatafilewidth1000datafileheight800tdtdclassmboxtextplainlistwikiversityhaslearningresourcesaboutibahrefhttpsenwikiversityorgwikispecialsearchdata_analysisclassextiwtitlevspecialsearchdataanalysisdataanalysisabitdtrtbodytableulliahrefwikiadc3a8r_hjclassmwredirecttitleadrhjadrhjaampahrefwikigideon_j_mellenberghtitlegideonjmellenberghmellenberghgjawithcontributionsbydjhand2008iadvisingonresearchmethodsaconsultantscompanionihuizenthenetherlandsjohannesvankesselpublishinglilichambersjohnmclevelandwilliamskleinerbeattukeypaula1983igraphicalmethodsfordataanalysisiwadsworthduxburypresslinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources053498052xtitlespecialbooksources053498052x053498052xalilifandangoarmando2008ipythondataanalysis2ndeditionipacktpublisherslilijuranjosephmgodfreyablanton1999ijuransqualityhandbook5theditioninewyorkmcgrawhilllinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources007034003xtitlespecialbooksources007034003x007034003xalililewisbeckmichaels1995idataanalysisanintroductionisagepublicationsinclinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources0803957726titlespecialbooksources08039577260803957726alilinistsematech2008arelnofollowclassexternaltexthrefhttpwwwitlnistgovdiv898handbookihandbookofstatisticalmethodsialilipyzdekt2003iqualityengineeringhandbookilinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources0824746147titlespecialbooksources08247461470824746147aliliahrefwikirichard_veryardtitlerichardveryardrichardveryarda1984ipragmaticdataanalysisioxford160blackwellscientificpublicationslinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources0632013117titlespecialbooksources06320131170632013117alilitabachnickbgfidellls2007iusingmultivariatestatistics5theditionibostonpearsoneducationincallynandbaconlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources9780205459384titlespecialbooksources97802054593849780205459384aliuldivrolenavigationclassnavboxarialabelledbyauthority_control_frameless_amp124texttop_amp12410px_amp124altedit_this_at_wikidata_amp124linkhttpsamp58wwwwikidataorgwikiq1988917amp124edit_this_at_wikidatastylepadding3pxtableclassnowraplinkshlistnavboxinnerstyleborderspacing0backgroundtransparentcolorinherittbodytrthidauthority_control_frameless_amp124texttop_amp12410px_amp124altedit_this_at_wikidata_amp124linkhttpsamp58wwwwikidataorgwikiq1988917amp124edit_this_at_wikidatascoperowclassnavboxgroupstylewidth1ahrefwikihelpauthority_controltitlehelpauthoritycontrolauthoritycontrolaahrefhttpswwwwikidataorgwikiq1988917titleeditthisatwikidataimgalteditthisatwikidatasrcuploadwikimediaorgwikipediacommonsthumb773blue_pencilsvg10pxblue_pencilsvgpngwidth10height10styleverticalaligntexttopsrcsetuploadwikimediaorgwikipediacommonsthumb773blue_pencilsvg15pxblue_pencilsvgpng15xuploadwikimediaorgwikipediacommonsthumb773blue_pencilsvg20pxblue_pencilsvgpng2xdatafilewidth600datafileheight600athtdclassnavboxlistnavboxoddstyletextalignleftborderleftwidth2pxborderleftstylesolidwidth100padding0pxdivstylepadding0em025emullispanclassnowrapahrefwikiintegrated_authority_filetitleintegratedauthorityfilegndaspanclassuidarelnofollowclassexternaltexthrefhttpsdnbinfognd4123037141230371aspanspanliuldivtdtrtbodytabledivdivrolenavigationclassnavboxarialabelledbydatastylepadding3pxtableclassnowraplinkscollapsibleautocollapsenavboxinnerstyleborderspacing0backgroundtransparentcolorinherittbodytrthscopecolclassnavboxtitlecolspan2divclassplainlinkshlistnavbarminiulliclassnvviewahrefwikitemplatedatatitletemplatedataabbrtitleviewthistemplatestylebackgroundnonetransparentbordernonemozboxshadownonewebkitboxshadownoneboxshadownonepadding0vabbraliliclassnvtalkahrefwikitemplate_talkdatatitletemplatetalkdataabbrtitlediscussthistemplatestylebackgroundnonetransparentbordernonemozboxshadownonewebkitboxshadownoneboxshadownonepadding0tabbraliliclassnveditaclassexternaltexthrefenwikipediaorgwindexphptitletemplatedataampactioneditabbrtitleeditthistemplatestylebackgroundnonetransparentbordernonemozboxshadownonewebkitboxshadownoneboxshadownonepadding0eabbraliuldivdividdatastylefontsize114margin04emahrefwikidata_computingtitledatacomputingdataadivthtrtrtdcolspan2classnavboxlistnavboxoddhliststylewidth100padding0pxdivstylepadding0em025emulliaclassmwselflinkselflinkanalysisaliliahrefwikidata_archaeologytitledataarchaeologyarchaeologyaliliahrefwikidata_cleansingtitledatacleansingcleansingaliliahrefwikidata_collectiontitledatacollectioncollectionaliliahrefwikidata_compressiontitledatacompressioncompressionaliliahrefwikidata_corruptiontitledatacorruptioncorruptionaliliahrefwikidata_curationtitledatacurationcurationaliliahrefwikidata_degradationtitledatadegradationdegradationaliliahrefwikidata_editingtitledataeditingeditingaliliahrefwikidata_farmingtitledatafarmingfarmingaliliahrefwikidata_format_managementtitledataformatmanagementformatmanagementaliliahrefwikidata_fusiontitledatafusionfusionaliliahrefwikidata_integrationtitledataintegrationintegrationaliliahrefwikidata_integritytitledataintegrityintegrityaliliahrefwikidata_librarytitledatalibrarylibraryaliliahrefwikidata_losstitledatalosslossaliliahrefwikidata_managementtitledatamanagementmanagementaliliahrefwikidata_migrationtitledatamigrationmigrationaliliahrefwikidata_miningtitledataminingminingaliliahrefwikidata_preprocessingtitledatapreprocessingpreprocessingaliliahrefwikidata_preservationtitledatapreservationpreservationaliliahrefwikiinformation_privacytitleinformationprivacyprotectionprivacyaliliahrefwikidata_recoverytitledatarecoveryrecoveryaliliahrefwikidata_reductiontitledatareductionreductionaliliahrefwikidata_retentiontitledataretentionretentionaliliahrefwikidata_qualitytitledataqualityqualityaliliahrefwikidata_sciencetitledatasciencesciencealiliahrefwikidata_scrapingtitledatascrapingscrapingaliliahrefwikidata_scrubbingtitledatascrubbingscrubbingaliliahrefwikidata_securitytitledatasecuritysecurityaliliahrefwikidata_stewardshipclassmwredirecttitledatastewardshipstewardshipaliliahrefwikidata_storagetitledatastoragestoragealiliahrefwikidata_validationtitledatavalidationvalidationaliliahrefwikidata_warehousetitledatawarehousewarehousealiliahrefwikidata_wranglingtitledatawranglingwranglingmungingaliuldivtdtrtbodytabledivnewpplimitreportparsedbymw1258cachedtime20181023205919cacheexpiry1900800dynamiccontentfalsecputimeusage0596secondsrealtimeusage0744secondspreprocessorvisitednodecount31771000000preprocessorgeneratednodecount01500000postexpandincludesize729952097152bytestemplateargumentsize28332097152byteshighestexpansiondepth1240expensiveparserfunctioncount5500unstriprecursiondepth120unstrippostexpandsize621355000000bytesnumberofwikibaseentitiesloaded3400luatimeusage023010000secondsluamemoryusage576mb50mbtransclusionexpansiontimereportmscallstemplate100005231141total31981673051templatereflist1744912485templatecite_book971508066templateisbn763399371templateaccording_to_whom734383943templatecite_journal698365241templateauthority_control673352172templatesidebar_with_collapsible_lists658344081templatefixspan582304591templatedata_visualizationsavedinparsercachewithkeyenwikipcacheidhash27209540canonicalandtimestamp20181023205918andrevisionid862584710divnoscriptimgsrcenwikipediaorgwikispecialcentralautologinstarttype1x1alttitlewidth1height1stylebordernonepositionabsolutenoscriptdivdivclassprintfooterretrievedfromadirltrhrefhttpsenwikipediaorgwindexphptitledata_analysisampoldid862584710httpsenwikipediaorgwindexphptitledata_analysisampoldid862584710adivdividcatlinksclasscatlinksdatamwinterfacedividmwnormalcatlinksclassmwnormalcatlinksahrefwikihelpcategorytitlehelpcategorycategoriesaulliahrefwikicategorydata_analysistitlecategorydataanalysisdataanalysisaliliahrefwikicategoryscientific_methodtitlecategoryscientificmethodscientificmethodaliliahrefwikicategoryparticle_physicstitlecategoryparticlephysicsparticlephysicsaliliahrefwikicategorycomputational_fields_of_studytitlecategorycomputationalfieldsofstudycomputationalfieldsofstudyaliuldivdividmwhiddencatlinksclassmwhiddencatlinksmwhiddencatshiddenhiddencategoriesulliahrefwikicategoryall_articles_with_specifically_marked_weaselworded_phrasestitlecategoryallarticleswithspecificallymarkedweaselwordedphrasesallarticleswithspecificallymarkedweaselwordedphrasesaliliahrefwikicategoryarticles_with_specifically_marked_weaselworded_phrases_from_march_2018titlecategoryarticleswithspecificallymarkedweaselwordedphrasesfrommarch2018articleswithspecificallymarkedweaselwordedphrasesfrommarch2018aliliahrefwikicategorywikipedia_articles_needing_clarification_from_march_2018titlecategorywikipediaarticlesneedingclarificationfrommarch2018wikipediaarticlesneedingclarificationfrommarch2018aliliahrefwikicategorywikipedia_articles_with_gnd_identifierstitlecategorywikipediaarticleswithgndidentifierswikipediaarticleswithgndidentifiersaliuldivdivdivclassvisualcleardivdivdivdividmwnavigationh2navigationmenuh2dividmwheaddividppersonalrolenavigationclassarialabelledbyppersonallabelh3idppersonallabelpersonaltoolsh3ulliidptanonuserpagenotloggedinliliidptanontalkahrefwikispecialmytalktitlediscussionabouteditsfromthisipaddressnaccesskeyntalkaliliidptanoncontribsahrefwikispecialmycontributionstitlealistofeditsmadefromthisipaddressyaccesskeyycontributionsaliliidptcreateaccountahrefwindexphptitlespecialcreateaccountampreturntodataanalysistitleyouareencouragedtocreateanaccountandloginhoweveritisnotmandatorycreateaccountaliliidptloginahrefwindexphptitlespecialuserloginampreturntodataanalysistitleyou039reencouragedtologinhoweverit039snotmandatoryoaccesskeyologinaliuldivdividleftnavigationdividpnamespacesrolenavigationclassvectortabsarialabelledbypnamespaceslabelh3idpnamespaceslabelnamespacesh3ulliidcanstabmainclassselectedspanahrefwikidata_analysistitleviewthecontentpagecaccesskeycarticleaspanliliidcatalkspanahrefwikitalkdata_analysisreldiscussiontitlediscussionaboutthecontentpagetaccesskeyttalkaspanliuldivdividpvariantsrolenavigationclassvectormenuemptyportletarialabelledbypvariantslabelinputtypecheckboxclassvectormenucheckboxarialabelledbypvariantslabelh3idpvariantslabelspanvariantsspanh3divclassmenuululdivdivdivdividrightnavigationdividpviewsrolenavigationclassvectortabsarialabelledbypviewslabelh3idpviewslabelviewsh3ulliidcaviewclasscollapsibleselectedspanahrefwikidata_analysisreadaspanliliidcaeditclasscollapsiblespanahrefwindexphptitledata_analysisampactionedittitleeditthispageeaccesskeyeeditaspanliliidcahistoryclasscollapsiblespanahrefwindexphptitledata_analysisampactionhistorytitlepastrevisionsofthispagehaccesskeyhviewhistoryaspanliuldivdividpcactionsrolenavigationclassvectormenuemptyportletarialabelledbypcactionslabelinputtypecheckboxclassvectormenucheckboxarialabelledbypcactionslabelh3idpcactionslabelspanmorespanh3divclassmenuululdivdivdividpsearchrolesearchh3labelforsearchinputsearchlabelh3formactionwindexphpidsearchformdividsimplesearchinputtypesearchnamesearchplaceholdersearchwikipediatitlesearchwikipediafaccesskeyfidsearchinputinputtypehiddenvaluespecialsearchnametitleinputtypesubmitnamefulltextvaluesearchtitlesearchwikipediaforthistextidmwsearchbuttonclasssearchbuttonmwfallbacksearchbuttoninputtypesubmitnamegovaluegotitlegotoapagewiththisexactnameifitexistsidsearchbuttonclasssearchbuttondivformdivdivdivdividmwpaneldividplogorolebanneraclassmwwikilogohrefwikimain_pagetitlevisitthemainpageadivdivclassportalrolenavigationidpnavigationarialabelledbypnavigationlabelh3idpnavigationlabelnavigationh3divclassbodyulliidnmainpagedescriptionahrefwikimain_pagetitlevisitthemainpagezaccesskeyzmainpagealiliidncontentsahrefwikiportalcontentstitleguidestobrowsingwikipediacontentsaliliidnfeaturedcontentahrefwikiportalfeatured_contenttitlefeaturedcontentthebestofwikipediafeaturedcontentaliliidncurrenteventsahrefwikiportalcurrent_eventstitlefindbackgroundinformationoncurrenteventscurrenteventsaliliidnrandompageahrefwikispecialrandomtitleloadarandomarticlexaccesskeyxrandomarticlealiliidnsitesupportahrefhttpsdonatewikimediaorgwikispecialfundraiserredirectorutm_sourcedonateamputm_mediumsidebaramputm_campaignc13_enwikipediaorgampuselangentitlesupportusdonatetowikipediaaliliidnshoplinkahrefshopwikimediaorgtitlevisitthewikipediastorewikipediastorealiuldivdivdivclassportalrolenavigationidpinteractionarialabelledbypinteractionlabelh3idpinteractionlabelinteractionh3divclassbodyulliidnhelpahrefwikihelpcontentstitleguidanceonhowtouseandeditwikipediahelpaliliidnaboutsiteahrefwikiwikipediaabouttitlefindoutaboutwikipediaaboutwikipediaaliliidnportalahrefwikiwikipediacommunity_portaltitleabouttheprojectwhatyoucandowheretofindthingscommunityportalaliliidnrecentchangesahrefwikispecialrecentchangestitlealistofrecentchangesinthewikiraccesskeyrrecentchangesaliliidncontactpageahrefenwikipediaorgwikiwikipediacontact_ustitlehowtocontactwikipediacontactpagealiuldivdivdivclassportalrolenavigationidptbarialabelledbyptblabelh3idptblabeltoolsh3divclassbodyulliidtwhatlinkshereahrefwikispecialwhatlinksheredata_analysistitlelistofallenglishwikipediapagescontaininglinkstothispagejaccesskeyjwhatlinksherealiliidtrecentchangeslinkedahrefwikispecialrecentchangeslinkeddata_analysisrelnofollowtitlerecentchangesinpageslinkedfromthispagekaccesskeykrelatedchangesaliliidtuploadahrefwikiwikipediafile_upload_wizardtitleuploadfilesuaccesskeyuuploadfilealiliidtspecialpagesahrefwikispecialspecialpagestitlealistofallspecialpagesqaccesskeyqspecialpagesaliliidtpermalinkahrefwindexphptitledata_analysisampoldid862584710titlepermanentlinktothisrevisionofthepagepermanentlinkaliliidtinfoahrefwindexphptitledata_analysisampactioninfotitlemoreinformationaboutthispagepageinformationaliliidtwikibaseahrefhttpswwwwikidataorgwikispecialentitypageq1988917titlelinktoconnecteddatarepositoryitemgaccesskeygwikidataitemaliliidtciteahrefwindexphptitlespecialcitethispageamppagedata_analysisampid862584710titleinformationonhowtocitethispagecitethispagealiuldivdivdivclassportalrolenavigationidpcollprint_exportarialabelledbypcollprint_exportlabelh3idpcollprint_exportlabelprintexporth3divclassbodyulliidcollcreate_a_bookahrefwindexphptitlespecialbookampbookcmdbook_creatoramprefererdataanalysiscreateabookaliliidcolldownloadasrdf2latexahrefwindexphptitlespecialelectronpdfamppagedataanalysisampactionshowdownloadscreendownloadaspdfaliliidtprintahrefwindexphptitledata_analysisampprintableyestitleprintableversionofthispagepaccesskeypprintableversionaliuldivdivdivclassportalrolenavigationidpwikibaseotherprojectsarialabelledbypwikibaseotherprojectslabelh3idpwikibaseotherprojectslabelinotherprojectsh3divclassbodyulliclasswbotherprojectlinkwbotherprojectcommonsahrefhttpscommonswikimediaorgwikicategorydata_analysishreflangenwikimediacommonsaliuldivdivdivclassportalrolenavigationidplangarialabelledbyplanglabelh3idplanglabellanguagesh3divclassbodyulliclassinterlanguagelinkinterwikiarahrefhttpsarwikipediaorgwikid8aad8add984d98ad984_d8a8d98ad8a7d986d8a7d8aatitlearabiclangarhreflangarclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikideahrefhttpsdewikipediaorgwikidatenanalysetitledatenanalysegermanlangdehreflangdeclassinterlanguagelinktargetdeutschaliliclassinterlanguagelinkinterwikietahrefhttpsetwikipediaorgwikiandmeanalc3bcc3bcstitleandmeanalsestonianlangethreflangetclassinterlanguagelinktargeteestialiliclassinterlanguagelinkinterwikiesahrefhttpseswikipediaorgwikianc3a1lisis_de_datostitleanlisisdedatosspanishlangeshreflangesclassinterlanguagelinktargetespaolaliliclassinterlanguagelinkinterwikieoahrefhttpseowikipediaorgwikidatuma_analitikotitledatumaanalitikoesperantolangeohreflangeoclassinterlanguagelinktargetesperantoaliliclassinterlanguagelinkinterwikifaahrefhttpsfawikipediaorgwikid8aad8add984db8cd984_d8afd8a7d8afd987e2808cd987d8a7titlepersianlangfahreflangfaclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikifrbadgeq17437798badgegoodarticletitlegoodarticleahrefhttpsfrwikipediaorgwikianalyse_des_donnc3a9estitleanalysedesdonnesfrenchlangfrhreflangfrclassinterlanguagelinktargetfranaisaliliclassinterlanguagelinkinterwikihiahrefhttpshiwikipediaorgwikie0a4a1e0a587e0a49fe0a4be_e0a4b5e0a4bfe0a4b6e0a58de0a4b2e0a587e0a4b7e0a4a3titlehindilanghihreflanghiclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikiitahrefhttpsitwikipediaorgwikianalisi_dei_datititleanalisideidatiitalianlangithreflangitclassinterlanguagelinktargetitalianoaliliclassinterlanguagelinkinterwikiheahrefhttpshewikipediaorgwikid7a0d799d7aad795d797_d79ed799d793d7a2titlehebrewlanghehreflangheclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikiknahrefhttpsknwikipediaorgwikie0b2aee0b2bee0b2b9e0b2bfe0b2a4e0b2bf_e0b2b5e0b2bfe0b2b6e0b38de0b2b2e0b387e0b2b7e0b2a3e0b386titlekannadalangknhreflangknclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikihuahrefhttpshuwikipediaorgwikiadatelemzc3a9stitleadatelemzshungarianlanghuhreflanghuclassinterlanguagelinktargetmagyaraliliclassinterlanguagelinkinterwikiplahrefhttpsplwikipediaorgwikianaliza_danychtitleanalizadanychpolishlangplhreflangplclassinterlanguagelinktargetpolskialiliclassinterlanguagelinkinterwikiptahrefhttpsptwikipediaorgwikianc3a1lise_de_dadostitleanlisededadosportugueselangpthreflangptclassinterlanguagelinktargetportugusaliliclassinterlanguagelinkinterwikiruahrefhttpsruwikipediaorgwikid090d0bdd0b0d0bbd0b8d0b7_d0b4d0b0d0bdd0bdd18bd185titlerussianlangruhreflangruclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikisiahrefhttpssiwikipediaorgwikie0b6afe0b6ade0b78ae0b6ad_e0b780e0b792e0b781e0b78ae0b6bde0b79ae0b782e0b6abe0b6batitlesinhalalangsihreflangsiclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikickbahrefhttpsckbwikipediaorgwikid8b4db8cdaa9d8a7d8b1db8cdb8c_d8afd8b1d8a7d988db95titlecentralkurdishlangckbhreflangckbclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikifiahrefhttpsfiwikipediaorgwikidataanalyysititledataanalyysifinnishlangfihreflangficlassinterlanguagelinktargetsuomialiliclassinterlanguagelinkinterwikitaahrefhttpstawikipediaorgwikie0aea4e0aeb0e0aeb5e0af81_e0aeaae0ae95e0af81e0aeaae0af8de0aeaae0aebee0aeafe0af8de0aeb5e0af81titletamillangtahreflangtaclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikiukahrefhttpsukwikipediaorgwikid090d0bdd0b0d0bbd196d0b7_d0b4d0b0d0bdd0b8d185titleukrainianlangukhreflangukclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikizhahrefhttpszhwikipediaorgwikie695b0e68daee58886e69e90titlechineselangzhhreflangzhclassinterlanguagelinktargetaliuldivclassafterportletafterportletlangspanclasswblanglinkseditwblanglinkslinkahrefhttpswwwwikidataorgwikispecialentitypageq1988917sitelinkswikipediatitleeditinterlanguagelinksclasswbceditpageeditlinksaspandivdivdivdivdivdividfooterrolecontentinfoulidfooterinfoliidfooterinfolastmodthispagewaslasteditedon5october2018at0950spanclassanonymousshowutcspanliliidfooterinfocopyrighttextisavailableunderthearellicensehrefenwikipediaorgwikiwikipediatext_of_creative_commons_attributionsharealike_30_unported_licensecreativecommonsattributionsharealikelicenseaarellicensehrefcreativecommonsorglicensesbysa30styledisplaynoneaadditionaltermsmayapplybyusingthissiteyouagreetotheahreffoundationwikimediaorgwikiterms_of_usetermsofuseaandahreffoundationwikimediaorgwikiprivacy_policyprivacypolicyawikipediaisaregisteredtrademarkoftheahrefwwwwikimediafoundationorgwikimediafoundationincaanonprofitorganizationliululidfooterplacesliidfooterplacesprivacyahrefhttpsfoundationwikimediaorgwikiprivacy_policyclassextiwtitlewmfprivacypolicyprivacypolicyaliliidfooterplacesaboutahrefwikiwikipediaabouttitlewikipediaaboutaboutwikipediaaliliidfooterplacesdisclaimerahrefwikiwikipediageneral_disclaimertitlewikipediageneraldisclaimerdisclaimersaliliidfooterplacescontactahrefenwikipediaorgwikiwikipediacontact_uscontactwikipediaaliliidfooterplacesdevelopersahrefhttpswwwmediawikiorgwikispecialmylanguagehow_to_contributedevelopersaliliidfooterplacescookiestatementahrefhttpsfoundationwikimediaorgwikicookie_statementcookiestatementaliliidfooterplacesmobileviewahrefenmwikipediaorgwindexphptitledata_analysisampmobileactiontoggle_view_mobileclassnoprintstopmobileredirecttogglemobileviewaliululidfootericonsclassnoprintliidfootercopyrighticoahrefhttpswikimediafoundationorgimgsrcstaticimageswikimediabuttonpngsrcsetstaticimageswikimediabutton15xpng15xstaticimageswikimediabutton2xpng2xwidth88height31altwikimediafoundationaliliidfooterpoweredbyicoahrefwwwmediawikiorgimgsrcstaticimagespoweredby_mediawiki_88x31pngaltpoweredbymediawikisrcsetstaticimagespoweredby_mediawiki_132x47png15xstaticimagespoweredby_mediawiki_176x62png2xwidth88height31aliuldivstyleclearbothdivdivbodyhtml\n", + "doctypehtmlhtmllangenheadtitleloremipsumallthefactslipsumgeneratortitlemetanamekeywordscontentloremipsumlipsumloremipsumtextgenerategeneratorfactsinformationwhatwhywheredummytexttypesettingprintingdefinibusbonorumetmalorumdefinibusbonorumetmalorumextremesofgoodandevilcicerolatingarbledscrambledloremipsumdolorsitametdolorsitametconsecteturadipiscingelitsedeiusmodtemporincididuntmetanamedescriptioncontentreferencesiteaboutloremipsumgivinginformationonitsoriginsaswellasarandomlipsumgeneratormetanameviewportcontentwidthdevicewidthinitialscale10metahttpequivcontenttypecontenttexthtmlcharsetutf8scripttypetextjavascriptsrcstaticampservicesclientsstreamamplipsumjsscriptlinkrelicontypeimagexiconhreffaviconicolinkrelstylesheettypetextcsshrefcss020617cssheadbodydividouterdivclassbannerdividdivgptad14561483161980scripttypetextjavascriptgoogletagcmdpushfunctiongoogletagdisplaydivgptad14561483161980scriptdivdivdividinnerdividlanguagesaclasshyhrefhttphylipsumcom1344137713971381140813811398aaclasssqhrefhttpsqlipsumcomshqipaspanclassltrdirltraclassxxhrefhttparlipsumcomimgsrcimagesargifwidth18height12alt82351575160415931585157616101577aaclassxxhrefhttparlipsumcom82351575160415931585157616101577aspannbspnbspaclassbghrefhttpbglipsumcom104110981083107510721088108910821080aaclasscahrefhttpcalipsumcomcatalagraveaaclasscnhrefhttpcnlipsumcom20013259913161620307aaclasshrhrefhttphrlipsumcomhrvatskiaaclasscshrefhttpcslipsumcom268eskyaaclassdahrefhttpdalipsumcomdanskaaclassnlhrefhttpnllipsumcomnederlandsaaclassenzzhrefhttpwwwlipsumcomenglishaaclassethrefhttpetlipsumcomeestiaaclassphhrefhttpphlipsumcomfilipinoaaclassfihrefhttpfilipsumcomsuomiaaclassfrhrefhttpfrlipsumcomfranccedilaisaaclasskahrefhttpkalipsumcom4325430443204311432343144312aaclassdehrefhttpdelipsumcomdeutschaaclasselhrefhttpellipsumcom917955955951957953954940aspanclassltrdirltraclassxxhrefhttphelipsumcomimgsrcimageshegifwidth18height12alt823515061489151214971514aaclassxxhrefhttphelipsumcom823515061489151214971514aspannbspnbspaclasshihrefhttphilipsumcom236123672344238123422368aaclasshuhrefhttphulipsumcommagyaraaclassidhrefhttpidlipsumcomindonesiaaaclassithrefhttpitlipsumcomitalianoaaclasslvhrefhttplvlipsumcomlatviskiaaclasslthrefhttpltlipsumcomlietuviscaronkaiaaclassmkhrefhttpmklipsumcom1084107210821077107610861085108910821080aaclassmshrefhttpmslipsumcommelayuaaclassnohrefhttpnolipsumcomnorskaaclassplhrefhttppllipsumcompolskiaaclasspthrefhttpptlipsumcomportuguecircsaaclassrohrefhttprolipsumcomromacircnaaaclassruhrefhttprulipsumcompycc108210801081aaclasssrhrefhttpsrlipsumcom105710881087108910821080aaclassskhrefhttpsklipsumcomsloven269inaaaclassslhrefhttpsllipsumcomsloven353269inaaaclasseshrefhttpeslipsumcomespantildeolaaclasssvhrefhttpsvlipsumcomsvenskaaaclassthhrefhttpthlipsumcom365236073618aaclasstrhrefhttptrlipsumcomtuumlrkccedileaaclassukhrefhttpuklipsumcom1059108210881072111110851089110010821072aaclassvihrefhttpvilipsumcomti7871ngvi7879tadivh1loremipsumh1h4nequeporroquisquamestquidoloremipsumquiadolorsitametconsecteturadipiscivelith4h5thereisnoonewholovespainitselfwhoseeksafteritandwantstohaveitsimplybecauseitispainh5hrdividcontentdividpanesdivh2whatisloremipsumh2pstrongloremipsumstrongissimplydummytextoftheprintingandtypesettingindustryloremipsumhasbeentheindustrysstandarddummytexteversincethe1500swhenanunknownprintertookagalleyoftypeandscrambledittomakeatypespecimenbookithassurvivednotonlyfivecenturiesbutalsotheleapintoelectronictypesettingremainingessentiallyunchangeditwaspopularisedinthe1960swiththereleaseofletrasetsheetscontainingloremipsumpassagesandmorerecentlywithdesktoppublishingsoftwarelikealduspagemakerincludingversionsofloremipsumpdivdivh2whydoweuseith2pitisalongestablishedfactthatareaderwillbedistractedbythereadablecontentofapagewhenlookingatitslayoutthepointofusingloremipsumisthatithasamoreorlessnormaldistributionoflettersasopposedtousingcontentherecontentheremakingitlooklikereadableenglishmanydesktoppublishingpackagesandwebpageeditorsnowuseloremipsumastheirdefaultmodeltextandasearchforloremipsumwilluncovermanywebsitesstillintheirinfancyvariousversionshaveevolvedovertheyearssometimesbyaccidentsometimesonpurposeinjectedhumourandthelikepdivbrdivh2wheredoesitcomefromh2pcontrarytopopularbeliefloremipsumisnotsimplyrandomtextithasrootsinapieceofclassicallatinliteraturefrom45bcmakingitover2000yearsoldrichardmcclintockalatinprofessorathampdensydneycollegeinvirginialookeduponeofthemoreobscurelatinwordsconsecteturfromaloremipsumpassageandgoingthroughthecitesofthewordinclassicalliteraturediscoveredtheundoubtablesourceloremipsumcomesfromsections11032and11033ofdefinibusbonorumetmalorumtheextremesofgoodandevilbycicerowrittenin45bcthisbookisatreatiseonthetheoryofethicsverypopularduringtherenaissancethefirstlineofloremipsumloremipsumdolorsitametcomesfromalineinsection11032ppthestandardchunkofloremipsumusedsincethe1500sisreproducedbelowforthoseinterestedsections11032and11033fromdefinibusbonorumetmalorumbyciceroarealsoreproducedintheirexactoriginalformaccompaniedbyenglishversionsfromthe1914translationbyhrackhampdivdivh2wherecanigetsomeh2ptherearemanyvariationsofpassagesofloremipsumavailablebutthemajorityhavesufferedalterationinsomeformbyinjectedhumourorrandomisedwordswhichdontlookevenslightlybelievableifyouaregoingtouseapassageofloremipsumyouneedtobesurethereisntanythingembarrassinghiddeninthemiddleoftextalltheloremipsumgeneratorsontheinternettendtorepeatpredefinedchunksasnecessarymakingthisthefirsttruegeneratorontheinternetitusesadictionaryofover200latinwordscombinedwithahandfulofmodelsentencestructurestogenerateloremipsumwhichlooksreasonablethegeneratedloremipsumisthereforealwaysfreefromrepetitioninjectedhumourornoncharacteristicwordsetcpformmethodpostactionfeedhtmltablestylewidth100trtdrowspan2inputtypetextnameamountvalue5size3idamounttdtdrowspan2tablestyletextalignlefttrtdstylewidth20pxinputtyperadionamewhatvalueparasidparascheckedcheckedtdtdlabelforparasparagraphslabeltdtrtrtdstylewidth20pxinputtyperadionamewhatvaluewordsidwordstdtdlabelforwordswordslabeltdtrtrtdstylewidth20pxinputtyperadionamewhatvaluebytesidbytestdtdlabelforbytesbyteslabeltdtrtrtdstylewidth20pxinputtyperadionamewhatvaluelistsidliststdtdlabelforlistslistslabeltdtrtabletdtdstylewidth20pxinputtypecheckboxnamestartidstartvalueyescheckedcheckedtdtdstyletextalignleftlabelforstartstartwithlorembripsumdolorsitametlabeltdtrtrtdtdtdstyletextalignleftinputtypesubmitnamegenerateidgeneratevaluegenerateloremipsumtdtrtableformdivdivhrdivclassboxedtightimgsrcimagesadvertpngwidth100altadvertisedivhrdivclassboxedstylecolorff0000strongtranslationsstrongcanyouhelptranslatethissiteintoaforeignlanguagepleaseemailuswithdetailsifyoucanhelpdivhrdivclassboxedtherearenowasetofmockbannersavailableahrefbannersclasslnkhereainthreecoloursandinarangeofstandardbannersizesbrahrefbannersimgsrcimagesbannersblack_234x60gifwidth234height60altbannersaahrefbannersimgsrcimagesbannersgrey_234x60gifwidth234height60altbannersaahrefbannersimgsrcimagesbannerswhite_234x60gifwidth234height60altbannersadivhrdivclassboxedstrongdonatestrongifyouusethissiteregularlyandwouldliketohelpkeepthesiteontheinternetpleaseconsiderdonatingasmallsumtohelppayforthehostingandbandwidthbillthereisnominimumdonationanysumisappreciatedclickatarget_blankhrefdonateclasslnkhereatodonateusingpaypalthankyouforyoursupportdivhrdivclassboxedidpackagesatarget_blankrelnofollowhrefhttpschromegooglecomextensionsdetailjkkggolejkaoanbjnmkakgjcdcnpfkgichromeaatarget_blankrelnofollowhrefhttpsaddonsmozillaorgenusfirefoxaddondummylipsumfirefoxaddonaatarget_blankrelnofollowhrefhttpsgithubcomtraviskaufmannodelipsumnodejsaatarget_blankrelnofollowhrefhttpftpktugorkrtexarchivehelpcatalogueentrieslipsumhtmltexpackageaatarget_blankrelnofollowhrefhttpcodegooglecomppypsumpythoninterfaceaatarget_blankrelnofollowhrefhttpgtklipsumsourceforgenetgtklipsumaatarget_blankrelnofollowhrefhttpgithubcomgsavagelorem_ipsumtreemasterrailsaatarget_blankrelnofollowhrefhttpsgithubcomcerkitloremipsumnetaatarget_blankrelnofollowhrefhttpgroovyconsoleappspotcomscript64002groovyaatarget_blankrelnofollowhrefhttpwwwlayerherocomloremipsumgeneratoradobepluginadivhrdividtranslationh3thestandardloremipsumpassageusedsincethe1500sh3ploremipsumdolorsitametconsecteturadipiscingelitseddoeiusmodtemporincididuntutlaboreetdoloremagnaaliquautenimadminimveniamquisnostrudexercitationullamcolaborisnisiutaliquipexeacommodoconsequatduisauteiruredolorinreprehenderitinvoluptatevelitessecillumdoloreeufugiatnullapariaturexcepteursintoccaecatcupidatatnonproidentsuntinculpaquiofficiadeseruntmollitanimidestlaborumph3section11032ofdefinibusbonorumetmalorumwrittenbyciceroin45bch3psedutperspiciatisundeomnisistenatuserrorsitvoluptatemaccusantiumdoloremquelaudantiumtotamremaperiameaqueipsaquaeabilloinventoreveritatisetquasiarchitectobeataevitaedictasuntexplicabonemoenimipsamvoluptatemquiavoluptassitaspernaturautoditautfugitsedquiaconsequunturmagnidoloreseosquirationevoluptatemsequinesciuntnequeporroquisquamestquidoloremipsumquiadolorsitametconsecteturadipiscivelitsedquianonnumquameiusmoditemporainciduntutlaboreetdoloremagnamaliquamquaeratvoluptatemutenimadminimaveniamquisnostrumexercitationemullamcorporissuscipitlaboriosamnisiutaliquidexeacommodiconsequaturquisautemveleumiurereprehenderitquiineavoluptatevelitessequamnihilmolestiaeconsequaturvelillumquidoloremeumfugiatquovoluptasnullapariaturph31914translationbyhrackhamh3pbutimustexplaintoyouhowallthismistakenideaofdenouncingpleasureandpraisingpainwasbornandiwillgiveyouacompleteaccountofthesystemandexpoundtheactualteachingsofthegreatexplorerofthetruththemasterbuilderofhumanhappinessnoonerejectsdislikesoravoidspleasureitselfbecauseitispleasurebutbecausethosewhodonotknowhowtopursuepleasurerationallyencounterconsequencesthatareextremelypainfulnoragainisthereanyonewholovesorpursuesordesirestoobtainpainofitselfbecauseitispainbutbecauseoccasionallycircumstancesoccurinwhichtoilandpaincanprocurehimsomegreatpleasuretotakeatrivialexamplewhichofuseverundertakeslaboriousphysicalexerciseexcepttoobtainsomeadvantagefromitbutwhohasanyrighttofindfaultwithamanwhochoosestoenjoyapleasurethathasnoannoyingconsequencesoronewhoavoidsapainthatproducesnoresultantpleasureph3section11033ofdefinibusbonorumetmalorumwrittenbyciceroin45bch3patveroeosetaccusamusetiustoodiodignissimosducimusquiblanditiispraesentiumvoluptatumdelenitiatquecorruptiquosdoloresetquasmolestiasexcepturisintoccaecaticupiditatenonprovidentsimiliquesuntinculpaquiofficiadeseruntmollitiaanimiidestlaborumetdolorumfugaetharumquidemrerumfacilisestetexpeditadistinctionamliberotemporecumsolutanobisesteligendioptiocumquenihilimpeditquominusidquodmaximeplaceatfacerepossimusomnisvoluptasassumendaestomnisdolorrepellendustemporibusautemquibusdametautofficiisdebitisautrerumnecessitatibussaepeevenietutetvoluptatesrepudiandaesintetmolestiaenonrecusandaeitaqueearumrerumhicteneturasapientedelectusutautreiciendisvoluptatibusmaioresaliasconsequaturautperferendisdoloribusasperioresrepellatph31914translationbyhrackhamh3pontheotherhandwedenouncewithrighteousindignationanddislikemenwhoaresobeguiledanddemoralizedbythecharmsofpleasureofthemomentsoblindedbydesirethattheycannotforeseethepainandtroublethatareboundtoensueandequalblamebelongstothosewhofailintheirdutythroughweaknessofwillwhichisthesameassayingthroughshrinkingfromtoilandpainthesecasesareperfectlysimpleandeasytodistinguishinafreehourwhenourpowerofchoiceisuntrammelledandwhennothingpreventsourbeingabletodowhatwelikebesteverypleasureistobewelcomedandeverypainavoidedbutincertaincircumstancesandowingtotheclaimsofdutyortheobligationsofbusinessitwillfrequentlyoccurthatpleasureshavetoberepudiatedandannoyancesacceptedthewisemanthereforealwaysholdsinthesematterstothisprincipleofselectionherejectspleasurestosecureothergreaterpleasuresorelseheendurespainstoavoidworsepainspdivdividbannerldividdivgptad14745377621222scripttypetextjavascriptgoogletagcmdpushfunctiongoogletagdisplaydivgptad14745377621222scriptdivdivdividbannerrdividdivgptad14745377621223scripttypetextjavascriptgoogletagcmdpushfunctiongoogletagdisplaydivgptad14745377621223scriptdivdivdivhrdivclassboxedastyletextdecorationnonehref1099710510811611158104101108112641081051121151171094699111109104101108112641081051121151171094699111109abrastyletextdecorationnonetarget_blankhrefprivacypdfprivacypolicyadivdivdivclassbannerdividdivgptad14561483161981scripttypetextjavascriptgoogletagcmdpushfunctiongoogletagdisplaydivgptad14561483161981scriptdivdivdivgeneratedin0014secondsbodyhtml\n", + "['doctypehtmlifie8htmlclassieie8ltie9endififie9htmlclassieie9endififgteie9iehtmlendifheadmetanamecsrftokencontentywezkhdwaz2mhvtxtvdmpx8fjrbshm6rkq6fxpoe1b7be08ryu7duj3zzkzbmen38lnubysnguaehcqvwbu0glinkhrefplusgooglecom110399277954088556485relpublisherlinkhrefhttpswwwcoursereportcomschoolsironhackrelcanonicaltitleironhackreviewscoursereporttitlelinkrelstylesheetmediaallhrefhttpscoursereportproductionherokuappcomglobalsslfastlynetassetsbs_application2cfe4f1bb97ebbc1bd4fb734d851ab26csslinkrelstylesheetmediaallhrefhttpscoursereportproductionherokuappcomglobalsslfastlynetassetspagespecificschools_show3aca16603f6c41cf77b882baac389298cssscriptsrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetsapplication97e43e4dd7351ce897ee40f2003f85e5jsscriptscriptsrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetsheader_scripts1272387b23dc58490e6c20be1c15de53jsscriptscriptsrcusetypekitnetgqs4iacjsscriptscriptsrcwwwgstaticcomchartsloaderjsscriptscripttrytypekitloadcatchescriptifltie9scriptsrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetsapplicationieca5de91f657224405fe23d9d509a85edjsscriptendiflinkrelappletouchicontypeimagepnghrefhttpscoursereportproductionherokuappcomglobalsslfastlynetassetsappletouchicon57x57precomposed66c7a975616a2eca967795cf265b337apnglinkrelappletouchicontypeimagepnghrefhttpscoursereportproductionherokuappcomglobalsslfastlynetassetsappletouchicon72x72precomposedc34da9bf9a1cd0f34899640dfe4c1c61pngsizes72x72linkrelappletouchicontypeimagepnghrefhttpscoursereportproductionherokuappcomglobalsslfastlynetassetsappletouchicon114x114precomposedb8e8c4c1ff2adddb6978bec0265a75ecpngsizes114x114linkrelappletouchicontypeimagepnghrefhttpscoursereportproductionherokuappcomglobalsslfastlynetassetsappletouchicon144x144precomposeda1658624352b61eb99c13d767260533cpngsizes144x144html5shimandrespondjsie8supportofhtml5elementsandmediaquerieswarningrespondjsdoesntworkifyouviewthepageviafileifltie9javascript_include_tagossmaxcdncomlibshtml5shiv370html5shivjsjavascript_include_tagossmaxcdncomlibsrespondjs142respondminjsendiflinkrelnexthrefschoolsironhackpage2headbodydataspyscrolldatatargettocstylepositionrelativeheadernavclassnavbarnavbardefaultrolenavigationdivclasscontaineridnavcontaineritemscopeitemtypehttpschemaorgorganizationdivclassnavbarheaderbuttonclassnavbartogglecollapseddatatargetnavbarcollapsedatatogglecollapsetypebuttonspanclasssronlytogglenavigationspanspanclassiconbarspanspanclassiconbarspanspanclassiconbarspanbuttonaclassnavbarbrandlogosmallhrefhttpswwwcoursereportcomitempropurlimgaltcoursereporttitlecoursereportitemproplogosrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetslogosmalla04da9639b878f3d36becf065d607e0epngadivdivclasscollapsenavbarcollapseidnavbarcollapseulclassnavnavbarnavliclasstoplevelnavidschoolsaclassmpgbheaderhrefschoolsbrowseschoolsaulclasstracksliclasstrackidmenu_full_stackahreftrackswebdevelopmentbootcampfullstackwebdevelopmentaliliclasstrackidmenu_mobileahreftracksappdevelopmentbootcampmobiledevelopmentaliliclasstrackidmenu_front_endahreftracksfrontenddeveloperbootcampsfrontendwebdevelopmentaliliclasstrackidmenu_data_scienceahreftracksdatasciencebootcampdatasciencealiliclasstrackidmenu_ux_designahreftracksuxuidesignbootcampsuxdesignaliliclasstrackidmenu_digital_marketingahreftracksmarketingbootcampdigitalmarketingaliliclasstrackidmenu_menu_product_managementahreftracksproductmanagerbootcampproductmanagementaliliclasstrackidmenu_menu_securityahreftrackscybersecuritybootcampsecurityaliliclasstrackidmenu_menu_otherahreftracksothercodingbootcampsotheraliulliliclasstoplevelnavidblogaclassmpgbheaderhrefblogblogaliliclasstoplevelnavidresourcesaclassmpgbheaderhrefresourcesadviceaulclasstracksliclasstrackidmenu_ultimate_guideahrefcodingbootcampultimateguideultimateguidechoosingaschoolaliliclasstrackidmenu_best_bootcampsahrefbestcodingbootcampsbestcodingbootcampsaliliclasstrackidmenu_data_scienceahrefblogdatasciencebootcampsthecompleteguidebestindatasciencealiliclasstrackidmenu_ui_uxahrefbloguiuxdesignbootcampsthecompleteguidebestinuiuxdesignaliliclasstrackidmenu_cyber_securityahrefblogultimateguidetosecuritybootcampsbestincybersecurityaliulliliclasstoplevelnavidwriteareviewaclassmpgbheaderhrefwriteareviewwriteareviewaliliclasstoplevelnavidloginaclassmpgbheaderhrefloginsigninaliuldivdivnavheadersectionclassmainitemscopeitemtypehttpschemaorglocalbusinessdivclasscontainerdivclassrowdivclasscolxs12visiblexsvisiblesmidmobileheaderahrefschoolsironhackdivclassschoolimagetextcenterimgaltironhacklogotitleironhacklogosrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4017s300logoironhackbluepngdivadivclassaltheaderh1itempropnameironhackh1pclassdetailsspanclasslocationspanclassiconlocationspanamsterdambarcelonaberlinmadridmexicocitymiamiparissaopaulospanpdivdivdivdivclassrowdivclassnavigablecolmd8idmaincontentdivclasshiddenschoolslugironhackdivdivclassmainheaderhideonmobileh1classresizeheaderironhackh1divclassaggregateratingdivclassshowratingspclassratingsspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starpclassratingnumberitempropaggregateratingitemscopeitemtypehttpschemaorgaggregateratingavgratingspanclassratingvalueitempropratingvalue489spanspanspanspanitempropreviewcount596spanspanreviewsspanppdivdivdivdivclassnavwrapperdivclassschoolnavulclassnavnavpillsnavjustifiedhiddenxsidschoolsectionsroletablistliclassactivedatadeeplinktargetaboutdatatoggletabidabout_tabahrefaboutaboutalilidatadeeplinktargetcoursesdatatoggletabidcourses_tabahrefcoursescoursesalilidatadeeplinktargetreviewsdatatoggletabidreviews_tabahrefreviewsreviewsalilidatadeeplinktargetnewsdatatoggletabidnews_tabahrefnewsnewsaliuldivdivdivdataformcontactdataschoolironhackidcontactmobilebuttonclassbuttonbtnspanimgsrchttpss3amazonawscomcourse_report_productionmisc_imgsmailsvgtitlecontactschoolspancontactalexwilliamsfromironhackbuttondivdivclasstabcontentpanelgroupdivclasspanelwrapperdatadeeplinkpathaboutdatatababout_tabidaboutdivclasspanelpaneldefaultpanelcontentdivclasspanelheadingcollapsedvisiblexsdatadeeplinktargetaboutdatatargetaboutcollapsedatatogglecollapseidaboutcollapseheadingh4classpaneltitleabouth4divdivclasspanelcollapsecollapseinidaboutcollapsedivclasspanelbodyh2classhiddenxsabouth2sectionclassaboutdivclassexpandablepironhackisa9weekfulltimeand24weekparttimewebdevelopmentanduxuidesignbootcampinmiamifloridamadridandbarcelonaspainparisfrancemexicocitymexicoandberlingermanyironhackusesacustomizedapproachtoeducationbyallowingstudentstoshapetheirexperiencebasedonpersonalgoalstheadmissionsprocessincludessubmittingawrittenapplicationapersonalinterviewandthenatechnicalinterviewstudentswhograduatefromthewebdevelopmentbootcampwillbeskilledintechnologieslikejavascripthtml5andcss3theuxuiprogramcoversdesignthinkingphotoshopsketchbalsamiqinvisionandjavascriptppthroughouteachironhackprogramstudentswillgethelpnavigatingcareerdevelopmentthroughinterviewprepenhancingdigitalbrandpresenceandnetworkingopportunitiesstudentswillhaveachancetodelveintothetechcommunitywithironhackeventsworkshopsandmeetupswithmorethan1000graduatesironhackhasanextensiveglobalnetworkofalumniandpartnercompaniesgraduatesofironhackwillbewellpositionedtofindajobasawebdeveloperoruxuidesignerupongraduationasallstudentshaveaccesstocareerservicestopreparethemforthejobsearchandfacilitatinginterviewsintheircityslocaltechecosystempdivdivclassdividerdivh4recentironhackreviewsrating489h4ulclassunstyledrecentreviewslidivclassrowdivclasscolxs3ratingsspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs9paclassmobilereviewdatadeeplinkpathreviewsreview16341datadeeplinktargetreview_16341fromnursetodesignerintwomonthsapdivdivlilidivclassrowdivclasscolxs3ratingsspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs9paclassmobilereviewdatadeeplinkpathreviewsreview16340datadeeplinktargetreview_16340100recomendableapdivdivlilidivclassrowdivclasscolxs3ratingsspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs9paclassmobilereviewdatadeeplinkpathreviewsreview16338datadeeplinktargetreview_16338funexperienceandgreatjobafterapdivdivliulaclassreadmorelinkmobilereviewdatadeeplinktargetreviewsdatatoggletabhrefreviewsreadall596reviewsforironhackreadadivclassdividerdivh4recentironhacknewsh4ulclassunstyledliahrefblogparttimecodingbootcampswebinarwebinarchoosingaparttimecodingbootcampaliliahrefblogdafnebecameadeveloperinbarcelonaafterironhackhowdafnebecameadeveloperinbarcelonaafterironhackaliliahrefbloghowtolandauxuijobinspainhowtolandauxuidesignjobinspainaliulaclassreadmorelinkmobilenewsdatadeeplinktargetnewshrefnewsreadall23articlesaboutironhackasectiondivdivdivdivdivclasspanelwrapperdatadeeplinkpathcoursesdatatabcourses_tabidcoursesdivclasspanelpaneldefaultpanelcontentdivclasspanelheadingcollapsedvisiblexsdatadeeplinktargetcoursesdatatargetcoursescollapsedatatogglecollapseidcoursescollapseheadingh4classpaneltitlecoursesh4divdivclasspanelcollapsecollapseinidcoursescollapsedivclasspanelbodyh2classhiddenxscoursesh2ulclasscoursecardliheaderh3dataanalyticsbootcampfulltimeh3spanclassbtnbtndefaultbtnapplysmallatarget_blankhrefhttpswwwironhackcomencoursesdataanalyticsbootcampapplyaspanheaderdivclasscontentdivclassdetailsspanclassiconeyetitlefocusspanahrefsubjectsmysqlmysqlaahrefsubjectsdatasciencedatascienceaahrefsubjectsgitgitaahrefsubjectsrraahrefsubjectspythonpythonaahrefsubjectsmachinelearningmachinelearningaahrefsubjectsdatastructuresdatastructuresabrspanclasstypespanclassiconusertitlecoursetypespaninpersonspandivdldtstartdatedtddspanclassiconcalendarspannonescheduleddddtcostdtddnadddtclasssizedtddnadddtlocationdtddspanmadridspandddldivclassexpandablethiscourseenablesstudentstobecomeafullfledgeddataanalystin9weeksstudentswilldeveloppracticalskillsusefulinthedataindustryrampuppreworkandlearnintermediatetopicsofdataanalyticsusingpandasanddataengineeringtocreateadataapplicationusingrealdatasetsyou39llalsolearntousepythonandbusinessintelligencethroughthebootcampyouwilllearnbydoingprojectscombiningdataanalyticsandprogrammingironhack39sdataanalyticsbootcampismeanttohelpyousecureaspotinthedataindustryhoweverthemostimportantskillthatstudentswilltakeawayfromthiscourseistheabilitytolearntechnologyisfastmovingandeverchangingdivdivdetailssummaryfinancingsummarydldtdepositdtdd750dddldetailsdetailssummarygettinginsummarydldtminimumskillleveldtddbasicprogrammingknowledgedddtprepworkdtdd4050hoursofonlinecontentthatyou39llhavetocompleteinordertoreachtherequiredlevelatthenextmoduledddtplacementtestdtddyesdddtinterviewdtddyesdddldetailsliulscripttypeapplicationldjsoncontexthttpschemaorgtypecoursenamedataanalyticsbootcampfulltimedescriptionthiscourseenablesstudentstobecomeafullfledgeddataanalystin9weeksstudentswilldeveloppracticalskillsusefulinthedataindustryrampuppreworkandlearnintermediatetopicsofdataanalyticsusingpandasanddataengineeringtocreateadataapplicationusingrealdatasetsyou39llalsolearntousepythonandbusinessintelligencethroughthebootcampyouwilllearnbydoingprojectscombiningdataanalyticsandprogrammingironhack39sdataanalyticsbootcampismeanttohelpyousecureaspotinthedataindustryhoweverthemostimportantskillthatstudentswilltakeawayfromthiscourseistheabilitytolearntechnologyisfastmovingandeverchangingprovidertypelocalbusinessnameironhacksameashttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagescriptulclasscoursecardliheaderh3uxuidesignbootcampfulltimeh3spanclassbtnbtndefaultbtnapplysmallatarget_blankhrefhttpswwwironhackcomencoursesuxuidesignbootcamplearnuxdesignapplyapplyaspanheaderdivclasscontentdivclassdetailsspanclassiconeyetitlefocusspanahrefsubjectshtmlhtmlaahrefsubjectsuserexperiencedesignuserexperiencedesignaahrefsubjectscsscssabrspanclasstypespanclassiconusertitlecoursetypespaninpersonspanspanclasstypespanclassiconclocktitlecommitmentspanfulltimespanspanclasshoursweekspanclasshoursweeknumber50spanspanhoursweekspanspanspanclasstypespanclassiconcalendartitledurationspan9weeksspandivdldtstartdatedtddspanclassiconcalendarspanjanuary72019dddtcostdtddspanspanspan6500spandddtclasssizedtdd16dddtlocationdtddspanmiamimadridbarcelonaparismexicocityberlinspandddldivclassexpandablethis8weekimmersivecourseiscateredtobeginnerswithnopreviousdesignortechnicalexperiencestudentswillbetaughtthefundamentalsofusercentereddesignandlearntovalidateideasthroughuserresearchrapidprototypingampheuristicevaluationthecoursewillendwithacapstoneprojectwherestudentswilltakeanewproductideafromvalidationtolaunchbytheendofthecoursestudentswillbereadytostartanewcareerasauxdesignerfreelanceorturbochargetheircurrentprofessionaltrajectorydivdivdetailssummaryfinancingsummarydldtdepositdtddnadddldetailsdetailssummarygettinginsummarydldtminimumskillleveldtddnonedddtprepworkdtddthepreworkisa40hoursselfguidedcontentthatwillhelpyoutounderstandbasicuxuidesignconceptsanditwillmakeyoudesignyourfirstworksinsketchandflintodddtplacementtestdtddyesdddtinterviewdtddyesdddldetailsliulscripttypeapplicationldjsoncontexthttpschemaorgtypecoursenameuxuidesignbootcampfulltimedescriptionthis8weekimmersivecourseiscateredtobeginnerswithnopreviousdesignortechnicalexperiencestudentswillbetaughtthefundamentalsofusercentereddesignandlearntovalidateideasthroughuserresearchrapidprototypingampheuristicevaluationthecoursewillendwithacapstoneprojectwherestudentswilltakeanewproductideafromvalidationtolaunchbytheendofthecoursestudentswillbereadytostartanewcareerasauxdesignerfreelanceorturbochargetheircurrentprofessionaltrajectoryprovidertypelocalbusinessnameironhacksameashttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagescriptulclasscoursecardliheaderh3uxuidesignbootcampparttimeh3spanclassbtnbtndefaultbtnapplysmallatarget_blankhrefhttpswwwironhackcomencoursesuxuidesignparttimeapplyaspanheaderdivclasscontentdivclassdetailsspanclassiconeyetitlefocusspanahrefsubjectsdesigndesignaahrefsubjectsproductmanagementproductmanagementaahrefsubjectsuserexperiencedesignuserexperiencedesignaahrefsubjectscsscssabrspanclasstypespanclassiconusertitlecoursetypespaninpersonspanspanclasstypespanclassiconclocktitlecommitmentspanparttimespanspanclasshoursweekspanclasshoursweeknumber16spanspanhoursweekspanspanspanclasstypespanclassiconcalendartitledurationspan26weeksspandivdldtstartdatedtddspanclassiconcalendarspannovember132018dddtcostdtddspanspanspan7500spandddtclasssizedtdd20dddtlocationdtddspanmiamimadridbarcelonamexicocityberlinspandddldivclassexpandabletheuxuidesignparttimecoursemeetstuesdaysthursdaysandsaturdayswithadditionalonlinecourseworkoveraperiodof6monthsstudentswillbetaughtthefundamentalsofusercentereddesignandlearntovalidateideasthroughuserresearchrapidprototypingampheuristicevaluationthecoursewillendwithacapstoneprojectwherestudentswilltakeanewproductideafromvalidationtolaunchbytheendofthecoursestudentswillbereadytostartanewcareerasauxdesignerfreelanceorturbochargetheircurrentprofessionaltrajectorydivdivdetailssummaryfinancingsummarydldtdepositdtdd750or9000mxndddtfinancingdtddfinancingoptionsavailablewithcompetitiveinterestratesskillsfundclimbcreditdddldetailsdetailssummarygettinginsummarydldtminimumskillleveldtddbasicprogrammingskillsbasicalgorithmsandnotionsofobjectorientedprogrammingdddtprepworkdtdd4050hoursofonlinecontentthatyou39llhavetocompleteinordertoreachtherequiredlevelwhenthecoursebeginsdddtplacementtestdtddyesdddtinterviewdtddyesdddldetailsliulscripttypeapplicationldjsoncontexthttpschemaorgtypecoursenameuxuidesignbootcampparttimedescriptiontheuxuidesignparttimecoursemeetstuesdaysthursdaysandsaturdayswithadditionalonlinecourseworkoveraperiodof6monthsstudentswillbetaughtthefundamentalsofusercentereddesignandlearntovalidateideasthroughuserresearchrapidprototypingampheuristicevaluationthecoursewillendwithacapstoneprojectwherestudentswilltakeanewproductideafromvalidationtolaunchbytheendofthecoursestudentswillbereadytostartanewcareerasauxdesignerfreelanceorturbochargetheircurrentprofessionaltrajectoryprovidertypelocalbusinessnameironhacksameashttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagescriptulclasscoursecardliheaderh3webdevelopmentbootcampfulltimeh3spanclassbtnbtndefaultbtnapplysmallatarget_blankhrefhttpswwwironhackcomencourseswebdevelopmentbootcampapplyaspanheaderdivclasscontentdivclassdetailsspanclasstypespanclassiconusertitlecoursetypespaninpersonspandivdldtstartdatedtddspanclassiconcalendarspanoctober292018dddtcostdtddnadddtclasssizedtddnadddtlocationdtddspanamsterdammiamimadridbarcelonaparismexicocityberlinspandddldivclassexpandablethiscourseenablesstudentstodesignandbuildfullstackjavascriptwebapplicationsstudentswilllearnthefundamentalsofprogrammingwithabigemphasisonbattletestedpatternsandbestpracticesbytheendofthecoursestudentswillhavetheabilitytoevaluateaproblemandselecttheoptimalsolutionusingthelanguageframeworkbestsuitedforaprojectsscopeinadditiontotechnicalskillsthecoursewilltrainstudentsinhowtothinklikeaprogrammerstudentswilllearnhowtodeconstructcomplexproblemsandbreakthemintosmallermoduleshoweverthemostimportantskillthatstudentswilltakeawayfromthiscourseistheabilitytolearntechnologyisfastmovingandeverchangingagoodprogrammerhasageneralunderstandingofthevariousprogramminglanguagesandwhentousethemagreatprogrammerunderstandsthefundamentalstructureandpossessestheabilitytolearnanynewlanguagewhenrequireddivdivdetailssummaryfinancingsummarydldtdepositdtdd1000dddtfinancingdtddmonthlyinstalmentsavailablefor122436monthsquotandadddtscholarshipdtdd1000scholarshipforwomendddldetailsdetailssummarygettinginsummarydldtminimumskillleveldtddbasicprogrammingknowledgedddtprepworkdtdd4050hoursofonlinecontentthatyou39llhavetocompleteinordertoreachtherequiredlevelatthenextmoduledddtplacementtestdtddyesdddtinterviewdtddyesdddldetailsdetailssummarymorestartdatessummarydivclasscontentdivclassstartdatespanclassiconcalendarspanspancontent20181029october292018spanspanmexicocityspandivdivclassstartdatespanclassiconcalendarspanspancontent20190114january142019spanspanmexicocityspandivdivclassstartdatespanclassiconcalendarspanspancontent20190325march252019spanspanmexicocityspandivdivclassstartdatespanclassiconcalendarspanspancontent20190107january72019spanspanbarcelonaspanspanapplybyjanuary12019spandivdivdetailsliulscripttypeapplicationldjsoncontexthttpschemaorgtypecoursenamewebdevelopmentbootcampfulltimedescriptionthiscourseenablesstudentstodesignandbuildfullstackjavascriptwebapplicationsstudentswilllearnthefundamentalsofprogrammingwithabigemphasisonbattletestedpatternsandbestpracticesbytheendofthecoursestudentswillhavetheabilitytoevaluateaproblemandselecttheoptimalsolutionusingthelanguageframeworkbestsuitedforaprojectsscopeinadditiontotechnicalskillsthecoursewilltrainstudentsinhowtothinklikeaprogrammerstudentswilllearnhowtodeconstructcomplexproblemsandbreakthemintosmallermoduleshoweverthemostimportantskillthatstudentswilltakeawayfromthiscourseistheabilitytolearntechnologyisfastmovingandeverchangingagoodprogrammerhasageneralunderstandingofthevariousprogramminglanguagesandwhentousethemagreatprogrammerunderstandsthefundamentalstructureandpossessestheabilitytolearnanynewlanguagewhenrequiredprovidertypelocalbusinessnameironhacksameashttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagescriptulclasscoursecardliheaderh3webdevelopmentbootcampparttimeh3spanclassbtnbtndefaultbtnapplysmallatarget_blankhrefhttpswwwironhackcomescursoswebdevelopmentparttimeaplicarapplyaspanheaderdivclasscontentdivclassdetailsspanclassiconeyetitlefocusspanahrefsubjectsangularjsbootcampangularjsaahrefsubjectsmongodbmongodbaahrefsubjectshtmlhtmlaahrefsubjectsjavascriptjavascriptaahrefsubjectsexpressjsexpressjsaahrefsubjectsnodejsnodejsaahrefsubjectsfrontendfrontendabrspanclasstypespanclassiconusertitlecoursetypespaninpersonspanspanclasstypespanclassiconclocktitlecommitmentspanfulltimespanspanclasshoursweekspanclasshoursweeknumber13spanspanhoursweekspanspanspanclasstypespanclassiconcalendartitledurationspan24weeksspandivdldtstartdatedtddspanclassiconcalendarspanjanuary152019dddtcostdtddspanspanspan12000spandddtclasssizedtddnadddtlocationdtddspanmiamimadridbarcelonaparismexicocityberlinspandddldivclassexpandablethiscourseenablesstudentstodesignandbuildfullstackjavascriptwebapplicationsstudentswilllearnthefundamentalsofprogrammingwithabigemphasisonbattletestedpatternsandbestpracticesbytheendofthecoursestudentswillhavetheabilitytoevaluateaproblemandselecttheoptimalsolutionusingthelanguageframeworkbestsuitedforaprojectsscopeinadditiontotechnicalskillsthecoursewilltrainstudentsinhowtothinklikeaprogrammerstudentswilllearnhowtodeconstructcomplexproblemsandbreakthemintosmallermoduleshoweverthemostimportantskillthatstudentswilltakeawayfromthiscourseistheabilitytolearntechnologyisfastmovingandeverchangingagoodprogrammerhasageneralunderstandingofthevariousprogramminglanguagesandwhentousethemagreatprogrammerunderstandsthefundamentalstructureandpossessestheabilitytolearnanynewlanguagewhenrequireddivdivdetailssummaryfinancingsummarydldtdepositdtdd1000dddldetailsdetailssummarygettinginsummarydldtminimumskillleveldtddbasicprogrammingknowledgedddtprepworkdtdd4050hoursofonlinecontentthatyou39llhavetocompleteinordertoreachtherequiredlevelatthenextmoduledddtplacementtestdtddyesdddtinterviewdtddyesdddldetailsliulscripttypeapplicationldjsoncontexthttpschemaorgtypecoursenamewebdevelopmentbootcampparttimedescriptionthiscourseenablesstudentstodesignandbuildfullstackjavascriptwebapplicationsstudentswilllearnthefundamentalsofprogrammingwithabigemphasisonbattletestedpatternsandbestpracticesbytheendofthecoursestudentswillhavetheabilitytoevaluateaproblemandselecttheoptimalsolutionusingthelanguageframeworkbestsuitedforaprojectsscopeinadditiontotechnicalskillsthecoursewilltrainstudentsinhowtothinklikeaprogrammerstudentswilllearnhowtodeconstructcomplexproblemsandbreakthemintosmallermoduleshoweverthemostimportantskillthatstudentswilltakeawayfromthiscourseistheabilitytolearntechnologyisfastmovingandeverchangingagoodprogrammerhasageneralunderstandingofthevariousprogramminglanguagesandwhentousethemagreatprogrammerunderstandsthefundamentalstructureandpossessestheabilitytolearnanynewlanguagewhenrequiredprovidertypelocalbusinessnameironhacksameashttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagescriptdivdivdivdivdivclasspanelwrapperdatadeeplinkpathreviewsdatatabreviews_tabidreviewsdivclasspanelpaneldefaultpanelcontentdivclasspanelheadingcollapsedvisiblexsdatadeeplinktargetreviewsdatatargetreviewscollapsedatatogglecollapseidreviewscollapseheadingh4classpaneltitlereviewsh4divdivclasspanelcollapsecollapseinidreviewscollapsedivclasspanelbodyh2classhiddenxsironhackreviewsh2sectionclassreviewsdivclassrowfilterdropdowndivclasscolsm3aariacontrolsreviewformcontainerariaexpandedfalseclassbtnbtndefaultbtnwriteareviewdatadeeplinkpathreviewswriteareviewdatadeeplinktargetbtnwriteareviewdatatargetreviewformcontainerdatatogglecollapseidbtnwriteareviewwriteareviewadivdivclasscolsm5dropdowntextcenterdivpclassreviewlength596reviewssortedbypbuttonclassbtnsorterbtndatatoggledropdowntypebuttondefaultsortspanclasscaretspanbuttonulclasssorteduldropdownmenusortfiltersliadatasorttypedefaultclassactivesorthrefschoolsironhackdefaultsortaliliadatasorttyperecentclasshrefschoolsironhackmostrecentaliliadatasorttypehelpfulclasshrefschoolsironhackmosthelpfulaliuldivdivdivclasscolsm4dropdowndivclasspagenumberhidden1divdivpfilteredbypbuttonclassbtnfilterbtndatatoggledropdowntypebuttonallreviewsspanclasscaretspanbuttonulclassfiltereduldropdownmenureviewsfilterdataschoolironhackliclassallreviewsadatafiltertypedefaultclassactivehrefschoolsironhackallreviewsaliliadatafiltertypeanonymoushrefschoolsironhackanonymousaliliadatafiltertypeverifiedhrefschoolsironhackverifiedaliliclasscategorycampusesliliadatafiltertypecampusdatafiltervalmadridhrefschoolsironhackmadridaliliadatafiltertypecampusdatafiltervalmadridhrefschoolsironhackmadridaliliadatafiltertypecampusdatafiltervalmiamihrefschoolsironhackmiamialiliadatafiltertypecampusdatafiltervalmexicocityhrefschoolsironhackmexicocityaliliadatafiltertypecampusdatafiltervalmiamihrefschoolsironhackmiamialiliadatafiltertypecampusdatafiltervalbarcelonahrefschoolsironhackbarcelonaaliliadatafiltertypecampusdatafiltervalberlinhrefschoolsironhackberlinaliliadatafiltertypecampusdatafiltervalparishrefschoolsironhackparisaliliclasscategorycoursesliliadatafiltertypecoursedatafiltervalwebdevelopmentbootcampfulltimehrefschoolsironhackwebdevelopmentbootcampfulltimealiliadatafiltertypecoursedatafiltervaluxuidesignbootcampfulltimehrefschoolsironhackuxuidesignbootcampfulltimealiliadatafiltertypecoursedatafiltervalwebdevelopmentbootcampparttimehrefschoolsironhackwebdevelopmentbootcampparttimealiuldivdivdivdivclassrowdivclasscolxs12divclassreviewformcontainercollapsedivclassreviewguidelineshackboxpreviewguidelinespullionlyapplicantsstudentsandgraduatesarepermittedtoleavereviewsoncoursereportlilipostclearvaluableandhonestinformationthatwillbeusefulandinformativetofuturecodingbootcampersthinkaboutwhatyourbootcampexcelledatandwhatmighthavebeenbetterlilibenicetoothersdontattackothersliliusegoodgrammarandcheckyourspellinglilidontpostreviewsonbehalfofotherstudentsorimpersonateanypersonorfalselystateorotherwisemisrepresentyouraffiliationwithapersonorentitylilidontspamorpostfakereviewsintendedtoboostorlowerratingslilidontpostorlinktocontentthatissexuallyexplicitlilidontpostorlinktocontentthatisabusiveorhatefulorthreatensorharassesotherslilipleasedonotsubmitduplicateormultiplereviewsthesewillbedeletedahrefmailtohellocoursereportcomemailmoderatorsatorevisearevieworclickthelinkintheemailyoureceivewhensubmittingareviewlilipleasenotethatwereservetherighttoreviewandremovecommentarythatviolatesourpoliciesliuldivxclassreviewformdivclassrevieweremailcheckstrongyoumustlogintosubmitareviewstrongpahrefloginredirect_pathhttps3a2f2fwwwcoursereportcom2fschools2fironhack232freviews2fwriteareviewclickhereanbsptologinorsignupandcontinuepdivdivclasscrformformclassreviewformdataparsleyvalidatedataparsleyexcludeddisableddisabledidnew_reviewactionreviewsacceptcharsetutf8dataremotetruemethodpostinputnameutf8typehiddenvaluex2713inputtypehiddennameutm_sourceidutm_sourceinputtypehiddennameutm_mediumidutm_mediuminputtypehiddennameutm_termidutm_terminputtypehiddennameutm_contentidutm_contentinputtypehiddennameutm_campaignidutm_campaigninputvalue84typehiddennamereviewschool_ididreview_school_iddivclasshackwarningpheythereasof11116spanclassschoolnamespanisnowhackreactorifyougraduatedfromspanclassschoolnamespanpriortooctober2016pleaseleaveyourreviewforspanclassschoolnamespanotherwisepleaseleaveyourreviewforahrefschoolshackreactorhackreactorapdivh5titleh5divclassformgrouplabelclasssronlyforreview_titletitlelabelinputclassformcontrolrequiredrequireddataparsleyrequiredmessagetitleisrequiredtypetextnamereviewtitleidreview_titledivh5descriptionh5divclassformgrouplabelclasssronlyforreview_bodydescriptionlabeltextarearows10classformcontrolparsleyerrordataparsleyrequiredtruedataparsleyrequiredmessagepleasewriteashortreviewtohelpfuturebootcampapplicantsnamereviewbodyidreview_bodytextareadivh5ratingh5divclassformgroupdivclassratingsdivclassrowdivclasscolxs7colsm4overallexperiencedivinputstyledisplaynonerequiredrequireddataparsleytriggerchangedataparsleyerrorscontainerrating_errorsdataparsleyrequiredmessageoverallexperienceratingisrequiredtypenumbernamereviewoverall_experience_ratingidreview_overall_experience_ratingdivclasscolxs5colsm2ratingtextrightidoverall_experience_ratingspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspandivdivclasscolxs7colsm3curriculumdivinputstyledisplaynonerequiredrequireddataparselytriggerchangedataparsleyerrorscontainerrating_errorsdataparsleyrequiredmessagecurriulumratingisrequiredtypenumbernamereviewcourse_curriculum_ratingidreview_course_curriculum_ratingdivclasscolxs5colsm3ratingtextrightidcourse_curriculum_ratingspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspandivdivdivclassrowdivclasscolxs7colsm4instructorsdivinputstyledisplaynonerequiredrequireddataparselytriggerchangedataparsleyerrorscontainerrating_errorsdataparsleyrequiredmessageinstructorsratingisrequiredtypenumbernamereviewcourse_instructors_ratingidreview_course_instructors_ratingdivclasscolxs5colsm2ratingtextrightidcourse_instructors_ratingspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspandivdivclasscolxs7colsm3jobassistjobassistancedivinputstyledisplaynonerequiredrequireddataparselytriggerchangedataparsleyerrorscontainerrating_errorsdataparsleyrequiredmessagejobassistanceratingisrequiredtypenumbernamereviewschool_job_assistance_ratingidreview_school_job_assistance_ratingdivclasscolxs5colsm3ratingtextrightjobassistratingidschool_job_assistance_ratingspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspandivdivclasspullrightspanclassnotapplicableinputtyperadiovaluetruenamereviewjob_assist_not_applicableidreview_job_assist_not_applicable_truelabelforjob_assist_not_applicable_notapplicablenotapplicablelabelspandivdivdivdivclassrowdivclasscolxs12dividrating_errorsdivdivdivdivh5schooldetailsh5divclassrowdivclassformgroupcolsm6labelclasssronlyforreview_campuscampuslabelselectclassformcontroldatadynamicselectabletargetreview_course_iddataparsleyerrorscontainerschool_errorsdatadynamicselectableurldynamic_selectcampus_idcoursesdatatargetplaceholderselectcoursedataallowothertruenamereviewcampus_ididreview_campus_idoptionvalueselectcampusoptionoptionvalue108madridoptionoptionvalue197miamioptionoptionvalue107miamioptionoptionvalue779madridoptionoptionvalue780barcelonaoptionoptionvalue843parisoptionoptionvalue913mexicocityoptionoptionvalue995berlinoptionoptionvalue1089amsterdamoptionoptionvalue1090saopaulooptionoptionvalueotherotheroptionselectdivdivclassformgroupcolsm6labelclasssronlyforreview_coursecourselabelselectclassformcontroldataparsleyerrorscontainerschool_errorsdataallowothertruenamereviewcourse_ididreview_course_idoptionvalueselectcourseoptionselectdivdivdivclassformgrouplabelclasssronlyforreview_reviewer_typeschoolaffiliationlabelselectclassformcontroldataparsleyerrorscontainerschool_errorsnamereviewreviewer_typeidreview_reviewer_typeoptionvalueschoolaffiliationoptionoptionvaluestudentstudentoptionoptionvaluegraduategraduateoptionoptionvalueapplicantapplicantoptionselectdivdivclassrowidgraduation_date_dropdownslabelclasssronlyforreview_graduation_dategraduationmonthlabelinputtypehiddenidreview_graduation_date_3inamereviewgraduation_date3ivalue1selectidreview_graduation_date_2inamereviewgraduation_date2iclassformcontroldataparsleyerrorscontainerschool_errorsoptionvaluegraduationmonthoptionoptionvalue1januaryoptionoptionvalue2februaryoptionoptionvalue3marchoptionoptionvalue4apriloptionoptionvalue5mayoptionoptionvalue6juneoptionoptionvalue7julyoptionoptionvalue8augustoptionoptionvalue9septemberoptionoptionvalue10octoberoptionoptionvalue11novemberoptionoptionvalue12decemberoptionselectselectidreview_graduation_date_1inamereviewgraduation_date1iclassformcontroldataparsleyerrorscontainerschool_errorsoptionvaluegraduationyearoptionoptionvalue20052005optionoptionvalue20062006optionoptionvalue20072007optionoptionvalue20082008optionoptionvalue20092009optionoptionvalue20102010optionoptionvalue20112011optionoptionvalue20122012optionoptionvalue20132013optionoptionvalue20142014optionoptionvalue20152015optionoptionvalue20162016optionoptionvalue20172017optionoptionvalue20182018optionoptionvalue20192019optionoptionvalue20202020optionoptionvalue20212021optionoptionvalue20222022optionoptionvalue20232023optionselectdivdivclassrowdivclassformgroupcolsm6review_campus_otherstyledisplaynonelabelclasssronlyforreview_campus_otherotherlabelinputclassformcontrolplaceholderothercampusdataparsleyerrorscontainerschool_errorstypetextnamereviewcampus_otheridreview_campus_otherdivdivclassformgroupcolsm6review_course_otherstyledisplaynonelabelclasssronlyforreview_course_otherotherlabelinputclassformcontrolplaceholderothercoursedataparsleyerrorscontainerschool_errorstypetextnamereviewcourse_otheridreview_course_otherdivdivdivclassrowdivclasscolxs12dividschool_errorsdivdivdivh5aboutyouh5divclassformgroupcolsm6labelclasssronlyforreview_reviewer_namenamelabelinputclassformcontrolplaceholdernamedataparsleyerrorscontainerabout_errorsdataparsleytriggerchangerequiredrequireddataparsleyrequiredmessagenameisrequiredbutwillbekeptanonymousifboxischeckedtypetextnamereviewreviewer_nameidreview_reviewer_namespanclassreview_anoninputnamereviewreviewer_anonymoustypehiddenvalue0inputtypecheckboxvalue1namereviewreviewer_anonymousidreview_reviewer_anonymouslabelforreview_reviewer_anonymousreviewanonymouslylabelspanpclasssmalltextnonanonymousverifiedreviewsarealwaysmorevaluableandtrustworthytofuturebootcampersanonymousreviewswillbeshowntoreaderslastpdivdivclassformgroupcolsm6labelclasssronlyforreview_reviewer_job_titlereviewerjobtitlelabelinputclassformcontrolplaceholderjobtitleoptionaldataparsleyerrorscontainerabout_errorstypetextnamereviewreviewer_job_titleidreview_reviewer_job_titledivdivclassrowdivdivclassrowdivclasscolxs12dividabout_errorsdivdivdivdivclassformgroupdivclassrowdivclasscolxs12divclassrevieweremailcheckstrongyoumustlogintosubmitareviewstrongpahrefloginredirect_pathhttps3a2f2fwwwcoursereportcom2fschools2fironhack232freviews2fwriteareviewclickhereanbsptologinorsignupandcontinuepdivinputtypesubmitnamecommitvaluesubmitclassbtnbtndefaultbtnlgpullrightreviewsubmitreviewlogindivdivdivformdivxdivdivdivdivclassrowdivclasscolxs12reviewcontainerbrdivdivclassreviewdatacampusmadridironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16341datadeeplinktargetreview_16341datareviewid16341hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16341reviewsreview16341idreview_16341fromnursetodesignerintwomonthsabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltmarialuisauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqfwswrrtugbhaprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptau4trwyta5rrmekqqqfnrakckmprxqqr6zbpk_dfn8divspanclassreviewernamemarialuisaspanspanuxuidesignerspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominmarialuisapedauyeverifiedvialinkedinaspandivdivclassratingsspanclasshiddenfromnursetodesignerintwomonthsspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepppspaniwantedtoturnmylifearoundbecauseialwayslikeddesignbutmaybeoutoffearididnotdoitbeforeuntililuckilygotintoironhackmylifehaschangedintwomonthsitsmethodologyandwayofteachingmakesyougofrom0to100inarecordtimeirecommenditwithoutanydoubtspanppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16341dataremotetruedatamethodposthrefreviews16341votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20from20nurse20to20designer20in20two20months207c20id3a2016341flagasinappropriateapdivdivdivdivdivclassreviewdatacampusdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16340datadeeplinktargetreview_16340datareviewid16340hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16340reviewsreview16340idreview_16340100recomendableabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltnicolaealexeuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqhtdojuxozttgprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptszskngag0gyyqxooagfkuyfw3anpdnpjw4boixzxvtedivspanclassreviewernamenicolaealexespanspanspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxsspanspanclassreviewernameahrefhttpwwwlinkedincominnicolaealexeverifiedvialinkedinaspandivdivclassratingsspanclasshidden100recomendablespandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepiamaseniorstudentofcomputerengineeringdegreebutiwasfeelinglikesomethingwasmissinginmyacademicprogramihadnocontactwiththecurrenttechnologiesbrduetothiswheniheardaboutironhackiknewthatwaswhatineededtocompletemyeducationandiwascompletelyrightppfromdayonetheatmospherewasamazingtheleadteacherwasfundamentaltomylearningexperiencebecauseofhisamazingskillsbutthemostkeyelementsoftheironhackexperiencewasthetastheyarealumnithatsupportsyouduringyourbootcampppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16340dataremotetruedatamethodposthrefreviews16340votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c201002520recomendable2121207c20id3a2016340flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16338datadeeplinktargetreview_16338datareviewid16338hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16338reviewsreview16338idreview_16338funexperienceandgreatjobafterabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltgabrielcebrinlucasuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsavatars1githubusercontentcomu36677458v4divspanclassreviewernamegabrielcebrinlucasspanspanspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpsgithubcomkunryverifiedviagithubaspandivdivclassratingsspanclasshiddenfunexperienceandgreatjobafterspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepicametoironhacktolookforajobiknewilovedprogrammingbecauseistudiedengineeringandhadlearntprogrammingbymyselfbutneverwebdevelopmentiwantedtolearnin9weekssomwthingiwouldtakemonthslearningbymyselfppitwasareallyfunexperienceandigotagreatjobafterppirecomendironhackppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16338dataremotetruedatamethodposthrefreviews16338votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20fun20experience20and20great20job20after207c20id3a2016338flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16335datadeeplinktargetreview_16335datareviewid16335hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16335reviewsreview16335idreview_16335fromteachertodeveloperabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltjacobcasadoprezuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqeaprrzi28isqprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptyl6q7ppc5_ductoz9xqfps2p77l_imvr_qpii5zpdidivspanclassreviewernamejacobcasadoprezspanspanjuniorfullstackdeveloperspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominjacobcasadoverifiedvialinkedinaspandivdivclassratingsspanclasshiddenfromteachertodeveloperspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepwheniheardaboutironhackonseptember2017ihadnoideathatitgoingtobemyschoolandmyfutureiwasmusicteacherandialwaysthoughthatmylifewaslinkingwiththeeducationbutmylifechangeinablinkofaneyeandidecidedtolookforanewchanceinaworldwithmoreprofessionalopportunitiesandforthisreasonistudiedatironhackbrihadnotechnologybackgroundbutihadabigdesiretoimproveandtobeagooddeveloperbrduringthebootcamplittlebylittleiwasgrewandwasabletoovercomechallengesineverthoughtiwouldallofthiswaspossiblewiththeenormoussupportofteacherassistantsmycollegesandfriendswithoutthemthisbootcamphadbeenverydifficultppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16335dataremotetruedatamethodposthrefreviews16335votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20from20teacher20to20developer207c20id3a2016335flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16334datadeeplinktargetreview_16334datareviewid16334hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16334reviewsreview16334idreview_16334newwayoflearningabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltesperanzauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4d03aqgkf5xzyf9eaprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptfyprbwzon2x9kyh8qp5wmbxej1gxkvjh4ouydqk_m3mdivspanclassreviewernameesperanzaspanspanjuniorfullstackdeveloperspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominesperanzaamayaverifiedvialinkedinaspandivdivclassratingsspanclasshiddennewwayoflearningspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepthisbootcamphasbeenatotalchangeoflifeformeatotallynewwayoflearningnewpossibilitiesnewwayofthinkingnewdisciplinesitsabigchallengebutiwouldabsolutelyrepeatitthequalityofthisteachingisuncompareablebrihadnocodingexperienceiworkedinbiomedicalresearchiwasjustlookingalittleapproachtocodingifoundatotallynewstyleoflifeppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16334dataremotetruedatamethodposthrefreviews16334votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20new20way20of20learning207c20id3a2016334flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16333datadeeplinktargetreview_16333datareviewid16333hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16333reviewsreview16333idreview_16333ironhackdoesn39tteachyoutocodeitteachesyoutobeadeveloperabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltrubenuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4d03aqfbea1tkoodgprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptm5khvu8u8dhve0kdy_ps5wbz1fdrph2n9zbt3tdp5mdivspanclassreviewernamerubenspanspanjuniorfullstackdeveloperspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominrubenarmendarizverifiedvialinkedinaspandivdivclassratingsspanclasshiddenironhackdoesn39tteachyoutocodeitteachesyoutobeadeveloperspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepihadnocodingexperienceihadstudiedpsychologyandworkedasatechnicianassistantthebootcampwasveryintenseandveryenrichingbrmylearningcurvewasverticleupwardsistartedfrom0andnowimamazedofwhatiknowppironhacksimulatesperfectlythereallyworkingenvironmentofaprogrammeryouworkinginteamswiththerealtoolscompaniesuseyouresolveproblemsandreallyitslikeavirtualprofesionalatmospherebrwhenwevisitedtuentiabigspanishcompanyiwasamazedthatiunderstoodwhattheyweretalkingtomeabouticouldseemyselfworkingthereasaprogrammerbrironhackdoesntteachyoutocodeitteachesyoutobeadeveloperppironhackhelpsyoudiscoverifyoureallywanttoworkasadeveloperornotandafterthebootcampicandefinetlysayiwillworkasacoderppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16333dataremotetruedatamethodposthrefreviews16333votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20ironhack20doesn27t20teach20you20to20code2c20it20teaches20you20to20be20a20developer207c20id3a2016333flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16332datadeeplinktargetreview_16332datareviewid16332hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16332reviewsreview16332idreview_16332aboutmyexperinceabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltpablotabaodaortizuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqfrwvtzz9vtiaprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptl1zw6ienmebscbcvwfwpj9li3hiz62voiy0bor4qfzmdivspanclassreviewernamepablotabaodaortizspanspanjuniorfullstackdeveloperspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominpablotaboada04254316bverifiedvialinkedinaspandivdivclassratingsspanclasshiddenaboutmyexperincespandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepiwanttotalkaboutmylast9weeksicametoironhackwithoutanybackgroundandaftercompletingthebootcampifeelreallyimpressedofhowmuchilearntthesupportandfacilitiesareamazingandalsotheleveloftheteachersmyfullyrecommendationironhacktoeveryonenotonlyprofessionalsthatarelookingforrenewtheirskillsbutalsotopeopletryingtofindnewchallengesppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16332dataremotetruedatamethodposthrefreviews16332votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20about20my20experince207c20id3a2016332flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16331datadeeplinktargetreview_16331datareviewid16331hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16331reviewsreview16331idreview_16331webdevabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltricardoalonzouserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4d03aqfik4zkpmlezaprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptttjn_xwha0tl9kpcrhetmgd8u4j2javyojiddzde3tsdivspanclassreviewernamericardoalonzospanspanwebdeveloperspanspanstudentspanspanclasshiddenxsspanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominalonzoricardoverifiedvialinkedinaspandivdivclassratingsspanclasshiddenwebdevspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepironhackitsperfectifyouwanttostartacareerinwebdevelopmentitopenssomanydoorsasaprofessionalitstrullyimpresivewhatyoucanlearninashortperiodoftimeppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16331dataremotetruedatamethodposthrefreviews16331votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20web20dev207c20id3a2016331flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16330datadeeplinktargetreview_16330datareviewid16330hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16330reviewsreview16330idreview_16330anawesomewaytokickstartyourdevelopercarreerabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltjhonscarzouserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5103aqeqztty60r3zaprofiledisplayphotoshrink_100_1000e1545868800ampvbetaampt6ly760vnykzcrmbcvrszlub1dvz3gxqgkfp5ocaw7mdivspanclassreviewernamejhonscarzospanspanspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominjhonscarzoverifiedvialinkedinaspandivdivclassratingsspanclasshiddenanawesomewaytokickstartyourdevelopercarreerspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivdivclassbodydivclassexpandablepatironhacktheirgoalistoteacheveryonefromthebasicsandthecoreconceptsofprogrammingandbuildupfromtheretoprovideyouaverywellroundededucationandincentivizeyoutokeeplearningonyourownppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16330dataremotetruedatamethodposthrefreviews16330votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20an20awesome20way20to20kickstart20your20developer20carreer21207c20id3a2016330flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16329datadeeplinktargetreview_16329datareviewid16329hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16329reviewsreview16329idreview_16329reallycoolbootcampabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltsarauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqh1a9lrqrrjawprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptvxf6lkkwu1tcqultrae47hxgs6ljbcidrpsvd1i8oudivspanclassreviewernamesaraspanspanfullstackwebdeveloperspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominsaracurielverifiedvialinkedinaspandivdivclassratingsspanclasshiddenreallycoolbootcampspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepihavebeenalwaysmotivatedtolearnnewthingsandthankstoironhackiintegratedallmypreviousknowledgeinapowerfulwaycreating3differentprojectsandenjoyingeverythingabouttheexperiencepeoplehereareamazingandalwaysdisposedtohelpyouduringtheprocessbr100recommendableppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16329dataremotetruedatamethodposthrefreviews16329votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20really20cool20bootcamp21207c20id3a2016329flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16282datadeeplinktargetreview_16282datareviewid16282hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16282reviewsreview16282idreview_16282changeyourlifeinjust2monthsabrdivclassreviewdate10222018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltyagovegauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4d03aqhuojooprtmqprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptiptv1p7pcjrmpu2syig1fbhjdfvcxnzo_ng_laltlcdivspanclassreviewernameyagovegaspanspanfullstackdeveloperspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominyagovegaverifiedvialinkedinaspandivdivclassratingsspanclasshiddenchangeyourlifeinjust2monthsspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepitshardtoputinafewwordwhatihaveexperiencedin4monthsoffullcommitmenttoironhackswebdevelopmentanduxuibootcampsppivemetamazingpeopleivelearnedfromamazingpeopleandimgladicouldaswellhelpamazingpeopleppnomatterwhereyoucomefromorifyouhaventreadasinglelineofcodeinyourlifeaftertwomonthsyouareadifferentpersonimsogladimadethisdecisionitswortheverypennyppfromhtmltoangular5reactarollercoasterofemotionsandalotofhardworkicansaytodaythatimofficiallyafullstackdeveloperworkingforagreatcompanyinareallycoolprojectandthatwouldntbepossiblewithoutironhackppifyouarejustbrowsingforpossibleeducationaloptionsjuststopandtrustandjoinalltheironhackersaroundtheworldthatareconnectedandhelpingeachothereverydayppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16282dataremotetruedatamethodposthrefreviews16282votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20change20your20life20in20just20220months207c20id3a2016282flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16276datadeeplinktargetreview_16276datareviewid16276hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16276reviewsreview16276idreview_16276anincredibleexperienceabrdivclassreviewdate10222018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltdiegomndezpeouserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqhsxmvcrdirqqprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptbd_0rdi82jyeticnsxbxl9mzu01ynbm1sqlqrb3isdgdivspanclassreviewernamediegomndezpeospanspanspanspanstudentspanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincomindiegomendezpec3b1overifiedvialinkedinaspandivdivclassratingsspanclasshiddenanincredibleexperiencespandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepcomingfromuniversityironhackhasexceededallmyexpectationsitseverythingiwaslookingforbecauseironhackgavemeeverythingtobepreparedforajobinprogrammingppteacherassistantsaregreatandeveryonefrommybootcampwasawesomewelearntfromeachotheralotppirecommendironhacktoeveryonenotonlytotechenthusiastbutalsotopeoplewhoarelookingtochangecareerorlookingtoboostitppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16276dataremotetruedatamethodposthrefreviews16276votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20an20incredible20experience21207c20id3a2016276flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16275datadeeplinktargetreview_16275datareviewid16275hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16275reviewsreview16275idreview_16275howtochangeyourliveinonly9weeksabrdivclassreviewdate10222018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltteodiazuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4d03aqfz0kjtldo9pgprofiledisplayphotoshrink_100_1000e1545868800ampvbetaampttqcf0vxr6theusvc822ffkiuvpclusssr_geq9opj9udivspanclassreviewernameteodiazspanspanspanspanstudentspanspanclasshiddenxsspanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominteodiazverifiedvialinkedinaspandivdivclassratingsspanclasshiddenhowtochangeyourliveinonly9weeksspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepironhackwasthewaytochangemylifeandtobeabletolearninatotallydifferentwaythanusualtheymakeyoufeelthatyoubelongtoabigfamilyandallyourcolleaguesaretheretohelpyouafterfinishingthebootcampirealizedeverythingihadlearnedandthatiwasreadytoenteracompanywiththeguaranteethatiwoulddowellppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16275dataremotetruedatamethodposthrefreviews16275votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20how20to20change20your20live20in20only20920weeks207c20id3a2016275flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacourseuxuidesignbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16248datadeeplinktargetreview_16248datareviewid16248hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16248reviewsreview16248idreview_16248besteducationalexperienceeverabrdivclassreviewdate10202018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltronaldricardouserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqexcvlptm0ecwprofiledisplayphotoshrink_100_1000e1545264000ampvbetaampt7ioz6g8kcywmstzy3uczzuatswmhhkfyoa4ln_obpu4divspanclassreviewernameronaldricardospanspanspanspangraduatespanspanclasshiddenxscourseuxuidesignbootcampfulltimespanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincominronaldricardoverifiedvialinkedinaspandivdivclassratingsspanclasshiddenbesteducationalexperienceeverspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepandyesiwenttoatraditional4yearuniversityppiwenttolearnuxuiandendeduplearningsomuchmoreisawhowanorganizationthatcaresaboutitsemployeesandclientsisrundontjustaskthestudenthowmuchtheylikeattendingironhackasktheemployeeshowmuchtheylikeworkinghereyoucantellthateveryoneishappyandincludedthatisonlypossibleifthecultureiswellestablishedfromtoptobottomtheyhaveweeklysurveyswhichaimatgatheringfeedbackregularlythatshowstheycareaboutbeingthehighlyregardedbootcampthattheyareppthestartalexisverypersonalbleandhelpfulguidingtheprocessfromapplicationtofinancialaidprocessingjessicaisalsoinstrumentalinguidingthenewlyregisteredsothattheystartoffthecourseontherightfoottheymaketasavailablesothatyouhaveanyquestionsansweredbeforethecoursebeginsthepreworkcanbeafreestandingcoursedavidfastandkarenlumareverystronginstructorsthatreallycareaboutyourprogressasauxuidesignerthenwhenitsalldoneyouknowthatyouarepartofanewcommunitysocontinuingyourlearningjourneyisalmostunavoidablepptoppingitoffisdanielbritowhoismaniacalinhisdrivetohelpgradsfindthenecessaryemploymentresourcesnoonewhoisseriousshouldexpectanyonetofindyouajobbutreallyyouhavetogooutofyourwayinordertofailppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16248dataremotetruedatamethodposthrefreviews16248votesthisreviewishelpfulspanclasshelpfulcount1spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20best20educational20experience20ever207c20id3a2016248flagasinappropriateapdivdivdivdivdivclassreviewdatacampusdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16199datadeeplinktargetreview_16199datareviewid16199hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16199reviewsreview16199idreview_16199auniqueoportunityabrdivclassreviewdate10182018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltmontserratmonroyuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqe8kv0gzohmqaprofiledisplayphotoshrink_100_1000e1545264000ampvbetaamptdz8ssbztddzi2ts0gmokah4i51ywngxpf7zzk3eyvkdivspanclassreviewernamemontserratmonroyspanspanspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxsspanspanclassreviewernameahrefhttpwwwlinkedincominmonroylc3b3pezbmverifiedvialinkedinaspandivdivclassratingsspanclasshiddenauniqueoportunityspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepduringmysearchtostartmytriptolearnaboutthevirtualareaironhackwasthebestoptioninwhichtheytaughtmemyskillsandabilitiestocreatematerializeandsolveproblemsthroughacoordinatedeffortwithteacherswhothroughouttheprocessareaccompanyingyouandsharingyourachievementsppwithoutadoubtthebestjourneyihavelivedandfromwhichihavelearnedalotduringthesesixmonthsgeneratingagratitudeandrespectforthosewhoaccompaniedduringmystudyandthosepeoplewhowithasmileandtheirkindwordshelpedintheprocessesadministrativeppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16199dataremotetruedatamethodposthrefreviews16199votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20a20unique20oportunity207c20id3a2016199flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursewebdevelopmentbootcampparttimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16183datadeeplinktargetreview_16183datareviewid16183hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16183reviewsreview16183idreview_16183greatdecisionabrdivclassreviewdate10182018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltmariafernandaquezadauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsavatars2githubusercontentcomu35006493v4divspanclassreviewernamemariafernandaquezadaspanspanstudentspanspanspanspanclasshiddenxscoursewebdevelopmentbootcampparttimespanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpsgithubcommafeq03verifiedviagithubaspandivdivclassratingsspanclasshiddengreatdecisionspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepbeforedecidingonsigninguptoironhackiresearchedandvisitedotherbootcampsironhackscurriculumattractedmethemostbecausetheyteachyouthelatesttechnologiesforwebdevelopmentppthestaffwasveryhelpfulcommunicativeandknowledgeabletheclassroomenvironmentwasofhighqualityeveryonewasveryrespectfulandeagertolearnppmyoverallexperiencewasgreatandhighlyvaluableitalreadyhasimpactedmycareeranddecisiontocontinuelearningandgrowinginthisindustryppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16183dataremotetruedatamethodposthrefreviews16183votesthisreviewishelpfulspanclasshelpfulcount2spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20great20decision207c20id3a2016183flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmexicocityironhackdatacoursewebdevelopmentbootcampparttimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16160datadeeplinktargetreview_16160datareviewid16160hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16160reviewsreview16160idreview_16160myfavoriteexperiencetillnowabrdivclassreviewdate10172018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltsalemmuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqhvl6y_jryi4gprofiledisplayphotoshrink_100_1000e1545264000ampvbetaamptmvrgzyc9d36js0oab0ozura79phsirrplt620oikz1qdivspanclassreviewernamesalemmspanspanspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampparttimespanspanclasshiddenxscampusmexicocityspanspanclassreviewernameahrefhttpwwwlinkedincominsalvadoremmanueljuc3a1rezgranados13604a117verifiedvialinkedinaspandivdivclassratingsspanclasshiddenmyfavoriteexperiencetillnowspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandableponeofthemostamazingexperiencesofallbeingpartofagreatcommunityaroundtheworldandbeingwrappedbytheirsenseofcommunityandvaluesitsnotjustthelearningparttheyreallymakeyoufeellikepartofitanditsworldwidejustamazingppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16160dataremotetruedatamethodposthrefreviews16160votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20my20favorite20experience20till20now207c20id3a2016160flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16149datadeeplinktargetreview_16149datareviewid16149hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16149reviewsreview16149idreview_16149bestdecisioneverabrdivclassreviewdate10172018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltjulieturbinauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqfglxipjr8ijwprofiledisplayphotoshrink_100_1000e1545264000ampvbetaampthyxxnaigicxavvk3ibssew1py7qdt3gwucrnszsfgkidivspanclassreviewernamejulieturbinaspanspanstudentspanspanstudentspanspanclasshiddenxsspanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincominjulieturbinaverifiedvialinkedinaspandivdivclassratingsspanclasshiddenbestdecisioneverspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivdivclassbodydivclassexpandablepspaniresearchedwellandconsideredmyoptionscarefullybeforedecidingtotakethewebdevcourseatironhackitwasarollercoasterrideandinowregretnotdoingitsoonerspanppspanthecoursewaschallengingbutwiththeguidanceandencouragementreadilyavailableitbecameaprocessthatgavemeanincrediblesenseofaccomplishmentihadthesupportthatwasessentialandtheencouragementthatineededtoseeitthroughspanppspanironhackopenedanewdoorformespanppspantodayicanhonestlysaythatimadethebestdecisiontotakeawellstructuredcourseandmostimportantlytotakethecourseatironhackspanppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16149dataremotetruedatamethodposthrefreviews16149votesthisreviewishelpfulspanclasshelpfulcount2spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20best20decision20ever21207c20id3a2016149flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16143datadeeplinktargetreview_16143datareviewid16143hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16143reviewsreview16143idreview_16143bestcourseeverabrdivclassreviewdate10162018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltpablorezolauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4d03aqfepicebdodqwprofiledisplayphotoshrink_100_1000e1545264000ampvbetaampt878evt_vk0pnksbgfrqso1g66_9sskfaey8axejlqy0divspanclassreviewernamepablorezolaspanspanspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominpablorezolaverifiedvialinkedinaspandivdivclassratingsspanclasshiddenbestcourseeverspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepirecentlycompletedthefulltimewebdevelopmentcourseandihighlyrecommendittoanyonelookingtoexpandtheirskillsthiscoursehaschangedmylifestyletoabetteroneihadneverthoughtaboutallthethingsacomputerisabletodoandtheonlyrealuseigavetothembeforethisfantasticexperiencewereschoolprojectsatlawschoolppatthebeginningofthecourseiwaswarnedjusthowhardandintensethiscoursewouldbemyclosestfriendsandrelativesalsoencouragedmetodothisandshowedmethehugeimportanceoflearningtechnologiesandhowthiswouldhelpmegetajobbecausewearecurrentlylivinginaworldwhichalmosteveryoneworkwithacomputerppiamimpressedabouteverythingilearnedtherenotonlycodingihadtolivetogetherwithmyclassmateseverydayaskingforhelpinthegoodtimesandbadtimesimademanyfriendswhichistillkeepintouchwiththemironhackisabigcommunitytobepartofitdefinetelyiamreallypleasedwithironhackineverysingleaspectofthecoursepptasspendtheirtimeintensivelytostudentsnomatterhowlongitwilltakepptechnologieslearnedarecompletelyupdatedtofirmsrequisitesmeanstackppsocialeventsandspeechesenrichourknowledgeandappetitetolearnmorethingsppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16143dataremotetruedatamethodposthrefreviews16143votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20best20course20ever21207c20id3a2016143flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16131datadeeplinktargetreview_16131datareviewid16131hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16131reviewsreview16131idreview_16131bestexperienceeverabrdivclassreviewdate10162018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltjoshuamatosuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqegrlwnfajumaprofiledisplayphotoshrink_100_1000e1545264000ampvbetaampt7pa6hqinwgh9zo2a4fwsio7ovg3hvd9us4touc8dicdivspanclassreviewernamejoshuamatosspanspanspanspanspanspanclasshiddenxsspanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincominjoshuamatos1verifiedvialinkedinaspandivdivclassratingsspanclasshiddenbestexperienceeverspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepmyonlyregretisnotdoingthissoonertheniwishedididthisbootcamphasshiftedmylifetoamorepositivesideandihavelearnedsomuchinsuchasmallamountoftimeexcitedtoseewhatthefutureholdsformeaftergainingtheknowledgeofgreatdevelopersppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16131dataremotetruedatamethodposthrefreviews16131votesthisreviewishelpfulspanclasshelpfulcount2spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20best20experience20ever21207c20id3a2016131flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16118datadeeplinktargetreview_16118datareviewid16118hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16118reviewsreview16118idreview_16118mostcurrentcontentyoucanlearnaboutfullstackwebdevabrdivclassreviewdate10162018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltjonathanharrisuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqgsvxeyi7bovgprofiledisplayphotoshrink_100_1000e1545264000ampvbetaamptx4nk5sf7zlxospu3pppqxyz2tahuq_iyoecrnasmyzadivspanclassreviewernamejonathanharrisspanspanspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincominyonatanharrisverifiedvialinkedinaspandivdivclassratingsspanclasshiddenmostcurrentcontentyoucanlearnaboutfullstackwebdevspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepiwassearchingforalongtimefortherightschoolandthenifoundironhacktheyalwaysstayuptodateandiamveryhappyichosethisschooliwasveryworriedformanyreasonsbeforeistartedwillitbetohardwillitbetoeasywillwelearnenoughwillimanagetokeepupnowthatiamaftergraduationandicansayiamveryhappywithmychoiceallthesequestionswereansweredinthebestcasescenarioformetheteacherswerereallyawesomeiwasaskingmanyquestionsconstantlyduringtheclassandtheyansweredallofthemwithgreatpatienceireallyfeltigotthemostoutofthetimeicouldpossiblygetitwasnteasyitwassuperhardactuallybuttheypushedmetomylimitwithoutbreakingmeandifeelilearnedthemaximumicouldinthisamountoftimeandilearnedalotiamveryhappyichosethisbootcampppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16118dataremotetruedatamethodposthrefreviews16118votesthisreviewishelpfulspanclasshelpfulcount2spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20most20current20content20you20can20learn20about20full20stack20web20dev207c20id3a2016118flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16117datadeeplinktargetreview_16117datareviewid16117hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16117reviewsreview16117idreview_16117kitchenstocomputersabrdivclassreviewdate10162018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgalteranushauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqfof7aaornb_aprofiledisplayphotoshrink_100_1000e1545264000ampvbetaamptqhr8x9u8_21lete57pjspk857h2e4msisk6jqkflrzgdivspanclassreviewernameeranushaspanspanspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincomineranushaverifiedvialinkedinaspandivdivclassratingsspanclasshiddenkitchenstocomputersspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepatthebeginningofthecourseiwaswarnedjusthowhardandintensethiscoursewouldbefortheseeminglyshort9weeksthatiwasenrolledilearnedanovelsworthofinformationbutwhatsomeofthebestthingsilearnedwereaboutmyselfthiscoursehelpedmetoseeareasofmyselfthatineededtoimproveonasapersonandaprofessionaltheteachersandassitantswerefantasticandwerereadytohelpthiscoursereallyhelpsyoutodevelopaspecialrelationshipwithyourfellowclassmatesseeingaseveryoneisgoingthroughthesameintensedevelopmentinlifeifeelmoreconfidentaboutenteringthisprofessioncomingfromabackgroundinhospitalitywith0experiencethanieverthoughtiwouldppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16117dataremotetruedatamethodposthrefreviews16117votesthisreviewishelpfulspanclasshelpfulcount2spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20kitchens20to20computers207c20id3a2016117flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview15838datadeeplinktargetreview_15838datareviewid15838hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review15838reviewsreview15838idreview_15838verygooddecisionabrdivclassreviewdate9282018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltvctorgabrielpeguerogarcauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqeddlnkhdrecwprofiledisplayphotoshrink_100_1000e1543449600ampvbetaampt86mx9w5pirjucixnjpxsy8048ywiagnfhrp_wq5qgdivspanclassreviewernamevctorgabrielpeguerogarcaspanspancofounderofleemurappspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominvictorgabrielpegueroverifiedvialinkedinaspandivdivclassratingsspanclasshiddenverygooddecisionspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepthankstotheuxuibootcampfromironhackihaveimprovedalotasadesigneriapproachedtheworldofappsafewyearsagoandistarteddesigningiloveddesigningandtheironhackexperiencehasbeenaveryimportantqualitativeimprovementformeppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid15838dataremotetruedatamethodposthrefreviews15838votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20very20good20decision207c20id3a2015838flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview15837datadeeplinktargetreview_15837datareviewid15837hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review15837reviewsreview15837idreview_15837ironhackexperiencefulltimewebdevabrdivclassreviewdate9282018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltjosearjonauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqhr_gdkooskxwprofiledisplayphotoshrink_100_1000e1543449600ampvbetaamptbz49dlovqzgfx8oobuqannst9tubvu_vmzvxeh6xe9wdivspanclassreviewernamejosearjonaspanspanfullstackdeveloperspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincominjosedarjonaverifiedvialinkedinaspandivdivclassratingsspanclasshiddenironhackexperiencefulltimewebdevspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandabledivdivdivdivdivpstrongaboutmestrongppiworkedinitanddidsomecodingbutnothingpastbasicjavascriptitpeakedmyinterestsoibeganlearningonmyownbytakingcoursesonlineirealizedineededtogoaboutlearninginadifferentwayiresearchedcoursesbootcampsandranintoironhackanddecidedtodiveinandtakeitsfulltimewebdevcourseaftercomingacrossgreatreviewsratingsppstrongexpectationsandcourserundownstrongppbereadytolearnbecauseyouregoingtolearnalotitsafulltime95pmeverydayfor9weeksnotincludingtheafterhoursyouwanttoputinaswellitsnojokesojustpreparetofullyinvestthenext9weeksintoironhackyoulearnfor2weeksandthenimmediatelyaresentofftocreateaprojectwithinaweekrepeatagain2moretimesafterthatcomeinpreparedtolearntakeinallthematerialandbewillingtoputintheworkppspanstronghelpduringcourseworkcurriculumtasandteacherstrongspanpptheinstructorforourcohortnickwasveryknowledgeabletheonlydownsidewasthatitwashisfirsttimeteachingthecoursesoitfeltlikehewasalsolearningaswewerealltryingtolearnsomethingtoobesidesthathewasmostdefinitelyagreatinstructorandwithouthisproficiencyonthesubjectiwouldnothavelearnedasmuchasididasfortheteachingassistantsallthreeofthemwereamazingsandramarcosiantheywereallveryfamiliarwiththecourseworksincetheywereallironhackgraduatesaswellitwasextremelyhelpfulhavingdedicatedtaswhowereformerstudentshelpingusbecausetheyknowthestrugglesotheystrongwantstrongtohelptheresmorethanenoughhelptogoaroundjustmakesuretostrongaskstrongforitwhenyouneeditandyouwontfallbehindppthecourseworkdefinitelyneededsometweakingonsomedaysourinstructornickpushedasidewhathefeltwaswrongandobsoleteandtaughtitthebestwayhecouldanditdefinitelyworkedoutduringthecoursethiswasoneofmytopissuesthecurriculumforsureneededanupdatebutfromwhatihaveseenaftermytimetheretheyareoralreadyhavetakenthestepsnecessarytodosowhichmeanstheytakeyourfeedbackseriouslyandwontbrushyourinputasideppstrongrestofironhackstaffstrongppsincethefirstdayiappliedandevennowthestaffatironhackhasntmissedabeattheyhavebeenhelpfulandthereformewithanyquestionsihadtheyhaveanideaastowhattheywanttodowiththecourseandtheydefinitelymakesurethatyoureceivethebestexperiencepossibleitdoesntmatterwhoyoutrytocontacttheownerdowntothetastheyallrespondhappilyandmakeyoufeellikeoneofthemppstronghiringfairprepstrongppfromthefirstweekatironhackyoubecomewellacquaintedwithamannamedbritotakehisadviceseriouslyifyourgoalisgettingajobhewalksyouthroughallthenecessarystepstoprepareyousuchasbuildingyourresumecreatingyourlinkedinandletsyouknowaboutnetworkingeventstoattendheconstantlybringsinpeopletogivespeechestoyouweeklybritoisagreatsourceforhelpandinformationsomakesureyouareconstantlycheckinginwithhimalongwithallthisprepworkyouarealsocreatingyourportfolioduringthecourseyoucreate3projectsonyourownorinasmallgroupwhichshowcaseeverythingyouvelearnedinthecoursefrombeginningtoendandisthefirststeptothebuildingofyourportfolioppstronghiringfaireventstrongppattheendofthecoursebritoarrangescompaniestocometoironhackandsitdownwithyouforinterviewsthisisavaluableintroductionforyourfirstinterviewseventuallyyouwillbeoffdoinginterviewsonyourownandthishiringfairisagreatwaytoevaluatewhatyoudidanddidntdosothatultimatelyyoubecomemoreandmorecomfortableduringthemstillthatdoesntmeanyoushouldnttaketheseinterviewsatthehiringfairseriouslydefinitelycomepreparedtonailthemduringtheeventpeoplestrongdostronggethiredoutofthesethisiswhatyouprepareforandithelpstoprepareforfutureinterviewsppstrongpostironhackexperiencestrongppafterironhackfindingajobifthatiswhatyouarethereforisthenextbattlebritoistherewithyoueverystepofthewayheholdsplacementshelpmeetingsatironhackeveryotherweekandisalwaysavailableforanyquestionsyouhaveheguidesyouandremindsyouthatyoumuststrongkeepcodingstrongandstrongkeepapplyingstrongifyouslackoffonthosetwostepsthejobhuntinstantlybecomesmuchhardertakeyourlinkedinnetworkingandresumeseriouslydolittleprojectsonyourownafterthecohortandmakesureyourjavascriptknowledgeisfreshbydoingcodingchallengesonhackerrankcodewarsbecausetheywillhelpwiththetechnicalinterviewsppididnotgethiredimmediatelyafterironhackiappliedtoaround300jobsandonlygotabouttwohandfulsofphoneinterviewsandinpersoninterviewsigothired3andahalfmonthsafterineverstoppedcodingineverstoppedapplyingandialwayskeptintouchwithbritothisprocessinitselfcouldfeelmorestressfulthanthebootcampbutdonotquitppstrongconclusionstrongppyesyoulearnalotatironhackandaregivengreatguidancebutnotheywillnothandyouajobyougeteverythingyouneedfromthemandnowitsuptoyoutoputintheworkandlandittheyaretherewithyoueverystepofthewayiwould100doitagainiputmylifeonholdinvestedinmyselfpushedthroughandchangedmycareerintosomethingifeltwouldbemorefulfillingsofarithasntdisappointedonebitnotonlydoyoulearnalotatironhackbutyoumaketonsoffriendsandbecomepartoftheirgreatcommunitypdivdivspanifyouhaveanyquestionsfeelfreetomessagemeonlinkedinandiwillgladlyanswerthemforyouspandivdivdivdivdivdivdivdivdivdivdivpclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid15837dataremotetruedatamethodposthrefreviews15837votesthisreviewishelpfulspanclasshelpfulcount4spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20ironhack20experience2020full20time20web20dev207c20id3a2015837flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview15757datadeeplinktargetreview_15757datareviewid15757hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review15757reviewsreview15757idreview_15757awesomelearningexperienceabrdivclassreviewdate9232018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltalexanderteodormaziluuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqeuue2gds42wwprofiledisplayphotoshrink_100_1000e1543449600ampvbetaamptmi4sex_czdgkec3dqgvm9wqiyopwwgvk7rwu19fbagdivspanclassreviewernamealexanderteodormaziluspanspanspanspanspanspanclasshiddenxsspanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincominalexmaziluverifiedvialinkedinaspandivdivclassratingsspanclasshiddenawesomelearningexperiencespandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepirecentlycompletedtheparttimewebdevelopmentcourseandihighlyrecommendittoanyonelookingtoexpandtheirskillsortechnologicalknowledgebaseihadanallaroundwonderfullearningexperienceyoudontneedtohavemuchcomputerknowledgegoingintoitbecauseeachclasshasmultipleteachingassistantswhowillbetheretohelpifyoufallbehindorarestrugglingtokeepupmyclasshad3exceptionaltasmanuelcolbyandadrianwhoconstantlywereabletoprovideassistancewheniranintotroublehadbugsorjustgotlosttheywerealwaysnicepatientandwillingtogotheextramilejusttomakesureireallyunderstooddeeplywhatwewerelearningincludingcominginextraearlyontheweekendsandspendingoneononetimewithmeinfrontofthewhiteboardtogoovereachaspectofwhatwewerelearningindetailiwasreallyimpressedwithandgratefulforeachofthembrbriwasalsoveryimpressedwiththeprofessoralanheisanextremelyknowledgeablepersonwithanaturalaptitudeforteachingalwayspatientcourteousandwelcomingofquestionsfeedbackandtakingtimetoaskusifweallunderstoodorwererunningintoanyproblemswhatreallyimpressedmemostaboutalanishowhewouldtakealittlebitoftimeatthestartofeachclasstogobeyondthecurriculumandtochallengeuswithcomputersciencecodingchallengestoprepareustothinklikecomputerscientistsandgetusreadyforthetypesofquestionswewouldlikelyseeinacodinginterviewandexplainthedifferentwaystoapproachtheproblemsandhowtothinkaboutthemintermsoftimecomplexityormemorymanagementitwaswellbeyondwhatiexpectedfromawebdevelopmentcourseandifoundtheselessonsparticularlyrewardingalanhasaknackforbreakingdowncomplexandabstractconceptsintodigestiblebitsandgettingtheclasscomfortableenoughtotryandcollectivelyattemptasolutionprotipalwaysvolunteertotryandsolvetheproblemshepresentsinoticedthestudentsbraveenoughtoattempttheseproblemsretainedinformationbetterandwalkedawaywithamoresolidunderstandingifhegivesyouthemarkergetupthereandgiveityourbesteffortgohomeandresearchtheconceptsfurtherjustdoitgetawhiteboardforyourhouseandwriteimportantconceptsobjectivesgoalsandproblemexamplesfromclassthiswillforceyourbraintoreconcilethisnewinformationonadailybasisyouwillalmostcertainlyseethesetypesofcodingchallengesinjobinterviewsandtheyreabstractandfrustratingifyouarenotpreparedbrbraftergraduationyoullbecounseledbybritoyourcareercounselorwhoisalsoaverycooldowntoearthandknowledgeablepersonhehassomerealwisdomtoshareabouttheinterviewingprocesshowtoconstructyourresumeandspecificallytellsyoutoreachouttohimbeforeacceptinganyjoboffersiamreallyimpressedwithhisinsightandwillingnesstobesupportivehelpfulandmakesureyoulandagoodstartingjobwellaftergraduationbrbrlookingbackiamextremelythankfultoironhackandhumbledtohavehadtheopportunitytostudywithsuchanawesomeclasseveryonefrommyclassmatestotheteacherstotheteachersassistantstothecareercounselorhaveallbeenanabsolutepleasuretodealwithbrbralsoiwasblownawaybytheuxuistudentswethewebdevclassgotachancetoworkwiththeminthehackathonwhichwasatotallyawesomeexperienceandtheywereveryimpressiveilegitimatelywishicouldgotaketheirclassaswellbecausetheyabsolutelyblewmymindwiththeirsystematicmethodologycreativityandorganizedthoughtprocessestheywereamazingilovedworkingwiththembrbrsotowrapitupiwholeheartedlyrecommendedironhackswebdevelopmentcourse110activelyparticipateaskquestionsbeengagedhelpclassmateskeepapositiveattitudeandthisbootcampwillbealifechangingeventforyouasithasbeenformebrppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid15757dataremotetruedatamethodposthrefreviews15757votesthisreviewishelpfulspanclasshelpfulcount2spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20awesome20learning20experience21207c20id3a2015757flagasinappropriateapdivdivdivdivdivdivdivsectiondividpaginatornavclasspaginationspanclasspagecurrent1spanspanclasspageaclassparamifydataremotetruehrefschoolsironhackpage2reviews2aspanspanclasspageaclassparamifydataremotetruehrefschoolsironhackpage3reviews3aspanspanclasspageaclassparamifydataremotetruehrefschoolsironhackpage4reviews4aspanspanclasspageaclassparamifydataremotetruehrefschoolsironhackpage5reviews5aspanspanclasspagegaphellipspanspanclassnextaclassparamifydataremotetruehrefschoolsironhackpage2reviewsnextrsaquoaspanspanclasslastadataremotetruehrefschoolsironhackpage24reviewslastraquoaspannavdivdivdivdivdivdivclasspanelwrapperdatadeeplinkpathnewsdatatabnews_tabidnewsdivclasspanelpaneldefaultpanelcontentdivclasspanelheadingcollapsedvisiblexsdatadeeplinktargetnewsdatatargetnewscollapsedatatogglecollapseidnewscollapseheadingh4classpaneltitlenewsh4divdivclasspanelcollapsecollapseinidnewscollapsedivclasspanelbodyh2classhiddenxsnewsh2sectionh4ourlatestonironhackh4ulidpostsliclasspostdatadeeplinkpathnewsparttimecodingbootcampswebinardatadeeplinktargetpost_1059idpost_1059h2ahrefblogparttimecodingbootcampswebinarwebinarchoosingaparttimecodingbootcampah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan962018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsnewyorkcodedesignacademynewyorkcodedesignacademyaaclassbtnbtninversehrefschoolsfullstackacademyfullstackacademyappstrongdidyouwanttoswitchcareersintotechbutnotsureifyoucanquityourjobandlearntocodeatafulltimestrongstrongbootcampstrongstronginthishourlongwebinarwetalkedwithapanelofparttimestrongstrongbootcampstrongstrongalumnifromfullstackacademyironhackandnewyorkcodedesignacademytohearhowtheybalancedothercommitmentswithlearningtocodeplustheyansweredtonsofaudiencequestionsrewatchitherestrongppiframeheight507srchttpswwwyoutubecomembednv6apa8vthawidth902iframepahrefblogparttimecodingbootcampswebinarcontinuereadingrarraliliclasspostdatadeeplinkpathnewsdafnebecameadeveloperinbarcelonaafterironhackdatadeeplinktargetpost_1056idpost_1056h2ahrefschoolsironhacknewsdafnebecameadeveloperinbarcelonaafterironhackhowdafnebecameadeveloperinbarcelonaafterironhackah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan8132018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4685s1200dafnedeveloperinbarcelonaafterironhackpngppstrongafterlivingallovertheworldanddippinghertoesingraphicdesignfinanceandentrepreneurshipdafneolcawaslookingforacareerwhereshewouldalwayskeeplearningsheeventuallytriedafreecodingcourseloveditanddecidedtoenrollinahrefhttpswwwironhackcomencourseswebdevelopmentbootcamputm_mediumsponsoredcontentamputm_sourcecoursereportamputm_campaignwebdevbootcampbcnamputm_contentalumnispotlightrelfollowtarget_blankironhackswebdevelopmentbootcampainbarcelonaspaintaughtinenglishdafnetellsushowlearningtocodewasbothverydifficultandverysatisfyinghowsupportiveahrefhttpswwwcoursereportcomschoolsironhackrelfollowironhackawasandstillisforhercareerandhowmuchsheisenjoyingbeingafrontenddeveloperinhernewjobatstrongstrongeverisstrongstrongaeuropeanconsultingfirmstrongppstrongqampastrongppstrongwhatsyourcareerandeducationbackgroundhowdidyourpathleadtoabootcampstrongppmycareerpathhasbeenverydiversesofarimoriginallyfromaustriaandididabachelorsdegreeinmultimediainlondonandhonoluluwiththeaimofworkingingraphicdesignandvideoproductionbutifoundthejobopportunitieswerenotthekindofjobsiimaginedthemtobethenididanmbainviennaandsandiegotoincreasemycareeroptionsandendedupinfinanceinbarcelonappafterthreeyearsigotboredwithfinanceandwantedtofigureoutwhattodowithmylifeihadalwaysbeeninterestedintechnologyandworkedforawhileonafamilybusinessfocusedontheinternetofthingsienjoyedresearchingtechnologiesphilosophicalaspectsofthebusinessandlookingatthedirectioninwhichtheworldisheadingppieventuallycameacrossfreecodecampandenjoyeditalotmyfriendswhoworkinwebdevelopmenttoldmeifibecameawebdeveloperiwouldbelearningfortherestofmylifeatfirstthatsoundedintimidatingbutitmademerealizethatsexactlywhatiwanttodowithmylifeitsawaytomakesureiwontgetboredicankeeplearningandgettingbetteratwhatidoitgoeshandinhandwithmypersonalitybecauseilovetolearnanddonewthingsithinkthatswhywebdevelopmentistherightchoiceformeppstrongyouvestrongstrongtraveledstrongstrongalotwhatmadeyouchooseironhackinbarcelonaratherthananotherbootcampinstrongstrongadifferentstrongstrongcitygoingbacktocollegeorteachingyourselfstrongppiconsideredteachingmyselfbutgoingtouniversitywasntanoptionitwasbetweenteachingmyselfandgoingtothebootcampasabeginnerthebestwaytochangecareerswastogofullonandbearoundprofessionalstheteachersatironhackareverytalentedandareprofessionalswhohavebeeninthefieldforalongtimeppimovedtobarcelonathreeyearsagoandfellinlovewiththecitysoitwascleartomethatiwantedtodoabootcamphereitalkedtopeopleaboutthebesttechnologiesandlanguagestolearnandeveryoneconfirmedthatironhackhadthebestfullstackjavascriptcurriculumbarcelonahasagoodtechatmosphereandagrowingstartupsceneideventuallyliketohavetheflexibilitytoworkremotelyandithinkthatbarcelonawillallowthatppalsothecourseididwastaughtinenglishinbarcelonaironhackoffersonefulltimecohortinenglishandonefulltimecohortandoneparttimecohortinspanishppstrongwhatwastheironhackapplicationandinterviewprocesslikeforyoustrongppthefirstpartwasapersonalityinterviewtoseeifyourereallygenuinelyinterestedindoingthecourseandpursuingacareerinwebdevelopmentafterpassingthatfirstinterviewiwasgivensomeverybasiccodingexercisesafterthoseexercisesihadatechnicalinterviewwithateacherassistantwhichipassedbeforegettingacceptedintoironhackppstrongwhatwasthelearningexperiencelikeatironhackwhatwastheteachingstylestrongppihavetobehonestitwasveryverytoughformethiswasthefirsttimeihaddoneacourseinwebdevelopmentironhackwassplitintothreemodulesfirstwehadthebasicfrontendmodulewhichwasprettydoablethesecondmodulewasbackendwhichformewasverydifficultthenthefinalmodulewasbackendwiththeangularframeworkwhichwasalsodemandingppthehourswereveryintenseofficiallythehoursare9amto6pmlikeafulltimejobbutidontremembermanydayswhenweactuallyfinishedat6ifyoureatironhackthenitsinyourbestinteresttogetasmuchoutoftheprogramasyoucanpptheteachingwasalsoquiteintenseim30nowsoihadbeenoutofschoolformanyyearsandgoingbacktolectureswasalotmoredemandingthanithoughtitwouldbebutasintenseasitwasitwasalsoverysatisfyingyourcharacterreallyshowswhenyourelearningwebdevelopmentyouhavetodealwithdailyfrustrationsandalotofchallengesbutovercomingthosechallengesisreallyrewardingppstrongwhatwasyourcohortlikestrongppironhackwasoneofthemostdiverseexperiencesiveeverhadsomeofmyclassmateswere18andhadcomestraightoutofhighschoolandtheoldestguywasinhislate40stheaveragepersonwassomebodywhohaddecidedtochangetheircareerppwewereveryinternationaltherewerearound22studentsinmyclassfourofthosestudentswerespanishandtherestofthemwerefromallovertheworldincludingeuropeansandlatinamericansppstrongwhatwasyourfavoriteprojectthatyoubuiltatironhackstrongppmyfavoriteprojectwasmyfirstprojecticreatedagameofblackjackwithfrontendjavascriptsinceitwasmyfirstprojectifeltlikeihadaccomplishedsomethingthatineverinmylifethoughticouldhaveaccomplishedofcoursewegothelpfromtheteachersbutitsquiteimpressivetoseewhatyouyourselfarecapableofdoingbeforewestartedtheprojectiwascluelessihonestlyhadnoideawhatiwasgoingtodohowiwasgoingtodoitandididntbelieveicoulddoitbutaftercompletingtheprojectitwasreallyimpressivetoseewhaticouldgetmyselftodoppstronghowdidironhackprepareyouforjobhuntingstrongppwheniwasresearchingbootcampsitwasreallyimportantformetobeabletolandajobassoonaspossibleandironhackprettymuchguaranteesthatalmostallalumniwhowanttofindworkwillfindworkinthefieldrightafterbootcampwehadahiringdaywheremorethan20recruitersfromtechcompaniescametothecampustoseeourworkitwasaquickinterviewwhereweshowthemourprojecttheyaskquestionstheygettoknowusandwegettoknowthecompaniesppsoniamycareersadviserwasalwaysgettingintouchwithcompaniesandgettingmyinputaboutwhatidliketodoontopofthatithoughtitwasamazingthatafterilandedajobandneededsomeguidanceoneofthetasstillgavemeadviceandinputevennowifeellikeicangobacktoironhackandgetsupportanytimeineedititrynottomilkitbuttheyarejustsohelpfulandsocaringppstrongsoyouvebeenworkingatstrongstrongeverisstrongstrongfor7monthsnowcongratshowdidyoufindthejobstrongppeverisdidcometoironhackforthehiringdaybutididntgetachancetotalktothembecausethereweresomanycompaniestheresothenextdayicontactedthemandtoldthemihadmissedthembutiwantedtogettoknowthemiwasquiteactiveaboutreachingouttocompaniestheyrepliedimmediatelyiwentintotheofficethatsamedayforaninterviewwithintwoweekstheycalledmeinforasecondinterviewandshortlyafterthatireceivedanofferiwasexhaustedaftergraduatingfromironhacksoitookamonthoffovertheholidaysbutaboutamonthintomyjobsearchiwasworkingateverisppstrongcanyoutellmeabouteverisandwhatyouworkontherestrongppahrefhttpswwweveriscomglobalenrelfollowtarget_blankeverisaisaconsultancysoweworkonprojectswithdifferentclientsimajuniorfrontenddeveloperandiworkwithangularandtypescriptitsapurelyfrontendjobwhichiswhatiwantedppimonmysecondprojectsinceistartedateveristhefirstprojectwasawebapptohelporganizationsapplyforgovernmentalloansitwasaverysmallglobalteamtwopeopleinbarcelonatwopeopleinzaragozaspainandtheprojectmanagerwasbasedinbrusselsbelgiumformycurrentprojecttherearefourofusandwereallbasedinbarcelonaexceptfortheprojectmanagerwhoisbasedinzaragozappitsahugecompanyithinkthereareabout3000peopleinbarcelonaandtheyhavebranchesaroundtheworldthecompanyisverydiverseandtheteamsareverydiverseaswelltheyhaveanemphasisonhiringverygenderbalancedteamswhichisniceeverisisdefinitelymoregenderbalancedthanothercompaniesppstrongareyouusingthetechnologiesandprogramminglanguagesateveristhatyoulearnedatironhackstrongppimworkinginangularwhichisaframeworkwecoveredinthethirdmoduleofironhacktherearealwaysnewthingstolearninangularbecauseangularisquitecomplexandalwaysevolvingsoihaventlearnedanynewlanguagesorframeworksbutihadtolearnmoreaboutangularonthejobppironhackprovideduswiththetoolstobeabletoteachourselvesnewtechnologiesmoreeasilyinthefutureiwillinevitablyneedtolearnmorelanguagesandframeworksbutnowihavetherighttoolstobeabletoteachmyselfalotmoreeasilythanbeforethebootcampppstrongsinceyoujoinedeverishowdoyoufeelyouvegrownasafrontenddeveloperstrongppin6monthsifeellikeivebecomealotmoreindependentandimlessafraidoftouchingthecodeinadditionivedevelopedapassionforproblemsasweirdasthatsoundsienjoyrunningintoproblemsbecauseienjoysolvingthemitsveryfulfillinghonestlyithinkironhackisthebestdecisionivemadeinmylifeintermsofacademiaandcareerdevelopmentihaventregretteditonceppstronghowhasyourbackgroundingraphicdesignfinanceandentrepreneurshipbeenusefulinyournewjobasafrontenddeveloperstrongppgraphicdesignisverymuchabouttrendsanditsbeenalongtimesinceistudieditwhiletherearesomeaspectsofdesignthatstillapplyalothaschangedateveriswhenwegetanewprojectalotofthedesignisgivenbytheclientmyjobismoreaboutimplementingthelogicandfunctionsratherthanthedesignitselfppmyexperienceworkinginfinancehasdefinitelybeenusefulateverishavingexperienceinahugecorporationdefinitelyhelpsyouworkwithotherpeopleandclientsinaprofessionalenvironmentppstrongwhatsbeenthebiggestchallengeorroadblockinyourjourneytobecomingafrontenddeveloperstrongppsometimesyoucangetstuckonaproblemforareallylongtimeandyoustarthavingtodealwithyourownfrustrationsthemoreyougetfrustratedthemoreyoublockyourbrainandthelessyoucanreallythinklogicallythatsachallengethativehadtolearntodealwithandimreallylearninghowtobecalmandpatientiwasntapatientpersonbeforeandimnowreallyseeingtheresultsofpatienceppstrongitsoundslikeironhackhasstayedinvolvedinyourcareerhaveyoukeptintouchwithotheralumnistrongppiwasjustatironhacklastweekactuallyandimgoingagainsoonalotofpeoplefrommycohorthaveleftbutivegottentoknowpeoplefromthecohortsbeforeandaftermineandwevebecomequitetightitsaverystrongcommunitywheneverironhackhostseventsiprioritizethemitsaverygoodatmosphereandagreatnetworkandeverytimeigothereifeellikeimathomeppstrongwhatadvicedoyouhaveforpeoplemakingacareerchangethroughacodingbootcampstrongppjustdoitmybestadviceistostaycalmandbeawarethatyouregoingtoreachyourmentallimitsyouregoingtohaveahardtimebutitsreallyworthitanditsveryrewardingtherearegoingtobetimeswhenyoullwanttofeelverystupiddontifyoucanbeamasterofyouremotionsthenyouhaveagoodpathaheadppstrongfindoutmoreandreadahrefhttpswwwcoursereportcomschoolsironhackrelfollowironhackreviewsaoncoursereportcheckouttheahrefhttpswwwironhackcomencourseswebdevelopmentbootcamputm_mediumsponsoredcontentamputm_sourcecoursereportamputm_campaignwebdevbootcampbcnamputm_contentalumnispotlightrelfollowtarget_blankironhackawebsitestrongpdivclassauthorbiobootstraph4abouttheauthorh4imgclassimgroundedpullleftsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files1586s300imogencrispeheadshotjpgalthttpscourse_report_productions3amazonawscomrichrich_filesrich_files1586s300imogencrispeheadshotjpglogoppimogenisawriterandcontentproducerwhonbsploveswritingabouttechnologyandeducationnbspherbackgroundisinjournalismwritingfornewspapersandnewswebsitesshegrewupinenglanddubaiandnewzealandandnowlivesinbrooklynnyppdivliliclasspostdatadeeplinkpathnewshowtolandauxuijobinspaindatadeeplinktargetpost_1016idpost_1016h2ahrefbloghowtolandauxuijobinspainhowtolandauxuidesignjobinspainah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan5212018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappahrefhttpswwwcoursereportcomschoolsironhacknewshowtolandauxuijobinspainrelfollowtarget_blankimgaltsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4561originalhowtolandauxuidesignjobspainironhackpngappstrongdemandforuxanduidesignersisnotjustlimitedtosiliconvalleycompaniesallovertheworldarerealizingtheimportanceofsoliduxdesigncitieslikebarcelonaknownforitsarchitecturaldesignarebecomingdigitaldesignhubssofadalponteteachesuxuidesignatahrefhttpswwwcoursereportcomschoolsironhackrelfollowtarget_blankironhackastrongstrongbootcampstrongstronginbarcelonaandhasseenthedemandforuxuidesignersincreaseoverthelast18monthsandasahrefhttpswwwironhackcomencoursesuxuidesignbootcamplearnuxdesignutm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blankironhackasoutcomesmanagerjoanacahnermakessureironhackstudentsaresupportedinfindingtherightcareerpathaftergraduatingtheytelluswhythedesignmarketishotinspainrightnowwhatsortofbackgroundandskillsuxuidesignersneedandtipsforfindingauxuidesignjobstrongpahrefbloghowtolandauxuijobinspaincontinuereadingrarraliliclasspostdatadeeplinkpathnewscampusspotlightironhackberlindatadeeplinktargetpost_983idpost_983h2ahrefschoolsironhacknewscampusspotlightironhackberlincampusspotlightironhackberlinah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan3122018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappahrefhttpswwwcoursereportcomschoolsironhacknewscampusspotlightironhackberlinrelfollowtarget_blankimgaltcampusspotlightironhackberlinsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4430s1200ironhackberlincampusspotlightpngappstrongberlinisprovingtobeanincredibletechecosystemwithcampusesinmiamimadridparismexicoandbarcelonaahrefhttpswwwcoursereportcomschoolsironhackrelfollowtarget_blankironhackaislaunchingtheirwebdevelopmentstrongstrongbootcampstrongstronginberlingermanyin2018totakeadvantageofthegrowingtechscenewespokewithahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blankironhackasemeaexpansionleadalvarorojasabouttheberlincampusataweworkspacehowironhackisrecruitinglotsoflocalhiringpartnersandwhatsortofjobsironhackgraduatescanexpecttogetinberlinplusasanironhackgradhimselfalvarogivesadviceonwheretostartasanewcoderstrongph3strongqampastrongh3pstrongwhatsyourbackgroundandhowdidyougetinvolvedwithironhackstrongppmybackgroundisinstrategyconsultingistudiedbusinessinlondonandtheniworkedinstrategicconsultingfortechstartupsinspainandcaliforniaiworkedfortheembassyofspaininlosangelesforalittlewhileandthenilaunchedmyownventurethereppimactuallyanironhackgraduateworkinginthetechindustryihadalwaysbeeninterestedinlearninghowtocodesoididsomeresearchonlineandifoundironhackigraduatedfromironhackaroundayearandahalfagoppifellinlovewiththecompanysmissionandthecommunitytheywerecreatingyouhearsomereallyincrediblestorieswhenyoureworkingwithpeoplefromsuchdiversebackgroundsaftergraduatingikeptintouchwithahrefhttpswwwlinkedincomingonzalomanriquerelfollowtarget_blankgonzalomanriqueaoneofthecofounderssowhentheydecidedtoexpandineuropehecontactedmeabouttheemeaeuropemiddleeasternandafricaexpansionleadpositionitwasanobrainerformeppstrongdidyouattendironhacktobecomeadeveloperordidyoujustwanttopickupcodingskillsstrongppiwantedtopickupcodingskillsithinkeverybodyinthefutureshouldbecomeliterateinsomekindofcodinglanguageevenifyourenotplanningonworkingasadevelopermostjobsinthefuturewillrequireabasicknowledgeofprogrammingandiwantedtostayaheadofthecurveifyouworkintechunderstandinghowsoftwareisbuiltisamustregardlessofyourpositioneventuallymachineswilldominatetheworldandyoullhavetospeaktheirlanguageppstrongyouhavethisuniqueperspectiveofactuallybeingastudentbeforeworkingasstaffatironhackstrongppabsolutelyitseasierformetoexplainthebenefitsbehindironhackbecauseivelivedthroughthewholeexperienceitsreallygreatwhenwedoeventsandprospectivestudentsaskmeaboutironhackthefirstthingitellthemislookimanalumiwentthroughthewholeexperienceicantellyoueverythingyouneedtoknowandeverythingyoullgothroughitwasdefinitelyoneofthemostchallengingandrewardingtimesinmylifeppstrongtellusaboutyourroleatironhackstrongppthefirststepwhenistartedwasworkingwiththecofoundersandthevpofopsampexpansionalexberrichetomakeastrategyplanforeuropewehadvariouscitiesinmindanddecidedtotakeastructuredapproachandrankthemaccordingtofactorsweknowtobedeterminantsforsuccesswefinallydecidedberlinwasclearlythenextstepforusppafterdecidingonacityimovetheretoseteverythinguptherearetwomainareasimresponsibleforthefirstisoperationsamphrsettingupthelegalentityforironhacksnewcampussecuringfinancingforourstudentsetcandgettingtogetheradreamteamtorunthecampusppthesecondkeyareaismarketingwetailorourstrategytoeachmarketitsallaboutunderstandingthedifferentcustomersegmentsandbuildingbrandawarenessoncepeopleunderstandourvaluepropositiontheyrealwaysconvincedwefocusstronglyonpartneringupwithcoolcompaniesliken26ormoberriesanddoingfreeworkshopsandeventsforprospectivestudentsitsallaboutgettingpeopleexcitedaboutlearningnewdigitalskillsppourfirstcohortinberlinlaunchesmay212018ppstrongwhatstoodoutaboutberlingermanywhyisthiscityagreatplaceforironhacktohaveacampusstrongppironhackalreadyhascampusesineuropemadridbarcelonaandparissowewanttocontinuetobepresentinthestrongesttechecosystemsandberlinisprovingtobeanincredibletechecosystemberlinishometothesinglelargestsoftwaremarketineuropethatsaroundaquarteroftheeuropeanmarketbyvaluewhichisprettycrazytherearearound2000to2500activetechstartupshereincludingsomereallydisruptivecompaniesthetechecosystemisboomingandthecityhastheabilitytoattractandretaintalentedpeoplelikenootherplacepeopleareflockingtoberlinbecausetheylikelivinghereandtheresplentyofjobopportunitiesppalsotheitjobsmarketingermanyhasagrowingdigitalskillsgaptherearealotofnewstartupsthatdemanddevelopersanddesignersalongwithtraditionaloldercompanieswhoaregoingthroughadigitalizationprocessahrefhttpswwwmckinseydefiles131007_pm_berlin_builds_businessespdfrelfollowtarget_blankmckinseyreleasedastudyasayingtherewouldbe100000digitaljobsinberlinby2020sothatwasbigdatapointforusppstrongsincestudentscangotouniversityforfreeinberlinwhywouldtheywanttopaytogotoironhackstrongppcompaniesaredemandingmorepeoplewithdigitalskillsandfouryearuniversitiesjustcantcatertothatmarketironhackbelievesuniversitiesregardlessofwhethertheyareprivateorpublicarefailingtoadapttothedigitalrevolutiontheuniversityapproachhasntchangedin100yearsandgettingajobinthisdayandagerequiresadifferentupdatedapproachppironhackprovideshighimpactcondensededucationalexperienceswithoneobjectiveinmindgettingstudentsfromzerotojobreadyinthreemonthsbecauseofthiswebelievetherewillalwaysbeagapinthemarketwherewecanprovidevalueregardlessweareworkinghardtomakeiteasierforstudentstohaveaccesstoourprogramsbyprovidingfinancingoptionsthroughbothprivateandpublicchannelsppstrongwhatwillmakeironhackstandoutamongstthecompetitioninberlinstrongppwearelaserfocusedononeobjectiveenablingstudentstosecureajobwithinthreemonthsaftergraduationppsohowdoweachievethatwellfirstwemakeourstudentsemployableweconstantlyupdateourcurriculumtoensureweteachthelatesttechnologiesthatemployersactuallydemandandwehireprofessionalinstructorswithrealworldexperiencetoteachthemweprovidecareerguidanceandsupportthroughoutthewholeprogramandstudentsarepreparedfortechnicalinterviewsbehavioralinterviewsetcwebelieveinlearningbydoingsostudentscomeoutwiththreeprojectstoshowtotheworldoncetheyvegraduatedppwealsofocusongivingourstudentsaccesstothoseopportunitiesbysecuringhiringpartnersandorganizingacareerweekwherestudentsgettomeetprospectiveemployersattheendofeachcohortppstrongwhattypesofapplicantsareyoulookingtoenrollintheberlincampusstrongppwerelookingforcareerchangerstherearesomanytalentedpeopleinberlinwhohavemovedherelookingforopportunitiesironhackgivesyouthepossibilitytospecializeandlandajobinthreemonthswecatertoanyonewhorealizestheimportanceoflearningnewdigitalskillsandhasapassiontolearnppstronghowmanystudentsdoesironhackplantoaccommodateattheberlincampusstrongppweregoingtohavethreecohortsin2018thefirstonestartsinmaythesecondoneinjulyandthethirdoneinoctoberforthefirstcohortwerelookingatabout20studentswedontliketohavecohortsmuchbiggerthanthatbecausewewanttoguaranteequalitymovingforwardwewilllooktogrowourteamandnumberofcohortsalwaysensuringstudentshavethebestpossibleexperienceppstronghowdoyousourcenewinstructorswhatwillbetheinstructorstudentratiostrongppwehirerealprofessionalswhohaveworkedinthetechindustryourleadinstructorforberlinwasworkingattheironhackpariscampusastheleadinstructorforayearandhewantedtomovetoberlinhesoneofthosepeoplewhohasbeencodinghiswholelifehestartedhisowncompanyandhesworkedintheindustryasaleaddeveloperhehasaveryimpressivebackgroundandhealreadyknowstheironhackbootcampandourcoursesothatsalwaysaplusppatironhackaleadinstructorleadsthewholeprogramandthenwehaveteachingassistantswhoarealsocodingprofessionalsforeveryeightstudentstoprovidesupportandguidestudentsthroughthecourseforexampleinthefirstcohortifwehave20studentswewouldhaveoneleadinstructorandtwoorthreeteachingassistantshavinggonethroughthebootcampmyselfifeeltheteachingassistantsplayanincrediblyimportantrolebecausetheyprovidevaluableassistancethroughoutthewholebootcampppstrongwillthecurriculumatironhackberlinbethesameasotherironhackcampusesstrongppironhackscurrentcurriculumisdividedintothreemodulesfrontendhtmlcssampjavascriptbackendmeanstackandmicroserviceswithangular2apiswearealwayslookingtomakeourcurriculumbetterwewereteachingrubyonrailsbutwedecidedtomoveontoalsosomethingialwaystellprospectivestudentsisthatyoulearnhowtolearnigraduatedfromtherubyonrailscourseandwasabletolearnnodejsonmyownjustthenextmonthppwereincontactwithalotofstartupssowemakesureourcurriculumisexactlywhatemployersneedanddemandwemakeapointtokeepthecurriculumconsistentacrossallcampusesthisallowsustohaveafeedbackloopateverycampusandensureconsistentqualitysowerestickingwiththesamecurriculumineverycampusfornowbutalwayslookingtoiterateandmakeitbetterppstrongtellusabouttheberlincampuswhatistheclassroomlikestrongppaswithmostofournewcampuseswellbelocatedataweworkcoworkingspaceanewbuildingcalledatriumtowerrightonpotsdamerplatzthespaceitselfisabigroomwhichholdsaround40studentswhenwevisitedthespaceaboutamonthandahalfagowefellinlovewiththefacilitiesthecampusisaccessiblefromanywhereintownbecauseofitscentrallocationandithasanincredibleterraceatthetopppwhenyouregoingtobelearningforthreemonthsinanincrediblyintenseprogrambeinginanicespacewithamenitiescoffeesnacksreallyniceviewsissomethingreallyimportantppstrongwhataresomeexamplesofthetypesofjobsyouenvisionyourberlingraduateslandingafterstrongstrongbootcampstrongstrongstrongppwehaveaverystrongreputationworldwidewithaglobalcommunityofalumniandpartnersforexamplewejustsignedupn26amobilebanktobeourhiringpartnerwereintalkswithseveralberlincompaniestosignthemupashiringpartnerstooattheendofeachnineweekcourseweprepareprospectiveemployerstomeetwiththestudentslikeisaidwereveryfocusedoncareerchangersandensuringourstudentsgetajobwithinthreemonthsaftergraduationppinthepastwevehadcompanieslikegoogletwittervisarocketinternetandmagicleaphireironhackgraduatessoinberlinwerelookingforthesameprofilesthoseareglobalcompanieswealreadyhavepartnershipswithsoourstudentsalreadyhaveaccesstothatpoolofemployersthenlocallywearelookingforthemostdisruptivecompaniesthatarereadytohireentryleveljuniordevelopersppstrongdoyouenvisionberlingradsstayinginberlinisyourfocustogetpeoplehiredinthecitywheretheystudiedstrongppwehaveabigfocusonhavingaglobalcommunitysowereallyliketheideathatourstudentscanaccessallthecommunitiesinallourcitiesforexampleirecentlypassedontheresumesoftwograduatesfromthemadriduxuicoursetoberlinbasedn26itsuptoeachgraduatetodecidewhichcitytoworkinppalotofpeoplewanttostayintheirhomecityandothersdontsowecatertobothwetrytogiveopportunitiestogoabroadandoptionstoworkinthelocalmarketppstrongwhatwouldyourecommendacompletebeginnerdotolearnmoreaboutthetechsceneinberlinstrongppiwouldrecommendgoingtoasmanymeetupsandeventsasyoucanialwaystellpeoplethatyouneverknowwhatopportunitiescouldariseifyouputyourselfoutthereandstarttalkingtopeopleweactuallyjustwroteablogpostaboutahrefhttpsmediumcomironhackhowtolandatechjobinberlinbb391a96a2c0relfollowtarget_blankhowtolandthetechjobinberlinaandonepieceofadviceistominglejustnetworkppthenofcourseiwouldrecommendgoingtotheironhackmeetupsthereareabunchofworkshopsinberlinandourinformalnetworkishugeahrefhttpswwwmeetupcomironhackberlinrelfollowtarget_blankweredoingonefreeworkshopeveryweekaandwelldosomebiggereventsaswellppstrongwhatadvicedoyouhaveforsomeonewhosthinkingaboutattendingacodingstrongstrongbootcampstrongstronginberlinandconsideringironhackstrongppformmyexperienceasanalumithinkitsallabouttheattitudewhenyougointoacodingbootcamptheresalwaysthisfeelingwhereyourealittlebitscaredbecauseitissomethingreallydemandingpeoplehaveanaturaltendencytoberesistanttolearnsomethingsotechnicalbutjuststartcodingitsnotasdifficultasitmayseemandhavingtherightguidanceiskeywereactuallylaunchingacoolchallengeinberlinahrefhttpberlincodingchallengecomrelfollowtarget_blankafreeonlinecourseatoencouragepeopletogettheirfeetwetwithcodingppalotmorepeoplethanwebelievehavetheaptitudeforitandactuallybecomereallygoodprogrammersyoujusthavetotakealeapoffaithandcommittothreemonthsofveryintenseworkwehavea90placementrateandwhilewedohavearigorousadmissionsprocessthemajorityofourstudentsgethiredirecommendpeopletojustgoforiticanguaranteethatifyouhavetherightattitudeyoullsucceedppstrongfindoutmoreaboutahrefhttpswwwcoursereportcomschoolsironhackrelfollowtarget_blankironhackabyreadingcoursereportreviewscheckoutahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blanktheironhackwebsiteastrongpdivclassauthorbiobootstraph4abouttheauthorh4imgclassimgroundedpullleftsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpgalthttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpglogopplaurenisacommunicationsandoperationsstrategistwholovestohelpothersfindtheirideaofsuccesssheispassionateabouttechonologyeducationcareerdevelopmentstartupsandtheartsherbackgroundincludescareeryouthdevelopmentpublicaffairsnbspandphilanthropynbspsheisfromrichmondvaandnowcurrentlyresidesinlosangelescappdivliliclasspostdatadeeplinkpathnewsjanuary2018codingbootcampnewspodcastdatadeeplinktargetpost_966idpost_966h2ahrefblogjanuary2018codingbootcampnewspodcastjanuary2018codingbootcampnewspodcastah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan1312018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsrevaturerevatureaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolselewaeducationelewaeducationaaclassbtnbtninversehrefschoolsholbertonschoolholbertonschoolaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolsblocblocaaclassbtnbtninversehrefschoolseditbootcampeditaaclassbtnbtninversehrefschoolsandelaandelaaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsgalvanizegalvanizeaaclassbtnbtninversehrefschoolscodingdojocodingdojoaaclassbtnbtninversehrefschoolsthinkfulthinkfulaaclassbtnbtninversehrefschoolsredacademyredacademyaaclassbtnbtninversehrefschoolsorigincodeacademyorigincodeacademyaaclassbtnbtninversehrefschoolshackbrightacademyhackbrightacademyaaclassbtnbtninversehrefschoolscodercampscodercampsaaclassbtnbtninversehrefschoolsmuktekacademymuktekacademyappiframeheight300srchttpswsoundcloudcomplayerurlhttps3aapisoundcloudcomtracks392107080ampcolor23ff5500ampauto_playfalseamphide_relatedfalseampshow_commentstrueampshow_usertrueampshow_repostsfalseampshow_teasertrueampvisualtruewidth100iframeppstrongwelcometothefirstnewsroundupof2018werealreadyhavingabusy2018wepublishedourlatestoutcomesanddemographicsreportandwereseeingapromisingfocusondiversityintechinjanuarywesawasignificantfundraisingannouncementfromanonlinebootcampwesawjournalistsexploringwhyemployersshouldhirebootcampandapprenticeshipgraduateswereadaboutcommunitycollegesversusbootcampsandhowbootcampsarehelpingtogrowtechecosystemspluswelltalkaboutthenewestcampusesandschoolsonthesceneandourfavoriteblogpostsreadbeloworahrefhttpssoundcloudcomcoursereportepisode23january2018codingbootcampnewsrounduprelfollowtarget_blanklistentothepodcastastrongbrpahrefblogjanuary2018codingbootcampnewspodcastcontinuereadingrarraliliclasspostdatadeeplinkpathnewscampusspotlightironhackmexicocitydatadeeplinktargetpost_945idpost_945h2ahrefschoolsironhacknewscampusspotlightironhackmexicocitycampusspotlightironhackmexicocityah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan1242017spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappahrefhttpswwwcoursereportcomschoolsironhacknewscampusspotlightironhackmexicocityrelfollowtarget_blankimgaltironhackcampusmexicocitysrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4129s1200ironhackcampusmexicocitypngappstrongglobaltechschoolironhackislaunchinganewcampusinmexicocityonjanuary152018wespokewithahrefhttpswwwcoursereportcomschoolsironhackrelfollowtarget_blankironhackasvpofoperationsampexpansionalexandreberrichetolearnaboutthemexicocitytechecosystemandwhythereisagrowingdemandfordevelopersintheareathisschoolusesfeedbackfromtheircampusesaroundtheworldtocontinuallyimprovethecurriculumdiscoverhowahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagerelfollowtarget_blankironhackacanconnectyoutoa1000networkofalumnihelpyouwithjobplacementandgetsometipsforyourapplicationstrongppspanstylefontsize16pxstrongqampastrongspanppstrongwhatsyourbackgroundwhatdrewyoutowanttoworkwithironhackstrongppafterstartingmycareerinprivateequityijoinedjumiaarocketinternetcompanyalsocalledtheafricanamazoniwasheadofoperationsinnorthafricaandthenmanagingdirectoroftunisiaigotintouchwitharielandgonzalothefoundersofironhackandwasreallyinspiredbytheirvisionalsosinceiactuallyattendedacodingbootcampmyselfiwasexcitedtocomeandworkinthisindustryisawthegreatpotentialthebootcampmodelhadineuropeandalsolatinamericaiwaskeentohaveanimpactonpeopleslivessoiwassuperreceptivetoourconversationandworkingwithironhackitwasagreatfitppstrongasthevpofexpansioncanyoudescribeyourrolestrongppasvpofexpansioniworkwiththefounderstocreateastrategyanddecidewhichmarketsmakesenseforustoopeninnexttheniminvolvedwiththeoperationspreparationwhereiactuallylaunchthenewmarketspptherearethreemainareastoconsiderwhenlaunchinginanewmarketthefirstishumanresourceswewanttobuildanawesometeamincludingageneralmanagerweweresuperexcitedtofindagreatgmforourmexicocampusmarketingandbrandawarenessisnumbertwowhenyourelaunchinginanewmarketyouwanttoincreasethebrandawarenessandconvinceyourfirststudentsofthebenefitsofthenewcampusitcanbedifficultinanewmarketbecausewearestartingfromscratchsowehavetoleveragetheuseofmarketingchannelssuchaspublicrelationseventsandpartnershipstointegrateourselvesintothelocalecosystemthethirdareaislegalmakingsurethelegaladministrationiscompletedifyousucceedinthosethreeareasyouarereadytoopeninanymarketppstrongwhatstoodoutaboutmexicocitywhydidironhackchoosetoopenacampustherestrongppweareoneoftheleadersinthecodingbootcampindustrygloballyandwevebeenthinkingaboutopeninginlatinamericaforquitesometimelatinamericaisagreatmarketbecausethereissomuchdemandfortechskillsbutthereisalimitednumberofestablishedbootcampsintheareain2019itisestimatedtherewillbeadeficitof150000itjobsinmexicosowecanhaveagreatimpactonthatwewanttotrainthenewgenerationoftechnologyprofessionalstojointheindustrynotmanyifanybootcampshavecampusesintheuseuropeandinlatinamericasolatinamericawasveryattractivetousppmexicocitywasthepreferredchoicebecauseithasaboomingtechecosystemitsoneofthelargestmarketsforstartupsmexicocityistheentryformanytechcompaniesmovingtolatinamericafacebookamazonandsoonsomanytechmultinationalsaremovingintheecosystemisnotjustboomingitsalsomaturingsignificantlywellasthereareplentyofvcsacceleratorsandcompanybuildersppfinallyitsaprettyfriendlyenvironmentforinternettechnologyandcomputerscienceitsabigmarkettopenetratebutitslessdifficultthansomeothermarketsbecausetherearenoglobalcompetitorsthereareobviouslysomelocalcompetitorswhomwerespectalotbutwearegoingtogivethemexicocityecosystemaccesstoironhacksglobalcommunitywhichisalreadypresentinmiamiparisbarcelonaandmadridwethinkbuildingtieswithinthosemarketswillexcitestudentslearninginmexicocityppstrongthereareonlyafewstrongstrongbootcampsstrongstronginmexicocityhowwillironhackstandoutonceotherstrongstrongbootcampsstrongstrongstarttopopupstrongppironhackwillstandoutbecauseweareglobalwehavealreadylearnedsomuchaboutrunningabootcampbecauseeachmarketweoperateinhasdifferentstandardsanddifferentchallengessobybringingthisexperienceintothemarketweareraisingthecodingbootcampstandardsformexicocityironhackhasgraduated1000studentssowehavealargecommunitywehavealumniworkingforamazongoogleandibmwhichisabigpluswehavegreatreviewsoncoursereportandwehavegreatstudentsatisfactionforourcurriculumoverthefouryearswehavebeenoperatingwehavecontinuedtoimproveourteachingmethodsppstrongwhatistheironhackmexicocitycampuslikestrongppourofficesareattheweworkinsurgentescoworkingspaceanditsamazingtoworkalongsidedifferentmexicocitystartupsandseehowdynamicthespaceisitssuperexcitingwereinthecolonianapoleswhichislikeadistrictofstartupsatweworkwetakeuptworoomsof20x30feeteachwhichholdbetween15to20studentswewillstartwithoneclassandtheneventuallyhavetwoclassesrollingatthesametimeoneuxuidesigncourseandonewebdevelopmentcourseppourobjectiveatironhackisnotquantitativeitsmorequalitativesowearenotgoingtoacceptstudentsiftheydonthavetherequiredtechnicallevelweareselectivewithstudentsandwedontaccepteveryoneppstrongcouldyoudescribetheironhackapplicationprocessisitthesameacrosscampusesstrongppyeswehavetwointerviewsonepersonalinterviewandonetechnicalinterviewyoucanmakeitthroughthetechnicalinterviewevenifyoudonthavetonsofknowledgebutyoumustbeahardworkerifyouprepareyourcaseyoucanmakeitinbutwewanttobeselectiveppbeforethebootcampstartswealsohavepreworkandtheobjectiveistohaveeveryoneatthesameknowledgelevelwhenwestartthecoursepeoplearespendingalotoftimeandmoneytoreallyimprovesothecoursesareveryintensiveforthatreasonppstrongironhackteachesuxuidesignandwebdevelopmentwillyoubeteachingthesamecurriculuminmexicocitystrongppwecollectfeedbackineachmarketandwitheachpieceoffeedbackwereceiveweimproveourcurriculumlittlebylittlewetrustandusethesamecurriculumineverymarketyoucantscaleefficientlyifyouhaveeachmarketdoingdifferentclassesthefeedbackloopsinallthedifferentmarketsallowustohavethebestqualityprogramidontthinkwecouldhavethebestqualityifwemadetoomanyspecificitiesforthevariouscitiesppstronghowmanyinstructorswillyouhaveatthemexicocitycampusstrongppthenumberofinstructorswillgrowasthenumberofstudentsandthenumberofclassesincreaseforinstanceatthepariscampusfourmonthsafterlaunchingwehadseventeachersitwillbethesameformexicosowellstartwithoneinstructorandthenafterafewmonthssevenandafteroneyearmaybe10weregoingtoseehowfastitgrowsppstrongsinceironhackisaglobalstrongstrongbootcampstrongstronghowdoyouhelpwiththejobsearchandplacementwhatsortofjobsdoyouexpectgraduatestogetstrongppwearetryingtobuildpartnershipswithliniotipandmanymexicanstartupswherewecanplaceourstudentscompanieswillbeinvitedtohiringweekattheendofthebootcamptoseewhattypeoftalentweproducewellstartbytargetingcompaniesinmexicocityandthenwellexpandandmakepartnershipswithcompaniesinguadalajaraandmonterreyasasecondstepppmostofourgraduatesbecomejuniordeveloperswehavelessentrepreneursandmorejuniordevelopersironhackfocusesoncareerchangersandtryingtohelpthemtoachievetheirambitionssothatswhywearesofocusedonplacementwithironweekandaplacementmanagerineachmarketppstrongisitprettynormalforgraduatestostayinthecitywheretheystudiedstrongppweareseeinggraduatesstayinthecitywheretheystudiedunlesstheyrecomingfromabroadwehaveafewinternationalstudentsandcurrentlymostofthemgotothebarcelonaandpariscampuseswedontknowaboutmexicocitygraduatesyetbutmostofourapplicationssofararefrommexicowithsomeinternationalapplicantsaswellppstrongifsomeoneisabeginnerandthinkingaboutattendingacodingbootcampinmexicocitylikeironhackdoyouhaveanymeetuporeventsuggestionsstrongppyesironhackisdoingahrefhttpswwwmeetupcomesironhackmexicoevents245056900utm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blankahugefulldayeventatweworkondecember9thaanyonecanattendanditsfreethisisagreatopportunitytolearnabouttechdiscoverthemexicocityecosystemanddecideifyouwanttoapplytoironhackppstrongwhatadvicedoyouhaveforpeoplethinkingaboutattendingacodingbootcamplikeironhackstrongppthefirstthingisitsanamazingcommitmentandifyouareapplyingforgoodreasonsandhavethetechnicalabilityyouwillbeacceptedandgetthebestexperienceitsaonceinalifetimeexperiencetospendnineweekschangingyourcareeryouwilllearnsomuchmeetnewcompaniesandgethiredifyouwanttolearnmoreahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagerelfollowtarget_blankgototheironhackwebsiteadownloadtheapplicationguideandcometosomeeventswehaveameetupgroupandfacebookpageyoucanreadplentyofreviewsoftheschooloncoursereportifyouaresureofyourmotivationsyouareahardworkerandyourecommittedimsureyouwillbeacceptedppstrongdoyouhaveanyadditionalcommentsabouttheironhacksnewmexicocitycampusstrongppweareveryexcitedabouthavinganamazingteamatweworkinmexicocityweareatthecenterofthestartupecosystemsoithinkitwillbeanamazingexperienceforourstudentsppstrongreadahrefhttpswwwcoursereportcomschoolsironhackrelfollowtarget_blankironhackreviewsaoncoursereportandcheckouttheahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagerelfollowtarget_blankironhackwebsiteastrongpdivclassauthorbiobootstraph4abouttheauthorh4imgclassimgroundedpullleftsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpgalthttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpglogopplaurenisacommunicationsandoperationsstrategistwholovestohelpothersfindtheirideaofsuccesssheispassionateabouttechonologyeducationcareerdevelopmentstartupsandtheartsherbackgroundincludescareeryouthdevelopmentpublicaffairsnbspandphilanthropynbspsheisfromrichmondvaandnowcurrentlyresidesinlosangelescappdivliliclasspostdatadeeplinkpathnewsmeetourreviewsweepstakeswinnerluisnagelofironhackdatadeeplinktargetpost_892idpost_892h2ahrefschoolsironhacknewsmeetourreviewsweepstakeswinnerluisnagelofironhackmeetourreviewsweepstakeswinnerluisnagelofironhackah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan892017spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappahrefhttpswwwcoursereportcomschoolsironhacknewsmeetourreviewsweepstakeswinnerluisnagelofironhackrelfollowimgaltironhacksweepstakeswinnerluisnagelsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files3764s1200ironhacksweepstakeswinnerluisnagelpngappstrongthankstostrongstrongbootcampstrongstronggraduateswhoenteredoursweepstakescompetitiontowina500amazongiftcardbyleavingaverifiedreviewoftheirstrongstrongbootcampstrongstrongexperienceoncoursereportthistimeourluckywinnerwasluiswhograduatedfromironhackinmadridthisaprilwecaughtupwithhimtofindoutabitabouthiscodingstrongstrongbootcampstrongstrongexperienceandwhyhedecidedtoattendironhackstrongppstrongwanttobeournextreviewssweepstakeswinnerahrefhttpswwwcoursereportcomwriteareviewrelfollowtarget_blankwriteaverifiedreviewofyourcodingastrongahrefhttpswwwcoursereportcomwriteareviewrelfollowtarget_blankstrongbootcampstrongaahrefhttpswwwcoursereportcomwriteareviewrelfollowtarget_blankstrongexperienceherestrongaph3strongmeetluisstrongh3pstrongwhatwereyouuptobeforeironhackstrongppbeforedoingtheironhacksuxuibootcampihadalongcareerworkingasamarketingandadvertisingdesignerppstrongwhatsyourjobtitletodaystrongppimauxuidesigneratdevialabauxuiandsoftwaredevelopmentconsultingagencymainlyfocusedonstartupsandbasedinmadridwhatmakesdevialabspecialisthatwelauncheveryprojectlikeitwereourownandalsoworkreallyclosewiththeentrepreneurppstrongwhatsyouradvicetosomeoneconsideringironhackoranothercodingstrongstrongbootcampstrongstrongstrongppmyadvicetoanyoneconsideringironhackisdoititisagreatopportunityyouarebringingyourselfitmaybehardsometimesbutyouwillneverregretitppbeforestartingfreeyourmindandyouragendaandbereadyforagreatimmersiveexperienceyouwillgrowasmuchasyourewillingtoandyouwillnotonlylearnbutyouwillalsoexperiencewhatyourjobisgoingtobeandalsoyouwillmeetamazingprofessionalsnetworkingisoneofthebestopportunitiesofferedbyabootcamplikeironhackppstrongcongratsahrefhttpswwwtwittercomluisnagelrelfollowluisatolearnmoreahrefhttpswwwcoursereportcomschoolsthinkfulreviewsrelfollowtarget_blankreadironhackreviewsaoncoursereportorahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagerelfollowtarget_blankvisittheironhackwebsiteastrongppstrongwanttobeournextreviewssweepstakeswinnerahrefhttpswwwcoursereportcomwriteareviewrelfollowtarget_blankleaveaverifiedreviewofyourcodingbootcampexperiencehereastrongpppdivclassauthorbiobootstraph4abouttheauthorh4imgclassimgroundedpullleftsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpgalthttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpglogopplaurenisacommunicationsandoperationsstrategistwholovestohelpothersfindtheirideaofsuccesssheispassionateabouttechonologyeducationcareerdevelopmentstartupsandtheartsherbackgroundincludescareeryouthdevelopmentpublicaffairsnbspandphilanthropynbspsheisfromrichmondvaandnowcurrentlyresidesinlosangelescappdivliliclasspostdatadeeplinkpathnewsjuly2017codingbootcampnewspodcastdatadeeplinktargetpost_888idpost_888h2ahrefblogjuly2017codingbootcampnewspodcastjuly2017codingbootcampnewsrounduppodcastah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan812017spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsgeorgiatechbootcampsgeorgiatechbootcampsaaclassbtnbtninversehrefschoolstheironyardtheironyardaaclassbtnbtninversehrefschoolsdevbootcampdevbootcampaaclassbtnbtninversehrefschoolsupacademyupacademyaaclassbtnbtninversehrefschoolsuscviterbidataanalyticsbootcampuscviterbidataanalyticsbootcampaaclassbtnbtninversehrefschoolscovalencecovalenceaaclassbtnbtninversehrefschoolsdeltavcodeschooldeltavcodeschoolaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolssoutherncareersinstitutesoutherncareersinstituteaaclassbtnbtninversehrefschoolslaunchacademylaunchacademyaaclassbtnbtninversehrefschoolssefactorysefactoryaaclassbtnbtninversehrefschoolswethinkcode_wethinkcode_aaclassbtnbtninversehrefschoolsdevtreeacademydevtreeacademyaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsunitfactoryunitfactoryaaclassbtnbtninversehrefschoolstk2academytk2academyaaclassbtnbtninversehrefschoolsmetismetisaaclassbtnbtninversehrefschoolscodeplatooncodeplatoonaaclassbtnbtninversehrefschoolscodeupcodeupaaclassbtnbtninversehrefschoolscodingdojocodingdojoaaclassbtnbtninversehrefschoolsuniversityofrichmondbootcampsuniversityofrichmondbootcampsaaclassbtnbtninversehrefschoolsthinkfulthinkfulaaclassbtnbtninversehrefschoolsuniversityofminnesotabootcampsuniversityofminnesotabootcampsaaclassbtnbtninversehrefschoolshackbrightacademyhackbrightacademyaaclassbtnbtninversehrefschoolsfullstackacademyfullstackacademyaaclassbtnbtninversehrefschoolsuniversityofmiamibootcampsuniversityofmiamibootcampsappiframeheight100srchttpswsoundcloudcomplayerurlhttps3aapisoundcloudcomtracks335711318ampauto_playfalseamphide_relatedfalseampshow_commentstrueampshow_usertrueampshow_repostsfalseampvisualtruewidth100iframeppstrongneedasummaryofnewsaboutcodingbootcampsfromjuly2017coursereporthasjustwhatyouneedweveputtogetherthemostimportantnewsanddevelopmentsinthisblogpostandpodcastinjulywereadabouttheclosureoftwomajorcodingbootcampswedivedintoanumberofnewindustryreportsweheardsomestudentsuccessstorieswereadaboutnewinvestmentsinbootcampsandwewereexcitedtohearaboutmorediversityinitiativesplusweroundupallthenewcampusesandnewcodingbootcampsaroundtheworldstrongpahrefblogjuly2017codingbootcampnewspodcastcontinuereadingrarraliliclasspostdatadeeplinkpathnewscampusspotlightironhackparisdatadeeplinktargetpost_857idpost_857h2ahrefschoolsironhacknewscampusspotlightironhackpariscampusspotlightironhackparisah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan5262017spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltcampusspotlightironhackparissrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files3440s1200campusspotlightironhackparispngppstrongahrefhttpswwwcoursereportcomschoolsironhackrelfollowtarget_blankironhackaisaglobalwebdevelopmentstrongstrongbootcampstrongstrongwithlocationsinmadridmiamibarcelonaandnowpariswespokewithahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blankironhackasgeneralmanagerforfrancefranoisstrongstrongfillettestrongstrongtolearnmoreabouttheirnewpariscampuslaunchingjune26thfranceisthesecondlargesttechecosystemineuropelearnwhyironhackchosetoexpandtotheareareadhowthestrongstrongbootcampstrongstrongwillstandoutfromtherestandseewhatresourcesareavailabletobecomeasuccessfulstrongstrongbootcampstrongstronggradinparisstrongppstrongfirstasthefrancegeneralmanagertellmehowyouvebeeninvolvedwiththenewironhackcampusstrongppsureasageneralmanagerihavebeeninvolvedinallthedimensionsrelatedtothenewcampusfindinganamazingplaceforourstudentsrecruitingateamofaplayerssettingupthedocsandprocessesandsoonihavebeenworkingwithalexourheadofinternationalexpansionwhohasbeentremendouslyhelpfulwehaveworkedsuperhardoverthelastfewweekstomakesurethatourpariscampuswillbeonthesamestandardsastheothersppstrongwhatsyourbackgroundandhowdidyougetinvolvedwithstrongstrongbootcampsstrongstrongwhatdrewyoutowanttoworkwithironhackstrongppiwascomingbackfromsanfranciscowhereiwasworkingasvpofstrategyandbusinessdevelopmentforahrefhttpswwwcodingamecomstartutm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blankcodingameaoneofmyvcfriendstoldmethatarielandgonzalothecofounderswerelookingforsomeonetolaunchironhackinfranceimetthetwoofthemandimmediatelyembracedtheirvisionandgotimpressedbytheirabilitytoexecutefastandwelligotsuperexcitedbytheprojectandtheteamsoacoupleofdayslateriwasinmiamitoworkonthestrategyandthelaunchplanforfranceitsbeen3monthsnowandhonestlyiveneverbeenhappiertowakeupinthemorningandstartanewdayppstrongironhackislaunchingtheirpariscampusonjune26thwhyisparisagreatplaceforacodingstrongstrongbootcampstrongstrongcouldyouexplainironhacksmotivationtoexpandtherestrongppintermsoffundingfranceisnowthe2ndlargesttechecosystemineuroperightafterenglandoverthelast5yearsithasgrownexponentiallyandisnowoneofthekeytechhubsintheworldtakeahrefhttpsstationfcorelfollowtarget_blankstationfaforinstancethankstoxaviernielcofounderoffreepariswillnowhavethebiggestincubatorintheworldthatgrowthhasfueledanincreasingdemandfornewskillsinthetecheconomyandthetalentshortageisnotfilledbythetraditionaleducationplayerstheresanamazingopportunityforustoexpandhereandwelldoeverythingwecantoreachourtargetsppstrongthereareafewothercodingstrongstrongbootcampsstrongstronginpariswhatwillmakeironhackstandoutamongstthecompetitionstrongppseveralinitiativesandplayershaveappearedoverthelastcoupleofyearswhichshowsyouhowdynamicthemarketisithink3elementswillsetironhackapartfromthecompetitionfirstourcoursesarefocusedonthelatesttechnologiesforexamplefullstackjavascriptforwebdevelopmentandweconstantlyiteratetoimproveboththecontentandtheacademicexperiencethenwededicatealargeshareofthecourse6070tohandsonreallifeapplicationsstudentsworkonrealprojectssubmittedbypartnersorbythemselvesiftheywanttocreatetheirstartupbusinesslastwehelpwiththeplacementofourstudentsiftheyrelookingforajobcoachingfortechnicalandbehavioralinterviewsconnectionstocompaniesstartupseventsetcwehaveanaverageplacementrateof90after3monthsacrossourcampusesppstrongletsdiscussthepariscampuswhatistheclassroomlikewhatneighborhoodisitinstrongppthecampusislocatedinthenewspaceopenedbyweworkitislocatedinthe9tharrondissementneartheparisoperaitisaccessiblevia3metrolines8buslines2bikesharingstationsand2carsharingstationsitwillbeopen247forourstudentspptheplaceisabsolutelymagnificentbothintermsofdesignandcommunitystudentswillenjoyalargeclassroomclosetothepatioandmeetingworkingroomstocompletetheirprojectsandassignmentsppstrongwhatwebdevelopmentanduxuidesigntracksorlanguagesareyouteachingatthiscampusandwhyaretheonesyouvechosenparticularlypopularorrelevantinparisstrongppthecorecurriculumisthesameacrossthedifferentcampusestomakesurestudentshavethesameacademicexperienceandthatwehaveastrongexpertiseinourareathenwetailorthementorstheeventsandtheprojectstothelocalspecificitiesofthestudentsandoftheecosystemsoforwebdevelopmentwellbefocusingonfullstackjavascriptbutwellbeintegratingeventsandmentorsaroundframeworksreallypopularhereexreactormeteorandindustriesthataretherisingtrendsexonlinemediaandentertainmentppstronghowmanyinstructorsandormentorswillyouhaveinparisstrongppwellhavealeadinstructorwhoisaprofessionaldeveloperandhighlyinvolvedintheopensourcecommunityhehasseveralyearsofexperienceinstartupsanditservicesagencieshellbeassistedbyatawhoisabitmorejuniorbutpassionateabouteducationandteachingstudentspluswellhaveanetworkof1520mentorstohelpandcoachstudentsforcodingaswellasformanagementmentorswillbechosenbasedontheprojectsofthestudentsalsothestudentsofthefirstwebdevelopmentsessionwillbesponsoredbyflorianjourdaflorianwasthe1stengineeratboxandscaledtheirdevteamfrom2to300peoplehespent8yearsinthesiliconvalleyandisnowchiefproductofficeratbayesimpactanngofundedbygooglethatusesmachinelearningtosolvesocialproblemslikeunemploymentppstronghowmanystudentsdoyouusuallyhaveinacohorthowmanycanyouaccommodatestrongppforthatfirstcohortweplantohave20studentsmaximumbecausewewanttomakesureweprovidethebestexperiencethatwillensureastrongmonitoringofstudentsaswellasaperfectoperationalexecutiononoursideforthenextcohortswellincreasethenumberofstudentsbutwewontgoabove30andwellrecruit1or2moretastokeepthesamequalityppstrongwhatkindofhourswillstudentsneedtoputintobesuccessfulstrongppstudentsoftenaskthatquestionanditsalwayshardtoanswereverythingdependsontheirlearningcurveonaveragestudentsworkbetween50to70hoursaweekmainlyonprojectsandassignmentsbutwerefullytransparentonthisyoucantlearnrealhardskillsandgetajobin3monthswithoutfullydedicatingyourselfwemakesurethattheatmosphereisasgoodasitcanbesothatstudentswontseetimepassingbyppstronghowisyourcampussimilarordifferenttotheotherironhackcampusesstrongppithinkthatourcampusisprettysimilartomiamiswearelocatedinanamazingcoworkingspaceinaveryniceneighborhoodandwithlotsofstartupsaroundthemaindifferencewouldbeourrooftoponthe8thfloorofthebuildingwhereweregularlyorganizeeventsandlunchesppstronghowareyouapproachingjobplacementinanewcitydoesironhackhaveanemployernetworkalreadystrongppjobplacementisoneoftheelementswetailortothelocalrealitiesandneedswehavealreadypartneredwith20techcompaniessuchasdrivyworldleaderinpeertopeercarrentaljumiatheequivalentofamazoninafricaandmiddleeaststootieeuropeleaderinpeertopeerserviceskimaventuresvcfundofxaviernielwith400portfoliocompaniesetcusuallytheyarelargestartupsfromseriesatoseriesdlookingtohirewebdevelopersasagmitwillbepartofmyjobtosupportandhelpstudentsaccomplishtheirprofessionalprojectswithouremployerpartnersppstrongwhattypesofcompaniesarehiringdevelopersinparisandwhytypesofcompaniesdoyouexpecttohirefromironhackspariscampusstrongppithinkthereare3typesofcompaniesthatcouldhirewebdeveloperswhograduatedfromironhackcorporationsintelecommediatechnologystartupsfromseriesatoseriesdanditservicescompaniesthedemandisreallyintenseforthelasttwooptionsastheyrelookingforpeoplemasteringthelatesttechnologiesinhighvolumesbasedontheenthusiasmtheyveexpressedwhentalkingwithironhackweknowtheyllbegreatrecruitingpartnersppstrongwhatsortofjobshaveyouseengraduatesgetatotherironhackcampusesandwhatdoyouexpectforironhackparisgraduatesdotheyusuallystayinthecityaftergraduationstrongppbasedonthemetricsofothercampusesusually5060ofpeoplejoinastartupasanemployeeajuniorwebdeveloperprojectmanagerorgrowthhacker2030createtheirownstartupafterthecoursewhile2030becomefreelancersusuallyinwebdevelopmentandworkonaremotebasiswellhaveagoodshareofstudentswhoarenotfromfranceoriginallysowethinksomeofthemmightleaveparisafterthecoursebutwellhelpthemfindtherightopportunityabroadandwellkeepconstantinteractionwiththosestudentsppstrongwhatmeetupsorresourceswouldyourecommendforacompletebeginnerinpariswhowantstogetstartedstrongppfrancehassomegreatplayersinthefieldifyouwanttogetanintrotojavascriptiwouldrecommendyouvisitopenclassroomscodecademyorcodecombatthenintermsofmeetupsthefamilyandnumaaretwoacceleratorswithoutstandingweeklyeventssomeofthemarerelatedtoonespecificcodingtopicandtheyreusuallyapprehendedatabeginnerlevelppstronganyfinalthoughtsthatyoudlikeourreaderstoknowaboutironhackparisstrongppwewanttobuildsomethingthatisnothinglikewhatexistsinparisin3monthsyoullbeoperationalinwebdevelopmentyoullmeetawesomepeoplestudentsmentorsentrepreneursandyoullaccomplishyourprofessionalprojectsendusanemailtoknowmoreatahrefmailtoparisironhackcomsubjectim20interested20in20ironhack20parisrelfollowparisironhackcomawehaveafewseatsleftforthesessionstartingonjune26thnextsessionwillstartonseptember4thifyouwanttoapplyjustsendusyourapplicationthroughthisahrefhttpswwwironhackcomenwebdevelopmentbootcampapplyrelfollowtarget_blanktypeformappstrongreadmoreahrefhttpswwwcoursereportcomschoolsironhackreviewsrelfollowtarget_blankironhackreviewsaandbesuretocheckouttheahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blankironhackwebsiteastrongpdivclassauthorbiobootstraph4abouttheauthorh4imgclassimgroundedpullleftsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpgalthttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpglogopplaurenisacommunicationsandoperationsstrategistwholovestohelpothersfindtheirideaofsuccesssheispassionateabouttechonologyeducationcareerdevelopmentstartupsandtheartsherbackgroundincludescareeryouthdevelopmentpublicaffairsnbspandphilanthropynbspsheisfromrichmondvaandnowcurrentlyresidesinlosangelescappdivliliclasspostdatadeeplinkpathnewsepisode13april2017codingbootcampnewsrounduppodcastdatadeeplinktargetpost_841idpost_841h2ahrefblogepisode13april2017codingbootcampnewsrounduppodcastepisode13april2017codingbootcampnewsrounduppodcastah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan7222017spanppclassrelatedschoolsaclassbtnbtninversehrefschoolstheironyardtheironyardaaclassbtnbtninversehrefschoolsdevbootcampdevbootcampaaclassbtnbtninversehrefschoolsgreenfoxacademygreenfoxacademyaaclassbtnbtninversehrefschoolsrevaturerevatureaaclassbtnbtninversehrefschoolsgrandcircusgrandcircusaaclassbtnbtninversehrefschoolsacclaimeducationacclaimeducationaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolsplaycraftingplaycraftingaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsuniversityofarizonabootcampsuniversityofarizonabootcampsaaclassbtnbtninversehrefschoolsgalvanizegalvanizeaaclassbtnbtninversehrefschoolshackreactorhackreactoraaclassbtnbtninversehrefschoolstech901tech901aaclassbtnbtninversehrefschoolsbigskycodeacademybigskycodeacademyaaclassbtnbtninversehrefschoolscodingdojocodingdojoaaclassbtnbtninversehrefschoolsumassamherstcodingbootcampumassamherstcodingbootcampaaclassbtnbtninversehrefschoolsaustincommunitycollegecontinuingeducationaustincommunitycollegecontinuingeducationaaclassbtnbtninversehrefschoolscodechrysaliscodechrysalisaaclassbtnbtninversehrefschoolsdeepdivecodersdeepdivecodingaaclassbtnbtninversehrefschoolsunhcodingbootcampunhcodingbootcampaaclassbtnbtninversehrefschoolsqueenstechacademyqueenstechacademyaaclassbtnbtninversehrefschoolscoderacademycoderacademyaaclassbtnbtninversehrefschoolszipcodewilmingtonzipcodewilmingtonaaclassbtnbtninversehrefschoolsdevacademydevacademyaaclassbtnbtninversehrefschoolscodecodeappiframeheight450srchttpswsoundcloudcomplayerurlhttps3aapisoundcloudcomtracks320348426ampauto_playfalseamphide_relatedfalseampshow_commentstrueampshow_usertrueampshow_repostsfalseampvisualtruewidth100iframeppstrongmissedoutoncodingbootcampnewsinaprilneverfearcoursereportisherewevecollectedeverythinginthishandyblogpostandpodcastthismonthwereadaboutwhyoutcomesreportingisusefulforstudentshowanumberofschoolsareworkingtoboosttheirdiversitywithscholarshipsweheardaboutstudentexperiencesatbootcampplusweaddedabunchofinterestingnewschoolstothecoursereportschooldirectoryreadbeloworlistentoourlatestcodingbootcampnewsrounduppodcaststrongpahrefblogepisode13april2017codingbootcampnewsrounduppodcastcontinuereadingrarraliliclasspostdatadeeplinkpathnewsyour2017learntocodenewyearsresolutiondatadeeplinktargetpost_771idpost_771h2ahrefblogyour2017learntocodenewyearsresolutionyour2017learntocodenewyearsresolutionah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan12302016spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsdevbootcampdevbootcampaaclassbtnbtninversehrefschoolscodesmithcodesmithaaclassbtnbtninversehrefschoolsvschoolvschoolaaclassbtnbtninversehrefschoolslevellevelaaclassbtnbtninversehrefschoolsdavincicodersdavincicodersaaclassbtnbtninversehrefschoolsgracehopperprogramgracehopperprogramaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolsclaimacademyclaimacademyaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolswecancodeitwecancodeitaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsmetismetisaaclassbtnbtninversehrefschoolsbovacademybovacademyaaclassbtnbtninversehrefschoolshackreactorhackreactoraaclassbtnbtninversehrefschoolsdesignlabdesignlabaaclassbtnbtninversehrefschoolstheappacademynltheappacademynlaaclassbtnbtninversehrefschoolstechelevatortechelevatoraaclassbtnbtninversehrefschoolsthinkfulthinkfulaaclassbtnbtninversehrefschoolslearningfuzelearningfuzeaaclassbtnbtninversehrefschoolsredacademyredacademyaaclassbtnbtninversehrefschoolsgrowthxacademygrowthxacademyaaclassbtnbtninversehrefschoolsstartupinstitutestartupinstituteaaclassbtnbtninversehrefschoolswyncodewyncodeaaclassbtnbtninversehrefschoolsfullstackacademyfullstackacademyaaclassbtnbtninversehrefschoolsturntotechturntotechaaclassbtnbtninversehrefschoolscodingtemplecodingtempleappimgaltnewyearsresolution2017learntocodesrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files3600s1200newyearsresolution2017learntocodev2pngppstrongitsthattimeagainatimetoreflectontheyearthatiscomingtoanendandatimetoplanforwhatthenewyearhasinstorewhileitmaybeeasytobeatyourselfupaboutcertainunmetgoalsonethingisforsureyoumadeitthroughanotheryearandwebetyouaccomplishedmorethanyouthinkmaybeyoufinishedyourfirstcodecademystrongstrongclassstrongstrongmadea30daygithubcommitstreakormaybeyoueventookastrongstrongbootcampstrongstrongprepcoursesoletscheerstothatbutiflearningtocodeisstillatthetopofyourresolutionslistthentakingtheplungeintoacodingstrongstrongbootcampstrongstrongmaybethebestwaytoofficiallycrossitoffwevecompiledalistofstellarschoolsofferingemfulltimeememparttimeemandemonlineemcourseswithstartdatesatthetopoftheyearfiveofthesestrongstrongbootcampsstrongstrongevenhavescholarshipmoneyreadytodishouttoaspiringcoderslikeyoustrongpahrefblogyour2017learntocodenewyearsresolutioncontinuereadingrarraliliclasspostdatadeeplinkpathnewsdecember2016codingbootcampnewsroundupdatadeeplinktargetpost_770idpost_770h2ahrefblogdecember2016codingbootcampnewsroundupdecember2016codingbootcampnewsroundupah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan12292016spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsdevbootcampdevbootcampaaclassbtnbtninversehrefschoolscodinghousecodinghouseaaclassbtnbtninversehrefschoolsrevaturerevatureaaclassbtnbtninversehrefschoolsfounderscodersfoundersampcodersaaclassbtnbtninversehrefschoolsasidatascienceasidatascienceaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolslabsiotlabsiotaaclassbtnbtninversehrefschoolsopencloudacademyopencloudacademyaaclassbtnbtninversehrefschoolshackeryouhackeryouaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolselevenfiftyacademyelevenfiftyacademyaaclassbtnbtninversehrefschools42school42aaclassbtnbtninversehrefschoolsthefirehoseprojectthefirehoseprojectaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolssoftwareguildsoftwareguildaaclassbtnbtninversehrefschoolsgalvanizegalvanizeaaclassbtnbtninversehrefschoolshackreactorhackreactoraaclassbtnbtninversehrefschoolscodingnomadscodingnomadsaaclassbtnbtninversehrefschoolsupscaleacademyupscaleacademyaaclassbtnbtninversehrefschoolscodingdojocodingdojoaaclassbtnbtninversehrefschoolsthinkfulthinkfulaaclassbtnbtninversehrefschoolsnycdatascienceacademynycdatascienceacademyaaclassbtnbtninversehrefschoolscodingacademybyepitechcodingacademybyepitechaaclassbtnbtninversehrefschoolsorigincodeacademyorigincodeacademyaaclassbtnbtninversehrefschoolskeepcodingkeepcodingaaclassbtnbtninversehrefschoolsfullstackacademyfullstackacademyaaclassbtnbtninversehrefschoolsucirvinebootcampsucirvinebootcampsappimgaltcodingbootcampnewsroundupdecember2016srchttpscourse_report_productions3amazonawscomrichrich_filesrich_files3601s1200codingbootcampnewsroundupdecember2016v2pngppstrongwelcometoourlastmonthlycodingbootcampnewsroundupof2016eachmonthwelookatallthehappeningsfromthecodingbootcampworldfromnewbootcampstofundraisingannouncementstointerestingtrendsweretalkingaboutintheofficethisdecemberweheardaboutabootcampscholarshipfromuberemployerswhoarehappilyhiringbootcampgradsinvestmentsfromnewyorkstateandatokyobasedstaffingfirmdiversityintechandasusualnewcodingschoolscoursesandcampusesstrongpahrefblogdecember2016codingbootcampnewsroundupcontinuereadingrarraliliclasspostdatadeeplinkpathnewsinstructorspotlightjacquelinepastoreofironhackdatadeeplinktargetpost_709idpost_709h2ahrefschoolsironhacknewsinstructorspotlightjacquelinepastoreofironhackinstructorspotlightjacquelinepastoreofironhackah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan10122016spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltjacquelinepastoreironhackinstructorspotlightsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files2486s1200jacquelinepastoreironhackinstructorspotlightpngppstrongmiamicodingbootcampahrefhttpswwwcoursereportcomschoolsironhackrelfollowironhackarecentlylaunchedanintensivecourseinuxuidesignwherestudentslearneverythingtheyneedtoknowaboutuserresearchrapidprototypingusertestingandfrontendwebdevelopmenttolandtheirfirstjobinuxdesignwesatdownwithinstructoranduxsuperstarjacquelinepastoreontheirfirstdayofclasstofindoutwhatmakesagreatuxuidesignerthinklisteningskillsempathyandcommunicationhowtheschoolproducesuserexperienceunicornsbyincorporatinghtmlbootstrapskillsintothecurriculumandtheteachingstylethatfuturestudentscanexpectatahrefhttpswwwironhackcomenrelfollowtarget_blankironhackmiamiastrongph3strongqampastrongh3pstronghowdidyoubecomeasuccessfuluxdesignerdidyougetadegreeinuxdesignstrongppimacareerchangermybackgroundwasfirstinfilmandcreativewritingandiworkedinthefilmindustryinmiamibeforeiendedupinbostontempingasaprojectmanagerforaventurecapitalcompanywithanincubatorfocusedonharvardandmitstartupsilearnedfromreallysmartpeopleaboutcomputerssoftwaregraphicdesignandprojectmanagementandibmhadtheirlotusnotesusabilitylabsnextdoorsoigottoparticipateasausabilitytesteriwentbacktogradschoolatbentleyuniversityformymastersinhumanfactorsininformationdesignandhadamagicalcareerdoingethnographyanduserresearchatmicrosoftstaplesadidasandreebokanduxdesignforfidelityinvestmentsstaplesthefederalreservejpmorganchasehamprblocknovartispharmaceuticalsandzumbafitnesspptwoyearsagoimovedbacktomiamiandstartedmyownproductahrefhttpuxgofercomwhatisgoferrelfollowtarget_blankuxgoferawhichisauxresearchtoolppstrongafterspendingyearslearninguserexperienceandevengettingamastersdegreewhydoyoubelieveinthebootcampmodelasaneffectivewaytolearnuxdesignstrongppiwentthroughmygradprogramveryquicklyinoneyearsoibelievethatyoucanlearnthismaterialveryquicklyandthencontinuelearningonthejobthatsexactlywhyivehadasuccessfulcareerbyspecificallygoingafterdifferentverticalstechnologiesandplatformsifihadntusedsomethingbeforeiwantedtotryitibelievethatyoucanlearnthefundamentalsquicklyandthenrefinethemthroughoutyourcareerppstrongwhatmadeyouexcitedtoworkatironhackinparticularwhatstandsoutaboutironhacktoyouasaprofessionaluxdesignerstrongppitwasthepeopleiwasreferredtoironhackbysomeoneiverespectedintheindustryforyearsandtheywererightthepeoplerunningironhackarewhatconvincedmetoworkonthisuxbootcampppstrongdidyouhaveteachingexperiencepriortoteachingatthebootcampwhatisdifferentaboutteachingatacodingbootcampstrongppiteachnowattheuniversityofmiamiatconferencesandbootcampsatironhackmypersonalteachingstyleistolectureverylittleandfocusonhandsonworkitsimportanttoknowthefoundationsandprinciplesandsciencebehindwhatwedobutattheendofthedayyouhavetodeliversowespendthemajorityofourdaysdoingactivitieswhichmeansrunningsurveysdoinginterviewsrunningusabilitytestsdesigningproductsithinkitssoimportantforstudentstocreatetheirportfoliopiecesthroughoutthebootcampinsteadofjusthavingoneportfolioprojectattheendofthecourseforsomeonebreakingintotheuxcommunitytheportfolioishowstudentsdemonstratetheirknowledgeandhowtheyapproachprojectsppimgaltironhackmiamiclassroomstudentssrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files2489s1200ironhack20classroomjpgppstrongthisisironhacksfirstforayintouxuidesigncoursestellusaboutthecurriculumstrongppmarcelopaivaandicreatedtheironhackcurriculumbasedonwhatwewouldhavewantedtolearninabootcampifweweretojustgetstartedinthisfieldwefollowtheuserandproductdevelopmentlifecyclestomakesurethatourstudentshavealltheskillstheyneedtobeusefulrightnowinthecurrentmarketplaceppwestartwithstronguserresearchstronghowtotalktoyourtargetmarketthemethodologybehindthatresearchwhattodowiththatdatadeliverablesandturningthatdataintoconceptdesignppwemoveintostronginformationarchitectureandinteractiondesignstrongwithlowfidelityallthewayintohighfidelityandmicrointeractionmodelsweuseinvisionsketchandprincipalasthetoolsforthatpieceofthecurriculumthenwemoveintostrongvisualstrongstrongdesignstrongformobileandwebbecausetheyaretwodifferentbeastsppthenwemoveintostrongfrontenddevelopmentstrongwherestudentslearnhowtoimplementthedesignstheyrecreatingthisiswhattheindustryislookingforrightnowtheunicornsthatcandothehtmlandbootstraptoimplementtheirowndesignsthatwillmakeironhackstudentsreallyeffectiveandmarketableppfinallywemoveintostrongindividualprojectsstrongironhackstudentsarebuildingportfoliopiecesfromdayonebuttowardstheendofthecoursetheyworkonmorespecificprojectsandbreakoutsforadditionaltopicsthatwehaventcoveredyetppimsosuperexcitedaboutthisbootcampandithinkitsreallyvaluableppstrongisthepushfordesignerstolearntocodethebiggesttrendstrongstronginstrongstrongtheuxuifieldrightnowstrongppitdependsonwhereourgraduateschoosetoworkaspartofasmallerteamauxdesignerwillhavetobemoreofageneralistandneedtodoresearchdesignanddevelopmentiftheyreworkingforalargerorganizationtheycanspecializeinaparticularfieldwithinuxlikeethnographyormobiledesignordesignthinkingasawholeithinkcareersintheuxcommunityarebecomingbothbroaderandmorespecializedtheuxcommunityisbothcomingtogetherandbreakingintonichesppstronghowmanyinstructorsstrongstrongtasstrongstrongandormentorsdoyouhaveisthereanidealstudentteacherratiostrongppthestudentteacherratiofortheuxuicourseis101manyoftherequiredactivitiesaretackledingroupsamongthestudentsingroupsof3or4astheprincipalinstructorileadandteachthemainflowofthecourseandwehavesubjectmatterexpertsandmentorscomeintoteachsectionsofthecurriculumthataremorespecializedegdesignthinkingfrontenddevelopmentetcppstrongcanyoutellusalittlebitabouttheidealstudentforironhacksuxuidesignbootcampwhatsyourclasslikerightnowandhowdotheuxstudentsdifferfromthecodingbootcampstudentsstrongpptheidealstudentfortheuxuidesignbootcampissomeonewhopossessesstrongcommunicationskillscanuseempathytojumpintootherpeoplesshoesandhasapassionforuserexperiencethecurrentclassisawonderfulmixofmanyprofessionalbackgroundsforexamplesomeprofilesincludeaformermarketingmanagerforsonymusicaresearchdirectorfromthenonprofitspaceandanmbagradlookingtousetheirpreviousbusinessprocessskillstocrackintotheuxsectorppimgaltironhackstudentsgroupoutsideironhacklogomiamisrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files2488s1200ux20group20picjpgppstrongthisisafulltimebootcampbuthowmanyhoursaweekdoyouexpectyourstudentstocommittoironhackmiamistrongppinadditiontothedailyscheduleof9amto6pmweexpectstudentstospendapproximately20hoursoutsideofclasstimetoworkonassignmentsandprojectssoabout65hoursweekppstronginauxbootcampisthestylelargelyprojectbasedcanyougiveusanexamplestrongppyesstudentswillworkon2projectsduringthefirst6weeksoneindividualprojectandonegroupprojecttheseprojectsareasumoftheindividualunitswecoveronaweekbyweekbasisthecapstoneofthecourseisa2weekfinalprojectthateachstudentcompletesindividuallyastheygothroughtheentireuserandproductdevelopmentlifecyclestheresultattheendofthecourseisthateachstudenthas3prototypesthattheycanuseasportfoliopiecesmovingforwardppstrongwhatsthegoalforastudentthatgraduatesfromironhackintermsofcareerandabilityforexamplewilltheybepreparedforajunioruxuiroleaseniorrolestrongppthegoalofthiscourseistoprovidestudentstheskillstocarryoutauxuidesignprocessfrombeginningtoendinmultiplecircumstanceswithvaryinggoalsasaresultstudentswillbepreparedforjuniorandentrylevelrolesinuxuifieldsdependingonwhichpartofthatprocessmostintereststhemppstrongforourreaderswhoarebeginnerswhatresourcesormeetupsdoyourecommendforaspiringbootcampersinmiamistrongppweholdopenhousesandfreeintroductoryworkshopstocodinganddesignmonthlywhichcanbefoundontheahrefhttpwwwmeetupcomlearntocodeinmiamirelfollowtarget_blankironhackmeetuppageaourfriendsatahrefhttpswwwmeetupcomixdamiamirelfollowtarget_blankixdaaalsooffersomecoolworkshopsonmeetupppwealsoreallylovethefreeahrefhttpshackdesignorgrelfollowtarget_blankhackdesignacoursewhichisafantasticresourceforsomeonewhowantstodelvemoreintothisworldppstrongisthereanythingelsethatyouwanttomakesureourreadersknowaboutironhacksnewuxuidesignbootcampstrongppifyouhaveanymorequestionsaboutthecoursecodingorironhackingeneralpleaseemailusatadmissionsmiaironhackcomwedbehappytohelpyoufigureoutwhatnextstepsmightworkbestforyourprofileandindividualgoalsppstrongtolearnmorecheckoutahrefhttpswwwcoursereportcomschoolsironhackrelfollowironhackreviewsaoncoursereportorvisittheahrefhttpswwwironhackcomenuxuidesignbootcamplearnuxdesignrelfollowtarget_blankironhackuxuidesignbootcampawebsiteformorestrongpdivclassauthorbiobootstraph4abouttheauthorh4imgclassimgroundedpullleftsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files1527s300lizpicjpgalthttpscourse_report_productions3amazonawscomrichrich_filesrich_files1527s300lizpicjpglogopplizisthenbspcofounderofnbspahrefhttpwebinarscoursereportcomcsdegreevscodingbootcampclknhttpcoursereportcomrelnofollowcoursereportathemostcompletenbspresourceforstudentsconsideringacodingbootcampshelovesbreakfasttacosandspendingtimegettingtoknowbootcampalumniandfoundersallovertheworldcheckoutlizampcoursereportonahrefhttptwittercomcoursereportrelnofollowtwitteraahrefhttpswwwquoracomprofilelizegglestonrelnofollowquoraaandahrefhttpswwwyoutubecomchannelucb9w1ftkcrikx3w7c8elegvideosrelnofollowyoutubeanbspppdivliliclasspostdatadeeplinkpathnewslearntocodein2016atasummercodingbootcampdatadeeplinktargetpost_582idpost_582h2ahrefbloglearntocodein2016atasummercodingbootcamplearntocodein2016atasummercodingbootcampah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan7242016spanppclassrelatedschoolsaclassbtnbtninversehrefschoolslogitacademylogitacademyaaclassbtnbtninversehrefschoolslevellevelaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsmetismetisaaclassbtnbtninversehrefschoolsnycdatascienceacademynycdatascienceacademyaaclassbtnbtninversehrefschoolsnewyorkcodedesignacademynewyorkcodedesignacademyaaclassbtnbtninversehrefschoolsmakeschoolmakeschoolaaclassbtnbtninversehrefschoolswyncodewyncodeaaclassbtnbtninversehrefschoolstechtalentsouthtechtalentsouthaaclassbtnbtninversehrefschoolsfullstackacademyfullstackacademyaaclassbtnbtninversehrefschoolscodefellowscodefellowsappstrongahrefhttpswwwcoursereportcombloglearnatthese9summercodingprogramsrelfollowseeourmostrecentrecommendationsforsummercodingastrongstrongahrefhttpswwwcoursereportcombloglearnatthese9summercodingprogramsrelfollowbootcampsastrongstrongahrefhttpswwwcoursereportcombloglearnatthese9summercodingprogramsrelfollowhereastrongppstrongifyoureacollegestudentanincomingfreshmanorateacherwithasummerbreakyouhavetonsofsummercodingbootcampoptionsaswellasseveralcodeschoolsthatcontinuetheirnormalofferingsinthesummermonthsstrongpahrefbloglearntocodein2016atasummercodingbootcampcontinuereadingrarraliliclasspostdatadeeplinkpathnews5techcitiesyoushouldconsiderforyourcodingbootcampdatadeeplinktargetpost_542idpost_542h2ahrefblog5techcitiesyoushouldconsiderforyourcodingbootcamp5techcitiesyoushouldconsiderforyourcodingbootcampah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan2182016spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolstechelevatortechelevatoraaclassbtnbtninversehrefschoolswyncodewyncodeaaclassbtnbtninversehrefschoolszipcodewilmingtonzipcodewilmingtonappstrongwevepickedfivecitieswhichareupandcominginthetechsceneandhaveagreatrangeofcodingbootcampoptionswhenyouthinkofcodingbootcampsyoumightfirstthinkofcitieslikeahrefhttpswwwcoursereportcomcitiessanfranciscorelfollowsanfranciscoaahrefhttpswwwcoursereportcomcitiesnewyorkcityrelfollownewyorkaahrefhttpswwwcoursereportcomcitieschicagorelfollowchicagoaahrefhttpswwwcoursereportcomcitiesseattlerelfollowseattleaandahrefhttpswwwcoursereportcomcitiesaustinrelfollowaustinabutthosearentyouronlyoptionstherearenowbootcampsinalmost100citiesacrosstheusstrongbrpppahrefblog5techcitiesyoushouldconsiderforyourcodingbootcampcontinuereadingrarraliliclasspostdatadeeplinkpathnewscodingbootcampcostcomparisonfullstackimmersivesdatadeeplinktargetpost_537idpost_537h2ahrefblogcodingbootcampcostcomparisonfullstackimmersivescodingbootcampcostcomparisonfullstackimmersivesah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan10172018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolscodesmithcodesmithaaclassbtnbtninversehrefschoolsvschoolvschoolaaclassbtnbtninversehrefschoolsdevmountaindevmountainaaclassbtnbtninversehrefschoolsgrandcircusgrandcircusaaclassbtnbtninversehrefschoolsredwoodcodeacademyredwoodcodeacademyaaclassbtnbtninversehrefschoolsgracehopperprogramgracehopperprogramaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolsclaimacademyclaimacademyaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolslaunchacademylaunchacademyaaclassbtnbtninversehrefschoolsrefactorurefactoruaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolssoftwareguildsoftwareguildaaclassbtnbtninversehrefschoolsappacademyappacademyaaclassbtnbtninversehrefschoolshackreactorhackreactoraaclassbtnbtninversehrefschoolsrithmschoolrithmschoolaaclassbtnbtninversehrefschoolscodingdojocodingdojoaaclassbtnbtninversehrefschoolsdevpointlabsdevpointlabsaaclassbtnbtninversehrefschoolsmakersquaremakersquareaaclassbtnbtninversehrefschoolsdigitalcraftsdigitalcraftsaaclassbtnbtninversehrefschoolsnewyorkcodedesignacademynewyorkcodedesignacademyaaclassbtnbtninversehrefschoolslearnacademylearnacademyaaclassbtnbtninversehrefschoolsbottegabottegaaaclassbtnbtninversehrefschoolswyncodewyncodeaaclassbtnbtninversehrefschoolshackbrightacademyhackbrightacademyaaclassbtnbtninversehrefschoolscodecraftschoolcodecraftschoolaaclassbtnbtninversehrefschoolsfullstackacademyfullstackacademyaaclassbtnbtninversehrefschoolscodefellowscodefellowsaaclassbtnbtninversehrefschoolsturingturingaaclassbtnbtninversehrefschoolscodingtemplecodingtempleappstronghowmuchdocodingbootcampscostfromstudentslookingforahrefhttpswwwcoursereportcomblogbestfreebootcampoptionsrelfollowfreecodingastrongahrefhttpswwwcoursereportcomblogbestfreebootcampoptionsrelfollowstrongbootcampsstrongastrongtothosewonderingifan18000strongstrongbootcampstrongstrongisworthitweunderstandthatcostisimportanttofuturestrongstrongbootcampersstrongstrongwhileahrefhttpswwwcoursereportcomreports2018codingbootcampmarketsizeresearchrelfollowtarget_blanktheaveragefulltimeprogrammingaahrefhttpswwwcoursereportcomreports2018codingbootcampmarketsizeresearchrelfollowtarget_blankbootcampaahrefhttpswwwcoursereportcomreports2018codingbootcampmarketsizeresearchrelfollowtarget_blankintheuscosts11906astrongstrongahrefhttpswwwcoursereportcomreports2018codingbootcampmarketsizeresearchrelfollowtarget_blankastrongstrongbootcampstrongstrongtuitioncanrangefrom9000to21000andsomecodingbootcampshavedeferredtuitionsohowdoyoudecideahrefhttpswwwcoursereportcomresourcescalculatecodingbootcamproirelfollowwhattobudgetforaherewebreakdownthecostsofcodingstrongstrongbootcampsfromaroundtheusastrongstrongstrongppthisisacostcomparisonoffullstackfrontendandbackendinpersononsiteimmersivebootcampsthatarenineweeksorlongerandmanyofthemalsoincludeextraremotepreworkstudywehavechosencourseswhichwethinkarecomparableincoursecontenttheyallteachhtmlcssandjavascriptplusbackendlanguagesorframeworkssuchasrubyonrailspythonangularandnodejsallschoolslistedherehaveatleastonecampusintheusatofindoutmoreabouteachbootcamporreadreviewsclickonthelinksbelowtoseetheirdetailedcoursereportpagespahrefblogcodingbootcampcostcomparisonfullstackimmersivescontinuereadingrarraliliclasspostdatadeeplinkpathnewscodingbootcampinterviewquestionsironhackdatadeeplinktargetpost_436idpost_436h2ahrefschoolsironhacknewscodingbootcampinterviewquestionsironhackcrackingthecodeschoolinterviewironhackmiamiah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan922015spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltcrackingthecodinginterviewwithironhacksrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files884s1200codingbootcampinterviewironhackpngppstrongironhackisanimmersiveiosandwebdevelopmentbootcampthatstartedinspainandhasnowexpandedtomiamiwithahiringnetworkandahrefhttpswwwcoursereportcomschoolsironhacknewsstudentspotlightmartafondaironhackrelfollowhappyalumniaironhackisagreatfloridabootcampoptionbutwhatexactlydoesittaketogetintoironhackwecaughtupwiththeironhackteamtolearneverythingemyouemneedtoknowabouttheironhackapplicationandinterviewprocessincludinghowlongitwilltaketheircurrentacceptancerateandasneakpeekatthequestionsyoullhearintheinterviewstrongph3strongtheapplicationstrongh3pstronghowlongdoestheironhackapplicationtypicallytakestrongpptheironhackapplicationprocessfallsinto3stagesthewrittenapplicationfirstinterviewandsecondtechnicalinterviewandtakesonaverage1015daystocompleteinentiretyppstrongwhatgoesintothewrittenapplicationdoesironhackrequireavideosubmissionstrongppthewrittenapplicationisachanceforstudentstogiveaquicksummaryoftheirbackgroundandmotivationsforwantingtoattenditstheiropportunitytotellusaboutthemselvesinanutshellandpeaktheadmissioncommitteesinterestppstrongwhattypesofbackgroundshavesuccessfulironhackstudentshaddoeseveryonecomefromatechnicalbackgroundstrongppweareimpressedandinspiredbythediversityofstudentsthatironhackattractswevehadformerflightattendantsworldtravellingyoginisandcsgradsfromivyleaguesallattendironhackwevebeenamazedathowcodingissodemocraticandattractsallsortsofpeopleregardlessofeducationalbackgroundorpedigreethosewhotendtoperformthebestatironhackarethosewhohavecommittedtodoingsonotnecessarilythosewithatechnicalbackgroundppimgaltironhackstudenttypingsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files893s1200ironhackpre132jpgph3strongtheinterviewstrongh3pstrongcanyougiveusasamplequestionfromthefirstinterviewstrongppwhatmotivatesyouonadaytodaybasisandwhatdoyoulovetodoppstrongcanyougiveusasamplequestionfromthetechnicalinterviewstrongppwhathappenswhenyouputafunctioninsidealoopppstrongwhatareafewresourcesthatyousuggestapplicantsusetoreallyacethetechnicalinterviewstrongppwhenanapplicantisinthemidstofourprocessweactuallysendthemmaterialsspecificallytoprepareforthetechnicalinterviewandsetofficehourswithourteachingassistantssotheycangetsomeoneononetimetoaddressspecificquestionsapartfromthatiftheyalreadyhavesomeexperienceprogrammingahrefhttpsautotelicumgithubiosmoothcoffeescriptliteratejsintrohtmlrelfollowtarget_blankhttpsautotelicumgithubiosmoothcoffeescriptliteratejsintrohtmlawerecommendthisresourceforcompletebeginnersjavascriptforcatsahrefhttpjsforcatscomrelfollowtarget_blankhttpjsforcatscomappstronghowdoyouevaluateanapplicantsfuturepotentialwhatqualitiesareyoulookingforstrongppironhacksapplicationprocessrevealsalotofqualitiesinpotentialcandidatesbecauseitisabitlongerthanmostcodingschoolstheadvantageofthisisitallowsustoseehowcandidatesandapplicantsrespondtolearningmaterialinashortamountoftimeandhowdedicatedtheyaretotheirgoalsiftheycantevencompletetheinterviewprocessitsanindicatorthattheymightnothavethepassionordrivetogetthrough8weeksofacodingbootcampwelookforcuriositypassionanddrivedriveisprobablythemostimportantqualitytosucceedatironhackppimgaltstudentsdoingyogairohacksrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files892s1200ironhackpre090jpgppstrongisthereatechnicalcodingchallengeintheironhackapplicationstrongppyesppstronghowlongshouldittakeisthereatimelimitstrongppwegiveourstudentsexactly7daystoprepareforthetechnicalinterviewafterthe1stinterviewandprovidethematerialstheyneedtoprepforitthetechnicalinterviewisledbyoneofourmiamiinstructorsandconsistsofacodingchallengethattheapplicanthas30minutestosolveppstrongcananapplicantcompletethecodingchallengeinanyprogramminglanguagestrongpptheapplicantcancompletethechallengeinwhateverprogramminglanguagetheyfeelmostcomfortableinaslongasthatlanguagecansolveabreadthofproblemsthatmeansthatsomethinglikecssisoutph3stronggettingacceptedstrongh3pstrongwhatisthecurrentacceptancerateatironhackstrongppasofnowourcurrentacceptancerateis20235tobeexactppstrongarestudentsacceptedonarollingbasisstrongppyesspotsfillupquicklysothesoonertheapplicantgetsstartedthebetterppstrongdoesironhackmiamihavealotofinternationalstudentssinceyourrootsareinspaindointernationalstudentsgetstudentvisastouristvisastodotheprogramstrongppyeswehavemorethan25countriesrepresentedinourbootcampsgloballyegthailandpakistangermanyfrancebraziletcthemajorityofourstudentswhotraveltomiamifromabroaduseatouristvisatovisittheusandattendourprogramwelovethemeltingpotofmiamicombinedwithironhacksreputationgloballyitsreallyafunplacetolearnandstudyppimgaltstudentsatroundtablecodingsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files894s1200ironhackpre249jpgppstrongwanttolearnmoreaboutironhackcheckoutahrefhttpwwwironhackcomrelfollowtarget_blanktheirwebsiteastrongppstronghavequestionsabouttheironhackapplicationthatwerentansweredinthisarticleletusknowinthecommentsstrongpliliclasspostdatadeeplinkpathnews9bestcodingbootcampsinthesouthdatadeeplinktargetpost_335idpost_335h2ahrefblog9bestcodingbootcampsinthesouth14bestcodingbootcampsinthesouthah2pclassdetailsspanclassauthorspanclassiconuserspanharryhantelspanspanclassdatespanclassiconcalendarspan462015spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsdevmountaindevmountainaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolsnashvillesoftwareschoolnashvillesoftwareschoolaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsaustincodingacademyaustincodingacademyaaclassbtnbtninversehrefschoolscodeupcodeupaaclassbtnbtninversehrefschoolscodecampcharlestoncodecampcharlestonaaclassbtnbtninversehrefschoolscodingdojocodingdojoaaclassbtnbtninversehrefschoolsmakersquaremakersquareaaclassbtnbtninversehrefschoolscoderfoundrycoderfoundryaaclassbtnbtninversehrefschoolswyncodewyncodeaaclassbtnbtninversehrefschoolstechtalentsouthtechtalentsouthaaclassbtnbtninversehrefschoolscodercampscodercampsappemupdatedapril2018emppstrongslideacrosstheroofofthegeneralleewereheadingsouthofthemasondixontocheckoutthebestcodingbootcampsinthesouthernunitedstatestherearesomefantasticcodeschoolsfromthecarolinastogeorgiaandallthewaytotexasandwerecoveringthemalltalkaboutsouthernhospitalitystrongpahrefblog9bestcodingbootcampsinthesouthcontinuereadingrarraliliclasspostdatadeeplinkpathnewsstudentspotlightgorkamaganaironhackdatadeeplinktargetpost_191idpost_191h2ahrefschoolsironhacknewsstudentspotlightgorkamaganaironhackstudentspotlightgorkamaganaironhackah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan1012014spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltgorkaironhackstudentspotlightsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files343s1200gorka20ironhack20student20spotlightpngppstronginthisstudentspotlightwetalktoahrefhttpcoursereportcomschoolsironhackrelfollowtarget_blankironhackagraduategorkamaganaabouthisexperienceatthebootcampbasedinspainreadontolearnabouthisapplicationprocesstheprojecthecreatedduringthecourseandhowironhackhelpedhimnailajobasaniosdeveloperatrushmorefmstrongppppstrongwhatwereyoudoingbeforeyoustartedatironhackstrongppiwasafreelancerforayearfocusedonwebfrontenddevelopmentiworkedatanagencybeforealsoforayearintermsofeducationididntstudyanythingrelatedtocomputersciencebeforeironhackppppstrongdidyouhaveatechnicalbackgroundbeforeyouappliedstrongppivebeendevelopingsinceiwas14andallthatiknowisselftaughtandnotinanyconcreteplatformbuthavingprojectsofmyownwheretheneedoflearningmoreeverytimedrovemetogetthemdoneppppstrongwhydidyouchooseironhackdidyouapplytoanyotherbootcampsstrongppichoseironhackbasicallybecauseittookverygoodadvantageofgoogleadwordssoicouldnotavoidreachingitswebsiteandgettinginterestedonittheyofferedmeameritscholarshipsoifinallymadethedecisionihaveneverappliedtoanythinglikeironhackppppstrongwhatwastheapplicationprocesslikestrongpptheapplicationprocesswasgoodtheinterviewsweremoreofculturefitandtheywerenotmuchseparatedintimewitheachothersoittooklessthanamonthtohaveitallapprovedppppstrongwhatwasyourcohortlikedidyoufinddiversityinagegenderetcstrongppitwasquitegoodformetherewascleardiversityinagebutnotingenderatallaswewerejustmenaboutthelevelitwasnotasfairisitshouldvebeenbutingeneraltheclasswasabletofollowthecoursesprocessppppstrongwhowereyourinstructorswhatwastheteachingstylelikeandhowdiditworkwithyourlearningstylestrongppthereweremanyinstructorssotryingtogivefeedbackaboutallofthemwouldbeendlesstheteachingstylewasagileaskingforfeedbackcontinuouslyandadaptingthecoursetoitsoitmadetheexperiencereallyenrichingiveneverhadateachingstylelikethisbeforeanditreallyfitwithmeppppstrongdidyoueverexperienceburnouthowdidyoupushthroughitstrongppididnotreallyexperienceburnoutbuttherewasaweekwhenwelearnedaboutusingcoredatathatigotreallytiredbecauseitwasboringtomeitwastheuglysideofiosdevelopmentbuttheprofessorwassogoodthatigotitallandlearnedalotthose5daysppppstrongcanyoutellusaboutatimewhenyouwerechallengedintheclasshowdidyousucceedstrongbrformethechallengewasnotinaconcretesituationbutinfollowingthecoursesspeeditwasthefirsttimeformetoneedtolearnsofastandsomuchppppstrongtellusaboutaprojectyoureproudofthatyoumadeduringironhackstrongppimcurrentlyworkingonanappwhichistheoneistartedatironhackasthefinalprojectbutididnthavetimeenoughtofinishitsoimstilldevelopingitincollaborationwithmypartnerwhoisagraphicdesignerandtheonewhodesignedtheappiwillprovidelinksassoonasitisreleaseditiscalledsnapreminderstaytunedppppstrongwhatareyouuptotodaywhereareyouworkingandwhatdoesyourjobentailstrongppimworkingatrushmorefmasaleadiosdeveloperbuildingthenewapplicationwellbereleasingsoonimcurrentlytheonlyiosdeveloperbutillleadtheteamwhenitgrowsigotthisjobbecausetheycontactedmedirectlyppppstrongdidyoufeellikeironhackpreparedyoutogetajobintherealworldstrongppittotallypreparedmeforarealworldjobitwasworththemoneyformeidontregretatallppppstronghaveyoucontinuedyoureducationafteryougraduatedstrongppnotformallybutikeeplearningeverydayandtryingtoenrichmyselfppppstrongwanttolearnmoreaboutironhackcheckouttheirahrefhttpswwwcoursereportcomschoolsironhackrelfollowschoolpageaoncoursereportortheirahrefhttpwwwironhackcomenrelfollowtarget_blankwebsitehereastrongpliliclasspostdatadeeplinkpathnewsexclusivecoursereportbootcampscholarshipsdatadeeplinktargetpost_148idpost_148h2ahrefblogexclusivecoursereportbootcampscholarshipsexclusivecoursereportbootcampscholarshipsah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan222018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsmakersacademymakersacademyaaclassbtnbtninversehrefschoolsdevmountaindevmountainaaclassbtnbtninversehrefschoolsrutgersbootcampsrutgersbootcampsaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolsstarterleaguestarterleagueaaclassbtnbtninversehrefschoolsblocblocaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsmetismetisaaclassbtnbtninversehrefschoolsdigitalprofessionalinstitutedigitalprofessionalinstituteaaclassbtnbtninversehrefschools10xorgil10xorgilaaclassbtnbtninversehrefschoolsvikingcodeschoolvikingcodeschoolaaclassbtnbtninversehrefschoolsvikingcodeschoolvikingcodeschoolaaclassbtnbtninversehrefschoolsguildofsoftwarearchitectsguildofsoftwarearchitectsaaclassbtnbtninversehrefschoolsdevpointlabsdevpointlabsaaclassbtnbtninversehrefschoolsthinkfulthinkfulaaclassbtnbtninversehrefschoolslearningfuzelearningfuzeaaclassbtnbtninversehrefschoolsdigitalcraftsdigitalcraftsaaclassbtnbtninversehrefschoolsnycdatascienceacademynycdatascienceacademyaaclassbtnbtninversehrefschoolsnewyorkcodedesignacademynewyorkcodedesignacademyaaclassbtnbtninversehrefschoolsorigincodeacademyorigincodeacademyaaclassbtnbtninversehrefschoolsbyteacademybyteacademyaaclassbtnbtninversehrefschoolsdevleaguedevleagueaaclassbtnbtninversehrefschoolssabiosabioaaclassbtnbtninversehrefschoolscodefellowscodefellowsaaclassbtnbtninversehrefschoolsturntotechturntotechaaclassbtnbtninversehrefschoolsdevcodecampdevcodecampaaclassbtnbtninversehrefschoolslighthouselabslighthouselabsaaclassbtnbtninversehrefschoolscodingtemplecodingtempleappstronglookingforcodingbootcampexclusivescholarshipsdiscountsandpromocodescoursereporthasexclusivediscountstothetopprogrammingbootcampsstrongppstrongquestionsemailahrefmailtoscholarshipscoursereportcomrelfollowtarget_blankscholarshipscoursereportcomastrongpahrefblogexclusivecoursereportbootcampscholarshipscontinuereadingrarraliliclasspostdatadeeplinkpathnewsstudentspotlightjaimemunozironhackdatadeeplinktargetpost_129idpost_129h2ahrefschoolsironhacknewsstudentspotlightjaimemunozironhackstudentspotlightjaimemunozironhackah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan7182014spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltjaimeironhackstudentspotlightsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files248s1200jaime20ironhack20student20spotlightpngppstrongafterworkingatanitcompanymanagingprogrammersjaimemunozdecidedthathewantedtolearncodingskillssoheenrolledinahrefhttpcoursereportcomschoolsironhackrelfollowtarget_blankironhackaacodingbootcampinmadridwithlocationsinmiamiandbarcelonajaimetellsuswhyhechoseironhackthetechnicalemandemsoftskillshelearnedinhiscourseandthementorswhohavehelpedhimalongthewaystrongppppstrongwhatwereyouuptobeforedecidingtoenrollinironhackdidyouhaveatechnicalbackgroundbeforeapplyingstrongppbeforebeingaprogrammeriwasprojectmanagerinabigitcompanyihiredprogrammersandmanagedtheirworkaftersometimeibegantobemoreandmoreinterestedintheworkthoseprogrammersweredoingsomuchthatidecidedtoquitmyjobandlearntocodeididamastersdegreeof400hoursinciceaitschoolinmadridwiththegreatlucktohaveanamazingteachercalledahrefhttptwittercomdevtasrelfollowtarget_blankdevtasinghailearnedmuchmorethanjustcodingfromhimheshowedmehowtofacetheproblemfindthebettersolutionandhowtosucceedonititwasapersonalrevelationandsincethismomentiknewthatiwantedtobeaprogrammerppafterthedegreeistartedtoworkinadigitaladvertisingcompanycalledthefactweworkedfortraditionalofflineadvertisingcompaniestheyneededdigitaldevelopmentforhisclientsiimprovedmyphpandjavascriptskillsthereduringalmost2yearsbutihadthefeelingiwasntimprovingfasterenoughitriedtolookforsomethingnewtostimulatemyselfandbegantoteachcodinginaitacademyfrommadridcalledtrazosbutineededachangetokeeppushingmyskillsthatswhyiturnedtoironhackppppstrongwasironhacktheonlybootcampyouappliedtowhataboutironhackconvincedyoutogotherethelanguagestheytaughtinstructorspriceetcstrongppironhackwasmyfirstandlastchoicehonestlyididntknewmanybootcampsbutthemainreasonweretheinstructorsandthegreatprofessionalstheytalkedverygoodaboutthecoursemanyofthecodersiadmirelikeahrefhttpstwittercomkeyvanakbaryrelfollowtarget_blankkeyvanakbaryaorahrefhttptwittercomcarlosblerelfollowtarget_blankcarlosblawereinvolvedandinterestedonthebootcampthiswasenoughtomakethechoiceppppstrongcanyoutalkaboutatimewhenyougotstuckintheclassandhowyoupushedthroughstrongppfortunatelyididnotgotstuckalotinclassbutwhenididnotunderstoodsomethingiaskedformoreexplanationsandireceiveditimmediatelyandsolvedtheproblemppppstrongwhatwereyourclassmatesandinstructorslikestrongpptheywereallamazingiguessiwasveryveryveryluckyonthatpointbecauseallmyclassmateswereamazingnotonlybecausetheywerefriendlytheyreallywerebutbecausetheywereskilledandinterestedtopushlikeiwasbritsamazingwhenyousharesuchexperiencewithpeopletheythinkandlikethesamethinkslikeyoubecauseitpushedthelevelveryhighbrtheinstructorswerealsogreatveryfriendlyandopentodiscussortrywhateverweaskedforithinktheycantimaginehowthankfuliambutnotonlywiththeteachersorstudentsalsowithironhacksstafftheydideverythingpossibletomakeusreceivewhatweneededppppstrongtellusaboutyourfinalprojectwhatdoesitdowhattechnologiesdidyouusehowlongdidittakeetcstrongppformyfinalprojectiusedrubyonrailspostgresqlhtmlcssandjavascripttodevelopaonlinemedicalappointmentsapplicationittookaweektohavesomethingworkingandabletobeshowninthedemodayppppstrongwhatareyouworkingonnowdoyouhaveajobasadeveloperwhatdoesitentailstrongppimworkingnowinmarketgoocomawebsitemarketingandseoonlinedoityourselftoolasfullstackdeveloperiusephpmysqlhtml5lessphinxphpactiverecordjavascriptandothertechnologieseverydaybutthekeyisthatimnotonlyadeveloperthereimalsoinvolvedintheproductmanagementcollaboratingeverydayindecisionsabouttheproducthislookandfeelhisbehaviorandthebusinessitselfppppstrongwouldyouhavebeenabletolearnwhatyounowknowwithoutironhackstrongppmaybeicouldbeabletolearnthetechnicalpartbutthereisnowaytolearnitin2monthswithoutabootcampitsjusttoomuchinformationtohandleitalonebesidesthereismuchmorethanthetechnicalknowledgethatyoureceiveinironhackyoualsogetalotofcontactsfriendsexperienceknowhowandthemostimportantthingaperspectiveofwhatyoudontknowyetppppstrongwanttolearnmoreaboutironhackcheckouttheirahrefhttpswwwcoursereportcomschoolsironhackrelfollowschoolpageaoncoursereportorahrefhttpwwwironhackcomenrelfollowtarget_blanktheirwebsitehereawanttocatchupwithjaimereadahrefhttpjaimemmpcomrelfollowtarget_blankhisblogaorfollowhimonahrefhttptwittercomjaime_mmpe2808brelfollowtarget_blanktwitterastrongbrpliliclasspostdatadeeplinkpathnewsstudentspotlightmartafondaironhackdatadeeplinktargetpost_127idpost_127h2ahrefschoolsironhacknewsstudentspotlightmartafondaironhackstudentspotlightmartafondaironhackah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan7162014spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltmartaironhackstudentspotlightsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files244s1200marta20ironhack20student20spotlightpngppstrongmartafondaneededtoimproveherwebdevelopmentskillsinordertocompeteforjobsatherdreamcompaniessosheenrolledinahrefhttpcoursereportcomschoolsironhackrelfollowtarget_blankironhackaan8weekintensiveprogrammingcoursefordevelopersandentrepreneurswetalktomartaabouthowshesucceededintheclassandgotajobasafrontendengineeratfloqqcomstrongppstrongwhatwereyouuptobeforedecidingtoenrollinironhackdidyouhaveatechnicalbackgroundbeforeapplyingstrongppwhenidecidedtoenrollinironhackihadjustfinishedmydegreesinsoftwareengineeringandbusinessadministrationwhenifinishedmystudiesirealizedthatmybackgroundinmobileandwebdevelopmentwasnotenoughsoiwaslookingforanopportunityinacompanythatwouldbetonmebrimaverymotivatedpersonandinfactiinterviewedwithcompanieslikegoogleandibmbutididnothaveenoughexperienceitwasaroundthattimethatifoundironhackbootcampandidecidedtotryitppihadtechnicalbackgroundasasoftwareengineerbutmostofmyexperienceprogrammingwasbasedonlanguagessuchcjavaorsqlineededtoimprovemyskillsinordertobecomeabetterdeveloperppppstrongwasironhacktheonlybootcampyouappliedtowhataboutironhackconvincedyoutogotherestrongppthiswastheonlybootcampiappliedtoandthemainreasonwasthattheywerelookingforpeoplelikememotivatedpeoplewhohadthedrivetobecomeagreatprofessionalandwereonlylackingtheopportunitytoshowtheirpotentialtheytrainpeopleinmodernlanguageslikerubybrthiswasnotonlyanawesomeopportunitytolearnrailsbutalsotobeinanenvironmentthatisdifficulttofindinotherplacesiwaslearningfromtheverybestprofessionalsandfromanincrediblytalentedgroupofstudentsppppstrongcanyoutalkaboutatimewhenyougotstuckintheclassandhowyoupushedthroughstrongppironhackisanintensivebootcampyoumustbesurethatyouareabletopushthroughanyproblemyouhaveandmyclassmateswereanimportantpointtoleanonononeofmyveryfirstdaysatironhackiwashavingtroubleunderstandingoneoftheconceptsthatwewerecoveringanditwasthroughteamworkwithmyotherclassmatesthatwewereallabletounderstanditppmyclassmateswereasmotivatedasmesoitwaseasytofindpeopletocontinueprogrammingonweekendsoraftertheclassitwasgreatformeppppstrongwhatwereyourclassmatesandinstructorslikestrongppinthisbootcampiwassurroundedbytheverybestprofessionalsfromalloverthecountrysoicanonlysaythatitwasapleasuretoconverttheirknowledgeintominebeingabletosharethisexperiencewithmyclassmateswasawesomeificouldhavetheopportunitytodoanotherironhackbootcampitwouldbeamazingtheyarethefastesttwomonthsiveeverlivedppppstrongtellusaboutyourfinalprojectwhatdoesitdowhattechnologiesdidyouusehowlongdidittakeetcstrongppwellmyfinalprojectwasaboutatravelapplicationwiththiswebapplicationyouwereabletosaveorganizeandshareallyourtripinformationthisprojectwasdevelopedintwoweeksandinordertoachieveallthefeaturesthatiwantedtoincludeonitiusedrailsasiwantedtodemonstrateallthethingsthatihadlearnedinironhackidecidedtoincluderesponsivewebdesignusingcss3andjavascriptjqueryandhtml5functionalitieslikegeolocalizationorwebstoragetoimprovetheuserexperienceppattheendofthosetwoweeksihadahugefrontendprojectwhichwasmorethanideverexpectedthankstomyhardworkandeffortsinthisprojectiwasoneofthefinalistsinthehackshowtheironhackfinalshowwherethefinalistscanshowwhattheyhavemadeintwoweeksandicouldshowmyprojecttomorethanahundredpeopleppppstrongwhatareyouworkingonnowdoyouhaveajobasadeveloperwhatdoesitentailstrongppthankstothehackshowtwodaysaftertheendofironhackiwasworkingatfloqqcomthebiggestonlineeducationmarketplaceinspanishallovertheworldnowadaysimfrontenddeveloperandproductmanageratfloqqcomandimworkingdoingwhatilovetodobrironhackgavemetheopportunitythatothercompaniesdidntgivemeihadnoexperienceandnobodywantedtohiremeandnowimstilllearningandimprovingmyskillsinthebestplaceicouldeverfindppppstrongwouldyouhavebeenabletolearnwhatyounowknowwithoutironhackstrongppitwouldbeimpossibletolearnwhativelearnedinironhackintwomonthsonmyownbutitsnotonlyaboutthedevelopmentskillsthativeimprovedinthosetwomonthsitsalsoaboutthepersonalskillsthativebeenabletodevelopandtheopportunitytomeetthebestitprofessionalsfromallaroundspainironhackwasjusta180experiencethatchangedmywholelifeandthatallowedmetodowhatibelieveiwasborntodoppppstrongwanttolearnmoreaboutironhackcheckouttheirahrefhttpcoursereportcomschoolsironhackrelfollowtarget_blankschoolpageaoncoursereportortheirahrefhttpwwwironhackcomenrelfollowtarget_blankwebsitehereastrongpliliclasspostdatadeeplinkpathnewsfounderspotlightarielquinonesofironhackdatadeeplinktargetpost_64idpost_64h2ahrefschoolsironhacknewsfounderspotlightarielquinonesofironhackfounderspotlightarielquinonesofironhackah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan4212014spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltfounderspotlightarielquinonesironhacksrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files148s1200founder20spotlight20ironhackpngppstrongahrefhttpcoursereportcomschoolsironhackrelfollowtarget_blankironhackaisan8weekcodingbootcampwithcampusesinmadridbarcelonaandsoonmiamiwetalkedwithcofounderarielquinonesabouttheirrailscurriculumhowtheyattractamericanstudentstostudyabroadinspainandwhatsetsironhackapartstrongppppstrongtellusabouthowironhackstartedstrongppicomefromafinancebackgroundimoriginallyfrompuertoricobutspent5yearsinnewyorkmycofoundergonzalocomesfromtheconstructionindustryhesacivilengineerandhebuiltallsortsofmajorinfrastructureprojectsineuropehavingsaidthaticomefromahouseholdofeducatorsbothofmyparentswereteacherswheniwasgrowingupandmyfatheractuallystartedaprivateuniversityinpuertorico20yearsagothatstartedwith15studentsandnowtheyhave6campusesandover10000studentsenrolledppithinkeducationwasalwaysapartofmydnaandiwantedtodosomethingaftercompletingmyeducationimetgonzaloduringourmbawewerebothatwhartonhealsowantedtodosomethingineducationineuropeandpossiblyinedtechaswellduringthose2yearsofthembawewereiteratingideasconstantlyandithinkhadthesameissuethatmostnontechnicalfoundershaveintheuswhichishavingbrilliantideasbutonceyougettothepointwhereyouneedtoexecutethemandproduceanmvpyourenotabletodoititsincrediblychallengingtofindacofounderanditsincrediblychallengingfromacostandalsofromanoperationalperspectivetooutsourcethedevelopmentppgonzaloanditooka2daycourseatwhartonwheretheytaughtustodoverybasicrailseventhoughwedidntacquiretheskillsnecessarytobuildourmvpwewereexcitedaboutthepossibilityofteachingbothtechnicalandnontechnicalpeopletheseskillsthroughahighlyintensiveandcompressedtimeperiodafterthatexperiencewestartedlookingatthebootcampmodelatthatpointtheearlieroneswerestartingtogetalittlebitoftractionwethoughtitwouldbeinterestingtodothissomewhereabroadiddonealotofbusinessinlatinamericasoihadsometiestotheregiongonzalomypartnerisspanishsoourfirstbetwasspainppppstrongwouldyousaythatironhackismoregearedtowardsmakersortechnicalcofoundersasopposedtopeoplewhowanttogetajobatanestablishedcompanyasajuniordeveloperstrongppwevehadbothprofileswevebeenselectiveinthepeopleweadmitfromatechnicalbackgroundwevebeenhesitantsofartosaygofromtotalnewbietoprofessionalwebdeveloperinxweeksourapproachisappealingtofolksthataremaybealreadyinclosetouchwithtechnologyandcodedevelopersthatwanttoprofessionalizetheirskillsandtakethemtothenextlevelorpeoplethatareverysmartanalyticalandarelookingforahardcoreexperiencethatwillallowthemtolearnfromthesetypesofpeopleppppstrongwhenwasthefirstcohortstrongppthefirstcohortwasinoctoberof2013eachcourseis8weekslongppppstrongwhatwasthebiggestlessonthatyoulearnedafterrunningyourfirstcohortstrongpponethingwelearnedisthatthe8weeksjustflybywhenyouplanforpeopletobecoding10to12hoursadaythatseemslikealotbuteverydaygoesbysoquicklypptheotherthingwelearnedwasthatnomatterhowmuchyoufiltertomakesureyoudonthavedisparatelevelspriortoarrivingpeoplejustlearndifferentlyatdifferentvelocitieswithdifferentlearningstylessowithinthestructureof8weeksweneededdifferentexercisesandflexibilitytogivepeoplethechancetolearnrightattheirownpacewhileensuringthateveryoneslearningfundamentalsppppstrongdoyouhavestudentsdopreworkbeforetheygettoironhackstrongppyeahtheydo100hoursofpreworkppppstrongwhatcitiesareyouliveinnowstrongppwereliveinmadridandbarcelonaandwerelaunchinginmiamiinseptemberppppstrongcouldyoutellusaboutthetechscenesinthelocationsthatyoureliveinmadridandbarcelonastrongpppeoplelovetocometospainandstudyabroaditsacountrythathasalottoofferfromthelifestyleperspectiveyouknowyouhavegreatfoodthepartiesstudyabroadinspainhasbeenanintegralpartofspanishsocietyformanyyearswithinthetraditionalhighereducationarenainourcaseweretryingtopositionspaininasimilarfashioninthefirstcohortswetrainedalotofpeoplefromspainbutgoingforwardwewanttomakeitattractiveforforeignerstocomeoverandenjoyeverythingthatspainhastoofferandatthesametimelearnhowtocodeppbarcelonaisveryexcitingbecauseyouhavepeoplefromallovertheworldthatarelaunchingstartupsthereobviouslywithintheeutheresalotofmobilityifyoureaeuropeanunioncitizenyoucangoanywherewithoutanysortofvisarequirementsandithinkalotofnortherneuropeansandpeoplefromgermanyforinstancelovebarcelonaforweatherreasonsthegreatbeachesthelifestylesoalotofthemarecomingovertobarcelonatolaunchtheirownventureshereinbarcelonathetechecosystemisthrivinganditsveryinternationaltheresalotofmobilestartupsthataregettingtractionoverthereppmadridisstillverymuchacosmopolitancityandwereseeingalotoftractioninthestartupspaceitsobviouslyanemergingecosystemnowherenearsiliconvalleybutwereseeingearlystagecompaniesgeteitheracquiredorgoforsubstantialroundsoffinancinghereinmadridwhichisultimatelyadriverforourtypeofbusinesscompaniesneedfundingtoemployengineersandwereseeingthatcapitalflowtoearlystageprojectsppppstrongdoyougetinterestfrompeopleintheusstrongppyesrightnowweregettingalotofinterestfrompeopleallovertheworldincludingtheusiinterviewedafewcandidatesfromthenortheastwehaveanotherstudentfromcaliforniawhosenrollinginourjunecourseppppstrongisitpossibleforsomeonefromtheustocompleteironhackandthenworkinspainorintheeustrongppyesitsdefinitelypossibleitsnotaschallengingassomeonefromeuropetogototheusforsuretheresstillcoststhattheemployerhastoincurbutithasnowherenearthecostsandalltheredtapethatyouhavetodealwithintheusppppstronghasironhackraisedanymoneystrongppnorightnowwerebootstrappedandwewanttokeepitthatwayaslongaspossibleppppstrongsotelluswhatprogramminglanguagesstudentsaremasteringatironhacktellusabouttheteachingstylestrongppwehavetwocoursesthatareliverightnowwebandmobileppthewebcourseisan8weekcourseidsayonaveragestudentsarewithusinouroffices1012hoursadaywecoverhtmlcssandjavascriptonthefrontendandthenonthebackweworkwithrubyonrailsandteachalittlebitofsinatraaswellthefirst6weekswereteachingthosecoretechnologiesandthelast2weeksstudentsareworkingontheirownprojectfromscratchtheculminationoftheprogramisademodaywheretheypresenttheirprojectstothecommunitydevelopersstartupcofoundersthattypeofaudienceppidsay90ofourcontentispracticalwerebigbelieversintheflippedclassroommodelsowewanttomakesurethatwereducetheamountoftheorytimetotheextentpossiblewegetthemalltheresourcesvideosandexercisestocompleteathomepriortoarrivingherewhiletheyreherewegivethemhomeworkandassignmentsfortheweekendsowecanreducethattheorytimeppthetechnologydemandsinspainareveryfragmenteditsnotlikesanfranciscowhereyoucanproduceagazillionrubyonrailsgradseveryyearandtheyllbehiredbyrailsstartupsherewereseeingsomedemandforrailsstartupsbutalsopythonphpetcppppstrongdoyouexpectthataftercompletingyourcourseagraduatewouldbeabletolearnpythonorphpontheirownstrongppahundredpercentandwereseeingthateventhoughlovethetechnologiesweworkwithwerenotobsessedwiththemeithertoustheyreaninstrumenttoteachgooddevelopmentpracticesithinkonethingthatdifferentiatesusfrombootcampsisourfocusandobsessionwithgoodcodingpracticeswereobsessedwithtestingcleancodeandgooddesignpatternswevedoneourjobifthestudentgetagoodbackgroundintechnologybutmoreimportantlytakeawaythosegoodcodingpracticesthattheyapplytowhateverlanguageorframeworktheyuseppppstrongisthemobileclassstructuredthesamewaystrongppsameformatexactsamestructureslightlyhigherrequirementstobeacceptedinordertobeacceptedintothemobilecourseyoualreadyhavetoprogramwithanotherobjectorientedlanguageourfirstcourseisfocusedoniosdevelopmentppppstrongdoyouthinkyoulleverdoanandroidcoursestrongppwellprobablydoandroidinthenearfutureppppstronghowmanystudentsdoyouhaveineachcohortstrongpprightnowwevecappedat20wecanprobablygoabitmorethanthatbutwedontwanttodomorethanthatppppstronghowmanyinstructorsdoyouhaveperclassstrongppwealwaysliketohavearatioofatleast6studentsperteachersowhenwehave15studentswehaveonemainprofessorandtwoteachingassistantsourviewisthatifweregoingtoteachyouonetechnologywewanttomakesurethatthepersonthatisinstructingyouisthebestmostcapablepersonandishighlyspecializedinthatlanguageppppstronghowhaveyoufoundinstructorsstrongppwewenttothebestcompanieshereinspainandotherpartsofeuropeandbasicallyfoundthebestpeopletheretheyworkparttimeforusitsverydifferenttohavesomeonewhosfulltimebootcampprofessorversussomeonewhoisadeveloperandisteachingatabootcampfor2weeksppandalsofromarecruitingperspectivealotofourstudentshavebeenhiredbytheirteachersalsoourstudentshaveanetworkthatgoesbeyondtheirpeersandtheironhackstafftheyhaveanetworkthatconnectstoallthesecompaniesthattheseprofessorsarecomingfromppppstrongyousaidthatpotentialstudentsshouldhavesomevestedinterestinprogrammingandshouldhavesomebackgroundandbeabletoprovethattheycanreallyhandlethematerialwhatstheapplicationprocessstrongppwehavea3stepapplicationprocessthefirstpartisawrittenformthatwescreenandthenwedotwo30minuteskypeinterviewsthefirst30minuteskypeinterviewistogetasenseofwhoyouarewhyyouwanttodothisandgetasenseofisyoufitwithinourcultureandifyouhavethatintrinsicmotivationtomakethemostoutofthe400hoursthatyouhavehereppwesaylistenyouregoingtobecodingmondaythroughfriday10hoursadayandthenyouregoingtohaveworkeverydayonsaturdaysundaywhenitellthemthatwewantsomeonewhobeamsenergyandpositivityiftheymakeitthroughthatinterviewwehaveasecondroundwhichisbasicallytoassesstechnicalskillsweveactuallyacceptedabunchofpeoplethathaveneverprogrammedbeforebutwewanttomakesurethatyouhavethemotivationandtheanalyticalskillsettobeabletocatchuppriortoarrivingtoourcampppinsomecaseswehavepeoplethatwethinkareverysmartandincrediblymotivatedbuthavenevercodedintheirliveshaveneverevenworkedwithhtmlweadmitthemsubjecttoanothervaluationpostthatsecondinterviewsowellgetthemtocomplete60hoursofpreworkandthenseewheretheyareppppstronghowdoesironhackprepareyourgraduatestofindjobsstrongppthedemodayisagreatwaytoshowcaseourtalenttoouremployersandyouhaveallsortsofemployerstherefromthefoundingstagewheretheyhaventraisedanymoneyorarestillpreproducttotechemployerswhohavetechnicalteamsandmorethan3040employeesppontopofthecorecurriculumwehavespeakerslikeemployerscomeinduringthe8weekstopresenttheirproductsandalsoitservesasanopportunityforthemtogetintouchwiththeirstudentsandidentifypotentialhiringleadsppwealsobringinleadinghrpeoplefromsomeofourtoptechemployersheretoofferworkshopsonhowtosetupyourcvhowtooptimizeyourlinkedinprofileseoandallthesethingsandwecoachthemonhowtoconductaninterviewrightnowwevehadtheluxuryofbeingsmallsowereallveryinvolvedintheprocessppppstrongarethosecompaniespayingafeetogetintothedemodayoraretheypayingarecruitingfeeoncetheyvehiredsomeonestrongpprightnowwerenotchargingemployerswerefocusedonplacing100ofourgraduatesandgivingaccesstogreatcompanieseventhosethatwouldntbeinterestedinpayingarecruitingfeeppppstronghaveyoubeensuccessfulinplacingyourgraduatesstrongppwerestartingtoplaceasecondcohortbutinourfirstcohortweplacednearly100percentofourgraduatesithinkinthefirstcohortweplaced60ofthepeople3weekafterthefirstcourseandthentherestoverthenext2monthsppppstrongistheaccreditationbuzzthatshappeningincaliforniaanywhereonyourradardoyougetanypressurefromthegovernmentinspainorareyouthinkingaboutgoingthroughtheaccreditationprocesswhenyouexpandtomiamistrongppweredefinitelygoingtopayattentiontothisinmiamiwereallforitifithelpsthestudentaslongasitdoesntinterferewiththemodelanddoesntlimittheabilityoftheseinstitutionstooffereducationthatsagileandthatcanadapttothetimesandthetechnologiesppppstrongareyouplanningonexpandingbeyondmiamianytimesoonstrongppithinkforthenextyearorevenbeyondthatweregoingtofocusonmiamiandspainhoweverweregoingtousemiamiandspainashubsforotherregionsweregettingalotofinterestfromlatinamericanstudentstocometospainsoforthosewhowouldrathercometomiamibecauseitscloserwecanofferthataswellppppstrongtofindoutmoreaboutironhackcheckouttheirahrefhttpcoursereportcomschoolsironhackrelfollowtarget_blankschoolpageaoncoursereportorahrefhttpwwwironhackcomenrelfollowtarget_blanktheirwebsiteastrongpliulsectiondivdivdivdivdivdivdivclasscolmd4idsidebardivclasshiddenxshiddensmidschoolheaderahrefschoolsironhackdivclassvanityimageimgaltironhacklogotitleironhacklogosrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4017s200logoironhackbluepngdivadivclassaltheaderh1ironhackh1pclassdetailsspanclasslocationspanclassiconlocationspanamsterdambarcelonaberlinmadridmexicocitymiamiparissaopaulospanpdivdivdivdataformcontactdataschoolironhackidcontactbuttonclassbuttonbtnspanimgsrchttpss3amazonawscomcourse_report_productionmisc_imgsmailsvgtitlecontactschoolspancontactalexwilliamsfromironhackbuttondivdivclasspanelgroupidaccordiondivclasspanelpanelsidepaneldefaultidschooldetailsdivclasspanelheadingvisiblexsdatadeeplinktargetmoreinfodatatargetschoolinfocollapsedatatogglecollapseidschoolinfocollapseheadingh4classpaneltitleschoolinfoh4divh4classhiddenxstextcenterschoolinfoh4divclasspanelcollapsecollapseinidschoolinfocollapsedivclasspanelbodypaneldivclassflexfavoritetextcenterbuttonclassbtnbtninversefavlogindatarequestid84dataschoolid84savenbspspanclassglyphiconglyphiconheartemptyspanbuttondivulclassschoolinfoliclassurltextcenterdesktoponlyspanclassiconearthspanaitempropurltarget_blankhrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageironhackwebsitealiliclassemailtextcenterdesktoponlyspanclassiconmailspanaitempropemailhrefmailtohiironhackcomhiironhackcomaliliclassschooltrackstextleftspanclassiconbookspanahreftracksfrontenddeveloperbootcampsfrontendwebdevelopmentabrahreftrackswebdevelopmentcoursesfullstackwebdevelopmentabrahreftracksuxuidesignbootcampsuxdesignabrliliclasslocationtextleftspanclassiconlocationspanahrefcitiesamsterdamamsterdamabrahrefcitiesbarcelonabarcelonaabrahrefcitiesberlinberlinabrahrefcitiesmadridmadridabrahrefcitiesmexicocitymexicocityabrahrefcitiesmiamicodingbootcampsmiamiabrahrefcitiesparisparisabrahrefcitiessaopaulosaopauloabrliululliclassurltextcenteraclassnodecorationhrefhttpswwwfacebookcomtheironhackutm_sourcecoursereportamputm_mediumschoolpagespanclassiconfacebook2largeiconspanaaclassnodecorationhrefhttpstwittercomironhackutm_sourcecoursereportamputm_mediumschoolpagespanclassicontwitterlargeiconspanaaclassnodecorationhrefhttpswwwlinkedincomcompanyironhackutm_sourcecoursereportamputm_mediumschoolpagespanclassiconlinkedinlargeiconspanaaclassnodecorationhrefhttpsgithubcomtheironhackutm_sourcecoursereportamputm_mediumschoolpagespanclassicongithublargeiconspanaaclassnodecorationhrefhttpswwwquoracomtopicironhackutm_sourcecoursereportamputm_mediumschoolpagespanclassiconquoralargeiconspanaliuldivdivdivdivclasspanelpanelsidepaneldefaultidmoreinfodivclasspanelheadingvisiblexsdatadeeplinktargetmoreinfodatatargetmoreinfocollapsedatatogglecollapseidmoreinfocollapseheadingh4classpaneltitlemoreinformationh4divh4classhiddenxstextcentermoreinformationh4divclasspanelcollapsecollapseinidmoreinfocollapsedivclasspanelbodypanelh5spanclassglyphiconglyphiconremovecircleredspannbspguaranteesjobh5h5spanclassglyphiconglyphiconremovecircleredspannbspacceptsgibillh5h5spanclassglyphiconglyphiconokcirclegreenspannbspjobassistanceh5h5licensingh5plicensedbythefloridadeptofeducationph5spanclassglyphiconglyphiconremovecircleredspannbsphousingh5h5spanclassglyphiconglyphiconokcirclegreenspanahrefenterpriseofferscorporatetrainingah5divdivclasspanelpanelsideidcoursereportdivclasspanelheadingahrefbestcodingbootcampsdivclassbestbootcampcontainerimgclasssrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetsbest_bootcamp_course_report_white4a07db772ccb9aee4fa0f3ad6a6b9a23pngalthttpscoursereportproductionherokuappcomglobalsslfastlynetassetsbest_bootcamp_course_report_white4a07db772ccb9aee4fa0f3ad6a6b9a23pnglogoimgclasssrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetsbest_bootcamp_badge_course_report_green_20187fa206d8283713de4d0c00391f0109d7pngalthttpscoursereportproductionherokuappcomglobalsslfastlynetassetsbest_bootcamp_badge_course_report_green_20187fa206d8283713de4d0c00391f0109d7pnglogodivbrdivclassbannercontainerimgclassbannersrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetsestablished_school_badgeebe0a3f352bb36a13f02710919cda647pngalthttpscoursereportproductionherokuappcomglobalsslfastlynetassetsestablished_school_badgeebe0a3f352bb36a13f02710919cda647pnglogoimgclassbannersrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetslarge_alumni_network_badge848ae03429d96b6db30c413d38dad62apngalthttpscoursereportproductionherokuappcomglobalsslfastlynetassetslarge_alumni_network_badge848ae03429d96b6db30c413d38dad62apnglogoimgclassbannersrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetstop_rated_badge2a537914dae4979722e66430ef0756bdpngalthttpscoursereportproductionherokuappcomglobalsslfastlynetassetstop_rated_badge2a537914dae4979722e66430ef0756bdpnglogodivadivdivdivdivdivdivclasssidebarapplymoduleaclassgagetmatchedmpgetmatcheddatacityhrefgetmatchedspanclasstopnotsurewhatyourebrlookingforspanspanclassbottomwellmatchyouspanadivdivdivdivsectiondivclasscontactoverlaydivclassmodalcontainerdivclassmodalheaderh4starttheconversationh4pcompletethisformtoconnectwithironhackpdivformactioncontactclasscontactformcontactformvalidatedataschoolironhackidmpcontactformmethodpostinputtypehiddennameauthenticity_tokenidauthenticity_tokenvalueabw0cnplttay8fpejyrzu8qt6ndnpuxge1vyl2xjz2mocitetxsmgzavt6tydakzu0dovdcwz98meoe9ginputtypehiddennameschool_emailidschool_emailvaluehiironhackcominputtypehiddennameschool_ididschool_idvalue84inputtypehiddennameschool_contact_nameidschool_contact_namevaluealexwilliamsinputtypehiddennameschool_contact_emailidschool_contact_emailvaluealexwilliamsironhackcominputidschool_namenameschoolstyledisplaynonetypetextvalueironhackdivclassfieldcolmd12divclassbricklabelmynamelabelinputidnamenameuser_nametypetextdivdivclassbricklabelmyemaillabelinputclasscontactformidcontactemailnameuser_emailtypeemaildividresultdivdivdivclassbricklabelmyphonenumberoptionallabelinputclasscontactformidcontactphonenamephonetypeteldivdivdivclassfieldmidfieldcolmd12divclassbricktextrightlabelimmostinterestedinlabeldivdivclassbrickselectnamecontact_campus_ididcontact_campus_iddatadynamicselectabletargetcontact_course_iddatadynamicselectableurldynamic_selectcontact_campus_idcoursesdatatargetplaceholderselectcourseoptionvalueselectcampusoptionoptionvalue1089amsterdamoptionoptionvalue780barcelonaoptionoptionvalue995berlinoptionoptionvalue779madridoptionoptionvalue913mexicocityoptionoptionvalue107miamioptionoptionvalue843parisoptionoptionvalue1090saopaulooptionselectdivdivclassbrickselectnamecontact_course_ididcontact_course_idselectdivdividschool_errorsdivdivdivclassfieldcolmd12labelanyotherinformationyoudliketosharewithalexwilliamsfromironhacklabeltextareaclasscontactformidmessagenamemessageplaceholderoptionaltypetextboxtextareabrdivdivclassfieldinputclassbtnbuttoncontactformvalidatetypesubmitvaluegetintouchpclassh6bysubmittingiacknowledgethatmyinformationwillbesharedwithironhackpdivformaidclosecontactbtnclasscloserhrefspanclassiconcrossspanadivdivclassmodallowerdivdivclasssuccessmessagespanclassiconcheckaltspanh2thanksh2divdivscriptsrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetspagespecificintltelinputc585d5ec48fb4f7dbb37d0c2c31e7d17jsscriptdivclassopeninstructionsdivdivclassinstructionsoverlaydivclassmodalcontainerdivclassmodalheaderloginguestmodalheaderdivclasstextcenterdivclassloginerrorsdivdivclassloginsuccessdivdivdivclassrowno_bordercolmd12divdivclasspreconfirmationcontainerclasstextcenterh2classtextcenterrevpubtitleh2divclassrevpubpdivpclasstextcenterrevanonpph4classtextcenterrevpubh4verifyviah4divclasstextcenterrevpubconfirmemailbuttondatareviewdataurlidverifyreviewbuttonclassbtnbtndefaultonclickjavascriptemailverifyemailbuttonbuttonclassbtnbtndefaultonclickjavascriptopenverify3939linkedinbuttonbuttonclassbtnbtndefaultonclickjavascriptopenverify3939githubbuttondivpclasstextcentersubscriptbyclickingverifyvialinkedingithubyouagreetoletcoursereportstoreyourpublicprofiledetailsppclasstextcenterthankssomuchfortakingthetimetoshareyourexperiencewiththecoursereportcommunitypcontainerdivdivclassconfirmedviaemaildivclassreviewinstructionscontainerclasstextcenterh2greath2pwejustsentaspeciallinktoyouremailgoclickthatlinktopublishthisreviewph4classrevconfirmlinkonceyouveconfirmedyourpostyoucanviewyourlivereviewh4pthankssomuchfortakingthetimetoshareyourexperiencewiththecoursereportcommunitypcontainerdivdivdivclasscolmd12textcenterbottombufferahrefschoolsbuttonclassbtnbtndefaultbrowseschoolsbuttonadivdivdivdivscriptvarnewwindowfunctionopenverifyprovider_urlvarscreenxtypeofwindowscreenxundefinedwindowscreenxwindowscreenleftscreenytypeofwindowscreenyundefinedwindowscreenywindowscreentopouterwidthtypeofwindowouterwidthundefinedwindowouterwidthdocumentbodyclientwidthouterheighttypeofwindowouterheightundefinedwindowouterheightdocumentbodyclientheight22leftparseintscreenxouterwidth800210topparseintscreenyouterheight8002510featureswidth800height800leftlefttoptopreviewverifyreviewdatareviewtostringparamsreview_idreviewurlprovider_urlparamsbodycsscursorprogressnewwindowwindowopenurlloginfeaturesifwindowfocusnewwindowfocusreturnfalsefunctionemailverifyprovider_urlreviewverifyreviewdatareviewtostringurlverifyreviewdataurltostringpostsendconfirmationreviewreviewurlurlsuccessfunctiondatapreconfirmationhideconfirmedviaemailshowbottombuffershowscriptdivclassduplicateinstructionsoverlaydivclassmodalcontainerdivclassmodalheaderloginguestmodalheaderdivclassreviewinstructionscontainerclasstextcenterh2classduprevtitleh2hrpifyouwouldliketoreviseordeleteareviewpleaseemailahrefmailtohellocoursereportcomcoursereportmoderatorsapcontainerdivdivclasscolmd12textcenterbottombufferbuttonclassbtnbtndefaultidloginconfirmbacktoreviewbuttondivaidinstructionsclosehrefspanclassiconcrossspanadivdivdivscriptclose_instructions_modalfunctioninstructionsoverlayfadeout250duplicateinstructionsoverlayfadeout250returnfalseinstructionsconfirminstructionscloseonclickclose_instructions_modalscriptdivclassconfirmscholarshipoverlaydivclassmodalcontainerdivclassmodalheaderconfirmscholarshipmodalheaderdivclasstextcenterdivclassloginerrorsdivdivclassloginsuccessdivdivcontainerclasstextcenterh2successh2pph4classrevconfirmlinkanemailwiththesedetailshasbeensenttoironhackh4containerdivclasscolmd12textcenterbuttonclassbtnbtndefaultonclickjavascriptviewscholarshipsviewmyscholarshipsbuttondivdivaonclickjavascriptclosethismodalidscholarshipclosehrefspanclassiconcrossspanadivdivscriptvarnewwindowfunctionclosethismodalconfirmscholarshipoverlayfadeout500bodycssoverflowscrollfunctionviewscholarshipswindowlocationhrefresearchcenterscholarshipsscriptdivclassconfirmscholarshipappliedoverlaydivclassmodalcontainerdivclassmodalheaderconfirmscholarshipmodalheaderdivclasstextcenterdivclassloginerrorsdivdivclassloginsuccessdivdivcontainerclasstextcenterh2hangonh2pph4classrevconfirmlinkyouvealreadyappliedtothisscholarshipwithironhackh4containerdivclasscolmd12textcenterbuttonclassbtnbtndefaultonclickjavascriptclosethismodalclosebuttondivdivaonclickjavascriptclosethismodalidscholarshipclosehrefspanclassiconcrossspanadivdivscriptvarnewwindowfunctionclosethismodalconfirmscholarshipoverlayfadeout500bodycssoverflowscrollscriptdivclasserrorsoverlaydivclassmodalcontainerdivclassmodalheaderloginguestmodalheaderdivclasstextcenterh3classlogtitlewhoah3psomethingmusthavegoneterriblywrongfixthefollowingandtryagainpdivclassloginerrorsdivdivclassloginsuccessdivdivdivaidsubmiterrorclosehrefspanclassiconcrossspanadivdivdivclassshareoverlaydivclassmodalcontainerdivclassshareheaderh2sharethisreviewh2divdivclasssharebodypclasssharereviewtitlepinputclassshareableurlidshareinputreadonlybuttonclassbtnbtnreversesharebuttonspanclassglyphiconglyphiconsharenbspspancopytoclipboardbuttondivaidshareclosehrefspanclassiconcrossspanadivdivdivclassmatchpopupdivclassmodalcontainerdivclassmodalheadersectionclassfindbootcampwrapperdivclasscontainerdivclassonethirdfbwdescriptionpclassh1dataaossliderightdataaosduration400findthebrbestbrbootcampbrforyoupdivdivclasstwothirdsdivclasshalfpclassh2dataaossliderightdataaosduration800telluswhatyouresearchingforandwellmatchyouwithourhighestratedschoolspdivdivclasshalfaclassacceptlinkgagetmatcheddataoriginmodalhrefgetmatchedoriginmodalbuttonclassbtnbtnmatchgetmatchedbuttonadivdivdivsectiondivaidmatchclosebtnhrefspanclassiconcrossspanadivclasssuccessmessagespanclassiconcheckaltspanh2thanksh2divdivdivdivclassemailfootersectionclassemailfootercontainersectionclassheadercontainerdivclassimageboximgaltguidetopayingforbootcampssrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetspaying_for_bootcamp_ipad_mincb6dec01480a37f8f37dbdc1c919ae6cpngdivdivclassheaderboxh2getourfreeultimateguidetopayingforacodingbootcamph2divsectionsectionclassemailsubmissionboxformidoptinparsleyvalidateclassflexcolumnleftactionmodal_saveacceptcharsetutf8dataremotetruemethodpostinputnameutf8typehiddenvaluex2713inputtypeemailnameemailidemailplaceholderemailaddressrequiredrequiredsectionclassflexrowselectnamemailing_list_categoryidmailingcategoryinputoptionvalueiamoptionoptionvalueresearchingcodingbootcampsresearchingcodingbootcampsoptionoptionvaluecurrentstudentalumcurrentstudentalumoptionoptionvalueindustryprofessionalindustryprofessionaloptionoptionvalueotherotheroptionselectinputtypehiddennameutm_sourceidutm_sourceinputtypehiddennameutm_mediumidutm_mediuminputtypehiddennameutm_termidutm_terminputtypehiddennameutm_contentidutm_contentinputtypehiddennameutm_campaignidutm_campaigninputtypesubmitnamecommitvaluesignmeupclassbuttonbuttonbluesectiondivclassemailerrorlookslikeyourealreadyonourmailinglistifyourenotshootusannbspahrefmailtohellocoursereportcomemailadivdivclasssuccessgreatwevesignedyouupdivdivclassformnotesplusyoullbethefirsttoknowaboutcodingbootcampnewsandyouremailissafewithusdivformsectionsectiondivfooterdivclasscontainerlargerfooterdivclassrowdivclasscolsm3h4coursereporth4ulliidhomeahrefhomealiliidschoolsahrefschoolsschoolsaliliidblogahrefblogblogaliliidresourcesahrefresourcesadvicealiliidwriteareviewahrefwriteareviewwriteareviewaliliidaboutahrefaboutaboutaliliidconnectahrefconnectconnectwithusaliuldivdivclasscolsm3h4legalh4ulliahreftermsofservicetermsofservicealiliahrefprivacypolicyprivacypolicyaliulh4followush4ulclasscontactlinksliahreftwittercomcoursereporttarget_blankspanclassicontwitterspanaahrefwwwfacebookcomcoursereporttarget_blankspanclassiconfacebookspanaaahrefplusgooglecom110399277954088556485relpublishertarget_blankspanclassicongoogleplusspanaahrefmailtohellocoursereportcomspanclassiconmailspanaliuldivdivclasscolsm3h4researchh4ulliahrefcodingbootcampultimateguideultimateguidetochoosingacodingbootcampaliliahrefbestcodingbootcampsbestcodingbootcampsof2017aliliahrefreports2017codingbootcampmarketsizeresearch2017codingbootcampmarketsizereportaliliahrefreportscodingbootcampjobplacement20172017codingbootcampoutcomesdemographicsstudyaliuldivdivclasscolsm3aclasslogosmallpullrighthrefimgaltcoursereporttitlecoursereportsrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetslogosmalla04da9639b878f3d36becf065d607e0epngadivdivdivdivclasscontainermobilefooterdivclassrowdivclasscolxs6h4coursereporth4ulliidhomeahrefhomealiliidschoolsahrefschoolsschoolsaliliidblogahrefblogblogaliliidresourcesahrefresourcesadvicealiliidwriteareviewahrefwriteareviewwriteareviewaliliidaboutahrefaboutaboutaliliidconnectahrefconnectconnectwithusaliuldivdivclasscolxs6h4legalh4ulliahreftermsofservicetermsofservicealiliahrefprivacypolicyprivacypolicyaliulh4followush4ulclasscontactlinksliahreftwittercomcoursereporttarget_blankspanclassicontwitterspanaahrefwwwfacebookcomcoursereporttarget_blankspanclassiconfacebookspanaaahrefplusgooglecom110399277954088556485relpublishertarget_blankspanclassicongoogleplusspanaahrefmailtohellocoursereportcomspanclassiconmailspanaliulh4ahrefreportsresearchah4divdivdivfooterdivclassloginoverlaydivclassmodalcontainerdivclassmodalheaderloginmodalheaderdivclasstextcenterdivclassloginerrorsdivdivclassloginsuccessdivdivdivclassrowno_bordercolmd12divclasscolmd6textcenterh3classlogtitleloginh3divclassloginrevealidlog_informclassnew_useridnew_useractionloginacceptcharsetutf8dataremotetruemethodpostinputnameutf8typehiddenvaluex2713divclassfieldtextcenterinputplaceholderemailtypeemailvaluenameuseremailiduser_emaildivdivclassfieldtextcenterinputplaceholderpasswordtypepasswordnameuserpasswordiduser_passworddivdivclassfieldlinktextcenterahrefresetpasswordforgotpasswordadivdivclasstextcenterpclasstextcenterno__marginorpdivclasstextcenterinlinemediaaclasssocialmedialoginvaluefacebookdataauthfacebookhrefusersauthfacebookimgclasssociallogosrchttpss3amazonawscomcourse_report_productionmisc_imgsfbflogo__blue_29pngalthttpss3amazonawscomcourse_report_productionmisc_imgsfbflogo__blue_29pnglogoadivdivclasstextcenterinlinemediaaclasssocialmedialoginvaluetwitterdataauthtwitterhrefusersauthtwitterimgclasssociallogosrchttpss3amazonawscomcourse_report_productionmisc_imgstwitter_logo_white_on_bluepngalthttpss3amazonawscomcourse_report_productionmisc_imgstwitter_logo_white_on_bluepnglogoadivdivclasstextcenterinlinemediaaclasssocialmedialoginvaluegoogledataauthgooglehrefusersauthgoogle_oauth2imgclasssociallogosrchttpss3amazonawscomcourse_report_productionmisc_imgs1473366122_newgooglefaviconpngalthttpss3amazonawscomcourse_report_productionmisc_imgs1473366122_newgooglefaviconpnglogoadivdivdivclassactionstextcentersubmitlogintrayinputtypesubmitnamecommitvalueloginclassbtnbtndefaultdivformdivdivclasssignuprevealidsign_upformclassnew_useridnew_useractionsignupacceptcharsetutf8dataremotetruemethodpostinputnameutf8typehiddenvaluex2713divclassfieldtextcenterinputplaceholderemailtypeemailvaluenameuseremailiduser_emaildivdivclassfieldtextcenterinputplaceholderpasswordtypepasswordnameuserpasswordiduser_passworddivdivclasstextcenterpclasstextcenterno__marginorpdivclasstextcenterinlinemediaaclasssocialmedialoginvaluefacebookdataauthfacebookhrefusersauthfacebookimgclasssociallogosrchttpss3amazonawscomcourse_report_productionmisc_imgsfbflogo__blue_29pngalthttpss3amazonawscomcourse_report_productionmisc_imgsfbflogo__blue_29pnglogoadivdivclasstextcenterinlinemediaaclasssocialmedialoginvaluetwitterdataauthtwitterhrefusersauthtwitterimgclasssociallogosrchttpss3amazonawscomcourse_report_productionmisc_imgstwitter_logo_white_on_bluepngalthttpss3amazonawscomcourse_report_productionmisc_imgstwitter_logo_white_on_bluepnglogoadivdivclasstextcenterinlinemediaaclasssocialmedialoginvaluegoogledataauthgooglehrefusersauthgoogle_oauth2imgclasssociallogosrchttpss3amazonawscomcourse_report_productionmisc_imgs1473366122_newgooglefaviconpngalthttpss3amazonawscomcourse_report_productionmisc_imgs1473366122_newgooglefaviconpnglogoadivdivdivclassactionstextcentersubmitlogintrayinputtypesubmitnamecommitvaluesignupclassbtnbtndefaultdivformdivdivdivclasscolmd6textcenterleftborderpclasslogintextlogintoclaimtrackandfollowuponyourscholarshipplusyoucantrackyourbootcampreviewscomparebootcampsandsaveyourfavoriteschoolspdivclassformtraydivclasstextcenterloginrevealpnewtocoursereportpbuttonclassbtnbtndefaultidclose_log_insignupbuttondivdivclasstextcenterdisplaynonesignuprevealpalreadyhaveanaccountpbuttonclassbtnbtndefaultidclose_sign_uploginbuttondivdivdivdivdivspanclassiconcrossidloginclosespandivdivdivclassdisplaynoneidcurrentuseremailcurrent_useremaildivbodyhtml', 'doctypehtmlhtmlclassclientnojslangendirltrheadmetacharsetutf8titledataanalysiswikipediatitleheadbodyclassmediawikiltrsitedirltrmwhideemptyeltns0nssubjectpagedata_analysisrootpagedata_analysisskinvectoractionviewdividmwpagebaseclassnoprintdivdividmwheadbaseclassnoprintdivdividcontentclassmwbodyrolemainaidtopadividsitenoticeclassmwbodycontentcentralnoticedivdivclassmwindicatorsmwbodycontentdivh1idfirstheadingclassfirstheadinglangendataanalysish1dividbodycontentclassmwbodycontentdividsitesubclassnoprintfromwikipediathefreeencyclopediadivdividcontentsubdivdividjumptonavdivaclassmwjumplinkhrefmwheadjumptonavigationaaclassmwjumplinkhrefpsearchjumptosearchadividmwcontenttextlangendirltrclassmwcontentltrdivclassmwparseroutputtableclassverticalnavboxnowraplinksplainliststylefloatrightclearrightwidth220emmargin0010em10embackgroundf9f9f9border1pxsolidaaapadding02emborderspacing04em0textaligncenterlineheight14emfontsize88tbodytrtdstylepaddingtop04emlineheight12empartofaseriesonahrefwikistatisticstitlestatisticsstatisticsatdtrtrthstylepadding02em04em02empaddingtop0fontsize145lineheight12emahrefwikidata_visualizationtitledatavisualizationdatavisualizationathtrtrtdstylepadding001em04emdivclassnavframestylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftbackgroundddffddmajordimensionsdivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterulliahrefwikiexploratory_data_analysistitleexploratorydataanalysisexploratorydataanalysisa160822632ahrefwikiinformation_designtitleinformationdesigninformationdesignaliliahrefwikiinteractive_data_visualizationtitleinteractivedatavisualizationinteractivedatavisualizationaliliahrefwikidescriptive_statisticstitledescriptivestatisticsdescriptivestatisticsa160822632ahrefwikistatistical_inferencetitlestatisticalinferenceinferentialstatisticsaliliahrefwikistatistical_graphicstitlestatisticalgraphicsstatisticalgraphicsa160822632ahrefwikiplot_graphicstitleplotgraphicsplotaliliaclassmwselflinkselflinkdataanalysisa160822632ahrefwikiinfographictitleinfographicinfographicaliliahrefwikidata_sciencetitledatasciencedatasciencealiuldivdivtdtrtrtdstylepadding001em04emdivclassnavframestylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftbackgroundddffddimportantfiguresdivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterulliahrefwikitamara_munznertitletamaramunznertamaramunznera160822632ahrefwikiben_shneidermantitlebenshneidermanbenshneidermana160822632ahrefwikijohn_w_tukeyclassmwredirecttitlejohnwtukeyjohnwtukeya160822632ahrefwikiedward_tuftetitleedwardtufteedwardtuftea160822632ahrefwikifernanda_vic3a9gastitlefernandavigasfernandavigasa160822632ahrefwikihadley_wickhamtitlehadleywickhamhadleywickhamaliuldivdivtdtrtrtdstylepadding001em04emdivclassnavframestylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftbackgroundddffddinformationgraphictypesdivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterulliahrefwikiline_charttitlelinechartlinecharta160822632ahrefwikibar_charttitlebarchartbarchartaliliahrefwikihistogramtitlehistogramhistograma160822632ahrefwikiscatterplotclassmwredirecttitlescatterplotscatterplotaliliahrefwikiboxplotclassmwredirecttitleboxplotboxplota160822632ahrefwikipareto_charttitleparetochartparetochartaliliahrefwikipie_charttitlepiechartpiecharta160822632ahrefwikiarea_charttitleareachartareachartaliliahrefwikicontrol_charttitlecontrolchartcontrolcharta160822632ahrefwikirun_charttitlerunchartrunchartaliliahrefwikistemandleaf_displaytitlestemandleafdisplaystemandleafdisplaya160822632ahrefwikicartogramtitlecartogramcartogramaliliahrefwikismall_multipletitlesmallmultiplesmallmultiplea160822632ahrefwikisparklinetitlesparklinesparklinealiliahrefwikitable_informationtitletableinformationtablealiuldivdivtdtrtrtdstylepadding001em04emdivclassnavframestylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftbackgroundddffddrelatedtopicsdivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterulliahrefwikidatatitledatadataa160822632ahrefwikiinformationtitleinformationinformationaliliahrefwikibig_datatitlebigdatabigdataa160822632ahrefwikidatabasetitledatabasedatabasealiliahrefwikichartjunktitlechartjunkchartjunka160822632ahrefwikivisual_perceptiontitlevisualperceptionvisualperceptionaliliahrefwikiregression_analysistitleregressionanalysisregressionanalysisa160822632ahrefwikistatistical_modeltitlestatisticalmodelstatisticalmodelaliliahrefwikimisleading_graphtitlemisleadinggraphmisleadinggraphaliuldivdivtdtrtrtdstyletextalignrightfontsize115paddingtop06emdivclassplainlinkshlistnavbarminiulliclassnvviewahrefwikitemplatedata_visualizationtitletemplatedatavisualizationabbrtitleviewthistemplatevabbraliliclassnvtalkahrefwindexphptitletemplate_talkdata_visualizationampactioneditampredlink1classnewtitletemplatetalkdatavisualizationpagedoesnotexistabbrtitlediscussthistemplatetabbraliliclassnveditaclassexternaltexthrefenwikipediaorgwindexphptitletemplatedata_visualizationampactioneditabbrtitleeditthistemplateeabbraliuldivtdtrtbodytabletableclassverticalnavboxnowraplinksstylefloatrightclearrightwidth220emmargin0010em10embackgroundf9f9f9border1pxsolidaaapadding02emborderspacing04em0textaligncenterlineheight14emfontsize88tbodytrthstylepadding02em04em02emfontsize145lineheight12emahrefwikicomputational_physicstitlecomputationalphysicscomputationalphysicsathtrtrtdstylepadding02em004emahrefwikifilerayleightaylor_instabilityjpgclassimageimgaltrayleightaylorinstabilityjpgsrcuploadwikimediaorgwikipediacommonsthumb554rayleightaylor_instabilityjpg220pxrayleightaylor_instabilityjpgwidth220height220srcsetuploadwikimediaorgwikipediacommonsthumb554rayleightaylor_instabilityjpg330pxrayleightaylor_instabilityjpg15xuploadwikimediaorgwikipediacommonsthumb554rayleightaylor_instabilityjpg440pxrayleightaylor_instabilityjpg2xdatafilewidth500datafileheight500atdtrtrtdstylepadding001em04empahrefwikinumerical_analysistitlenumericalanalysisnumericalanalysisa160b183b32ahrefwikicomputer_simulationtitlecomputersimulationsimulationabrpaclassmwselflinkselflinkdataanalysisa160b183b32ahrefwikiscientific_visualizationtitlescientificvisualizationvisualizationatdtrtrtdstylepadding001em04emdivclassnavframecollapsedstylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftahrefwikipotentialtitlepotentialpotentialsadivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterahrefwikimorselongrange_potentialtitlemorselongrangepotentialmorselongrangepotentiala160b183b32ahrefwikilennardjones_potentialtitlelennardjonespotentiallennardjonespotentiala160b183b32ahrefwikiyukawa_potentialtitleyukawapotentialyukawapotentiala160b183b32ahrefwikimorse_potentialtitlemorsepotentialmorsepotentialadivdivtdtrtrtdstylepadding001em04emdivclassnavframecollapsedstylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftahrefwikicomputational_fluid_dynamicstitlecomputationalfluiddynamicsfluiddynamicsadivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterahrefwikifinite_difference_methodtitlefinitedifferencemethodfinitedifferencea160b183b32ahrefwikifinite_volume_methodtitlefinitevolumemethodfinitevolumeabrpahrefwikifinite_element_methodtitlefiniteelementmethodfiniteelementa160b183b32ahrefwikiboundary_element_methodtitleboundaryelementmethodboundaryelementabrahrefwikilattice_boltzmann_methodstitlelatticeboltzmannmethodslatticeboltzmanna160b183b32ahrefwikiriemann_solvertitleriemannsolverriemannsolverabrahrefwikidissipative_particle_dynamicstitledissipativeparticledynamicsdissipativeparticledynamicsabrahrefwikismoothedparticle_hydrodynamicstitlesmoothedparticlehydrodynamicssmoothedparticlehydrodynamicsabrpahrefwikiturbulence_modelingtitleturbulencemodelingturbulencemodelsadivdivtdtrtrtdstylepadding001em04emdivclassnavframecollapsedstylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftahrefwikimonte_carlo_methodtitlemontecarlomethodmontecarlomethodsadivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterahrefwikimonte_carlo_integrationtitlemontecarlointegrationintegrationa160b183b32ahrefwikigibbs_samplingtitlegibbssamplinggibbssamplinga160b183b32ahrefwikimetropolise28093hastings_algorithmtitlemetropolishastingsalgorithmmetropolisalgorithmadivdivtdtrtrtdstylepadding001em04emdivclassnavframecollapsedstylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftparticledivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterahrefwikinbody_simulationtitlenbodysimulationnbodya160b183b32ahrefwikiparticleincelltitleparticleincellparticleincellabrahrefwikimolecular_dynamicstitlemoleculardynamicsmoleculardynamicsadivdivtdtrtrtdstylepadding001em04emdivclassnavframecollapsedstylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftscientistsdivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterahrefwikisergei_k_godunovtitlesergeikgodunovgodunova160b183b32ahrefwikistanislaw_ulamtitlestanislawulamulama160b183b32ahrefwikijohn_von_neumanntitlejohnvonneumannvonneumanna160b183b32ahrefwikiboris_galerkintitleborisgalerkingalerkina160b183b32ahrefwikiedward_norton_lorenztitleedwardnortonlorenzlorenza160b183b32ahrefwikikenneth_g_wilsontitlekennethgwilsonwilsonadivdivtdtrtrtdstyletextalignrightfontsize115paddingtop06emdivclassplainlinkshlistnavbarminiulliclassnvviewahrefwikitemplatecomputational_physicstitletemplatecomputationalphysicsabbrtitleviewthistemplatevabbraliliclassnvtalkahrefwikitemplate_talkcomputational_physicstitletemplatetalkcomputationalphysicsabbrtitlediscussthistemplatetabbraliliclassnveditaclassexternaltexthrefenwikipediaorgwindexphptitletemplatecomputational_physicsampactioneditabbrtitleeditthistemplateeabbraliuldivtdtrtbodytablepbdataanalysisbisaprocessofinspectingahrefwikidata_cleansingtitledatacleansingcleansingaahrefwikidata_transformationtitledatatransformationtransformingaandahrefwikidata_modelingtitledatamodelingmodelingaahrefwikidatatitledatadataawiththegoalofdiscoveringusefulinformationinformingconclusionsandsupportingdecisionmakingdataanalysishasmultiplefacetsandapproachesencompassingdiversetechniquesunderavarietyofnameswhilebeingusedindifferentbusinessscienceandsocialsciencedomainsppahrefwikidata_miningtitledataminingdataminingaisaparticulardataanalysistechniquethatfocusesonmodelingandknowledgediscoveryforpredictiveratherthanpurelydescriptivepurposeswhileahrefwikibusiness_intelligencetitlebusinessintelligencebusinessintelligenceacoversdataanalysisthatreliesheavilyonaggregationfocusingmainlyonbusinessinformationsupidcite_ref1classreferenceahrefcite_note191193asupinstatisticalapplicationsdataanalysiscanbedividedintoahrefwikidescriptive_statisticstitledescriptivestatisticsdescriptivestatisticsaahrefwikiexploratory_data_analysistitleexploratorydataanalysisexploratorydataanalysisaedaandahrefwikistatistical_hypothesis_testingtitlestatisticalhypothesistestingconfirmatorydataanalysisacdaedafocusesondiscoveringnewfeaturesinthedatawhilecdafocusesonconfirmingorfalsifyingexistingahrefwikihypothesesclassmwredirecttitlehypotheseshypothesesaahrefwikipredictive_analyticstitlepredictiveanalyticspredictiveanalyticsafocusesonapplicationofstatisticalmodelsforpredictiveforecastingorclassificationwhileahrefwikitext_analyticsclassmwredirecttitletextanalyticstextanalyticsaappliesstatisticallinguisticandstructuraltechniquestoextractandclassifyinformationfromtextualsourcesaspeciesofahrefwikiunstructured_datatitleunstructureddataunstructureddataaalloftheabovearevarietiesofdataanalysisppahrefwikidata_integrationtitledataintegrationdataintegrationaisaprecursortodataanalysissupclassnoprintinlinetemplatestylemarginleft01emwhitespacenowrap91iahrefwikiwikipediamanual_of_stylewords_to_watchunsupported_attributionstitlewikipediamanualofstylewordstowatchspantitlethematerialnearthistagmayuseweaselwordsortoovagueattributionmarch2018accordingtowhomspanai93supanddataanalysisiscloselylinkedsupclassnoprintinlinetemplatestylewhitespacenowrap91iahrefwikiwikipediaplease_clarifytitlewikipediapleaseclarifyspantitlepleaseclarifythefollowingstatementorstatementswithagoodexplanationfromareliablesourcemarch2018howspanai93suptoahrefwikidata_visualizationtitledatavisualizationdatavisualizationaanddatadisseminationthetermidataanalysisiissometimesusedasasynonymfordatamodelingpdividtocclasstocinputtypecheckboxrolebuttonidtoctogglecheckboxclasstoctogglecheckboxstyledisplaynonedivclasstoctitlelangendirltrh2contentsh2spanclasstoctogglespanlabelclasstoctogglelabelfortoctogglecheckboxlabelspandivulliclasstoclevel1tocsection1ahrefthe_process_of_data_analysisspanclasstocnumber1spanspanclasstoctexttheprocessofdataanalysisspanaulliclasstoclevel2tocsection2ahrefdata_requirementsspanclasstocnumber11spanspanclasstoctextdatarequirementsspanaliliclasstoclevel2tocsection3ahrefdata_collectionspanclasstocnumber12spanspanclasstoctextdatacollectionspanaliliclasstoclevel2tocsection4ahrefdata_processingspanclasstocnumber13spanspanclasstoctextdataprocessingspanaliliclasstoclevel2tocsection5ahrefdata_cleaningspanclasstocnumber14spanspanclasstoctextdatacleaningspanaliliclasstoclevel2tocsection6ahrefexploratory_data_analysisspanclasstocnumber15spanspanclasstoctextexploratorydataanalysisspanaliliclasstoclevel2tocsection7ahrefmodeling_and_algorithmsspanclasstocnumber16spanspanclasstoctextmodelingandalgorithmsspanaliliclasstoclevel2tocsection8ahrefdata_productspanclasstocnumber17spanspanclasstoctextdataproductspanaliliclasstoclevel2tocsection9ahrefcommunicationspanclasstocnumber18spanspanclasstoctextcommunicationspanaliulliliclasstoclevel1tocsection10ahrefquantitative_messagesspanclasstocnumber2spanspanclasstoctextquantitativemessagesspanaliliclasstoclevel1tocsection11ahreftechniques_for_analyzing_quantitative_dataspanclasstocnumber3spanspanclasstoctexttechniquesforanalyzingquantitativedataspanaliliclasstoclevel1tocsection12ahrefanalytical_activities_of_data_usersspanclasstocnumber4spanspanclasstoctextanalyticalactivitiesofdatausersspanaliliclasstoclevel1tocsection13ahrefbarriers_to_effective_analysisspanclasstocnumber5spanspanclasstoctextbarrierstoeffectiveanalysisspanaulliclasstoclevel2tocsection14ahrefconfusing_fact_and_opinionspanclasstocnumber51spanspanclasstoctextconfusingfactandopinionspanaliliclasstoclevel2tocsection15ahrefcognitive_biasesspanclasstocnumber52spanspanclasstoctextcognitivebiasesspanaliliclasstoclevel2tocsection16ahrefinnumeracyspanclasstocnumber53spanspanclasstoctextinnumeracyspanaliulliliclasstoclevel1tocsection17ahrefother_topicsspanclasstocnumber6spanspanclasstoctextothertopicsspanaulliclasstoclevel2tocsection18ahrefsmart_buildingsspanclasstocnumber61spanspanclasstoctextsmartbuildingsspanaliliclasstoclevel2tocsection19ahrefanalytics_and_business_intelligencespanclasstocnumber62spanspanclasstoctextanalyticsandbusinessintelligencespanaliliclasstoclevel2tocsection20ahrefeducationspanclasstocnumber63spanspanclasstoctexteducationspanaliulliliclasstoclevel1tocsection21ahrefpractitioner_notesspanclasstocnumber7spanspanclasstoctextpractitionernotesspanaulliclasstoclevel2tocsection22ahrefinitial_data_analysisspanclasstocnumber71spanspanclasstoctextinitialdataanalysisspanaulliclasstoclevel3tocsection23ahrefquality_of_dataspanclasstocnumber711spanspanclasstoctextqualityofdataspanaliliclasstoclevel3tocsection24ahrefquality_of_measurementsspanclasstocnumber712spanspanclasstoctextqualityofmeasurementsspanaliliclasstoclevel3tocsection25ahrefinitial_transformationsspanclasstocnumber713spanspanclasstoctextinitialtransformationsspanaliliclasstoclevel3tocsection26ahrefdid_the_implementation_of_the_study_fulfill_the_intentions_of_the_research_designspanclasstocnumber714spanspanclasstoctextdidtheimplementationofthestudyfulfilltheintentionsoftheresearchdesignspanaliliclasstoclevel3tocsection27ahrefcharacteristics_of_data_samplespanclasstocnumber715spanspanclasstoctextcharacteristicsofdatasamplespanaliliclasstoclevel3tocsection28ahreffinal_stage_of_the_initial_data_analysisspanclasstocnumber716spanspanclasstoctextfinalstageoftheinitialdataanalysisspanaliliclasstoclevel3tocsection29ahrefanalysisspanclasstocnumber717spanspanclasstoctextanalysisspanaliliclasstoclevel3tocsection30ahrefnonlinear_analysisspanclasstocnumber718spanspanclasstoctextnonlinearanalysisspanaliulliliclasstoclevel2tocsection31ahrefmain_data_analysisspanclasstocnumber72spanspanclasstoctextmaindataanalysisspanaulliclasstoclevel3tocsection32ahrefexploratory_and_confirmatory_approachesspanclasstocnumber721spanspanclasstoctextexploratoryandconfirmatoryapproachesspanaliliclasstoclevel3tocsection33ahrefstability_of_resultsspanclasstocnumber722spanspanclasstoctextstabilityofresultsspanaliliclasstoclevel3tocsection34ahrefstatistical_methodsspanclasstocnumber723spanspanclasstoctextstatisticalmethodsspanaliulliulliliclasstoclevel1tocsection35ahreffree_software_for_data_analysisspanclasstocnumber8spanspanclasstoctextfreesoftwarefordataanalysisspanaliliclasstoclevel1tocsection36ahrefinternational_data_analysis_contestsspanclasstocnumber9spanspanclasstoctextinternationaldataanalysiscontestsspanaliliclasstoclevel1tocsection37ahrefsee_alsospanclasstocnumber10spanspanclasstoctextseealsospanaliliclasstoclevel1tocsection38ahrefreferencesspanclasstocnumber11spanspanclasstoctextreferencesspanaulliclasstoclevel2tocsection39ahrefcitationsspanclasstocnumber111spanspanclasstoctextcitationsspanaliliclasstoclevel2tocsection40ahrefbibliographyspanclasstocnumber112spanspanclasstoctextbibliographyspanaliulliliclasstoclevel1tocsection41ahreffurther_readingspanclasstocnumber12spanspanclasstoctextfurtherreadingspanaliuldivh2spanclassmwheadlineidthe_process_of_data_analysistheprocessofdataanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection1titleeditsectiontheprocessofdataanalysiseditaspanclassmweditsectionbracketspanspanh2divclassthumbtrightdivclassthumbinnerstylewidth352pxahrefwikifiledata_visualization_process_v1pngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumbbbadata_visualization_process_v1png350pxdata_visualization_process_v1pngwidth350height263classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumbbbadata_visualization_process_v1png525pxdata_visualization_process_v1png15xuploadwikimediaorgwikipediacommonsthumbbbadata_visualization_process_v1png700pxdata_visualization_process_v1png2xdatafilewidth960datafileheight720adivclassthumbcaptiondivclassmagnifyahrefwikifiledata_visualization_process_v1pngclassinternaltitleenlargeadivdatascienceprocessflowchartfromdoingdatasciencecathyoneilandrachelschutt2013divdivdivpanalysisreferstobreakingawholeintoitsseparatecomponentsforindividualexaminationdataanalysisisaahrefwikiprocess_theorytitleprocesstheoryprocessaforobtainingrawdataandconvertingitintoinformationusefulfordecisionmakingbyusersdataiscollectedandanalyzedtoanswerquestionstesthypothesesordisprovetheoriessupidcite_refjudd_and_mcclelland_1989_20classreferenceahrefcite_notejudd_and_mcclelland_1989291293asupppstatisticianahrefwikijohn_tukeytitlejohntukeyjohntukeyadefineddataanalysisin1961asproceduresforanalyzingdatatechniquesforinterpretingtheresultsofsuchprocedureswaysofplanningthegatheringofdatatomakeitsanalysiseasiermorepreciseormoreaccurateandallthemachineryandresultsofmathematicalstatisticswhichapplytoanalyzingdatasupidcite_ref3classreferenceahrefcite_note391393asupppthereareseveralphasesthatcanbedistinguisheddescribedbelowthephasesareiterativeinthatfeedbackfromlaterphasesmayresultinadditionalworkinearlierphasessupidcite_refo39neil_and_schutt_2013_40classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupph3spanclassmwheadlineiddata_requirementsdatarequirementsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection2titleeditsectiondatarequirementseditaspanclassmweditsectionbracketspanspanh3pthedataisnecessaryasinputstotheanalysiswhichisspecifiedbasedupontherequirementsofthosedirectingtheanalysisorcustomerswhowillusethefinishedproductoftheanalysisthegeneraltypeofentityuponwhichthedatawillbecollectedisreferredtoasanexperimentalunitegapersonorpopulationofpeoplespecificvariablesregardingapopulationegageandincomemaybespecifiedandobtaineddatamaybenumericalorcategoricalieatextlabelfornumberssupidcite_refo39neil_and_schutt_2013_41classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupph3spanclassmwheadlineiddata_collectiondatacollectionspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection3titleeditsectiondatacollectioneditaspanclassmweditsectionbracketspanspanh3pdataiscollectedfromavarietyofsourcestherequirementsmaybecommunicatedbyanalyststocustodiansofthedatasuchasinformationtechnologypersonnelwithinanorganizationthedatamayalsobecollectedfromsensorsintheenvironmentsuchastrafficcamerassatellitesrecordingdevicesetcitmayalsobeobtainedthroughinterviewsdownloadsfromonlinesourcesorreadingdocumentationsupidcite_refo39neil_and_schutt_2013_42classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupph3spanclassmwheadlineiddata_processingdataprocessingspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection4titleeditsectiondataprocessingeditaspanclassmweditsectionbracketspanspanh3divclassthumbtrightdivclassthumbinnerstylewidth352pxahrefwikifilerelationship_of_data_information_and_intelligencepngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumbeeerelationship_of_data2c_information_and_intelligencepng350pxrelationship_of_data2c_information_and_intelligencepngwidth350height263classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumbeeerelationship_of_data2c_information_and_intelligencepng525pxrelationship_of_data2c_information_and_intelligencepng15xuploadwikimediaorgwikipediacommonsthumbeeerelationship_of_data2c_information_and_intelligencepng700pxrelationship_of_data2c_information_and_intelligencepng2xdatafilewidth960datafileheight720adivclassthumbcaptiondivclassmagnifyahrefwikifilerelationship_of_data_information_and_intelligencepngclassinternaltitleenlargeadivthephasesoftheahrefwikiintelligence_cycletitleintelligencecycleintelligencecycleausedtoconvertrawinformationintoactionableintelligenceorknowledgeareconceptuallysimilartothephasesindataanalysisdivdivdivpdatainitiallyobtainedmustbeprocessedororganisedforanalysisforinstancethesemayinvolveplacingdataintorowsandcolumnsinatableformatieahrefwikidata_modeltitledatamodelstructureddataaforfurtheranalysissuchaswithinaspreadsheetorstatisticalsoftwaresupidcite_refo39neil_and_schutt_2013_43classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupph3spanclassmwheadlineiddata_cleaningdatacleaningspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection5titleeditsectiondatacleaningeditaspanclassmweditsectionbracketspanspanh3ponceprocessedandorganisedthedatamaybeincompletecontainduplicatesorcontainerrorstheneedfordatacleaningwillarisefromproblemsinthewaythatdataisenteredandstoreddatacleaningistheprocessofpreventingandcorrectingtheseerrorscommontasksincluderecordmatchingidentifyinginaccuracyofdataoverallqualityofexistingdatasupidcite_ref5classreferenceahrefcite_note591593asupdeduplicationandcolumnsegmentationsupidcite_ref6classreferenceahrefcite_note691693asupsuchdataproblemscanalsobeidentifiedthroughavarietyofanalyticaltechniquesforexamplewithfinancialinformationthetotalsforparticularvariablesmaybecomparedagainstseparatelypublishednumbersbelievedtobereliablesupidcite_refkoomey1_70classreferenceahrefcite_notekoomey1791793asupunusualamountsaboveorbelowpredeterminedthresholdsmayalsobereviewedthereareseveraltypesofdatacleaningthatdependonthetypeofdatasuchasphonenumbersemailaddressesemployersetcquantitativedatamethodsforoutlierdetectioncanbeusedtogetridoflikelyincorrectlyentereddatatextualdataspellcheckerscanbeusedtolessentheamountofmistypedwordsbutitishardertotellifthewordsthemselvesarecorrectsupidcite_ref8classreferenceahrefcite_note891893asupph3spanclassmwheadlineidexploratory_data_analysisexploratorydataanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection6titleeditsectionexploratorydataanalysiseditaspanclassmweditsectionbracketspanspanh3poncethedataiscleaneditcanbeanalyzedanalystsmayapplyavarietyoftechniquesreferredtoasahrefwikiexploratory_data_analysistitleexploratorydataanalysisexploratorydataanalysisatobeginunderstandingthemessagescontainedinthedatasupidcite_ref9classreferenceahrefcite_note991993asupsupidcite_ref10classreferenceahrefcite_note10911093asuptheprocessofexplorationmayresultinadditionaldatacleaningoradditionalrequestsfordatasotheseactivitiesmaybeiterativeinnatureahrefwikidescriptive_statisticstitledescriptivestatisticsdescriptivestatisticsasuchastheaverageormedianmaybegeneratedtohelpunderstandthedataahrefwikidata_visualizationtitledatavisualizationdatavisualizationamayalsobeusedtoexaminethedataingraphicalformattoobtainadditionalinsightregardingthemessageswithinthedatasupidcite_refo39neil_and_schutt_2013_44classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupph3spanclassmwheadlineidmodeling_and_algorithmsmodelingandalgorithmsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection7titleeditsectionmodelingandalgorithmseditaspanclassmweditsectionbracketspanspanh3pmathematicalformulasormodelscalledahrefwikialgorithmsclassmwredirecttitlealgorithmsalgorithmsamaybeappliedtothedatatoidentifyrelationshipsamongthevariablessuchasahrefwikicorrelation_and_dependencetitlecorrelationanddependencecorrelationaorahrefwikicausalitytitlecausalitycausationaingeneraltermsmodelsmaybedevelopedtoevaluateaparticularvariableinthedatabasedonothervariablesinthedatawithsomeresidualerrordependingonmodelaccuracyiedatamodelerrorsupidcite_refjudd_and_mcclelland_1989_21classreferenceahrefcite_notejudd_and_mcclelland_1989291293asupppahrefwikiinferential_statisticsclassmwredirecttitleinferentialstatisticsinferentialstatisticsaincludestechniquestomeasurerelationshipsbetweenparticularvariablesforexampleahrefwikiregression_analysistitleregressionanalysisregressionanalysisamaybeusedtomodelwhetherachangeinadvertisingindependentvariablexexplainsthevariationinsalesdependentvariableyinmathematicaltermsysalesisafunctionofxadvertisingitmaybedescribedasyaxberrorwherethemodelisdesignedsuchthataandbminimizetheerrorwhenthemodelpredictsyforagivenrangeofvaluesofxanalystsmayattempttobuildmodelsthataredescriptiveofthedatatosimplifyanalysisandcommunicateresultssupidcite_refjudd_and_mcclelland_1989_22classreferenceahrefcite_notejudd_and_mcclelland_1989291293asupph3spanclassmwheadlineiddata_productdataproductspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection8titleeditsectiondataproducteditaspanclassmweditsectionbracketspanspanh3padataproductisacomputerapplicationthattakesdatainputsandgeneratesoutputsfeedingthembackintotheenvironmentitmaybebasedonamodeloralgorithmanexampleisanapplicationthatanalyzesdataaboutcustomerpurchasinghistoryandrecommendsotherpurchasesthecustomermightenjoysupidcite_refo39neil_and_schutt_2013_45classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupph3spanclassmwheadlineidcommunicationcommunicationspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection9titleeditsectioncommunicationeditaspanclassmweditsectionbracketspanspanh3divclassthumbtrightdivclassthumbinnerstylewidth252pxahrefwikifilesocial_network_analysis_visualizationpngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumb99bsocial_network_analysis_visualizationpng250pxsocial_network_analysis_visualizationpngwidth250height186classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumb99bsocial_network_analysis_visualizationpng375pxsocial_network_analysis_visualizationpng15xuploadwikimediaorgwikipediacommonsthumb99bsocial_network_analysis_visualizationpng500pxsocial_network_analysis_visualizationpng2xdatafilewidth1185datafileheight883adivclassthumbcaptiondivclassmagnifyahrefwikifilesocial_network_analysis_visualizationpngclassinternaltitleenlargeadivahrefwikidata_visualizationtitledatavisualizationdatavisualizationatounderstandtheresultsofadataanalysissupidcite_ref11classreferenceahrefcite_note11911193asupdivdivdivdivrolenoteclasshatnotenavigationnotsearchablemainarticleahrefwikidata_visualizationtitledatavisualizationdatavisualizationadivponcethedataisanalyzeditmaybereportedinmanyformatstotheusersoftheanalysistosupporttheirrequirementstheusersmayhavefeedbackwhichresultsinadditionalanalysisassuchmuchoftheanalyticalcycleisiterativesupidcite_refo39neil_and_schutt_2013_46classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupppwhendetermininghowtocommunicatetheresultstheanalystmayconsiderahrefwikidata_visualizationtitledatavisualizationdatavisualizationatechniquestohelpclearlyandefficientlycommunicatethemessagetotheaudiencedatavisualizationusesahrefwikiinformation_displaysclassmwredirecttitleinformationdisplaysinformationdisplaysasuchastablesandchartstohelpcommunicatekeymessagescontainedinthedatatablesarehelpfultoauserwhomightlookupspecificnumberswhilechartsegbarchartsorlinechartsmayhelpexplainthequantitativemessagescontainedinthedataph2spanclassmwheadlineidquantitative_messagesquantitativemessagesspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection10titleeditsectionquantitativemessageseditaspanclassmweditsectionbracketspanspanh2divrolenoteclasshatnotenavigationnotsearchablemainarticleahrefwikidata_visualizationtitledatavisualizationdatavisualizationadivdivclassthumbtrightdivclassthumbinnerstylewidth252pxahrefwikifiletotal_revenues_and_outlays_as_percent_gdp_2013pngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumbffbtotal_revenues_and_outlays_as_percent_gdp_2013png250pxtotal_revenues_and_outlays_as_percent_gdp_2013pngwidth250height118classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumbffbtotal_revenues_and_outlays_as_percent_gdp_2013png375pxtotal_revenues_and_outlays_as_percent_gdp_2013png15xuploadwikimediaorgwikipediacommonsthumbffbtotal_revenues_and_outlays_as_percent_gdp_2013png500pxtotal_revenues_and_outlays_as_percent_gdp_2013png2xdatafilewidth1025datafileheight484adivclassthumbcaptiondivclassmagnifyahrefwikifiletotal_revenues_and_outlays_as_percent_gdp_2013pngclassinternaltitleenlargeadivatimeseriesillustratedwithalinechartdemonstratingtrendsinusfederalspendingandrevenueovertimedivdivdivdivclassthumbtrightdivclassthumbinnerstylewidth252pxahrefwikifileus_phillips_curve_2000_to_2013pngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumb77eus_phillips_curve_2000_to_2013png250pxus_phillips_curve_2000_to_2013pngwidth250height188classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumb77eus_phillips_curve_2000_to_2013png375pxus_phillips_curve_2000_to_2013png15xuploadwikimediaorgwikipediacommonsthumb77eus_phillips_curve_2000_to_2013png500pxus_phillips_curve_2000_to_2013png2xdatafilewidth960datafileheight720adivclassthumbcaptiondivclassmagnifyahrefwikifileus_phillips_curve_2000_to_2013pngclassinternaltitleenlargeadivascatterplotillustratingcorrelationbetweentwovariablesinflationandunemploymentmeasuredatpointsintimedivdivdivpstephenfewdescribedeighttypesofquantitativemessagesthatusersmayattempttounderstandorcommunicatefromasetofdataandtheassociatedgraphsusedtohelpcommunicatethemessagecustomersspecifyingrequirementsandanalystsperformingthedataanalysismayconsiderthesemessagesduringthecourseoftheprocesspollitimeseriesasinglevariableiscapturedoveraperiodoftimesuchastheunemploymentrateovera10yearperiodaahrefwikiline_charttitlelinechartlinechartamaybeusedtodemonstratethetrendlilirankingcategoricalsubdivisionsarerankedinascendingordescendingordersuchasarankingofsalesperformancetheimeasureibysalespersonstheicategoryiwitheachsalespersonaicategoricalsubdivisioniduringasingleperiodaahrefwikibar_charttitlebarchartbarchartamaybeusedtoshowthecomparisonacrossthesalespersonsliliparttowholecategoricalsubdivisionsaremeasuredasaratiotothewholeieapercentageoutof100aahrefwikipie_charttitlepiechartpiechartaorbarchartcanshowthecomparisonofratiossuchasthemarketsharerepresentedbycompetitorsinamarketlilideviationcategoricalsubdivisionsarecomparedagainstareferencesuchasacomparisonofactualvsbudgetexpensesforseveraldepartmentsofabusinessforagiventimeperiodabarchartcanshowcomparisonoftheactualversusthereferenceamountlilifrequencydistributionshowsthenumberofobservationsofaparticularvariableforgivenintervalsuchasthenumberofyearsinwhichthestockmarketreturnisbetweenintervalssuchas0101120etcaahrefwikihistogramtitlehistogramhistogramaatypeofbarchartmaybeusedforthisanalysislilicorrelationcomparisonbetweenobservationsrepresentedbytwovariablesxytodetermineiftheytendtomoveinthesameoroppositedirectionsforexampleplottingunemploymentxandinflationyforasampleofmonthsaahrefwikiscatter_plottitlescatterplotscatterplotaistypicallyusedforthismessagelilinominalcomparisoncomparingcategoricalsubdivisionsinnoparticularordersuchasthesalesvolumebyproductcodeabarchartmaybeusedforthiscomparisonliligeographicorgeospatialcomparisonofavariableacrossamaporlayoutsuchastheunemploymentratebystateorthenumberofpersonsonthevariousfloorsofabuildingaahrefwikicartogramtitlecartogramcartogramaisatypicalgraphicusedsupidcite_ref12classreferenceahrefcite_note12911293asupsupidcite_ref13classreferenceahrefcite_note13911393asupliolh2spanclassmwheadlineidtechniques_for_analyzing_quantitative_datatechniquesforanalyzingquantitativedataspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection11titleeditsectiontechniquesforanalyzingquantitativedataeditaspanclassmweditsectionbracketspanspanh2divrolenoteclasshatnotenavigationnotsearchableseealsoahrefwikiproblem_solvingtitleproblemsolvingproblemsolvingadivpauthorjonathankoomeyhasrecommendedaseriesofbestpracticesforunderstandingquantitativedatatheseincludepullicheckrawdataforanomaliespriortoperformingyouranalysislilireperformimportantcalculationssuchasverifyingcolumnsofdatathatareformuladrivenliliconfirmmaintotalsarethesumofsubtotalslilicheckrelationshipsbetweennumbersthatshouldberelatedinapredictablewaysuchasratiosovertimelilinormalizenumberstomakecomparisonseasiersuchasanalyzingamountsperpersonorrelativetogdporasanindexvaluerelativetoabaseyearlilibreakproblemsintocomponentpartsbyanalyzingfactorsthatledtotheresultssuchasahrefwikidupont_analysistitledupontanalysisdupontanalysisaofreturnonequitysupidcite_refkoomey1_71classreferenceahrefcite_notekoomey1791793asupliulpforthevariablesunderexaminationanalyststypicallyobtainahrefwikidescriptive_statisticstitledescriptivestatisticsdescriptivestatisticsaforthemsuchasthemeanaverageahrefwikimediantitlemedianmedianaandahrefwikistandard_deviationtitlestandarddeviationstandarddeviationatheymayalsoanalyzetheahrefwikiprobability_distributiontitleprobabilitydistributiondistributionaofthekeyvariablestoseehowtheindividualvaluesclusteraroundthemeanpdivclassthumbtrightdivclassthumbinnerstylewidth252pxahrefwikifileus_employment_statistics__march_2015pngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumbddbus_employment_statistics__march_2015png250pxus_employment_statistics__march_2015pngwidth250height163classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumbddbus_employment_statistics__march_2015png375pxus_employment_statistics__march_2015png15xuploadwikimediaorgwikipediacommonsthumbddbus_employment_statistics__march_2015png500pxus_employment_statistics__march_2015png2xdatafilewidth1200datafileheight783adivclassthumbcaptiondivclassmagnifyahrefwikifileus_employment_statistics__march_2015pngclassinternaltitleenlargeadivanillustrationoftheahrefwikimece_principletitlemeceprinciplemeceprincipleausedfordataanalysisdivdivdivptheconsultantsatahrefwikimckinsey_and_companyclassmwredirecttitlemckinseyandcompanymckinseyandcompanyanamedatechniqueforbreakingaquantitativeproblemdownintoitscomponentpartscalledtheahrefwikimece_principletitlemeceprinciplemeceprincipleaeachlayercanbebrokendownintoitscomponentseachofthesubcomponentsmustbeahrefwikimutually_exclusive_eventsclassmwredirecttitlemutuallyexclusiveeventsmutuallyexclusiveaofeachotherandahrefwikicollectively_exhaustive_eventstitlecollectivelyexhaustiveeventscollectivelyaadduptothelayerabovethemtherelationshipisreferredtoasmutuallyexclusiveandcollectivelyexhaustiveormeceforexampleprofitbydefinitioncanbebrokendownintototalrevenueandtotalcostinturntotalrevenuecanbeanalyzedbyitscomponentssuchasrevenueofdivisionsabandcwhicharemutuallyexclusiveofeachotherandshouldaddtothetotalrevenuecollectivelyexhaustiveppanalystsmayuserobuststatisticalmeasurementstosolvecertainanalyticalproblemsahrefwikihypothesis_testingclassmwredirecttitlehypothesistestinghypothesistestingaisusedwhenaparticularhypothesisaboutthetruestateofaffairsismadebytheanalystanddataisgatheredtodeterminewhetherthatstateofaffairsistrueorfalseforexamplethehypothesismightbethatunemploymenthasnoeffectoninflationwhichrelatestoaneconomicsconceptcalledtheahrefwikiphillips_curveclassmwredirecttitlephillipscurvephillipscurveahypothesistestinginvolvesconsideringthelikelihoodofahrefwikitype_i_and_type_ii_errorstitletypeiandtypeiierrorstypeiandtypeiierrorsawhichrelatetowhetherthedatasupportsacceptingorrejectingthehypothesisppahrefwikiregression_analysistitleregressionanalysisregressionanalysisamaybeusedwhentheanalystistryingtodeterminetheextenttowhichindependentvariablexaffectsdependentvariableyegtowhatextentdochangesintheunemploymentratexaffecttheinflationrateythisisanattempttomodelorfitanequationlineorcurvetothedatasuchthatyisafunctionofxpparelnofollowclassexternaltexthrefhttpswwwerimeurnlcentresnecessaryconditionanalysisnecessaryconditionanalysisancamaybeusedwhentheanalystistryingtodeterminetheextenttowhichindependentvariablexallowsvariableyegtowhatextentisacertainunemploymentratexnecessaryforacertaininflationrateywhereasmultipleregressionanalysisusesadditivelogicwhereeachxvariablecanproducetheoutcomeandthexscancompensateforeachothertheyaresufficientbutnotnecessarynecessaryconditionanalysisncausesnecessitylogicwhereoneormorexvariablesallowtheoutcometoexistbutmaynotproduceittheyarenecessarybutnotsufficienteachsinglenecessaryconditionmustbepresentandcompensationisnotpossibleph2spanclassmwheadlineidanalytical_activities_of_data_usersanalyticalactivitiesofdatausersspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection12titleeditsectionanalyticalactivitiesofdatauserseditaspanclassmweditsectionbracketspanspanh2pusersmayhaveparticulardatapointsofinterestwithinadatasetasopposedtogeneralmessagingoutlinedabovesuchlowleveluseranalyticactivitiesarepresentedinthefollowingtablethetaxonomycanalsobeorganizedbythreepolesofactivitiesretrievingvaluesfindingdatapointsandarrangingdatapointssupidcite_ref14classreferenceahrefcite_note14911493asupsupidcite_ref15classreferenceahrefcite_note15911593asupsupidcite_ref16classreferenceahrefcite_note16911693asupsupidcite_refcontaas_170classreferenceahrefcite_notecontaas17911793asupptableclasswikitableborder1tbodytrthaligncenterththwidth160taskththgeneralbrdescriptionththproformabrabstractththwidth35examplesthtrtrtdaligncenter1tdtdbretrievevaluebtdtdgivenasetofspecificcasesfindattributesofthosecasestdtdwhatarethevaluesofattributesxyzinthedatacasesabctdtdiwhatisthemileagepergallonofthefordmondeoipihowlongisthemoviegonewiththewindiptdtrtrtdaligncenter2tdtdbfilterbtdtdgivensomeconcreteconditionsonattributevaluesfinddatacasessatisfyingthoseconditionstdtdwhichdatacasessatisfyconditionsabctdtdiwhatkelloggscerealshavehighfiberipiwhatcomedieshavewonawardsippiwhichfundsunderperformedthesp500iptdtrtrtdaligncenter3tdtdbcomputederivedvaluebtdtdgivenasetofdatacasescomputeanaggregatenumericrepresentationofthosedatacasestdtdwhatisthevalueofaggregationfunctionfoveragivensetsofdatacasestdtdiwhatistheaveragecaloriecontentofpostcerealsipiwhatisthegrossincomeofallstorescombinedippihowmanymanufacturersofcarsarethereiptdtrtrtdaligncenter4tdtdbfindextremumbtdtdfinddatacasespossessinganextremevalueofanattributeoveritsrangewithinthedatasettdtdwhatarethetopbottomndatacaseswithrespecttoattributeatdtdiwhatisthecarwiththehighestmpgipiwhatdirectorfilmhaswonthemostawardsippiwhatmarvelstudiosfilmhasthemostrecentreleasedateiptdtrtrtdaligncenter5tdtdbsortbtdtdgivenasetofdatacasesrankthemaccordingtosomeordinalmetrictdtdwhatisthesortedorderofasetsofdatacasesaccordingtotheirvalueofattributeatdtdiorderthecarsbyweightipirankthecerealsbycaloriesiptdtrtrtdaligncenter6tdtdbdeterminerangebtdtdgivenasetofdatacasesandanattributeofinterestfindthespanofvalueswithinthesettdtdwhatistherangeofvaluesofattributeainasetsofdatacasestdtdiwhatistherangeoffilmlengthsipiwhatistherangeofcarhorsepowersippiwhatactressesareinthedatasetiptdtrtrtdaligncenter7tdtdbcharacterizedistributionbtdtdgivenasetofdatacasesandaquantitativeattributeofinterestcharacterizethedistributionofthatattributesvaluesoverthesettdtdwhatisthedistributionofvaluesofattributeainasetsofdatacasestdtdiwhatisthedistributionofcarbohydratesincerealsipiwhatistheagedistributionofshoppersiptdtrtrtdaligncenter8tdtdbfindanomaliesbtdtdidentifyanyanomalieswithinagivensetofdatacaseswithrespecttoagivenrelationshiporexpectationegstatisticaloutlierstdtdwhichdatacasesinasetsofdatacaseshaveunexpectedexceptionalvaluestdtdiarethereexceptionstotherelationshipbetweenhorsepowerandaccelerationipiarethereanyoutliersinproteiniptdtrtrtdaligncenter9tdtdbclusterbtdtdgivenasetofdatacasesfindclustersofsimilarattributevaluestdtdwhichdatacasesinasetsofdatacasesaresimilarinvalueforattributesxyztdtdiaretheregroupsofcerealswsimilarfatcaloriessugaripiisthereaclusteroftypicalfilmlengthsiptdtrtrtdaligncenter10tdtdbcorrelatebtdtdgivenasetofdatacasesandtwoattributesdetermineusefulrelationshipsbetweenthevaluesofthoseattributestdtdwhatisthecorrelationbetweenattributesxandyoveragivensetsofdatacasestdtdiisthereacorrelationbetweencarbohydratesandfatipiisthereacorrelationbetweencountryoforiginandmpgippidodifferentgendershaveapreferredpaymentmethodippiisthereatrendofincreasingfilmlengthovertheyearsiptdtrtrtdaligncenter11tdtdbahrefwikicontextualization_computer_sciencetitlecontextualizationcomputersciencecontextualizationasupidcite_refcontaas_171classreferenceahrefcite_notecontaas17911793asupbtdtdgivenasetofdatacasesfindcontextualrelevancyofthedatatotheuserstdtdwhichdatacasesinasetsofdatacasesarerelevanttothecurrentuserscontexttdtdiaretheregroupsofrestaurantsthathavefoodsbasedonmycurrentcaloricintakeitdtrtbodytableh2spanclassmwheadlineidbarriers_to_effective_analysisbarrierstoeffectiveanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection13titleeditsectionbarrierstoeffectiveanalysiseditaspanclassmweditsectionbracketspanspanh2pbarrierstoeffectiveanalysismayexistamongtheanalystsperformingthedataanalysisoramongtheaudiencedistinguishingfactfromopinioncognitivebiasesandinnumeracyareallchallengestosounddataanalysisph3spanclassmwheadlineidconfusing_fact_and_opinionconfusingfactandopinionspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection14titleeditsectionconfusingfactandopinioneditaspanclassmweditsectionbracketspanspanh3divclassquoteboxpullquotefloatrightstylewidth250px32styledatamwdeduplicatetemplatestylesr856303512mwparseroutputquoteboxbackgroundcolorf9f9f9border1pxsolidaaaboxsizingborderboxpadding10pxfontsize88mwparseroutputquoteboxfloatleftmargin05em14em08em0mwparseroutputquoteboxfloatrightmargin05em008em14emmwparseroutputquoteboxcenteredmargin05emauto08emautomwparseroutputquoteboxfloatleftpmwparseroutputquoteboxfloatrightpfontstyleinheritmwparseroutputquoteboxtitlebackgroundcolorf9f9f9textaligncenterfontsizelargerfontweightboldmwparseroutputquoteboxquotequotedbeforefontfamilytimesnewromanseriffontweightboldfontsizelargecolorgraycontentverticalalign45lineheight0mwparseroutputquoteboxquotequotedafterfontfamilytimesnewromanseriffontweightboldfontsizelargecolorgraycontentlineheight0mwparseroutputquoteboxleftalignedtextalignleftmwparseroutputquoteboxrightalignedtextalignrightmwparseroutputquoteboxcenteralignedtextaligncentermwparseroutputquoteboxcitedisplayblockfontstylenormalmediascreenandmaxwidth360pxmwparseroutputquoteboxminwidth100margin0008emimportantfloatnoneimportantstyledivclassquoteboxquoteleftalignedstyleyouareentitledtoyourownopinionbutyouarenotentitledtoyourownfactsdivpciteclassleftalignedstyleahrefwikidaniel_patrick_moynihantitledanielpatrickmoynihandanielpatrickmoynihanacitepdivpeffectiveanalysisrequiresobtainingrelevantahrefwikifacttitlefactfactsatoanswerquestionssupportaconclusionorformalahrefwikiopiniontitleopinionopinionaortestahrefwikihypothesesclassmwredirecttitlehypotheseshypothesesafactsbydefinitionareirrefutablemeaningthatanypersoninvolvedintheanalysisshouldbeabletoagreeuponthemforexampleinaugust2010theahrefwikicongressional_budget_officetitlecongressionalbudgetofficecongressionalbudgetofficeacboestimatedthatextendingtheahrefwikibush_tax_cutstitlebushtaxcutsbushtaxcutsaof2001and2003forthe20112020timeperiodwouldaddapproximately33trilliontothenationaldebtsupidcite_ref18classreferenceahrefcite_note18911893asupeveryoneshouldbeabletoagreethatindeedthisiswhatcboreportedtheycanallexaminethereportthismakesitafactwhetherpersonsagreeordisagreewiththecboistheirownopinionppasanotherexampletheauditorofapubliccompanymustarriveataformalopiniononwhetherfinancialstatementsofpubliclytradedcorporationsarefairlystatedinallmaterialrespectsthisrequiresextensiveanalysisoffactualdataandevidencetosupporttheiropinionwhenmakingtheleapfromfactstoopinionsthereisalwaysthepossibilitythattheopinionisahrefwikitype_i_and_type_ii_errorstitletypeiandtypeiierrorserroneousaph3spanclassmwheadlineidcognitive_biasescognitivebiasesspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection15titleeditsectioncognitivebiaseseditaspanclassmweditsectionbracketspanspanh3pthereareavarietyofahrefwikicognitive_biastitlecognitivebiascognitivebiasesathatcanadverselyaffectanalysisforexampleahrefwikiconfirmation_biastitleconfirmationbiasconfirmationbiasaisthetendencytosearchfororinterpretinformationinawaythatconfirmsonespreconceptionsinadditionindividualsmaydiscreditinformationthatdoesnotsupporttheirviewsppanalystsmaybetrainedspecificallytobeawareofthesebiasesandhowtoovercometheminhisbookipsychologyofintelligenceanalysisiretiredciaanalystahrefwikirichards_heuertitlerichardsheuerrichardsheuerawrotethatanalystsshouldclearlydelineatetheirassumptionsandchainsofinferenceandspecifythedegreeandsourceoftheuncertaintyinvolvedintheconclusionsheemphasizedprocedurestohelpsurfaceanddebatealternativepointsofviewsupidcite_refheuer1_190classreferenceahrefcite_noteheuer119911993asupph3spanclassmwheadlineidinnumeracyinnumeracyspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection16titleeditsectioninnumeracyeditaspanclassmweditsectionbracketspanspanh3peffectiveanalystsaregenerallyadeptwithavarietyofnumericaltechniqueshoweveraudiencesmaynothavesuchliteracywithnumbersorahrefwikinumeracytitlenumeracynumeracyatheyaresaidtobeinnumeratepersonscommunicatingthedatamayalsobeattemptingtomisleadormisinformdeliberatelyusingbadnumericaltechniquessupidcite_ref20classreferenceahrefcite_note20912093asupppforexamplewhetheranumberisrisingorfallingmaynotbethekeyfactormoreimportantmaybethenumberrelativetoanothernumbersuchasthesizeofgovernmentrevenueorspendingrelativetothesizeoftheeconomygdportheamountofcostrelativetorevenueincorporatefinancialstatementsthisnumericaltechniqueisreferredtoasnormalizationsupidcite_refkoomey1_72classreferenceahrefcite_notekoomey1791793asuporcommonsizingtherearemanysuchtechniquesemployedbyanalystswhetheradjustingforinflationiecomparingrealvsnominaldataorconsideringpopulationincreasesdemographicsetcanalystsapplyavarietyoftechniquestoaddressthevariousquantitativemessagesdescribedinthesectionaboveppanalystsmayalsoanalyzedataunderdifferentassumptionsorscenariosforexamplewhenanalystsperformahrefwikifinancial_statement_analysistitlefinancialstatementanalysisfinancialstatementanalysisatheywilloftenrecastthefinancialstatementsunderdifferentassumptionstohelparriveatanestimateoffuturecashflowwhichtheythendiscounttopresentvaluebasedonsomeinterestratetodeterminethevaluationofthecompanyoritsstocksimilarlythecboanalyzestheeffectsofvariouspolicyoptionsonthegovernmentsrevenueoutlaysanddeficitscreatingalternativefuturescenariosforkeymeasuresph2spanclassmwheadlineidother_topicsothertopicsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection17titleeditsectionothertopicseditaspanclassmweditsectionbracketspanspanh2h3spanclassmwheadlineidsmart_buildingssmartbuildingsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection18titleeditsectionsmartbuildingseditaspanclassmweditsectionbracketspanspanh3padataanalyticsapproachcanbeusedinordertopredictenergyconsumptioninbuildingssupidcite_reftowards_energy_efficiency_smart_buildings_models_based_on_intelligent_data_analytics_210classreferenceahrefcite_notetowards_energy_efficiency_smart_buildings_models_based_on_intelligent_data_analytics21912193asupthedifferentstepsofthedataanalysisprocessarecarriedoutinordertorealisesmartbuildingswherethebuildingmanagementandcontroloperationsincludingheatingventilationairconditioninglightingandsecurityarerealisedautomaticallybymimingtheneedsofthebuildingusersandoptimisingresourceslikeenergyandtimeph3spanclassmwheadlineidanalytics_and_business_intelligenceanalyticsandbusinessintelligencespanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection19titleeditsectionanalyticsandbusinessintelligenceeditaspanclassmweditsectionbracketspanspanh3divrolenoteclasshatnotenavigationnotsearchablemainarticleahrefwikianalyticstitleanalyticsanalyticsadivpanalyticsistheextensiveuseofdatastatisticalandquantitativeanalysisexplanatoryandpredictivemodelsandfactbasedmanagementtodrivedecisionsandactionsitisasubsetofahrefwikibusiness_intelligencetitlebusinessintelligencebusinessintelligenceawhichisasetoftechnologiesandprocessesthatusedatatounderstandandanalyzebusinessperformancesupidcite_refcompeting_on_analytics_2007_220classreferenceahrefcite_notecompeting_on_analytics_200722912293asupph3spanclassmwheadlineideducationeducationspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection20titleeditsectioneducationeditaspanclassmweditsectionbracketspanspanh3divclassthumbtrightdivclassthumbinnerstylewidth352pxahrefwikifileuseractivitiespngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumb880useractivitiespng350pxuseractivitiespngwidth350height279classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumb880useractivitiespng525pxuseractivitiespng15xuploadwikimediaorgwikipediacommonsthumb880useractivitiespng700pxuseractivitiespng2xdatafilewidth710datafileheight566adivclassthumbcaptiondivclassmagnifyahrefwikifileuseractivitiespngclassinternaltitleenlargeadivanalyticactivitiesofdatavisualizationusersdivdivdivpinahrefwikieducationtitleeducationeducationamosteducatorshaveaccesstoaahrefwikidata_systemtitledatasystemdatasystemaforthepurposeofanalyzingstudentdatasupidcite_ref23classreferenceahrefcite_note23912393asupthesedatasystemspresentdatatoeducatorsinanahrefwikioverthecounter_datatitleoverthecounterdataoverthecounterdataaformatembeddinglabelssupplementaldocumentationandahelpsystemandmakingkeypackagedisplayandcontentdecisionstoimprovetheaccuracyofeducatorsdataanalysessupidcite_ref24classreferenceahrefcite_note24912493asupph2spanclassmwheadlineidpractitioner_notespractitionernotesspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection21titleeditsectionpractitionernoteseditaspanclassmweditsectionbracketspanspanh2pthissectioncontainsrathertechnicalexplanationsthatmayassistpractitionersbutarebeyondthetypicalscopeofawikipediaarticleph3spanclassmwheadlineidinitial_data_analysisinitialdataanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection22titleeditsectioninitialdataanalysiseditaspanclassmweditsectionbracketspanspanh3pthemostimportantdistinctionbetweentheinitialdataanalysisphaseandthemainanalysisphaseisthatduringinitialdataanalysisonerefrainsfromanyanalysisthatisaimedatansweringtheoriginalresearchquestiontheinitialdataanalysisphaseisguidedbythefollowingfourquestionssupidcite_reffootnoteadr2008a337_250classreferenceahrefcite_notefootnoteadr2008a33725912593asupph4spanclassmwheadlineidquality_of_dataqualityofdataspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection23titleeditsectionqualityofdataeditaspanclassmweditsectionbracketspanspanh4pthequalityofthedatashouldbecheckedasearlyaspossibledataqualitycanbeassessedinseveralwaysusingdifferenttypesofanalysisfrequencycountsdescriptivestatisticsmeanstandarddeviationmediannormalityskewnesskurtosisfrequencyhistogramsnvariablesarecomparedwithcodingschemesofvariablesexternaltothedatasetandpossiblycorrectedifcodingschemesarenotcomparablepullitestforahrefwikicommonmethod_variancetitlecommonmethodvariancecommonmethodvariancealiulpthechoiceofanalysestoassessthedataqualityduringtheinitialdataanalysisphasedependsontheanalysesthatwillbeconductedinthemainanalysisphasesupidcite_reffootnoteadr2008a338341_260classreferenceahrefcite_notefootnoteadr2008a33834126912693asupph4spanclassmwheadlineidquality_of_measurementsqualityofmeasurementsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection24titleeditsectionqualityofmeasurementseditaspanclassmweditsectionbracketspanspanh4pthequalityoftheahrefwikimeasuring_instrumenttitlemeasuringinstrumentmeasurementinstrumentsashouldonlybecheckedduringtheinitialdataanalysisphasewhenthisisnotthefocusorresearchquestionofthestudyoneshouldcheckwhetherstructureofmeasurementinstrumentscorrespondstostructurereportedintheliteraturepptherearetwowaystoassessmeasurementnoteonlyonewayseemstobelistedpullianalysisofhomogeneityahrefwikiinternal_consistencytitleinternalconsistencyinternalconsistencyawhichgivesanindicationoftheahrefwikireliability_statisticstitlereliabilitystatisticsreliabilityaofameasurementinstrumentduringthisanalysisoneinspectsthevariancesoftheitemsandthescalestheahrefwikicronbach27s_alphatitlecronbach39salphacronbachsaofthescalesandthechangeinthecronbachsalphawhenanitemwouldbedeletedfromascalesupidcite_reffootnoteadr2008a341342_270classreferenceahrefcite_notefootnoteadr2008a34134227912793asupliulh4spanclassmwheadlineidinitial_transformationsinitialtransformationsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection25titleeditsectioninitialtransformationseditaspanclassmweditsectionbracketspanspanh4pafterassessingthequalityofthedataandofthemeasurementsonemightdecidetoimputemissingdataortoperforminitialtransformationsofoneormorevariablesalthoughthiscanalsobedoneduringthemainanalysisphasesupidcite_reffootnoteadr2008a344_280classreferenceahrefcite_notefootnoteadr2008a34428912893asupbrpossibletransformationsofvariablesaresupidcite_ref29classreferenceahrefcite_note29912993asuppullisquareroottransformationifthedistributiondiffersmoderatelyfromnormallililogtransformationifthedistributiondifferssubstantiallyfromnormalliliinversetransformationifthedistributiondiffersseverelyfromnormallilimakecategoricalordinaldichotomousifthedistributiondiffersseverelyfromnormalandnotransformationshelpliulh4spaniddid_the_implementation_of_the_study_fulfill_the_intentions_of_the_research_design3fspanspanclassmwheadlineiddid_the_implementation_of_the_study_fulfill_the_intentions_of_the_research_designdidtheimplementationofthestudyfulfilltheintentionsoftheresearchdesignspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection26titleeditsectiondidtheimplementationofthestudyfulfilltheintentionsoftheresearchdesigneditaspanclassmweditsectionbracketspanspanh4poneshouldcheckthesuccessoftheahrefwikirandomizationtitlerandomizationrandomizationaprocedureforinstancebycheckingwhetherbackgroundandsubstantivevariablesareequallydistributedwithinandacrossgroupsbrifthestudydidnotneedorusearandomizationprocedureoneshouldcheckthesuccessofthenonrandomsamplingforinstancebycheckingwhetherallsubgroupsofthepopulationofinterestarerepresentedinsamplebrotherpossibledatadistortionsthatshouldbecheckedarepulliahrefwikidropout_electronicsclassmwredirecttitledropoutelectronicsdropoutathisshouldbeidentifiedduringtheinitialdataanalysisphaseliliitemahrefwikiresponse_rate_surveytitleresponseratesurveynonresponseawhetherthisisrandomornotshouldbeassessedduringtheinitialdataanalysisphaselilitreatmentqualityusingahrefwikimanipulation_checktitlemanipulationcheckmanipulationchecksasupidcite_reffootnoteadr2008a344345_300classreferenceahrefcite_notefootnoteadr2008a34434530913093asupliulh4spanclassmwheadlineidcharacteristics_of_data_samplecharacteristicsofdatasamplespanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection27titleeditsectioncharacteristicsofdatasampleeditaspanclassmweditsectionbracketspanspanh4pinanyreportorarticlethestructureofthesamplemustbeaccuratelydescribeditisespeciallyimportanttoexactlydeterminethestructureofthesampleandspecificallythesizeofthesubgroupswhensubgroupanalyseswillbeperformedduringthemainanalysisphasebrthecharacteristicsofthedatasamplecanbeassessedbylookingatpullibasicstatisticsofimportantvariablesliliscatterplotslilicorrelationsandassociationslilicrosstabulationssupidcite_reffootnoteadr2008a345_310classreferenceahrefcite_notefootnoteadr2008a34531913193asupliulh4spanclassmwheadlineidfinal_stage_of_the_initial_data_analysisfinalstageoftheinitialdataanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection28titleeditsectionfinalstageoftheinitialdataanalysiseditaspanclassmweditsectionbracketspanspanh4pduringthefinalstagethefindingsoftheinitialdataanalysisaredocumentedandnecessarypreferableandpossiblecorrectiveactionsaretakenbralsotheoriginalplanforthemaindataanalysescanandshouldbespecifiedinmoredetailorrewrittenbrinordertodothisseveraldecisionsaboutthemaindataanalysescanandshouldbemadepulliinthecaseofnonahrefwikinormal_distributiontitlenormaldistributionnormalsashouldoneahrefwikidata_transformation_statisticstitledatatransformationstatisticstransformavariablesmakevariablescategoricalordinaldichotomousadapttheanalysismethodliliinthecaseofahrefwikimissing_datatitlemissingdatamissingdataashouldoneneglectorimputethemissingdatawhichimputationtechniqueshouldbeusedliliinthecaseofahrefwikioutliertitleoutlieroutliersashouldoneuserobustanalysistechniquesliliincaseitemsdonotfitthescaleshouldoneadaptthemeasurementinstrumentbyomittingitemsorratherensurecomparabilitywithotherusesofthemeasurementinstrumentsliliinthecaseoftoosmallsubgroupsshouldonedropthehypothesisaboutintergroupdifferencesorusesmallsampletechniqueslikeexacttestsorahrefwikibootstrapping_statisticstitlebootstrappingstatisticsbootstrappingaliliincasetheahrefwikirandomizationtitlerandomizationrandomizationaprocedureseemstobedefectivecanandshouldonecalculateahrefwikipropensity_score_matchingtitlepropensityscorematchingpropensityscoresaandincludethemascovariatesinthemainanalysessupidcite_reffootnoteadr2008a345346_320classreferenceahrefcite_notefootnoteadr2008a34534632913293asupliulh4spanclassmwheadlineidanalysisanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection29titleeditsectionanalysiseditaspanclassmweditsectionbracketspanspanh4pseveralanalysescanbeusedduringtheinitialdataanalysisphasesupidcite_reffootnoteadr2008a346347_330classreferenceahrefcite_notefootnoteadr2008a34634733913393asuppulliunivariatestatisticssinglevariablelilibivariateassociationscorrelationsliligraphicaltechniquesscatterplotsliulpitisimportanttotakethemeasurementlevelsofthevariablesintoaccountfortheanalysesasspecialstatisticaltechniquesareavailableforeachlevelsupidcite_reffootnoteadr2008a349353_340classreferenceahrefcite_notefootnoteadr2008a34935334913493asuppullinominalandordinalvariablesullifrequencycountsnumbersandpercentagesliliassociationsullicircumambulationscrosstabulationslilihierarchicalloglinearanalysisrestrictedtoamaximumof8variableslililoglinearanalysistoidentifyrelevantimportantvariablesandpossibleconfoundersliulliliexacttestsorbootstrappingincasesubgroupsaresmalllilicomputationofnewvariablesliullilicontinuousvariablesullidistributionullistatisticsmsdvarianceskewnesskurtosislilistemandleafdisplaysliliboxplotsliulliulliulh4spanclassmwheadlineidnonlinear_analysisnonlinearanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection30titleeditsectionnonlinearanalysiseditaspanclassmweditsectionbracketspanspanh4pnonlinearanalysiswillbenecessarywhenthedataisrecordedfromaahrefwikinonlinear_systemtitlenonlinearsystemnonlinearsystemanonlinearsystemscanexhibitcomplexdynamiceffectsincludingahrefwikibifurcation_theorytitlebifurcationtheorybifurcationsaahrefwikichaos_theorytitlechaostheorychaosaahrefwikiharmonicsclassmwredirecttitleharmonicsharmonicsaandahrefwikisubharmonicsclassmwredirecttitlesubharmonicssubharmonicsathatcannotbeanalyzedusingsimplelinearmethodsnonlineardataanalysisiscloselyrelatedtoahrefwikinonlinear_system_identificationtitlenonlinearsystemidentificationnonlinearsystemidentificationasupidcite_refsab1_350classreferenceahrefcite_notesab135913593asupph3spanclassmwheadlineidmain_data_analysismaindataanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection31titleeditsectionmaindataanalysiseditaspanclassmweditsectionbracketspanspanh3pinthemainanalysisphaseanalysesaimedatansweringtheresearchquestionareperformedaswellasanyotherrelevantanalysisneededtowritethefirstdraftoftheresearchreportsupidcite_reffootnoteadr2008b363_360classreferenceahrefcite_notefootnoteadr2008b36336913693asupph4spanclassmwheadlineidexploratory_and_confirmatory_approachesexploratoryandconfirmatoryapproachesspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection32titleeditsectionexploratoryandconfirmatoryapproacheseditaspanclassmweditsectionbracketspanspanh4pinthemainanalysisphaseeitheranexploratoryorconfirmatoryapproachcanbeadoptedusuallytheapproachisdecidedbeforedataiscollectedinanexploratoryanalysisnoclearhypothesisisstatedbeforeanalysingthedataandthedataissearchedformodelsthatdescribethedatawellinaconfirmatoryanalysisclearhypothesesaboutthedataaretestedppahrefwikiexploratory_data_analysistitleexploratorydataanalysisexploratorydataanalysisashouldbeinterpretedcarefullywhentestingmultiplemodelsatoncethereisahighchanceonfindingatleastoneofthemtobesignificantbutthiscanbeduetoaahrefwikitype_1_errorclassmwredirecttitletype1errortype1erroraitisimportanttoalwaysadjustthesignificancelevelwhentestingmultiplemodelswithforexampleaahrefwikibonferroni_correctiontitlebonferronicorrectionbonferronicorrectionaalsooneshouldnotfollowupanexploratoryanalysiswithaconfirmatoryanalysisinthesamedatasetanexploratoryanalysisisusedtofindideasforatheorybutnottotestthattheoryaswellwhenamodelisfoundexploratoryinadatasetthenfollowingupthatanalysiswithaconfirmatoryanalysisinthesamedatasetcouldsimplymeanthattheresultsoftheconfirmatoryanalysisareduetothesameahrefwikitype_1_errorclassmwredirecttitletype1errortype1errorathatresultedintheexploratorymodelinthefirstplacetheconfirmatoryanalysisthereforewillnotbemoreinformativethantheoriginalexploratoryanalysissupidcite_reffootnoteadr2008b361362_370classreferenceahrefcite_notefootnoteadr2008b36136237913793asupph4spanclassmwheadlineidstability_of_resultsstabilityofresultsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection33titleeditsectionstabilityofresultseditaspanclassmweditsectionbracketspanspanh4pitisimportanttoobtainsomeindicationabouthowgeneralizabletheresultsaresupidcite_reffootnoteadr2008b361371_380classreferenceahrefcite_notefootnoteadr2008b36137138913893asupwhilethisishardtocheckonecanlookatthestabilityoftheresultsaretheresultsreliableandreproducibletherearetwomainwaysofdoingthispulliahrefwikicrossvalidation_statisticstitlecrossvalidationstatisticscrossvalidationabysplittingthedatainmultiplepartswecancheckifananalysislikeafittedmodelbasedononepartofthedatageneralizestoanotherpartofthedataaswellliliahrefwikisensitivity_analysistitlesensitivityanalysissensitivityanalysisaaproceduretostudythebehaviorofasystemormodelwhenglobalparametersaresystematicallyvariedonewaytodothisiswithbootstrappingliulh4spanclassmwheadlineidstatistical_methodsstatisticalmethodsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection34titleeditsectionstatisticalmethodseditaspanclassmweditsectionbracketspanspanh4pmanystatisticalmethodshavebeenusedforstatisticalanalysesaverybrieflistoffourofthemorepopularmethodsispulliahrefwikigeneral_linear_modeltitlegenerallinearmodelgenerallinearmodelaawidelyusedmodelonwhichvariousmethodsarebasedegahrefwikit_testclassmwredirecttitlettestttestaahrefwikianovaclassmwredirecttitleanovaanovaaahrefwikiancovaclassmwredirecttitleancovaancovaaahrefwikimanovaclassmwredirecttitlemanovamanovaausableforassessingtheeffectofseveralpredictorsononeormorecontinuousdependentvariablesliliahrefwikigeneralized_linear_modeltitlegeneralizedlinearmodelgeneralizedlinearmodelaanextensionofthegenerallinearmodelfordiscretedependentvariablesliliahrefwikistructural_equation_modellingclassmwredirecttitlestructuralequationmodellingstructuralequationmodellingausableforassessinglatentstructuresfrommeasuredmanifestvariablesliliahrefwikiitem_response_theorytitleitemresponsetheoryitemresponsetheoryamodelsformostlyassessingonelatentvariablefromseveralbinarymeasuredvariableseganexamliulh2spanclassmwheadlineidfree_software_for_data_analysisfreesoftwarefordataanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection35titleeditsectionfreesoftwarefordataanalysiseditaspanclassmweditsectionbracketspanspanh2ulliahrefwikidevinfotitledevinfodevinfoaadatabasesystemendorsedbytheahrefwikiunited_nations_development_grouptitleunitednationsdevelopmentgroupunitednationsdevelopmentgroupaformonitoringandanalyzinghumandevelopmentliliahrefwikielkititleelkielkiadataminingframeworkinjavawithdataminingorientedvisualizationfunctionsliliahrefwikiknimetitleknimeknimeathekonstanzinformationminerauserfriendlyandcomprehensivedataanalyticsframeworkliliahrefwikiorange_softwaretitleorangesoftwareorangeaavisualprogrammingtoolfeaturingahrefwikiinteractive_data_visualizationtitleinteractivedatavisualizationinteractiveaahrefwikidata_visualizationtitledatavisualizationdatavisualizationaandmethodsforstatisticaldataanalysisahrefwikidata_miningtitledataminingdataminingaandahrefwikimachine_learningtitlemachinelearningmachinelearningaliliarelnofollowclassexternaltexthrefhttpsfolkuionoohammerpastpastafreesoftwareforscientificdataanalysisliliahrefwikiphysics_analysis_workstationtitlephysicsanalysisworkstationpawafortrancdataanalysisframeworkdevelopedatahrefwikicerntitlecerncernaliliahrefwikir_programming_languagetitlerprogramminglanguageraaprogramminglanguageandsoftwareenvironmentforstatisticalcomputingandgraphicsliliahrefwikiroottitlerootrootacdataanalysisframeworkdevelopedatahrefwikicerntitlecerncernaliliahrefwikiscipytitlescipyscipyaandahrefwikipandas_softwaretitlepandassoftwarepandasapythonlibrariesfordataanalysisliulh2spanclassmwheadlineidinternational_data_analysis_contestsinternationaldataanalysiscontestsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection36titleeditsectioninternationaldataanalysiscontestseditaspanclassmweditsectionbracketspanspanh2pdifferentcompaniesororganizationsholdadataanalysisconteststoencourageresearchersutilizetheirdataortosolveaparticularquestionusingdataanalysisafewexamplesofwellknowninternationaldataanalysiscontestsareasfollowspullikagglecompetitionheldbyahrefwikikaggletitlekagglekaggleasupidcite_ref39classreferenceahrefcite_note39913993asupliliahrefwikiltpp_international_data_analysis_contestclassmwredirecttitleltppinternationaldataanalysiscontestltppdataanalysiscontestaheldbyahrefwikifhwaclassmwredirecttitlefhwafhwaaandahrefwikiasceclassmwredirecttitleasceasceasupidcite_refnehme_20160929_400classreferenceahrefcite_notenehme_2016092940914093asupsupidcite_ref41classreferenceahrefcite_note41914193asupliulh2spanclassmwheadlineidsee_alsoseealsospanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection37titleeditsectionseealsoeditaspanclassmweditsectionbracketspanspanh2divrolenavigationarialabelportalsclassnoprintportalplainlisttrightstylemargin05em005em1embordersolidaaa1pxulstyledisplaytableboxsizingborderboxpadding01emmaxwidth175pxbackgroundf9f9f9fontsize85lineheight110fontstyleitalicfontweightboldlistyledisplaytablerowspanstyledisplaytablecellpadding02emverticalalignmiddletextaligncenterahrefwikifilefisher_iris_versicolor_sepalwidthsvgclassimageimgalticonsrcuploadwikimediaorgwikipediacommonsthumb440fisher_iris_versicolor_sepalwidthsvg32pxfisher_iris_versicolor_sepalwidthsvgpngwidth32height22classnoviewersrcsetuploadwikimediaorgwikipediacommonsthumb440fisher_iris_versicolor_sepalwidthsvg48pxfisher_iris_versicolor_sepalwidthsvgpng15xuploadwikimediaorgwikipediacommonsthumb440fisher_iris_versicolor_sepalwidthsvg64pxfisher_iris_versicolor_sepalwidthsvgpng2xdatafilewidth822datafileheight567aspanspanstyledisplaytablecellpadding02em02em02em03emverticalalignmiddleahrefwikiportalstatisticstitleportalstatisticsstatisticsportalaspanliuldivdivclassdivcolcolumnscolumnwidthstylemozcolumnwidth20emwebkitcolumnwidth20emcolumnwidth20emulliahrefwikiactuarial_sciencetitleactuarialscienceactuarialsciencealiliahrefwikianalyticstitleanalyticsanalyticsaliliahrefwikibig_datatitlebigdatabigdataaliliahrefwikibusiness_intelligencetitlebusinessintelligencebusinessintelligencealiliahrefwikicensoring_statisticstitlecensoringstatisticscensoringstatisticsaliliahrefwikicomputational_physicstitlecomputationalphysicscomputationalphysicsaliliahrefwikidata_acquisitiontitledataacquisitiondataacquisitionaliliahrefwikidata_blendingtitledatablendingdatablendingaliliahrefwikidata_governancetitledatagovernancedatagovernancealiliahrefwikidata_miningtitledataminingdataminingaliliahrefwikidata_presentation_architectureclassmwredirecttitledatapresentationarchitecturedatapresentationarchitecturealiliahrefwikidata_sciencetitledatasciencedatasciencealiliahrefwikidigital_signal_processingtitledigitalsignalprocessingdigitalsignalprocessingaliliahrefwikidimension_reductionclassmwredirecttitledimensionreductiondimensionreductionaliliahrefwikiearly_case_assessmenttitleearlycaseassessmentearlycaseassessmentaliliahrefwikiexploratory_data_analysistitleexploratorydataanalysisexploratorydataanalysisaliliahrefwikifourier_analysistitlefourieranalysisfourieranalysisaliliahrefwikimachine_learningtitlemachinelearningmachinelearningaliliahrefwikimultilinear_principal_component_analysistitlemultilinearprincipalcomponentanalysismultilinearpcaaliliahrefwikimultilinear_subspace_learningtitlemultilinearsubspacelearningmultilinearsubspacelearningaliliahrefwikimultiway_data_analysistitlemultiwaydataanalysismultiwaydataanalysisaliliahrefwikinearest_neighbor_searchtitlenearestneighborsearchnearestneighborsearchaliliahrefwikinonlinear_system_identificationtitlenonlinearsystemidentificationnonlinearsystemidentificationaliliahrefwikipredictive_analyticstitlepredictiveanalyticspredictiveanalyticsaliliahrefwikiprincipal_component_analysistitleprincipalcomponentanalysisprincipalcomponentanalysisaliliahrefwikiqualitative_researchtitlequalitativeresearchqualitativeresearchaliliahrefwikiscientific_computingclassmwredirecttitlescientificcomputingscientificcomputingaliliahrefwikistructured_data_analysis_statisticstitlestructureddataanalysisstatisticsstructureddataanalysisstatisticsaliliahrefwikisystem_identificationtitlesystemidentificationsystemidentificationaliliahrefwikitest_methodtitletestmethodtestmethodaliliahrefwikitext_analyticsclassmwredirecttitletextanalyticstextanalyticsaliliahrefwikiunstructured_datatitleunstructureddataunstructureddataaliliahrefwikiwavelettitlewaveletwaveletaliuldivh2spanclassmwheadlineidreferencesreferencesspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection38titleeditsectionreferenceseditaspanclassmweditsectionbracketspanspanh2h3spanclassmwheadlineidcitationscitationsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection39titleeditsectioncitationseditaspanclassmweditsectionbracketspanspanh3divclassrefliststyleliststyletypedecimaldivclassmwreferenceswrapmwreferencescolumnsolclassreferencesliidcite_note1spanclassmwcitebacklinkbahrefcite_ref1abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpswebarchiveorgweb20171018181046httpsspotlessdatacomblogexploringdataanalysisexploringdataanalysisaspanliliidcite_notejudd_and_mcclelland_19892spanclassmwcitebacklinkahrefcite_refjudd_and_mcclelland_1989_20supibabisupaahrefcite_refjudd_and_mcclelland_1989_21supibbbisupaahrefcite_refjudd_and_mcclelland_1989_22supibcbisupaspanspanclassreferencetextciteclasscitationbookjuddcharlesandmcclelandgary1989iahrefwikidata_analysisclassmwredirecttitledataanalysisdataanalysisaiharcourtbracejovanovichahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources0155167650titlespecialbooksources01551676500155167650acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenrebookamprftbtitledataanalysisamprftpubharcourtbracejovanovichamprftdate1989amprftisbn0155167650amprftaulastjudd2ccharlesandamprftaufirstmccleland2cgaryamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanstyledatamwdeduplicatetemplatestylesr861714446mwparseroutputcitecitationfontstyleinheritmwparseroutputqquotesmwparseroutputcodecs1codecolorinheritbackgroundinheritborderinheritpaddinginheritmwparseroutputcs1lockfreeabackgroundurluploadwikimediaorgwikipediacommonsthumb665lockgreensvg9pxlockgreensvgpngnorepeatbackgroundpositionright1emcentermwparseroutputcs1locklimitedamwparseroutputcs1lockregistrationabackgroundurluploadwikimediaorgwikipediacommonsthumbdd6lockgrayalt2svg9pxlockgrayalt2svgpngnorepeatbackgroundpositionright1emcentermwparseroutputcs1locksubscriptionabackgroundurluploadwikimediaorgwikipediacommonsthumbaaalockredalt2svg9pxlockredalt2svgpngnorepeatbackgroundpositionright1emcentermwparseroutputcs1subscriptionmwparseroutputcs1registrationcolor555mwparseroutputcs1subscriptionspanmwparseroutputcs1registrationspanborderbottom1pxdottedcursorhelpmwparseroutputcs1hiddenerrordisplaynonefontsize100mwparseroutputcs1visibleerrorfontsize100mwparseroutputcs1subscriptionmwparseroutputcs1registrationmwparseroutputcs1formatfontsize95mwparseroutputcs1kernleftmwparseroutputcs1kernwlleftpaddingleft02emmwparseroutputcs1kernrightmwparseroutputcs1kernwlrightpaddingright02emstylespanliliidcite_note3spanclassmwcitebacklinkbahrefcite_ref3abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpprojecteuclidorgdownloadpdf_1euclidaoms1177704711johntukeythefutureofdataanalysisjuly1961aspanliliidcite_noteo39neil_and_schutt_20134spanclassmwcitebacklinkahrefcite_refo39neil_and_schutt_2013_40supibabisupaahrefcite_refo39neil_and_schutt_2013_41supibbbisupaahrefcite_refo39neil_and_schutt_2013_42supibcbisupaahrefcite_refo39neil_and_schutt_2013_43supibdbisupaahrefcite_refo39neil_and_schutt_2013_44supibebisupaahrefcite_refo39neil_and_schutt_2013_45supibfbisupaahrefcite_refo39neil_and_schutt_2013_46supibgbisupaspanspanclassreferencetextciteclasscitationbookoneilcathyandschuttrachel2013iahrefwindexphptitledoing_data_scienceampactioneditampredlink1classnewtitledoingdatasciencepagedoesnotexistdoingdatascienceaioreillyahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources9781449358655titlespecialbooksources97814493586559781449358655acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenrebookamprftbtitledoingdatascienceamprftpubo27reillyamprftdate2013amprftisbn9781449358655amprftaulasto27neil2ccathyandamprftaufirstschutt2crachelamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note5spanclassmwcitebacklinkbahrefcite_ref5abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpswwwsuntecindiacomblogcleandataincrmthekeytogeneratesalesreadyleadsandboostyourrevenuepoolcleandataincrmthekeytogeneratesalesreadyleadsandboostyourrevenuepoolaretrieved29thjuly2016spanliliidcite_note6spanclassmwcitebacklinkbahrefcite_ref6abspanspanclassreferencetextciteclasscitationwebarelnofollowclassexternaltexthrefhttpresearchmicrosoftcomenusprojectsdatacleaningdatacleaningamicrosoftresearchspanclassreferenceaccessdateretrievedspanclassnowrap26octoberspan2013spancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenreunknownamprftbtitledatacleaningamprftpubmicrosoftresearchamprft_idhttp3a2f2fresearchmicrosoftcom2fenus2fprojects2fdatacleaning2famprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_notekoomey17spanclassmwcitebacklinkahrefcite_refkoomey1_70supibabisupaahrefcite_refkoomey1_71supibbbisupaahrefcite_refkoomey1_72supibcbisupaspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpwwwperceptualedgecomarticlesbeyequantitative_datapdfperceptualedgejonathankoomeybestpracticesforunderstandingquantitativedatafebruary142006aspanliliidcite_note8spanclassmwcitebacklinkbahrefcite_ref8abspanspanclassreferencetextciteclasscitationjournalhellersteinjoseph27february2008arelnofollowclassexternaltexthrefhttpdbcsberkeleyedujmhpaperscleaningunecepdfquantitativedatacleaningforlargedatabasesaspanclasscs1formatpdfspanieecscomputersciencedivisioni3spanclassreferenceaccessdateretrievedspanclassnowrap26octoberspan2013spancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3ajournalamprftgenrearticleamprftjtitleeecscomputersciencedivisionamprftatitlequantitativedatacleaningforlargedatabasesamprftpages3amprftdate20080227amprftaulasthellersteinamprftaufirstjosephamprft_idhttp3a2f2fdbcsberkeleyedu2fjmh2fpapers2fcleaningunecepdfamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note9spanclassmwcitebacklinkbahrefcite_ref9abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpwwwperceptualedgecomarticlesiethe_right_graphpdfstephenfewperceptualedgeselectingtherightgraphforyourmessageseptember2004aspanliliidcite_note10spanclassmwcitebacklinkbahrefcite_ref10abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpcllstanfordeduwillbcoursebehrens97pmpdfbehrensprinciplesandproceduresofexploratorydataanalysisamericanpsychologicalassociation1997aspanliliidcite_note11spanclassmwcitebacklinkbahrefcite_ref11abspanspanclassreferencetextciteclasscitationjournalgrandjeanmartin2014arelnofollowclassexternaltexthrefhttpwwwmartingrandjeanchwpcontentuploads201502grandjean2014connaissancereseaupdflaconnaissanceestunrseauaspanclasscs1formatpdfspanilescahiersdunumriqueib10b33754ahrefwikidigital_object_identifiertitledigitalobjectidentifierdoiaarelnofollowclassexternaltexthrefdoiorg1031662flcn1033754103166lcn1033754acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3ajournalamprftgenrearticleamprftjtitlelescahiersdunumc3a9riqueamprftatitlelaconnaissanceestunrc3a9seauamprftvolume10amprftissue3amprftpages3754amprftdate2014amprft_idinfo3adoi2f1031662flcn1033754amprftaulastgrandjeanamprftaufirstmartinamprft_idhttp3a2f2fwwwmartingrandjeanch2fwpcontent2fuploads2f20152f022fgrandjean2014connaissancereseaupdfamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note12spanclassmwcitebacklinkbahrefcite_ref12abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpwwwperceptualedgecomarticlesiethe_right_graphpdfstephenfewperceptualedgeselectingtherightgraphforyourmessage2004aspanliliidcite_note13spanclassmwcitebacklinkbahrefcite_ref13abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpwwwperceptualedgecomarticlesmiscgraph_selection_matrixpdfstephenfewperceptualedgegraphselectionmatrixaspanliliidcite_note14spanclassmwcitebacklinkbahrefcite_ref14abspanspanclassreferencetextrobertamarjameseaganandjohnstasko2005arelnofollowclassexternaltexthrefhttpwwwccgatechedustaskopapersinfovis05pdflowlevelcomponentsofanalyticactivityininformationvisualizationaspanliliidcite_note15spanclassmwcitebacklinkbahrefcite_ref15abspanspanclassreferencetextwilliamnewman1994arelnofollowclassexternaltexthrefhttpwwwmdnpresscomwmnpdfschi94proformas2pdfapreliminaryanalysisoftheproductsofhciresearchusingproformaabstractsaspanliliidcite_note16spanclassmwcitebacklinkbahrefcite_ref16abspanspanclassreferencetextmaryshaw2002arelnofollowclassexternaltexthrefhttpwwwcscmueducomposeftpshawfinetapspdfwhatmakesgoodresearchinsoftwareengineeringaspanliliidcite_notecontaas17spanclassmwcitebacklinkahrefcite_refcontaas_170supibabisupaahrefcite_refcontaas_171supibbbisupaspanspanclassreferencetextciteclasscitationwebarelnofollowclassexternaltexthrefhttpsscholarspacemanoahawaiieduhandle1012541879contaasanapproachtointernetscalecontextualisationfordevelopingefficientinternetofthingsapplicationsaischolarspaceihicss50spanclassreferenceaccessdateretrievedspanclassnowrapmay24span2017spancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3ajournalamprftgenreunknownamprftjtitlescholarspaceamprftatitlecontaas3aanapproachtointernetscalecontextualisationfordevelopingefficientinternetofthingsapplicationsamprft_idhttps3a2f2fscholarspacemanoahawaiiedu2fhandle2f101252f41879amprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note18spanclassmwcitebacklinkbahrefcite_ref18abspanspanclassreferencetextciteclasscitationwebarelnofollowclassexternaltexthrefhttpwwwcbogovpublication21670congressionalbudgetofficethebudgetandeconomicoutlookaugust2010table17onpage24aspanclasscs1formatpdfspanspanclassreferenceaccessdateretrievedspanclassnowrap20110331spanspancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenreunknownamprftbtitlecongressionalbudgetofficethebudgetandeconomicoutlookaugust2010table17onpage24amprft_idhttp3a2f2fwwwcbogov2fpublication2f21670amprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_noteheuer119spanclassmwcitebacklinkbahrefcite_refheuer1_190abspanspanclassreferencetextciteclasscitationwebarelnofollowclassexternaltexthrefhttpswwwciagovlibrarycenterforthestudyofintelligencecsipublicationsbooksandmonographspsychologyofintelligenceanalysisart3htmlintroductionaiciagovicitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3ajournalamprftgenreunknownamprftjtitleciagovamprftatitleintroductionamprft_idhttps3a2f2fwwwciagov2flibrary2fcenterforthestudyofintelligence2fcsipublications2fbooksandmonographs2fpsychologyofintelligenceanalysis2fart3htmlamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note20spanclassmwcitebacklinkbahrefcite_ref20abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpwwwbloombergviewcomarticles20141028badmaththatpassesforinsightbloombergbarryritholzbadmaththatpassesforinsightoctober282014aspanliliidcite_notetowards_energy_efficiency_smart_buildings_models_based_on_intelligent_data_analytics21spanclassmwcitebacklinkbahrefcite_reftowards_energy_efficiency_smart_buildings_models_based_on_intelligent_data_analytics_210abspanspanclassreferencetextciteclasscitationjournalgonzlezvidalauroramorenocanovictoria2016towardsenergyefficiencysmartbuildingsmodelsbasedonintelligentdataanalyticsiprocediacomputerscienceib83belsevier994999ahrefwikidigital_object_identifiertitledigitalobjectidentifierdoiaarelnofollowclassexternaltexthrefdoiorg1010162fjprocs201604213101016jprocs201604213acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3ajournalamprftgenrearticleamprftjtitleprocediacomputerscienceamprftatitletowardsenergyefficiencysmartbuildingsmodelsbasedonintelligentdataanalyticsamprftvolume83amprftissueelsevieramprftpages994999amprftdate2016amprft_idinfo3adoi2f1010162fjprocs201604213amprftaulastgonzc3a1lezvidalamprftaufirstauroraamprftaumorenocano2cvictoriaamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_notecompeting_on_analytics_200722spanclassmwcitebacklinkbahrefcite_refcompeting_on_analytics_2007_220abspanspanclassreferencetextciteclasscitationbookdavenportthomasandharrisjeanne2007iahrefwindexphptitlecompeting_on_analyticsampactioneditampredlink1classnewtitlecompetingonanalyticspagedoesnotexistcompetingonanalyticsaioreillyahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources9781422103326titlespecialbooksources97814221033269781422103326acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenrebookamprftbtitlecompetingonanalyticsamprftpubo27reillyamprftdate2007amprftisbn9781422103326amprftaulastdavenport2cthomasandamprftaufirstharris2cjeanneamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note23spanclassmwcitebacklinkbahrefcite_ref23abspanspanclassreferencetextaaronsd2009arelnofollowclassexternaltexthrefhttpsearchproquestcomdocview202710770accountid28180reportfindsstatesoncoursetobuildpupildatasystemsaieducationweek29i136spanliliidcite_note24spanclassmwcitebacklinkbahrefcite_ref24abspanspanclassreferencetextrankinj2013march28arelnofollowclassexternaltexthrefhttpssaselluminatecomsiteexternalrecordingplaybacklinktabledropinsid2008350ampsuidd4df60c7117d5a77fe3aed546909ed2howdatasystemsampreportscaneitherfightorpropagatethedataanalysiserrorepidemicandhoweducatorleaderscanhelpaipresentationconductedfromtechnologyinformationcenterforadministrativeleadershipticalschoolleadershipsummitispanliliidcite_notefootnoteadr2008a33725spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a337_250abspanspanclassreferencetextahrefciterefadr2008aadr2008aap160337spanliliidcite_notefootnoteadr2008a33834126spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a338341_260abspanspanclassreferencetextahrefciterefadr2008aadr2008aapp160338341spanliliidcite_notefootnoteadr2008a34134227spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a341342_270abspanspanclassreferencetextahrefciterefadr2008aadr2008aapp160341342spanliliidcite_notefootnoteadr2008a34428spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a344_280abspanspanclassreferencetextahrefciterefadr2008aadr2008aap160344spanliliidcite_note29spanclassmwcitebacklinkbahrefcite_ref29abspanspanclassreferencetexttabachnickampfidell2007p8788spanliliidcite_notefootnoteadr2008a34434530spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a344345_300abspanspanclassreferencetextahrefciterefadr2008aadr2008aapp160344345spanliliidcite_notefootnoteadr2008a34531spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a345_310abspanspanclassreferencetextahrefciterefadr2008aadr2008aap160345spanliliidcite_notefootnoteadr2008a34534632spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a345346_320abspanspanclassreferencetextahrefciterefadr2008aadr2008aapp160345346spanliliidcite_notefootnoteadr2008a34634733spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a346347_330abspanspanclassreferencetextahrefciterefadr2008aadr2008aapp160346347spanliliidcite_notefootnoteadr2008a34935334spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a349353_340abspanspanclassreferencetextahrefciterefadr2008aadr2008aapp160349353spanliliidcite_notesab135spanclassmwcitebacklinkbahrefcite_refsab1_350abspanspanclassreferencetextbillingssanonlinearsystemidentificationnarmaxmethodsinthetimefrequencyandspatiotemporaldomainswiley2013spanliliidcite_notefootnoteadr2008b36336spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008b363_360abspanspanclassreferencetextahrefciterefadr2008badr2008bap160363spanliliidcite_notefootnoteadr2008b36136237spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008b361362_370abspanspanclassreferencetextahrefciterefadr2008badr2008bapp160361362spanliliidcite_notefootnoteadr2008b36137138spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008b361371_380abspanspanclassreferencetextahrefciterefadr2008badr2008bapp160361371spanliliidcite_note39spanclassmwcitebacklinkbahrefcite_ref39abspanspanclassreferencetextciteclasscitationnewsarelnofollowclassexternaltexthrefhttpwwwsymmetrymagazineorgarticlejuly2014themachinelearningcommunitytakesonthehiggsthemachinelearningcommunitytakesonthehiggsaisymmetrymagazineijuly152014spanclassreferenceaccessdateretrievedspanclassnowrap14januaryspan2015spancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3ajournalamprftgenrearticleamprftjtitlesymmetrymagazineamprftatitlethemachinelearningcommunitytakesonthehiggsamprftdate20140715amprft_idhttp3a2f2fwwwsymmetrymagazineorg2farticle2fjuly20142fthemachinelearningcommunitytakesonthehiggs2famprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_notenehme_2016092940spanclassmwcitebacklinkbahrefcite_refnehme_20160929_400abspanspanclassreferencetextciteclasscitationwebnehmejeanseptember292016arelnofollowclassexternaltexthrefhttpswwwfhwadotgovresearchtfhrcprogramsinfrastructurepavementsltpp2016_2017_asce_ltpp_contest_guidelinescfmltppinternationaldataanalysiscontestafederalhighwayadministrationspanclassreferenceaccessdateretrievedspanclassnowrapoctober22span2017spancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenreunknownamprftbtitleltppinternationaldataanalysiscontestamprftpubfederalhighwayadministrationamprftdate20160929amprftaulastnehmeamprftaufirstjeanamprft_idhttps3a2f2fwwwfhwadotgov2fresearch2ftfhrc2fprograms2finfrastructure2fpavements2fltpp2f2016_2017_asce_ltpp_contest_guidelinescfmamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note41spanclassmwcitebacklinkbahrefcite_ref41abspanspanclassreferencetextciteclasscitationwebarelnofollowclassexternaltexthrefhttpswwwfhwadotgovresearchtfhrcprogramsinfrastructurepavementsltppdatagovlongtermpavementperformanceltppamay262016spanclassreferenceaccessdateretrievedspanclassnowrapnovember10span2017spancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenreunknownamprftbtitledatagov3alongtermpavementperformance28ltpp29amprftdate20160526amprft_idhttps3a2f2fwwwfhwadotgov2fresearch2ftfhrc2fprograms2finfrastructure2fpavements2fltpp2famprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanlioldivdivh3spanclassmwheadlineidbibliographybibliographyspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection40titleeditsectionbibliographyeditaspanclassmweditsectionbracketspanspanh3ulliciteidciterefadr2008aclasscitationbookahrefwikiherman_j_adc3a8rtitlehermanjadradrhermanja2008achapter14phasesandinitialstepsindataanalysisinadrhermanjahrefwikigideon_j_mellenberghtitlegideonjmellenberghmellenberghgideonjaahrefwikidavid_hand_statisticiantitledavidhandstatisticianhanddavidjaarelnofollowclassexternaltexthrefhttpwwwworldcatorgtitleadvisingonresearchmethodsaconsultantscompanionoclc905799857viewportiadvisingonresearchmethods160aconsultantscompanioniahuizennetherlandsjohannesvankesselpubpp160333356ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources9789079418015titlespecialbooksources97890794180159789079418015aahrefwikioclctitleoclcoclca160arelnofollowclassexternaltexthrefwwwworldcatorgoclc905799857905799857acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenrebookitemamprftatitlechapter143aphasesandinitialstepsindataanalysisamprftbtitleadvisingonresearchmethods3aaconsultant27scompanionamprftplacehuizen2cnetherlandsamprftpages333356amprftpubjohannesvankesselpubamprftdate2008amprft_idinfo3aoclcnum2f905799857amprftisbn9789079418015amprftaulastadc3a8ramprftaufirsthermanjamprft_idhttp3a2f2fwwwworldcatorg2ftitle2fadvisingonresearchmethodsaconsultantscompanion2foclc2f9057998572fviewportamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446liliciteidciterefadr2008bclasscitationbookahrefwikiherman_j_adc3a8rtitlehermanjadradrhermanja2008bchapter15themainanalysisphaseinadrhermanjahrefwikigideon_j_mellenberghtitlegideonjmellenberghmellenberghgideonjaahrefwikidavid_hand_statisticiantitledavidhandstatisticianhanddavidjaarelnofollowclassexternaltexthrefhttpwwwworldcatorgtitleadvisingonresearchmethodsaconsultantscompanionoclc905799857viewportiadvisingonresearchmethods160aconsultantscompanioniahuizennetherlandsjohannesvankesselpubpp160357386ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources9789079418015titlespecialbooksources97890794180159789079418015aahrefwikioclctitleoclcoclca160arelnofollowclassexternaltexthrefwwwworldcatorgoclc905799857905799857acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenrebookitemamprftatitlechapter153athemainanalysisphaseamprftbtitleadvisingonresearchmethods3aaconsultant27scompanionamprftplacehuizen2cnetherlandsamprftpages357386amprftpubjohannesvankesselpubamprftdate2008amprft_idinfo3aoclcnum2f905799857amprftisbn9789079418015amprftaulastadc3a8ramprftaufirsthermanjamprft_idhttp3a2f2fwwwworldcatorg2ftitle2fadvisingonresearchmethodsaconsultantscompanion2foclc2f9057998572fviewportamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446lilitabachnickbgampfidellls2007chapter4cleaningupyouractscreeningdatapriortoanalysisinbgtabachnickamplsfidelledsusingmultivariatestatisticsfiftheditionpp16060116bostonpearsoneducationincallynandbaconliulh2spanclassmwheadlineidfurther_readingfurtherreadingspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection41titleeditsectionfurtherreadingeditaspanclassmweditsectionbracketspanspanh2tablerolepresentationclassmboxsmallplainlinkssistersiteboxstylebackgroundcolorf9f9f9border1pxsolidaaacolor000tbodytrtdclassmboximageimgaltsrcuploadwikimediaorgwikipediacommonsthumb991wikiversitylogosvg40pxwikiversitylogosvgpngwidth40height32classnoviewersrcsetuploadwikimediaorgwikipediacommonsthumb991wikiversitylogosvg60pxwikiversitylogosvgpng15xuploadwikimediaorgwikipediacommonsthumb991wikiversitylogosvg80pxwikiversitylogosvgpng2xdatafilewidth1000datafileheight800tdtdclassmboxtextplainlistwikiversityhaslearningresourcesaboutibahrefhttpsenwikiversityorgwikispecialsearchdata_analysisclassextiwtitlevspecialsearchdataanalysisdataanalysisabitdtrtbodytableulliahrefwikiadc3a8r_hjclassmwredirecttitleadrhjadrhjaampahrefwikigideon_j_mellenberghtitlegideonjmellenberghmellenberghgjawithcontributionsbydjhand2008iadvisingonresearchmethodsaconsultantscompanionihuizenthenetherlandsjohannesvankesselpublishinglilichambersjohnmclevelandwilliamskleinerbeattukeypaula1983igraphicalmethodsfordataanalysisiwadsworthduxburypresslinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources053498052xtitlespecialbooksources053498052x053498052xalilifandangoarmando2008ipythondataanalysis2ndeditionipacktpublisherslilijuranjosephmgodfreyablanton1999ijuransqualityhandbook5theditioninewyorkmcgrawhilllinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources007034003xtitlespecialbooksources007034003x007034003xalililewisbeckmichaels1995idataanalysisanintroductionisagepublicationsinclinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources0803957726titlespecialbooksources08039577260803957726alilinistsematech2008arelnofollowclassexternaltexthrefhttpwwwitlnistgovdiv898handbookihandbookofstatisticalmethodsialilipyzdekt2003iqualityengineeringhandbookilinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources0824746147titlespecialbooksources08247461470824746147aliliahrefwikirichard_veryardtitlerichardveryardrichardveryarda1984ipragmaticdataanalysisioxford160blackwellscientificpublicationslinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources0632013117titlespecialbooksources06320131170632013117alilitabachnickbgfidellls2007iusingmultivariatestatistics5theditionibostonpearsoneducationincallynandbaconlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources9780205459384titlespecialbooksources97802054593849780205459384aliuldivrolenavigationclassnavboxarialabelledbyauthority_control_frameless_amp124texttop_amp12410px_amp124altedit_this_at_wikidata_amp124linkhttpsamp58wwwwikidataorgwikiq1988917amp124edit_this_at_wikidatastylepadding3pxtableclassnowraplinkshlistnavboxinnerstyleborderspacing0backgroundtransparentcolorinherittbodytrthidauthority_control_frameless_amp124texttop_amp12410px_amp124altedit_this_at_wikidata_amp124linkhttpsamp58wwwwikidataorgwikiq1988917amp124edit_this_at_wikidatascoperowclassnavboxgroupstylewidth1ahrefwikihelpauthority_controltitlehelpauthoritycontrolauthoritycontrolaahrefhttpswwwwikidataorgwikiq1988917titleeditthisatwikidataimgalteditthisatwikidatasrcuploadwikimediaorgwikipediacommonsthumb773blue_pencilsvg10pxblue_pencilsvgpngwidth10height10styleverticalaligntexttopsrcsetuploadwikimediaorgwikipediacommonsthumb773blue_pencilsvg15pxblue_pencilsvgpng15xuploadwikimediaorgwikipediacommonsthumb773blue_pencilsvg20pxblue_pencilsvgpng2xdatafilewidth600datafileheight600athtdclassnavboxlistnavboxoddstyletextalignleftborderleftwidth2pxborderleftstylesolidwidth100padding0pxdivstylepadding0em025emullispanclassnowrapahrefwikiintegrated_authority_filetitleintegratedauthorityfilegndaspanclassuidarelnofollowclassexternaltexthrefhttpsdnbinfognd4123037141230371aspanspanliuldivtdtrtbodytabledivdivrolenavigationclassnavboxarialabelledbydatastylepadding3pxtableclassnowraplinkscollapsibleautocollapsenavboxinnerstyleborderspacing0backgroundtransparentcolorinherittbodytrthscopecolclassnavboxtitlecolspan2divclassplainlinkshlistnavbarminiulliclassnvviewahrefwikitemplatedatatitletemplatedataabbrtitleviewthistemplatestylebackgroundnonetransparentbordernonemozboxshadownonewebkitboxshadownoneboxshadownonepadding0vabbraliliclassnvtalkahrefwikitemplate_talkdatatitletemplatetalkdataabbrtitlediscussthistemplatestylebackgroundnonetransparentbordernonemozboxshadownonewebkitboxshadownoneboxshadownonepadding0tabbraliliclassnveditaclassexternaltexthrefenwikipediaorgwindexphptitletemplatedataampactioneditabbrtitleeditthistemplatestylebackgroundnonetransparentbordernonemozboxshadownonewebkitboxshadownoneboxshadownonepadding0eabbraliuldivdividdatastylefontsize114margin04emahrefwikidata_computingtitledatacomputingdataadivthtrtrtdcolspan2classnavboxlistnavboxoddhliststylewidth100padding0pxdivstylepadding0em025emulliaclassmwselflinkselflinkanalysisaliliahrefwikidata_archaeologytitledataarchaeologyarchaeologyaliliahrefwikidata_cleansingtitledatacleansingcleansingaliliahrefwikidata_collectiontitledatacollectioncollectionaliliahrefwikidata_compressiontitledatacompressioncompressionaliliahrefwikidata_corruptiontitledatacorruptioncorruptionaliliahrefwikidata_curationtitledatacurationcurationaliliahrefwikidata_degradationtitledatadegradationdegradationaliliahrefwikidata_editingtitledataeditingeditingaliliahrefwikidata_farmingtitledatafarmingfarmingaliliahrefwikidata_format_managementtitledataformatmanagementformatmanagementaliliahrefwikidata_fusiontitledatafusionfusionaliliahrefwikidata_integrationtitledataintegrationintegrationaliliahrefwikidata_integritytitledataintegrityintegrityaliliahrefwikidata_librarytitledatalibrarylibraryaliliahrefwikidata_losstitledatalosslossaliliahrefwikidata_managementtitledatamanagementmanagementaliliahrefwikidata_migrationtitledatamigrationmigrationaliliahrefwikidata_miningtitledataminingminingaliliahrefwikidata_preprocessingtitledatapreprocessingpreprocessingaliliahrefwikidata_preservationtitledatapreservationpreservationaliliahrefwikiinformation_privacytitleinformationprivacyprotectionprivacyaliliahrefwikidata_recoverytitledatarecoveryrecoveryaliliahrefwikidata_reductiontitledatareductionreductionaliliahrefwikidata_retentiontitledataretentionretentionaliliahrefwikidata_qualitytitledataqualityqualityaliliahrefwikidata_sciencetitledatasciencesciencealiliahrefwikidata_scrapingtitledatascrapingscrapingaliliahrefwikidata_scrubbingtitledatascrubbingscrubbingaliliahrefwikidata_securitytitledatasecuritysecurityaliliahrefwikidata_stewardshipclassmwredirecttitledatastewardshipstewardshipaliliahrefwikidata_storagetitledatastoragestoragealiliahrefwikidata_validationtitledatavalidationvalidationaliliahrefwikidata_warehousetitledatawarehousewarehousealiliahrefwikidata_wranglingtitledatawranglingwranglingmungingaliuldivtdtrtbodytabledivnewpplimitreportparsedbymw1258cachedtime20181023205919cacheexpiry1900800dynamiccontentfalsecputimeusage0596secondsrealtimeusage0744secondspreprocessorvisitednodecount31771000000preprocessorgeneratednodecount01500000postexpandincludesize729952097152bytestemplateargumentsize28332097152byteshighestexpansiondepth1240expensiveparserfunctioncount5500unstriprecursiondepth120unstrippostexpandsize621355000000bytesnumberofwikibaseentitiesloaded3400luatimeusage023010000secondsluamemoryusage576mb50mbtransclusionexpansiontimereportmscallstemplate100005231141total31981673051templatereflist1744912485templatecite_book971508066templateisbn763399371templateaccording_to_whom734383943templatecite_journal698365241templateauthority_control673352172templatesidebar_with_collapsible_lists658344081templatefixspan582304591templatedata_visualizationsavedinparsercachewithkeyenwikipcacheidhash27209540canonicalandtimestamp20181023205918andrevisionid862584710divnoscriptimgsrcenwikipediaorgwikispecialcentralautologinstarttype1x1alttitlewidth1height1stylebordernonepositionabsolutenoscriptdivdivclassprintfooterretrievedfromadirltrhrefhttpsenwikipediaorgwindexphptitledata_analysisampoldid862584710httpsenwikipediaorgwindexphptitledata_analysisampoldid862584710adivdividcatlinksclasscatlinksdatamwinterfacedividmwnormalcatlinksclassmwnormalcatlinksahrefwikihelpcategorytitlehelpcategorycategoriesaulliahrefwikicategorydata_analysistitlecategorydataanalysisdataanalysisaliliahrefwikicategoryscientific_methodtitlecategoryscientificmethodscientificmethodaliliahrefwikicategoryparticle_physicstitlecategoryparticlephysicsparticlephysicsaliliahrefwikicategorycomputational_fields_of_studytitlecategorycomputationalfieldsofstudycomputationalfieldsofstudyaliuldivdividmwhiddencatlinksclassmwhiddencatlinksmwhiddencatshiddenhiddencategoriesulliahrefwikicategoryall_articles_with_specifically_marked_weaselworded_phrasestitlecategoryallarticleswithspecificallymarkedweaselwordedphrasesallarticleswithspecificallymarkedweaselwordedphrasesaliliahrefwikicategoryarticles_with_specifically_marked_weaselworded_phrases_from_march_2018titlecategoryarticleswithspecificallymarkedweaselwordedphrasesfrommarch2018articleswithspecificallymarkedweaselwordedphrasesfrommarch2018aliliahrefwikicategorywikipedia_articles_needing_clarification_from_march_2018titlecategorywikipediaarticlesneedingclarificationfrommarch2018wikipediaarticlesneedingclarificationfrommarch2018aliliahrefwikicategorywikipedia_articles_with_gnd_identifierstitlecategorywikipediaarticleswithgndidentifierswikipediaarticleswithgndidentifiersaliuldivdivdivclassvisualcleardivdivdivdividmwnavigationh2navigationmenuh2dividmwheaddividppersonalrolenavigationclassarialabelledbyppersonallabelh3idppersonallabelpersonaltoolsh3ulliidptanonuserpagenotloggedinliliidptanontalkahrefwikispecialmytalktitlediscussionabouteditsfromthisipaddressnaccesskeyntalkaliliidptanoncontribsahrefwikispecialmycontributionstitlealistofeditsmadefromthisipaddressyaccesskeyycontributionsaliliidptcreateaccountahrefwindexphptitlespecialcreateaccountampreturntodataanalysistitleyouareencouragedtocreateanaccountandloginhoweveritisnotmandatorycreateaccountaliliidptloginahrefwindexphptitlespecialuserloginampreturntodataanalysistitleyou039reencouragedtologinhoweverit039snotmandatoryoaccesskeyologinaliuldivdividleftnavigationdividpnamespacesrolenavigationclassvectortabsarialabelledbypnamespaceslabelh3idpnamespaceslabelnamespacesh3ulliidcanstabmainclassselectedspanahrefwikidata_analysistitleviewthecontentpagecaccesskeycarticleaspanliliidcatalkspanahrefwikitalkdata_analysisreldiscussiontitlediscussionaboutthecontentpagetaccesskeyttalkaspanliuldivdividpvariantsrolenavigationclassvectormenuemptyportletarialabelledbypvariantslabelinputtypecheckboxclassvectormenucheckboxarialabelledbypvariantslabelh3idpvariantslabelspanvariantsspanh3divclassmenuululdivdivdivdividrightnavigationdividpviewsrolenavigationclassvectortabsarialabelledbypviewslabelh3idpviewslabelviewsh3ulliidcaviewclasscollapsibleselectedspanahrefwikidata_analysisreadaspanliliidcaeditclasscollapsiblespanahrefwindexphptitledata_analysisampactionedittitleeditthispageeaccesskeyeeditaspanliliidcahistoryclasscollapsiblespanahrefwindexphptitledata_analysisampactionhistorytitlepastrevisionsofthispagehaccesskeyhviewhistoryaspanliuldivdividpcactionsrolenavigationclassvectormenuemptyportletarialabelledbypcactionslabelinputtypecheckboxclassvectormenucheckboxarialabelledbypcactionslabelh3idpcactionslabelspanmorespanh3divclassmenuululdivdivdividpsearchrolesearchh3labelforsearchinputsearchlabelh3formactionwindexphpidsearchformdividsimplesearchinputtypesearchnamesearchplaceholdersearchwikipediatitlesearchwikipediafaccesskeyfidsearchinputinputtypehiddenvaluespecialsearchnametitleinputtypesubmitnamefulltextvaluesearchtitlesearchwikipediaforthistextidmwsearchbuttonclasssearchbuttonmwfallbacksearchbuttoninputtypesubmitnamegovaluegotitlegotoapagewiththisexactnameifitexistsidsearchbuttonclasssearchbuttondivformdivdivdivdividmwpaneldividplogorolebanneraclassmwwikilogohrefwikimain_pagetitlevisitthemainpageadivdivclassportalrolenavigationidpnavigationarialabelledbypnavigationlabelh3idpnavigationlabelnavigationh3divclassbodyulliidnmainpagedescriptionahrefwikimain_pagetitlevisitthemainpagezaccesskeyzmainpagealiliidncontentsahrefwikiportalcontentstitleguidestobrowsingwikipediacontentsaliliidnfeaturedcontentahrefwikiportalfeatured_contenttitlefeaturedcontentthebestofwikipediafeaturedcontentaliliidncurrenteventsahrefwikiportalcurrent_eventstitlefindbackgroundinformationoncurrenteventscurrenteventsaliliidnrandompageahrefwikispecialrandomtitleloadarandomarticlexaccesskeyxrandomarticlealiliidnsitesupportahrefhttpsdonatewikimediaorgwikispecialfundraiserredirectorutm_sourcedonateamputm_mediumsidebaramputm_campaignc13_enwikipediaorgampuselangentitlesupportusdonatetowikipediaaliliidnshoplinkahrefshopwikimediaorgtitlevisitthewikipediastorewikipediastorealiuldivdivdivclassportalrolenavigationidpinteractionarialabelledbypinteractionlabelh3idpinteractionlabelinteractionh3divclassbodyulliidnhelpahrefwikihelpcontentstitleguidanceonhowtouseandeditwikipediahelpaliliidnaboutsiteahrefwikiwikipediaabouttitlefindoutaboutwikipediaaboutwikipediaaliliidnportalahrefwikiwikipediacommunity_portaltitleabouttheprojectwhatyoucandowheretofindthingscommunityportalaliliidnrecentchangesahrefwikispecialrecentchangestitlealistofrecentchangesinthewikiraccesskeyrrecentchangesaliliidncontactpageahrefenwikipediaorgwikiwikipediacontact_ustitlehowtocontactwikipediacontactpagealiuldivdivdivclassportalrolenavigationidptbarialabelledbyptblabelh3idptblabeltoolsh3divclassbodyulliidtwhatlinkshereahrefwikispecialwhatlinksheredata_analysistitlelistofallenglishwikipediapagescontaininglinkstothispagejaccesskeyjwhatlinksherealiliidtrecentchangeslinkedahrefwikispecialrecentchangeslinkeddata_analysisrelnofollowtitlerecentchangesinpageslinkedfromthispagekaccesskeykrelatedchangesaliliidtuploadahrefwikiwikipediafile_upload_wizardtitleuploadfilesuaccesskeyuuploadfilealiliidtspecialpagesahrefwikispecialspecialpagestitlealistofallspecialpagesqaccesskeyqspecialpagesaliliidtpermalinkahrefwindexphptitledata_analysisampoldid862584710titlepermanentlinktothisrevisionofthepagepermanentlinkaliliidtinfoahrefwindexphptitledata_analysisampactioninfotitlemoreinformationaboutthispagepageinformationaliliidtwikibaseahrefhttpswwwwikidataorgwikispecialentitypageq1988917titlelinktoconnecteddatarepositoryitemgaccesskeygwikidataitemaliliidtciteahrefwindexphptitlespecialcitethispageamppagedata_analysisampid862584710titleinformationonhowtocitethispagecitethispagealiuldivdivdivclassportalrolenavigationidpcollprint_exportarialabelledbypcollprint_exportlabelh3idpcollprint_exportlabelprintexporth3divclassbodyulliidcollcreate_a_bookahrefwindexphptitlespecialbookampbookcmdbook_creatoramprefererdataanalysiscreateabookaliliidcolldownloadasrdf2latexahrefwindexphptitlespecialelectronpdfamppagedataanalysisampactionshowdownloadscreendownloadaspdfaliliidtprintahrefwindexphptitledata_analysisampprintableyestitleprintableversionofthispagepaccesskeypprintableversionaliuldivdivdivclassportalrolenavigationidpwikibaseotherprojectsarialabelledbypwikibaseotherprojectslabelh3idpwikibaseotherprojectslabelinotherprojectsh3divclassbodyulliclasswbotherprojectlinkwbotherprojectcommonsahrefhttpscommonswikimediaorgwikicategorydata_analysishreflangenwikimediacommonsaliuldivdivdivclassportalrolenavigationidplangarialabelledbyplanglabelh3idplanglabellanguagesh3divclassbodyulliclassinterlanguagelinkinterwikiarahrefhttpsarwikipediaorgwikid8aad8add984d98ad984_d8a8d98ad8a7d986d8a7d8aatitlearabiclangarhreflangarclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikideahrefhttpsdewikipediaorgwikidatenanalysetitledatenanalysegermanlangdehreflangdeclassinterlanguagelinktargetdeutschaliliclassinterlanguagelinkinterwikietahrefhttpsetwikipediaorgwikiandmeanalc3bcc3bcstitleandmeanalsestonianlangethreflangetclassinterlanguagelinktargeteestialiliclassinterlanguagelinkinterwikiesahrefhttpseswikipediaorgwikianc3a1lisis_de_datostitleanlisisdedatosspanishlangeshreflangesclassinterlanguagelinktargetespaolaliliclassinterlanguagelinkinterwikieoahrefhttpseowikipediaorgwikidatuma_analitikotitledatumaanalitikoesperantolangeohreflangeoclassinterlanguagelinktargetesperantoaliliclassinterlanguagelinkinterwikifaahrefhttpsfawikipediaorgwikid8aad8add984db8cd984_d8afd8a7d8afd987e2808cd987d8a7titlepersianlangfahreflangfaclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikifrbadgeq17437798badgegoodarticletitlegoodarticleahrefhttpsfrwikipediaorgwikianalyse_des_donnc3a9estitleanalysedesdonnesfrenchlangfrhreflangfrclassinterlanguagelinktargetfranaisaliliclassinterlanguagelinkinterwikihiahrefhttpshiwikipediaorgwikie0a4a1e0a587e0a49fe0a4be_e0a4b5e0a4bfe0a4b6e0a58de0a4b2e0a587e0a4b7e0a4a3titlehindilanghihreflanghiclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikiitahrefhttpsitwikipediaorgwikianalisi_dei_datititleanalisideidatiitalianlangithreflangitclassinterlanguagelinktargetitalianoaliliclassinterlanguagelinkinterwikiheahrefhttpshewikipediaorgwikid7a0d799d7aad795d797_d79ed799d793d7a2titlehebrewlanghehreflangheclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikiknahrefhttpsknwikipediaorgwikie0b2aee0b2bee0b2b9e0b2bfe0b2a4e0b2bf_e0b2b5e0b2bfe0b2b6e0b38de0b2b2e0b387e0b2b7e0b2a3e0b386titlekannadalangknhreflangknclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikihuahrefhttpshuwikipediaorgwikiadatelemzc3a9stitleadatelemzshungarianlanghuhreflanghuclassinterlanguagelinktargetmagyaraliliclassinterlanguagelinkinterwikiplahrefhttpsplwikipediaorgwikianaliza_danychtitleanalizadanychpolishlangplhreflangplclassinterlanguagelinktargetpolskialiliclassinterlanguagelinkinterwikiptahrefhttpsptwikipediaorgwikianc3a1lise_de_dadostitleanlisededadosportugueselangpthreflangptclassinterlanguagelinktargetportugusaliliclassinterlanguagelinkinterwikiruahrefhttpsruwikipediaorgwikid090d0bdd0b0d0bbd0b8d0b7_d0b4d0b0d0bdd0bdd18bd185titlerussianlangruhreflangruclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikisiahrefhttpssiwikipediaorgwikie0b6afe0b6ade0b78ae0b6ad_e0b780e0b792e0b781e0b78ae0b6bde0b79ae0b782e0b6abe0b6batitlesinhalalangsihreflangsiclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikickbahrefhttpsckbwikipediaorgwikid8b4db8cdaa9d8a7d8b1db8cdb8c_d8afd8b1d8a7d988db95titlecentralkurdishlangckbhreflangckbclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikifiahrefhttpsfiwikipediaorgwikidataanalyysititledataanalyysifinnishlangfihreflangficlassinterlanguagelinktargetsuomialiliclassinterlanguagelinkinterwikitaahrefhttpstawikipediaorgwikie0aea4e0aeb0e0aeb5e0af81_e0aeaae0ae95e0af81e0aeaae0af8de0aeaae0aebee0aeafe0af8de0aeb5e0af81titletamillangtahreflangtaclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikiukahrefhttpsukwikipediaorgwikid090d0bdd0b0d0bbd196d0b7_d0b4d0b0d0bdd0b8d185titleukrainianlangukhreflangukclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikizhahrefhttpszhwikipediaorgwikie695b0e68daee58886e69e90titlechineselangzhhreflangzhclassinterlanguagelinktargetaliuldivclassafterportletafterportletlangspanclasswblanglinkseditwblanglinkslinkahrefhttpswwwwikidataorgwikispecialentitypageq1988917sitelinkswikipediatitleeditinterlanguagelinksclasswbceditpageeditlinksaspandivdivdivdivdivdividfooterrolecontentinfoulidfooterinfoliidfooterinfolastmodthispagewaslasteditedon5october2018at0950spanclassanonymousshowutcspanliliidfooterinfocopyrighttextisavailableunderthearellicensehrefenwikipediaorgwikiwikipediatext_of_creative_commons_attributionsharealike_30_unported_licensecreativecommonsattributionsharealikelicenseaarellicensehrefcreativecommonsorglicensesbysa30styledisplaynoneaadditionaltermsmayapplybyusingthissiteyouagreetotheahreffoundationwikimediaorgwikiterms_of_usetermsofuseaandahreffoundationwikimediaorgwikiprivacy_policyprivacypolicyawikipediaisaregisteredtrademarkoftheahrefwwwwikimediafoundationorgwikimediafoundationincaanonprofitorganizationliululidfooterplacesliidfooterplacesprivacyahrefhttpsfoundationwikimediaorgwikiprivacy_policyclassextiwtitlewmfprivacypolicyprivacypolicyaliliidfooterplacesaboutahrefwikiwikipediaabouttitlewikipediaaboutaboutwikipediaaliliidfooterplacesdisclaimerahrefwikiwikipediageneral_disclaimertitlewikipediageneraldisclaimerdisclaimersaliliidfooterplacescontactahrefenwikipediaorgwikiwikipediacontact_uscontactwikipediaaliliidfooterplacesdevelopersahrefhttpswwwmediawikiorgwikispecialmylanguagehow_to_contributedevelopersaliliidfooterplacescookiestatementahrefhttpsfoundationwikimediaorgwikicookie_statementcookiestatementaliliidfooterplacesmobileviewahrefenmwikipediaorgwindexphptitledata_analysisampmobileactiontoggle_view_mobileclassnoprintstopmobileredirecttogglemobileviewaliululidfootericonsclassnoprintliidfootercopyrighticoahrefhttpswikimediafoundationorgimgsrcstaticimageswikimediabuttonpngsrcsetstaticimageswikimediabutton15xpng15xstaticimageswikimediabutton2xpng2xwidth88height31altwikimediafoundationaliliidfooterpoweredbyicoahrefwwwmediawikiorgimgsrcstaticimagespoweredby_mediawiki_88x31pngaltpoweredbymediawikisrcsetstaticimagespoweredby_mediawiki_132x47png15xstaticimagespoweredby_mediawiki_176x62png2xwidth88height31aliuldivstyleclearbothdivdivbodyhtml', 'doctypehtmlhtmllangenheadtitleloremipsumallthefactslipsumgeneratortitlemetanamekeywordscontentloremipsumlipsumloremipsumtextgenerategeneratorfactsinformationwhatwhywheredummytexttypesettingprintingdefinibusbonorumetmalorumdefinibusbonorumetmalorumextremesofgoodandevilcicerolatingarbledscrambledloremipsumdolorsitametdolorsitametconsecteturadipiscingelitsedeiusmodtemporincididuntmetanamedescriptioncontentreferencesiteaboutloremipsumgivinginformationonitsoriginsaswellasarandomlipsumgeneratormetanameviewportcontentwidthdevicewidthinitialscale10metahttpequivcontenttypecontenttexthtmlcharsetutf8scripttypetextjavascriptsrcstaticampservicesclientsstreamamplipsumjsscriptlinkrelicontypeimagexiconhreffaviconicolinkrelstylesheettypetextcsshrefcss020617cssheadbodydividouterdivclassbannerdividdivgptad14561483161980scripttypetextjavascriptgoogletagcmdpushfunctiongoogletagdisplaydivgptad14561483161980scriptdivdivdividinnerdividlanguagesaclasshyhrefhttphylipsumcom1344137713971381140813811398aaclasssqhrefhttpsqlipsumcomshqipaspanclassltrdirltraclassxxhrefhttparlipsumcomimgsrcimagesargifwidth18height12alt82351575160415931585157616101577aaclassxxhrefhttparlipsumcom82351575160415931585157616101577aspannbspnbspaclassbghrefhttpbglipsumcom104110981083107510721088108910821080aaclasscahrefhttpcalipsumcomcatalagraveaaclasscnhrefhttpcnlipsumcom20013259913161620307aaclasshrhrefhttphrlipsumcomhrvatskiaaclasscshrefhttpcslipsumcom268eskyaaclassdahrefhttpdalipsumcomdanskaaclassnlhrefhttpnllipsumcomnederlandsaaclassenzzhrefhttpwwwlipsumcomenglishaaclassethrefhttpetlipsumcomeestiaaclassphhrefhttpphlipsumcomfilipinoaaclassfihrefhttpfilipsumcomsuomiaaclassfrhrefhttpfrlipsumcomfranccedilaisaaclasskahrefhttpkalipsumcom4325430443204311432343144312aaclassdehrefhttpdelipsumcomdeutschaaclasselhrefhttpellipsumcom917955955951957953954940aspanclassltrdirltraclassxxhrefhttphelipsumcomimgsrcimageshegifwidth18height12alt823515061489151214971514aaclassxxhrefhttphelipsumcom823515061489151214971514aspannbspnbspaclasshihrefhttphilipsumcom236123672344238123422368aaclasshuhrefhttphulipsumcommagyaraaclassidhrefhttpidlipsumcomindonesiaaaclassithrefhttpitlipsumcomitalianoaaclasslvhrefhttplvlipsumcomlatviskiaaclasslthrefhttpltlipsumcomlietuviscaronkaiaaclassmkhrefhttpmklipsumcom1084107210821077107610861085108910821080aaclassmshrefhttpmslipsumcommelayuaaclassnohrefhttpnolipsumcomnorskaaclassplhrefhttppllipsumcompolskiaaclasspthrefhttpptlipsumcomportuguecircsaaclassrohrefhttprolipsumcomromacircnaaaclassruhrefhttprulipsumcompycc108210801081aaclasssrhrefhttpsrlipsumcom105710881087108910821080aaclassskhrefhttpsklipsumcomsloven269inaaaclassslhrefhttpsllipsumcomsloven353269inaaaclasseshrefhttpeslipsumcomespantildeolaaclasssvhrefhttpsvlipsumcomsvenskaaaclassthhrefhttpthlipsumcom365236073618aaclasstrhrefhttptrlipsumcomtuumlrkccedileaaclassukhrefhttpuklipsumcom1059108210881072111110851089110010821072aaclassvihrefhttpvilipsumcomti7871ngvi7879tadivh1loremipsumh1h4nequeporroquisquamestquidoloremipsumquiadolorsitametconsecteturadipiscivelith4h5thereisnoonewholovespainitselfwhoseeksafteritandwantstohaveitsimplybecauseitispainh5hrdividcontentdividpanesdivh2whatisloremipsumh2pstrongloremipsumstrongissimplydummytextoftheprintingandtypesettingindustryloremipsumhasbeentheindustrysstandarddummytexteversincethe1500swhenanunknownprintertookagalleyoftypeandscrambledittomakeatypespecimenbookithassurvivednotonlyfivecenturiesbutalsotheleapintoelectronictypesettingremainingessentiallyunchangeditwaspopularisedinthe1960swiththereleaseofletrasetsheetscontainingloremipsumpassagesandmorerecentlywithdesktoppublishingsoftwarelikealduspagemakerincludingversionsofloremipsumpdivdivh2whydoweuseith2pitisalongestablishedfactthatareaderwillbedistractedbythereadablecontentofapagewhenlookingatitslayoutthepointofusingloremipsumisthatithasamoreorlessnormaldistributionoflettersasopposedtousingcontentherecontentheremakingitlooklikereadableenglishmanydesktoppublishingpackagesandwebpageeditorsnowuseloremipsumastheirdefaultmodeltextandasearchforloremipsumwilluncovermanywebsitesstillintheirinfancyvariousversionshaveevolvedovertheyearssometimesbyaccidentsometimesonpurposeinjectedhumourandthelikepdivbrdivh2wheredoesitcomefromh2pcontrarytopopularbeliefloremipsumisnotsimplyrandomtextithasrootsinapieceofclassicallatinliteraturefrom45bcmakingitover2000yearsoldrichardmcclintockalatinprofessorathampdensydneycollegeinvirginialookeduponeofthemoreobscurelatinwordsconsecteturfromaloremipsumpassageandgoingthroughthecitesofthewordinclassicalliteraturediscoveredtheundoubtablesourceloremipsumcomesfromsections11032and11033ofdefinibusbonorumetmalorumtheextremesofgoodandevilbycicerowrittenin45bcthisbookisatreatiseonthetheoryofethicsverypopularduringtherenaissancethefirstlineofloremipsumloremipsumdolorsitametcomesfromalineinsection11032ppthestandardchunkofloremipsumusedsincethe1500sisreproducedbelowforthoseinterestedsections11032and11033fromdefinibusbonorumetmalorumbyciceroarealsoreproducedintheirexactoriginalformaccompaniedbyenglishversionsfromthe1914translationbyhrackhampdivdivh2wherecanigetsomeh2ptherearemanyvariationsofpassagesofloremipsumavailablebutthemajorityhavesufferedalterationinsomeformbyinjectedhumourorrandomisedwordswhichdontlookevenslightlybelievableifyouaregoingtouseapassageofloremipsumyouneedtobesurethereisntanythingembarrassinghiddeninthemiddleoftextalltheloremipsumgeneratorsontheinternettendtorepeatpredefinedchunksasnecessarymakingthisthefirsttruegeneratorontheinternetitusesadictionaryofover200latinwordscombinedwithahandfulofmodelsentencestructurestogenerateloremipsumwhichlooksreasonablethegeneratedloremipsumisthereforealwaysfreefromrepetitioninjectedhumourornoncharacteristicwordsetcpformmethodpostactionfeedhtmltablestylewidth100trtdrowspan2inputtypetextnameamountvalue5size3idamounttdtdrowspan2tablestyletextalignlefttrtdstylewidth20pxinputtyperadionamewhatvalueparasidparascheckedcheckedtdtdlabelforparasparagraphslabeltdtrtrtdstylewidth20pxinputtyperadionamewhatvaluewordsidwordstdtdlabelforwordswordslabeltdtrtrtdstylewidth20pxinputtyperadionamewhatvaluebytesidbytestdtdlabelforbytesbyteslabeltdtrtrtdstylewidth20pxinputtyperadionamewhatvaluelistsidliststdtdlabelforlistslistslabeltdtrtabletdtdstylewidth20pxinputtypecheckboxnamestartidstartvalueyescheckedcheckedtdtdstyletextalignleftlabelforstartstartwithlorembripsumdolorsitametlabeltdtrtrtdtdtdstyletextalignleftinputtypesubmitnamegenerateidgeneratevaluegenerateloremipsumtdtrtableformdivdivhrdivclassboxedtightimgsrcimagesadvertpngwidth100altadvertisedivhrdivclassboxedstylecolorff0000strongtranslationsstrongcanyouhelptranslatethissiteintoaforeignlanguagepleaseemailuswithdetailsifyoucanhelpdivhrdivclassboxedtherearenowasetofmockbannersavailableahrefbannersclasslnkhereainthreecoloursandinarangeofstandardbannersizesbrahrefbannersimgsrcimagesbannersblack_234x60gifwidth234height60altbannersaahrefbannersimgsrcimagesbannersgrey_234x60gifwidth234height60altbannersaahrefbannersimgsrcimagesbannerswhite_234x60gifwidth234height60altbannersadivhrdivclassboxedstrongdonatestrongifyouusethissiteregularlyandwouldliketohelpkeepthesiteontheinternetpleaseconsiderdonatingasmallsumtohelppayforthehostingandbandwidthbillthereisnominimumdonationanysumisappreciatedclickatarget_blankhrefdonateclasslnkhereatodonateusingpaypalthankyouforyoursupportdivhrdivclassboxedidpackagesatarget_blankrelnofollowhrefhttpschromegooglecomextensionsdetailjkkggolejkaoanbjnmkakgjcdcnpfkgichromeaatarget_blankrelnofollowhrefhttpsaddonsmozillaorgenusfirefoxaddondummylipsumfirefoxaddonaatarget_blankrelnofollowhrefhttpsgithubcomtraviskaufmannodelipsumnodejsaatarget_blankrelnofollowhrefhttpftpktugorkrtexarchivehelpcatalogueentrieslipsumhtmltexpackageaatarget_blankrelnofollowhrefhttpcodegooglecomppypsumpythoninterfaceaatarget_blankrelnofollowhrefhttpgtklipsumsourceforgenetgtklipsumaatarget_blankrelnofollowhrefhttpgithubcomgsavagelorem_ipsumtreemasterrailsaatarget_blankrelnofollowhrefhttpsgithubcomcerkitloremipsumnetaatarget_blankrelnofollowhrefhttpgroovyconsoleappspotcomscript64002groovyaatarget_blankrelnofollowhrefhttpwwwlayerherocomloremipsumgeneratoradobepluginadivhrdividtranslationh3thestandardloremipsumpassageusedsincethe1500sh3ploremipsumdolorsitametconsecteturadipiscingelitseddoeiusmodtemporincididuntutlaboreetdoloremagnaaliquautenimadminimveniamquisnostrudexercitationullamcolaborisnisiutaliquipexeacommodoconsequatduisauteiruredolorinreprehenderitinvoluptatevelitessecillumdoloreeufugiatnullapariaturexcepteursintoccaecatcupidatatnonproidentsuntinculpaquiofficiadeseruntmollitanimidestlaborumph3section11032ofdefinibusbonorumetmalorumwrittenbyciceroin45bch3psedutperspiciatisundeomnisistenatuserrorsitvoluptatemaccusantiumdoloremquelaudantiumtotamremaperiameaqueipsaquaeabilloinventoreveritatisetquasiarchitectobeataevitaedictasuntexplicabonemoenimipsamvoluptatemquiavoluptassitaspernaturautoditautfugitsedquiaconsequunturmagnidoloreseosquirationevoluptatemsequinesciuntnequeporroquisquamestquidoloremipsumquiadolorsitametconsecteturadipiscivelitsedquianonnumquameiusmoditemporainciduntutlaboreetdoloremagnamaliquamquaeratvoluptatemutenimadminimaveniamquisnostrumexercitationemullamcorporissuscipitlaboriosamnisiutaliquidexeacommodiconsequaturquisautemveleumiurereprehenderitquiineavoluptatevelitessequamnihilmolestiaeconsequaturvelillumquidoloremeumfugiatquovoluptasnullapariaturph31914translationbyhrackhamh3pbutimustexplaintoyouhowallthismistakenideaofdenouncingpleasureandpraisingpainwasbornandiwillgiveyouacompleteaccountofthesystemandexpoundtheactualteachingsofthegreatexplorerofthetruththemasterbuilderofhumanhappinessnoonerejectsdislikesoravoidspleasureitselfbecauseitispleasurebutbecausethosewhodonotknowhowtopursuepleasurerationallyencounterconsequencesthatareextremelypainfulnoragainisthereanyonewholovesorpursuesordesirestoobtainpainofitselfbecauseitispainbutbecauseoccasionallycircumstancesoccurinwhichtoilandpaincanprocurehimsomegreatpleasuretotakeatrivialexamplewhichofuseverundertakeslaboriousphysicalexerciseexcepttoobtainsomeadvantagefromitbutwhohasanyrighttofindfaultwithamanwhochoosestoenjoyapleasurethathasnoannoyingconsequencesoronewhoavoidsapainthatproducesnoresultantpleasureph3section11033ofdefinibusbonorumetmalorumwrittenbyciceroin45bch3patveroeosetaccusamusetiustoodiodignissimosducimusquiblanditiispraesentiumvoluptatumdelenitiatquecorruptiquosdoloresetquasmolestiasexcepturisintoccaecaticupiditatenonprovidentsimiliquesuntinculpaquiofficiadeseruntmollitiaanimiidestlaborumetdolorumfugaetharumquidemrerumfacilisestetexpeditadistinctionamliberotemporecumsolutanobisesteligendioptiocumquenihilimpeditquominusidquodmaximeplaceatfacerepossimusomnisvoluptasassumendaestomnisdolorrepellendustemporibusautemquibusdametautofficiisdebitisautrerumnecessitatibussaepeevenietutetvoluptatesrepudiandaesintetmolestiaenonrecusandaeitaqueearumrerumhicteneturasapientedelectusutautreiciendisvoluptatibusmaioresaliasconsequaturautperferendisdoloribusasperioresrepellatph31914translationbyhrackhamh3pontheotherhandwedenouncewithrighteousindignationanddislikemenwhoaresobeguiledanddemoralizedbythecharmsofpleasureofthemomentsoblindedbydesirethattheycannotforeseethepainandtroublethatareboundtoensueandequalblamebelongstothosewhofailintheirdutythroughweaknessofwillwhichisthesameassayingthroughshrinkingfromtoilandpainthesecasesareperfectlysimpleandeasytodistinguishinafreehourwhenourpowerofchoiceisuntrammelledandwhennothingpreventsourbeingabletodowhatwelikebesteverypleasureistobewelcomedandeverypainavoidedbutincertaincircumstancesandowingtotheclaimsofdutyortheobligationsofbusinessitwillfrequentlyoccurthatpleasureshavetoberepudiatedandannoyancesacceptedthewisemanthereforealwaysholdsinthesematterstothisprincipleofselectionherejectspleasurestosecureothergreaterpleasuresorelseheendurespainstoavoidworsepainspdivdividbannerldividdivgptad14745377621222scripttypetextjavascriptgoogletagcmdpushfunctiongoogletagdisplaydivgptad14745377621222scriptdivdivdividbannerrdividdivgptad14745377621223scripttypetextjavascriptgoogletagcmdpushfunctiongoogletagdisplaydivgptad14745377621223scriptdivdivdivhrdivclassboxedastyletextdecorationnonehref1099710510811611158104101108112641081051121151171094699111109104101108112641081051121151171094699111109abrastyletextdecorationnonetarget_blankhrefprivacypdfprivacypolicyadivdivdivclassbannerdividdivgptad14561483161981scripttypetextjavascriptgoogletagcmdpushfunctiongoogletagdisplaydivgptad14561483161981scriptdivdivdivgeneratedin0014secondsbodyhtml']\n", + "['doctypehtmlifie8htmlclassieie8ltie9endififie9htmlclassieie9endififgteie9iehtmlendifheadmetanamecsrftokencontentywezkhdwaz2mhvtxtvdmpx8fjrbshm6rkq6fxpoe1b7be08ryu7duj3zzkzbmen38lnubysnguaehcqvwbu0glinkhrefplusgooglecom110399277954088556485relpublisherlinkhrefhttpswwwcoursereportcomschoolsironhackrelcanonicaltitleironhackreviewscoursereporttitlelinkrelstylesheetmediaallhrefhttpscoursereportproductionherokuappcomglobalsslfastlynetassetsbs_application2cfe4f1bb97ebbc1bd4fb734d851ab26csslinkrelstylesheetmediaallhrefhttpscoursereportproductionherokuappcomglobalsslfastlynetassetspagespecificschools_show3aca16603f6c41cf77b882baac389298cssscriptsrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetsapplication97e43e4dd7351ce897ee40f2003f85e5jsscriptscriptsrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetsheader_scripts1272387b23dc58490e6c20be1c15de53jsscriptscriptsrcusetypekitnetgqs4iacjsscriptscriptsrcwwwgstaticcomchartsloaderjsscriptscripttrytypekitloadcatchescriptifltie9scriptsrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetsapplicationieca5de91f657224405fe23d9d509a85edjsscriptendiflinkrelappletouchicontypeimagepnghrefhttpscoursereportproductionherokuappcomglobalsslfastlynetassetsappletouchicon57x57precomposed66c7a975616a2eca967795cf265b337apnglinkrelappletouchicontypeimagepnghrefhttpscoursereportproductionherokuappcomglobalsslfastlynetassetsappletouchicon72x72precomposedc34da9bf9a1cd0f34899640dfe4c1c61pngsizes72x72linkrelappletouchicontypeimagepnghrefhttpscoursereportproductionherokuappcomglobalsslfastlynetassetsappletouchicon114x114precomposedb8e8c4c1ff2adddb6978bec0265a75ecpngsizes114x114linkrelappletouchicontypeimagepnghrefhttpscoursereportproductionherokuappcomglobalsslfastlynetassetsappletouchicon144x144precomposeda1658624352b61eb99c13d767260533cpngsizes144x144html5shimandrespondjsie8supportofhtml5elementsandmediaquerieswarningrespondjsdoesntworkifyouviewthepageviafileifltie9javascript_include_tagossmaxcdncomlibshtml5shiv370html5shivjsjavascript_include_tagossmaxcdncomlibsrespondjs142respondminjsendiflinkrelnexthrefschoolsironhackpage2headbodydataspyscrolldatatargettocstylepositionrelativeheadernavclassnavbarnavbardefaultrolenavigationdivclasscontaineridnavcontaineritemscopeitemtypehttpschemaorgorganizationdivclassnavbarheaderbuttonclassnavbartogglecollapseddatatargetnavbarcollapsedatatogglecollapsetypebuttonspanclasssronlytogglenavigationspanspanclassiconbarspanspanclassiconbarspanspanclassiconbarspanbuttonaclassnavbarbrandlogosmallhrefhttpswwwcoursereportcomitempropurlimgaltcoursereporttitlecoursereportitemproplogosrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetslogosmalla04da9639b878f3d36becf065d607e0epngadivdivclasscollapsenavbarcollapseidnavbarcollapseulclassnavnavbarnavliclasstoplevelnavidschoolsaclassmpgbheaderhrefschoolsbrowseschoolsaulclasstracksliclasstrackidmenu_full_stackahreftrackswebdevelopmentbootcampfullstackwebdevelopmentaliliclasstrackidmenu_mobileahreftracksappdevelopmentbootcampmobiledevelopmentaliliclasstrackidmenu_front_endahreftracksfrontenddeveloperbootcampsfrontendwebdevelopmentaliliclasstrackidmenu_data_scienceahreftracksdatasciencebootcampdatasciencealiliclasstrackidmenu_ux_designahreftracksuxuidesignbootcampsuxdesignaliliclasstrackidmenu_digital_marketingahreftracksmarketingbootcampdigitalmarketingaliliclasstrackidmenu_menu_product_managementahreftracksproductmanagerbootcampproductmanagementaliliclasstrackidmenu_menu_securityahreftrackscybersecuritybootcampsecurityaliliclasstrackidmenu_menu_otherahreftracksothercodingbootcampsotheraliulliliclasstoplevelnavidblogaclassmpgbheaderhrefblogblogaliliclasstoplevelnavidresourcesaclassmpgbheaderhrefresourcesadviceaulclasstracksliclasstrackidmenu_ultimate_guideahrefcodingbootcampultimateguideultimateguidechoosingaschoolaliliclasstrackidmenu_best_bootcampsahrefbestcodingbootcampsbestcodingbootcampsaliliclasstrackidmenu_data_scienceahrefblogdatasciencebootcampsthecompleteguidebestindatasciencealiliclasstrackidmenu_ui_uxahrefbloguiuxdesignbootcampsthecompleteguidebestinuiuxdesignaliliclasstrackidmenu_cyber_securityahrefblogultimateguidetosecuritybootcampsbestincybersecurityaliulliliclasstoplevelnavidwriteareviewaclassmpgbheaderhrefwriteareviewwriteareviewaliliclasstoplevelnavidloginaclassmpgbheaderhrefloginsigninaliuldivdivnavheadersectionclassmainitemscopeitemtypehttpschemaorglocalbusinessdivclasscontainerdivclassrowdivclasscolxs12visiblexsvisiblesmidmobileheaderahrefschoolsironhackdivclassschoolimagetextcenterimgaltironhacklogotitleironhacklogosrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4017s300logoironhackbluepngdivadivclassaltheaderh1itempropnameironhackh1pclassdetailsspanclasslocationspanclassiconlocationspanamsterdambarcelonaberlinmadridmexicocitymiamiparissaopaulospanpdivdivdivdivclassrowdivclassnavigablecolmd8idmaincontentdivclasshiddenschoolslugironhackdivdivclassmainheaderhideonmobileh1classresizeheaderironhackh1divclassaggregateratingdivclassshowratingspclassratingsspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starpclassratingnumberitempropaggregateratingitemscopeitemtypehttpschemaorgaggregateratingavgratingspanclassratingvalueitempropratingvalue489spanspanspanspanitempropreviewcount596spanspanreviewsspanppdivdivdivdivclassnavwrapperdivclassschoolnavulclassnavnavpillsnavjustifiedhiddenxsidschoolsectionsroletablistliclassactivedatadeeplinktargetaboutdatatoggletabidabout_tabahrefaboutaboutalilidatadeeplinktargetcoursesdatatoggletabidcourses_tabahrefcoursescoursesalilidatadeeplinktargetreviewsdatatoggletabidreviews_tabahrefreviewsreviewsalilidatadeeplinktargetnewsdatatoggletabidnews_tabahrefnewsnewsaliuldivdivdivdataformcontactdataschoolironhackidcontactmobilebuttonclassbuttonbtnspanimgsrchttpss3amazonawscomcourse_report_productionmisc_imgsmailsvgtitlecontactschoolspancontactalexwilliamsfromironhackbuttondivdivclasstabcontentpanelgroupdivclasspanelwrapperdatadeeplinkpathaboutdatatababout_tabidaboutdivclasspanelpaneldefaultpanelcontentdivclasspanelheadingcollapsedvisiblexsdatadeeplinktargetaboutdatatargetaboutcollapsedatatogglecollapseidaboutcollapseheadingh4classpaneltitleabouth4divdivclasspanelcollapsecollapseinidaboutcollapsedivclasspanelbodyh2classhiddenxsabouth2sectionclassaboutdivclassexpandablepironhackisa9weekfulltimeand24weekparttimewebdevelopmentanduxuidesignbootcampinmiamifloridamadridandbarcelonaspainparisfrancemexicocitymexicoandberlingermanyironhackusesacustomizedapproachtoeducationbyallowingstudentstoshapetheirexperiencebasedonpersonalgoalstheadmissionsprocessincludessubmittingawrittenapplicationapersonalinterviewandthenatechnicalinterviewstudentswhograduatefromthewebdevelopmentbootcampwillbeskilledintechnologieslikejavascripthtml5andcss3theuxuiprogramcoversdesignthinkingphotoshopsketchbalsamiqinvisionandjavascriptppthroughouteachironhackprogramstudentswillgethelpnavigatingcareerdevelopmentthroughinterviewprepenhancingdigitalbrandpresenceandnetworkingopportunitiesstudentswillhaveachancetodelveintothetechcommunitywithironhackeventsworkshopsandmeetupswithmorethan1000graduatesironhackhasanextensiveglobalnetworkofalumniandpartnercompaniesgraduatesofironhackwillbewellpositionedtofindajobasawebdeveloperoruxuidesignerupongraduationasallstudentshaveaccesstocareerservicestopreparethemforthejobsearchandfacilitatinginterviewsintheircityslocaltechecosystempdivdivclassdividerdivh4recentironhackreviewsrating489h4ulclassunstyledrecentreviewslidivclassrowdivclasscolxs3ratingsspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs9paclassmobilereviewdatadeeplinkpathreviewsreview16341datadeeplinktargetreview_16341fromnursetodesignerintwomonthsapdivdivlilidivclassrowdivclasscolxs3ratingsspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs9paclassmobilereviewdatadeeplinkpathreviewsreview16340datadeeplinktargetreview_16340100recomendableapdivdivlilidivclassrowdivclasscolxs3ratingsspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs9paclassmobilereviewdatadeeplinkpathreviewsreview16338datadeeplinktargetreview_16338funexperienceandgreatjobafterapdivdivliulaclassreadmorelinkmobilereviewdatadeeplinktargetreviewsdatatoggletabhrefreviewsreadall596reviewsforironhackreadadivclassdividerdivh4recentironhacknewsh4ulclassunstyledliahrefblogparttimecodingbootcampswebinarwebinarchoosingaparttimecodingbootcampaliliahrefblogdafnebecameadeveloperinbarcelonaafterironhackhowdafnebecameadeveloperinbarcelonaafterironhackaliliahrefbloghowtolandauxuijobinspainhowtolandauxuidesignjobinspainaliulaclassreadmorelinkmobilenewsdatadeeplinktargetnewshrefnewsreadall23articlesaboutironhackasectiondivdivdivdivdivclasspanelwrapperdatadeeplinkpathcoursesdatatabcourses_tabidcoursesdivclasspanelpaneldefaultpanelcontentdivclasspanelheadingcollapsedvisiblexsdatadeeplinktargetcoursesdatatargetcoursescollapsedatatogglecollapseidcoursescollapseheadingh4classpaneltitlecoursesh4divdivclasspanelcollapsecollapseinidcoursescollapsedivclasspanelbodyh2classhiddenxscoursesh2ulclasscoursecardliheaderh3dataanalyticsbootcampfulltimeh3spanclassbtnbtndefaultbtnapplysmallatarget_blankhrefhttpswwwironhackcomencoursesdataanalyticsbootcampapplyaspanheaderdivclasscontentdivclassdetailsspanclassiconeyetitlefocusspanahrefsubjectsmysqlmysqlaahrefsubjectsdatasciencedatascienceaahrefsubjectsgitgitaahrefsubjectsrraahrefsubjectspythonpythonaahrefsubjectsmachinelearningmachinelearningaahrefsubjectsdatastructuresdatastructuresabrspanclasstypespanclassiconusertitlecoursetypespaninpersonspandivdldtstartdatedtddspanclassiconcalendarspannonescheduleddddtcostdtddnadddtclasssizedtddnadddtlocationdtddspanmadridspandddldivclassexpandablethiscourseenablesstudentstobecomeafullfledgeddataanalystin9weeksstudentswilldeveloppracticalskillsusefulinthedataindustryrampuppreworkandlearnintermediatetopicsofdataanalyticsusingpandasanddataengineeringtocreateadataapplicationusingrealdatasetsyou39llalsolearntousepythonandbusinessintelligencethroughthebootcampyouwilllearnbydoingprojectscombiningdataanalyticsandprogrammingironhack39sdataanalyticsbootcampismeanttohelpyousecureaspotinthedataindustryhoweverthemostimportantskillthatstudentswilltakeawayfromthiscourseistheabilitytolearntechnologyisfastmovingandeverchangingdivdivdetailssummaryfinancingsummarydldtdepositdtdd750dddldetailsdetailssummarygettinginsummarydldtminimumskillleveldtddbasicprogrammingknowledgedddtprepworkdtdd4050hoursofonlinecontentthatyou39llhavetocompleteinordertoreachtherequiredlevelatthenextmoduledddtplacementtestdtddyesdddtinterviewdtddyesdddldetailsliulscripttypeapplicationldjsoncontexthttpschemaorgtypecoursenamedataanalyticsbootcampfulltimedescriptionthiscourseenablesstudentstobecomeafullfledgeddataanalystin9weeksstudentswilldeveloppracticalskillsusefulinthedataindustryrampuppreworkandlearnintermediatetopicsofdataanalyticsusingpandasanddataengineeringtocreateadataapplicationusingrealdatasetsyou39llalsolearntousepythonandbusinessintelligencethroughthebootcampyouwilllearnbydoingprojectscombiningdataanalyticsandprogrammingironhack39sdataanalyticsbootcampismeanttohelpyousecureaspotinthedataindustryhoweverthemostimportantskillthatstudentswilltakeawayfromthiscourseistheabilitytolearntechnologyisfastmovingandeverchangingprovidertypelocalbusinessnameironhacksameashttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagescriptulclasscoursecardliheaderh3uxuidesignbootcampfulltimeh3spanclassbtnbtndefaultbtnapplysmallatarget_blankhrefhttpswwwironhackcomencoursesuxuidesignbootcamplearnuxdesignapplyapplyaspanheaderdivclasscontentdivclassdetailsspanclassiconeyetitlefocusspanahrefsubjectshtmlhtmlaahrefsubjectsuserexperiencedesignuserexperiencedesignaahrefsubjectscsscssabrspanclasstypespanclassiconusertitlecoursetypespaninpersonspanspanclasstypespanclassiconclocktitlecommitmentspanfulltimespanspanclasshoursweekspanclasshoursweeknumber50spanspanhoursweekspanspanspanclasstypespanclassiconcalendartitledurationspan9weeksspandivdldtstartdatedtddspanclassiconcalendarspanjanuary72019dddtcostdtddspanspanspan6500spandddtclasssizedtdd16dddtlocationdtddspanmiamimadridbarcelonaparismexicocityberlinspandddldivclassexpandablethis8weekimmersivecourseiscateredtobeginnerswithnopreviousdesignortechnicalexperiencestudentswillbetaughtthefundamentalsofusercentereddesignandlearntovalidateideasthroughuserresearchrapidprototypingampheuristicevaluationthecoursewillendwithacapstoneprojectwherestudentswilltakeanewproductideafromvalidationtolaunchbytheendofthecoursestudentswillbereadytostartanewcareerasauxdesignerfreelanceorturbochargetheircurrentprofessionaltrajectorydivdivdetailssummaryfinancingsummarydldtdepositdtddnadddldetailsdetailssummarygettinginsummarydldtminimumskillleveldtddnonedddtprepworkdtddthepreworkisa40hoursselfguidedcontentthatwillhelpyoutounderstandbasicuxuidesignconceptsanditwillmakeyoudesignyourfirstworksinsketchandflintodddtplacementtestdtddyesdddtinterviewdtddyesdddldetailsliulscripttypeapplicationldjsoncontexthttpschemaorgtypecoursenameuxuidesignbootcampfulltimedescriptionthis8weekimmersivecourseiscateredtobeginnerswithnopreviousdesignortechnicalexperiencestudentswillbetaughtthefundamentalsofusercentereddesignandlearntovalidateideasthroughuserresearchrapidprototypingampheuristicevaluationthecoursewillendwithacapstoneprojectwherestudentswilltakeanewproductideafromvalidationtolaunchbytheendofthecoursestudentswillbereadytostartanewcareerasauxdesignerfreelanceorturbochargetheircurrentprofessionaltrajectoryprovidertypelocalbusinessnameironhacksameashttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagescriptulclasscoursecardliheaderh3uxuidesignbootcampparttimeh3spanclassbtnbtndefaultbtnapplysmallatarget_blankhrefhttpswwwironhackcomencoursesuxuidesignparttimeapplyaspanheaderdivclasscontentdivclassdetailsspanclassiconeyetitlefocusspanahrefsubjectsdesigndesignaahrefsubjectsproductmanagementproductmanagementaahrefsubjectsuserexperiencedesignuserexperiencedesignaahrefsubjectscsscssabrspanclasstypespanclassiconusertitlecoursetypespaninpersonspanspanclasstypespanclassiconclocktitlecommitmentspanparttimespanspanclasshoursweekspanclasshoursweeknumber16spanspanhoursweekspanspanspanclasstypespanclassiconcalendartitledurationspan26weeksspandivdldtstartdatedtddspanclassiconcalendarspannovember132018dddtcostdtddspanspanspan7500spandddtclasssizedtdd20dddtlocationdtddspanmiamimadridbarcelonamexicocityberlinspandddldivclassexpandabletheuxuidesignparttimecoursemeetstuesdaysthursdaysandsaturdayswithadditionalonlinecourseworkoveraperiodof6monthsstudentswillbetaughtthefundamentalsofusercentereddesignandlearntovalidateideasthroughuserresearchrapidprototypingampheuristicevaluationthecoursewillendwithacapstoneprojectwherestudentswilltakeanewproductideafromvalidationtolaunchbytheendofthecoursestudentswillbereadytostartanewcareerasauxdesignerfreelanceorturbochargetheircurrentprofessionaltrajectorydivdivdetailssummaryfinancingsummarydldtdepositdtdd750or9000mxndddtfinancingdtddfinancingoptionsavailablewithcompetitiveinterestratesskillsfundclimbcreditdddldetailsdetailssummarygettinginsummarydldtminimumskillleveldtddbasicprogrammingskillsbasicalgorithmsandnotionsofobjectorientedprogrammingdddtprepworkdtdd4050hoursofonlinecontentthatyou39llhavetocompleteinordertoreachtherequiredlevelwhenthecoursebeginsdddtplacementtestdtddyesdddtinterviewdtddyesdddldetailsliulscripttypeapplicationldjsoncontexthttpschemaorgtypecoursenameuxuidesignbootcampparttimedescriptiontheuxuidesignparttimecoursemeetstuesdaysthursdaysandsaturdayswithadditionalonlinecourseworkoveraperiodof6monthsstudentswillbetaughtthefundamentalsofusercentereddesignandlearntovalidateideasthroughuserresearchrapidprototypingampheuristicevaluationthecoursewillendwithacapstoneprojectwherestudentswilltakeanewproductideafromvalidationtolaunchbytheendofthecoursestudentswillbereadytostartanewcareerasauxdesignerfreelanceorturbochargetheircurrentprofessionaltrajectoryprovidertypelocalbusinessnameironhacksameashttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagescriptulclasscoursecardliheaderh3webdevelopmentbootcampfulltimeh3spanclassbtnbtndefaultbtnapplysmallatarget_blankhrefhttpswwwironhackcomencourseswebdevelopmentbootcampapplyaspanheaderdivclasscontentdivclassdetailsspanclasstypespanclassiconusertitlecoursetypespaninpersonspandivdldtstartdatedtddspanclassiconcalendarspanoctober292018dddtcostdtddnadddtclasssizedtddnadddtlocationdtddspanamsterdammiamimadridbarcelonaparismexicocityberlinspandddldivclassexpandablethiscourseenablesstudentstodesignandbuildfullstackjavascriptwebapplicationsstudentswilllearnthefundamentalsofprogrammingwithabigemphasisonbattletestedpatternsandbestpracticesbytheendofthecoursestudentswillhavetheabilitytoevaluateaproblemandselecttheoptimalsolutionusingthelanguageframeworkbestsuitedforaprojectsscopeinadditiontotechnicalskillsthecoursewilltrainstudentsinhowtothinklikeaprogrammerstudentswilllearnhowtodeconstructcomplexproblemsandbreakthemintosmallermoduleshoweverthemostimportantskillthatstudentswilltakeawayfromthiscourseistheabilitytolearntechnologyisfastmovingandeverchangingagoodprogrammerhasageneralunderstandingofthevariousprogramminglanguagesandwhentousethemagreatprogrammerunderstandsthefundamentalstructureandpossessestheabilitytolearnanynewlanguagewhenrequireddivdivdetailssummaryfinancingsummarydldtdepositdtdd1000dddtfinancingdtddmonthlyinstalmentsavailablefor122436monthsquotandadddtscholarshipdtdd1000scholarshipforwomendddldetailsdetailssummarygettinginsummarydldtminimumskillleveldtddbasicprogrammingknowledgedddtprepworkdtdd4050hoursofonlinecontentthatyou39llhavetocompleteinordertoreachtherequiredlevelatthenextmoduledddtplacementtestdtddyesdddtinterviewdtddyesdddldetailsdetailssummarymorestartdatessummarydivclasscontentdivclassstartdatespanclassiconcalendarspanspancontent20181029october292018spanspanmexicocityspandivdivclassstartdatespanclassiconcalendarspanspancontent20190114january142019spanspanmexicocityspandivdivclassstartdatespanclassiconcalendarspanspancontent20190325march252019spanspanmexicocityspandivdivclassstartdatespanclassiconcalendarspanspancontent20190107january72019spanspanbarcelonaspanspanapplybyjanuary12019spandivdivdetailsliulscripttypeapplicationldjsoncontexthttpschemaorgtypecoursenamewebdevelopmentbootcampfulltimedescriptionthiscourseenablesstudentstodesignandbuildfullstackjavascriptwebapplicationsstudentswilllearnthefundamentalsofprogrammingwithabigemphasisonbattletestedpatternsandbestpracticesbytheendofthecoursestudentswillhavetheabilitytoevaluateaproblemandselecttheoptimalsolutionusingthelanguageframeworkbestsuitedforaprojectsscopeinadditiontotechnicalskillsthecoursewilltrainstudentsinhowtothinklikeaprogrammerstudentswilllearnhowtodeconstructcomplexproblemsandbreakthemintosmallermoduleshoweverthemostimportantskillthatstudentswilltakeawayfromthiscourseistheabilitytolearntechnologyisfastmovingandeverchangingagoodprogrammerhasageneralunderstandingofthevariousprogramminglanguagesandwhentousethemagreatprogrammerunderstandsthefundamentalstructureandpossessestheabilitytolearnanynewlanguagewhenrequiredprovidertypelocalbusinessnameironhacksameashttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagescriptulclasscoursecardliheaderh3webdevelopmentbootcampparttimeh3spanclassbtnbtndefaultbtnapplysmallatarget_blankhrefhttpswwwironhackcomescursoswebdevelopmentparttimeaplicarapplyaspanheaderdivclasscontentdivclassdetailsspanclassiconeyetitlefocusspanahrefsubjectsangularjsbootcampangularjsaahrefsubjectsmongodbmongodbaahrefsubjectshtmlhtmlaahrefsubjectsjavascriptjavascriptaahrefsubjectsexpressjsexpressjsaahrefsubjectsnodejsnodejsaahrefsubjectsfrontendfrontendabrspanclasstypespanclassiconusertitlecoursetypespaninpersonspanspanclasstypespanclassiconclocktitlecommitmentspanfulltimespanspanclasshoursweekspanclasshoursweeknumber13spanspanhoursweekspanspanspanclasstypespanclassiconcalendartitledurationspan24weeksspandivdldtstartdatedtddspanclassiconcalendarspanjanuary152019dddtcostdtddspanspanspan12000spandddtclasssizedtddnadddtlocationdtddspanmiamimadridbarcelonaparismexicocityberlinspandddldivclassexpandablethiscourseenablesstudentstodesignandbuildfullstackjavascriptwebapplicationsstudentswilllearnthefundamentalsofprogrammingwithabigemphasisonbattletestedpatternsandbestpracticesbytheendofthecoursestudentswillhavetheabilitytoevaluateaproblemandselecttheoptimalsolutionusingthelanguageframeworkbestsuitedforaprojectsscopeinadditiontotechnicalskillsthecoursewilltrainstudentsinhowtothinklikeaprogrammerstudentswilllearnhowtodeconstructcomplexproblemsandbreakthemintosmallermoduleshoweverthemostimportantskillthatstudentswilltakeawayfromthiscourseistheabilitytolearntechnologyisfastmovingandeverchangingagoodprogrammerhasageneralunderstandingofthevariousprogramminglanguagesandwhentousethemagreatprogrammerunderstandsthefundamentalstructureandpossessestheabilitytolearnanynewlanguagewhenrequireddivdivdetailssummaryfinancingsummarydldtdepositdtdd1000dddldetailsdetailssummarygettinginsummarydldtminimumskillleveldtddbasicprogrammingknowledgedddtprepworkdtdd4050hoursofonlinecontentthatyou39llhavetocompleteinordertoreachtherequiredlevelatthenextmoduledddtplacementtestdtddyesdddtinterviewdtddyesdddldetailsliulscripttypeapplicationldjsoncontexthttpschemaorgtypecoursenamewebdevelopmentbootcampparttimedescriptionthiscourseenablesstudentstodesignandbuildfullstackjavascriptwebapplicationsstudentswilllearnthefundamentalsofprogrammingwithabigemphasisonbattletestedpatternsandbestpracticesbytheendofthecoursestudentswillhavetheabilitytoevaluateaproblemandselecttheoptimalsolutionusingthelanguageframeworkbestsuitedforaprojectsscopeinadditiontotechnicalskillsthecoursewilltrainstudentsinhowtothinklikeaprogrammerstudentswilllearnhowtodeconstructcomplexproblemsandbreakthemintosmallermoduleshoweverthemostimportantskillthatstudentswilltakeawayfromthiscourseistheabilitytolearntechnologyisfastmovingandeverchangingagoodprogrammerhasageneralunderstandingofthevariousprogramminglanguagesandwhentousethemagreatprogrammerunderstandsthefundamentalstructureandpossessestheabilitytolearnanynewlanguagewhenrequiredprovidertypelocalbusinessnameironhacksameashttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagescriptdivdivdivdivdivclasspanelwrapperdatadeeplinkpathreviewsdatatabreviews_tabidreviewsdivclasspanelpaneldefaultpanelcontentdivclasspanelheadingcollapsedvisiblexsdatadeeplinktargetreviewsdatatargetreviewscollapsedatatogglecollapseidreviewscollapseheadingh4classpaneltitlereviewsh4divdivclasspanelcollapsecollapseinidreviewscollapsedivclasspanelbodyh2classhiddenxsironhackreviewsh2sectionclassreviewsdivclassrowfilterdropdowndivclasscolsm3aariacontrolsreviewformcontainerariaexpandedfalseclassbtnbtndefaultbtnwriteareviewdatadeeplinkpathreviewswriteareviewdatadeeplinktargetbtnwriteareviewdatatargetreviewformcontainerdatatogglecollapseidbtnwriteareviewwriteareviewadivdivclasscolsm5dropdowntextcenterdivpclassreviewlength596reviewssortedbypbuttonclassbtnsorterbtndatatoggledropdowntypebuttondefaultsortspanclasscaretspanbuttonulclasssorteduldropdownmenusortfiltersliadatasorttypedefaultclassactivesorthrefschoolsironhackdefaultsortaliliadatasorttyperecentclasshrefschoolsironhackmostrecentaliliadatasorttypehelpfulclasshrefschoolsironhackmosthelpfulaliuldivdivdivclasscolsm4dropdowndivclasspagenumberhidden1divdivpfilteredbypbuttonclassbtnfilterbtndatatoggledropdowntypebuttonallreviewsspanclasscaretspanbuttonulclassfiltereduldropdownmenureviewsfilterdataschoolironhackliclassallreviewsadatafiltertypedefaultclassactivehrefschoolsironhackallreviewsaliliadatafiltertypeanonymoushrefschoolsironhackanonymousaliliadatafiltertypeverifiedhrefschoolsironhackverifiedaliliclasscategorycampusesliliadatafiltertypecampusdatafiltervalmadridhrefschoolsironhackmadridaliliadatafiltertypecampusdatafiltervalmadridhrefschoolsironhackmadridaliliadatafiltertypecampusdatafiltervalmiamihrefschoolsironhackmiamialiliadatafiltertypecampusdatafiltervalmexicocityhrefschoolsironhackmexicocityaliliadatafiltertypecampusdatafiltervalmiamihrefschoolsironhackmiamialiliadatafiltertypecampusdatafiltervalbarcelonahrefschoolsironhackbarcelonaaliliadatafiltertypecampusdatafiltervalberlinhrefschoolsironhackberlinaliliadatafiltertypecampusdatafiltervalparishrefschoolsironhackparisaliliclasscategorycoursesliliadatafiltertypecoursedatafiltervalwebdevelopmentbootcampfulltimehrefschoolsironhackwebdevelopmentbootcampfulltimealiliadatafiltertypecoursedatafiltervaluxuidesignbootcampfulltimehrefschoolsironhackuxuidesignbootcampfulltimealiliadatafiltertypecoursedatafiltervalwebdevelopmentbootcampparttimehrefschoolsironhackwebdevelopmentbootcampparttimealiuldivdivdivdivclassrowdivclasscolxs12divclassreviewformcontainercollapsedivclassreviewguidelineshackboxpreviewguidelinespullionlyapplicantsstudentsandgraduatesarepermittedtoleavereviewsoncoursereportlilipostclearvaluableandhonestinformationthatwillbeusefulandinformativetofuturecodingbootcampersthinkaboutwhatyourbootcampexcelledatandwhatmighthavebeenbetterlilibenicetoothersdontattackothersliliusegoodgrammarandcheckyourspellinglilidontpostreviewsonbehalfofotherstudentsorimpersonateanypersonorfalselystateorotherwisemisrepresentyouraffiliationwithapersonorentitylilidontspamorpostfakereviewsintendedtoboostorlowerratingslilidontpostorlinktocontentthatissexuallyexplicitlilidontpostorlinktocontentthatisabusiveorhatefulorthreatensorharassesotherslilipleasedonotsubmitduplicateormultiplereviewsthesewillbedeletedahrefmailtohellocoursereportcomemailmoderatorsatorevisearevieworclickthelinkintheemailyoureceivewhensubmittingareviewlilipleasenotethatwereservetherighttoreviewandremovecommentarythatviolatesourpoliciesliuldivxclassreviewformdivclassrevieweremailcheckstrongyoumustlogintosubmitareviewstrongpahrefloginredirect_pathhttps3a2f2fwwwcoursereportcom2fschools2fironhack232freviews2fwriteareviewclickhereanbsptologinorsignupandcontinuepdivdivclasscrformformclassreviewformdataparsleyvalidatedataparsleyexcludeddisableddisabledidnew_reviewactionreviewsacceptcharsetutf8dataremotetruemethodpostinputnameutf8typehiddenvaluex2713inputtypehiddennameutm_sourceidutm_sourceinputtypehiddennameutm_mediumidutm_mediuminputtypehiddennameutm_termidutm_terminputtypehiddennameutm_contentidutm_contentinputtypehiddennameutm_campaignidutm_campaigninputvalue84typehiddennamereviewschool_ididreview_school_iddivclasshackwarningpheythereasof11116spanclassschoolnamespanisnowhackreactorifyougraduatedfromspanclassschoolnamespanpriortooctober2016pleaseleaveyourreviewforspanclassschoolnamespanotherwisepleaseleaveyourreviewforahrefschoolshackreactorhackreactorapdivh5titleh5divclassformgrouplabelclasssronlyforreview_titletitlelabelinputclassformcontrolrequiredrequireddataparsleyrequiredmessagetitleisrequiredtypetextnamereviewtitleidreview_titledivh5descriptionh5divclassformgrouplabelclasssronlyforreview_bodydescriptionlabeltextarearows10classformcontrolparsleyerrordataparsleyrequiredtruedataparsleyrequiredmessagepleasewriteashortreviewtohelpfuturebootcampapplicantsnamereviewbodyidreview_bodytextareadivh5ratingh5divclassformgroupdivclassratingsdivclassrowdivclasscolxs7colsm4overallexperiencedivinputstyledisplaynonerequiredrequireddataparsleytriggerchangedataparsleyerrorscontainerrating_errorsdataparsleyrequiredmessageoverallexperienceratingisrequiredtypenumbernamereviewoverall_experience_ratingidreview_overall_experience_ratingdivclasscolxs5colsm2ratingtextrightidoverall_experience_ratingspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspandivdivclasscolxs7colsm3curriculumdivinputstyledisplaynonerequiredrequireddataparselytriggerchangedataparsleyerrorscontainerrating_errorsdataparsleyrequiredmessagecurriulumratingisrequiredtypenumbernamereviewcourse_curriculum_ratingidreview_course_curriculum_ratingdivclasscolxs5colsm3ratingtextrightidcourse_curriculum_ratingspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspandivdivdivclassrowdivclasscolxs7colsm4instructorsdivinputstyledisplaynonerequiredrequireddataparselytriggerchangedataparsleyerrorscontainerrating_errorsdataparsleyrequiredmessageinstructorsratingisrequiredtypenumbernamereviewcourse_instructors_ratingidreview_course_instructors_ratingdivclasscolxs5colsm2ratingtextrightidcourse_instructors_ratingspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspandivdivclasscolxs7colsm3jobassistjobassistancedivinputstyledisplaynonerequiredrequireddataparselytriggerchangedataparsleyerrorscontainerrating_errorsdataparsleyrequiredmessagejobassistanceratingisrequiredtypenumbernamereviewschool_job_assistance_ratingidreview_school_job_assistance_ratingdivclasscolxs5colsm3ratingtextrightjobassistratingidschool_job_assistance_ratingspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspandivdivclasspullrightspanclassnotapplicableinputtyperadiovaluetruenamereviewjob_assist_not_applicableidreview_job_assist_not_applicable_truelabelforjob_assist_not_applicable_notapplicablenotapplicablelabelspandivdivdivdivclassrowdivclasscolxs12dividrating_errorsdivdivdivdivh5schooldetailsh5divclassrowdivclassformgroupcolsm6labelclasssronlyforreview_campuscampuslabelselectclassformcontroldatadynamicselectabletargetreview_course_iddataparsleyerrorscontainerschool_errorsdatadynamicselectableurldynamic_selectcampus_idcoursesdatatargetplaceholderselectcoursedataallowothertruenamereviewcampus_ididreview_campus_idoptionvalueselectcampusoptionoptionvalue108madridoptionoptionvalue197miamioptionoptionvalue107miamioptionoptionvalue779madridoptionoptionvalue780barcelonaoptionoptionvalue843parisoptionoptionvalue913mexicocityoptionoptionvalue995berlinoptionoptionvalue1089amsterdamoptionoptionvalue1090saopaulooptionoptionvalueotherotheroptionselectdivdivclassformgroupcolsm6labelclasssronlyforreview_coursecourselabelselectclassformcontroldataparsleyerrorscontainerschool_errorsdataallowothertruenamereviewcourse_ididreview_course_idoptionvalueselectcourseoptionselectdivdivdivclassformgrouplabelclasssronlyforreview_reviewer_typeschoolaffiliationlabelselectclassformcontroldataparsleyerrorscontainerschool_errorsnamereviewreviewer_typeidreview_reviewer_typeoptionvalueschoolaffiliationoptionoptionvaluestudentstudentoptionoptionvaluegraduategraduateoptionoptionvalueapplicantapplicantoptionselectdivdivclassrowidgraduation_date_dropdownslabelclasssronlyforreview_graduation_dategraduationmonthlabelinputtypehiddenidreview_graduation_date_3inamereviewgraduation_date3ivalue1selectidreview_graduation_date_2inamereviewgraduation_date2iclassformcontroldataparsleyerrorscontainerschool_errorsoptionvaluegraduationmonthoptionoptionvalue1januaryoptionoptionvalue2februaryoptionoptionvalue3marchoptionoptionvalue4apriloptionoptionvalue5mayoptionoptionvalue6juneoptionoptionvalue7julyoptionoptionvalue8augustoptionoptionvalue9septemberoptionoptionvalue10octoberoptionoptionvalue11novemberoptionoptionvalue12decemberoptionselectselectidreview_graduation_date_1inamereviewgraduation_date1iclassformcontroldataparsleyerrorscontainerschool_errorsoptionvaluegraduationyearoptionoptionvalue20052005optionoptionvalue20062006optionoptionvalue20072007optionoptionvalue20082008optionoptionvalue20092009optionoptionvalue20102010optionoptionvalue20112011optionoptionvalue20122012optionoptionvalue20132013optionoptionvalue20142014optionoptionvalue20152015optionoptionvalue20162016optionoptionvalue20172017optionoptionvalue20182018optionoptionvalue20192019optionoptionvalue20202020optionoptionvalue20212021optionoptionvalue20222022optionoptionvalue20232023optionselectdivdivclassrowdivclassformgroupcolsm6review_campus_otherstyledisplaynonelabelclasssronlyforreview_campus_otherotherlabelinputclassformcontrolplaceholderothercampusdataparsleyerrorscontainerschool_errorstypetextnamereviewcampus_otheridreview_campus_otherdivdivclassformgroupcolsm6review_course_otherstyledisplaynonelabelclasssronlyforreview_course_otherotherlabelinputclassformcontrolplaceholderothercoursedataparsleyerrorscontainerschool_errorstypetextnamereviewcourse_otheridreview_course_otherdivdivdivclassrowdivclasscolxs12dividschool_errorsdivdivdivh5aboutyouh5divclassformgroupcolsm6labelclasssronlyforreview_reviewer_namenamelabelinputclassformcontrolplaceholdernamedataparsleyerrorscontainerabout_errorsdataparsleytriggerchangerequiredrequireddataparsleyrequiredmessagenameisrequiredbutwillbekeptanonymousifboxischeckedtypetextnamereviewreviewer_nameidreview_reviewer_namespanclassreview_anoninputnamereviewreviewer_anonymoustypehiddenvalue0inputtypecheckboxvalue1namereviewreviewer_anonymousidreview_reviewer_anonymouslabelforreview_reviewer_anonymousreviewanonymouslylabelspanpclasssmalltextnonanonymousverifiedreviewsarealwaysmorevaluableandtrustworthytofuturebootcampersanonymousreviewswillbeshowntoreaderslastpdivdivclassformgroupcolsm6labelclasssronlyforreview_reviewer_job_titlereviewerjobtitlelabelinputclassformcontrolplaceholderjobtitleoptionaldataparsleyerrorscontainerabout_errorstypetextnamereviewreviewer_job_titleidreview_reviewer_job_titledivdivclassrowdivdivclassrowdivclasscolxs12dividabout_errorsdivdivdivdivclassformgroupdivclassrowdivclasscolxs12divclassrevieweremailcheckstrongyoumustlogintosubmitareviewstrongpahrefloginredirect_pathhttps3a2f2fwwwcoursereportcom2fschools2fironhack232freviews2fwriteareviewclickhereanbsptologinorsignupandcontinuepdivinputtypesubmitnamecommitvaluesubmitclassbtnbtndefaultbtnlgpullrightreviewsubmitreviewlogindivdivdivformdivxdivdivdivdivclassrowdivclasscolxs12reviewcontainerbrdivdivclassreviewdatacampusmadridironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16341datadeeplinktargetreview_16341datareviewid16341hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16341reviewsreview16341idreview_16341fromnursetodesignerintwomonthsabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltmarialuisauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqfwswrrtugbhaprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptau4trwyta5rrmekqqqfnrakckmprxqqr6zbpk_dfn8divspanclassreviewernamemarialuisaspanspanuxuidesignerspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominmarialuisapedauyeverifiedvialinkedinaspandivdivclassratingsspanclasshiddenfromnursetodesignerintwomonthsspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepppspaniwantedtoturnmylifearoundbecauseialwayslikeddesignbutmaybeoutoffearididnotdoitbeforeuntililuckilygotintoironhackmylifehaschangedintwomonthsitsmethodologyandwayofteachingmakesyougofrom0to100inarecordtimeirecommenditwithoutanydoubtspanppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16341dataremotetruedatamethodposthrefreviews16341votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20from20nurse20to20designer20in20two20months207c20id3a2016341flagasinappropriateapdivdivdivdivdivclassreviewdatacampusdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16340datadeeplinktargetreview_16340datareviewid16340hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16340reviewsreview16340idreview_16340100recomendableabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltnicolaealexeuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqhtdojuxozttgprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptszskngag0gyyqxooagfkuyfw3anpdnpjw4boixzxvtedivspanclassreviewernamenicolaealexespanspanspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxsspanspanclassreviewernameahrefhttpwwwlinkedincominnicolaealexeverifiedvialinkedinaspandivdivclassratingsspanclasshidden100recomendablespandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepiamaseniorstudentofcomputerengineeringdegreebutiwasfeelinglikesomethingwasmissinginmyacademicprogramihadnocontactwiththecurrenttechnologiesbrduetothiswheniheardaboutironhackiknewthatwaswhatineededtocompletemyeducationandiwascompletelyrightppfromdayonetheatmospherewasamazingtheleadteacherwasfundamentaltomylearningexperiencebecauseofhisamazingskillsbutthemostkeyelementsoftheironhackexperiencewasthetastheyarealumnithatsupportsyouduringyourbootcampppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16340dataremotetruedatamethodposthrefreviews16340votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c201002520recomendable2121207c20id3a2016340flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16338datadeeplinktargetreview_16338datareviewid16338hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16338reviewsreview16338idreview_16338funexperienceandgreatjobafterabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltgabrielcebrinlucasuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsavatars1githubusercontentcomu36677458v4divspanclassreviewernamegabrielcebrinlucasspanspanspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpsgithubcomkunryverifiedviagithubaspandivdivclassratingsspanclasshiddenfunexperienceandgreatjobafterspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepicametoironhacktolookforajobiknewilovedprogrammingbecauseistudiedengineeringandhadlearntprogrammingbymyselfbutneverwebdevelopmentiwantedtolearnin9weekssomwthingiwouldtakemonthslearningbymyselfppitwasareallyfunexperienceandigotagreatjobafterppirecomendironhackppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16338dataremotetruedatamethodposthrefreviews16338votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20fun20experience20and20great20job20after207c20id3a2016338flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16335datadeeplinktargetreview_16335datareviewid16335hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16335reviewsreview16335idreview_16335fromteachertodeveloperabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltjacobcasadoprezuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqeaprrzi28isqprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptyl6q7ppc5_ductoz9xqfps2p77l_imvr_qpii5zpdidivspanclassreviewernamejacobcasadoprezspanspanjuniorfullstackdeveloperspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominjacobcasadoverifiedvialinkedinaspandivdivclassratingsspanclasshiddenfromteachertodeveloperspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepwheniheardaboutironhackonseptember2017ihadnoideathatitgoingtobemyschoolandmyfutureiwasmusicteacherandialwaysthoughthatmylifewaslinkingwiththeeducationbutmylifechangeinablinkofaneyeandidecidedtolookforanewchanceinaworldwithmoreprofessionalopportunitiesandforthisreasonistudiedatironhackbrihadnotechnologybackgroundbutihadabigdesiretoimproveandtobeagooddeveloperbrduringthebootcamplittlebylittleiwasgrewandwasabletoovercomechallengesineverthoughtiwouldallofthiswaspossiblewiththeenormoussupportofteacherassistantsmycollegesandfriendswithoutthemthisbootcamphadbeenverydifficultppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16335dataremotetruedatamethodposthrefreviews16335votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20from20teacher20to20developer207c20id3a2016335flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16334datadeeplinktargetreview_16334datareviewid16334hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16334reviewsreview16334idreview_16334newwayoflearningabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltesperanzauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4d03aqgkf5xzyf9eaprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptfyprbwzon2x9kyh8qp5wmbxej1gxkvjh4ouydqk_m3mdivspanclassreviewernameesperanzaspanspanjuniorfullstackdeveloperspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominesperanzaamayaverifiedvialinkedinaspandivdivclassratingsspanclasshiddennewwayoflearningspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepthisbootcamphasbeenatotalchangeoflifeformeatotallynewwayoflearningnewpossibilitiesnewwayofthinkingnewdisciplinesitsabigchallengebutiwouldabsolutelyrepeatitthequalityofthisteachingisuncompareablebrihadnocodingexperienceiworkedinbiomedicalresearchiwasjustlookingalittleapproachtocodingifoundatotallynewstyleoflifeppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16334dataremotetruedatamethodposthrefreviews16334votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20new20way20of20learning207c20id3a2016334flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16333datadeeplinktargetreview_16333datareviewid16333hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16333reviewsreview16333idreview_16333ironhackdoesn39tteachyoutocodeitteachesyoutobeadeveloperabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltrubenuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4d03aqfbea1tkoodgprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptm5khvu8u8dhve0kdy_ps5wbz1fdrph2n9zbt3tdp5mdivspanclassreviewernamerubenspanspanjuniorfullstackdeveloperspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominrubenarmendarizverifiedvialinkedinaspandivdivclassratingsspanclasshiddenironhackdoesn39tteachyoutocodeitteachesyoutobeadeveloperspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepihadnocodingexperienceihadstudiedpsychologyandworkedasatechnicianassistantthebootcampwasveryintenseandveryenrichingbrmylearningcurvewasverticleupwardsistartedfrom0andnowimamazedofwhatiknowppironhacksimulatesperfectlythereallyworkingenvironmentofaprogrammeryouworkinginteamswiththerealtoolscompaniesuseyouresolveproblemsandreallyitslikeavirtualprofesionalatmospherebrwhenwevisitedtuentiabigspanishcompanyiwasamazedthatiunderstoodwhattheyweretalkingtomeabouticouldseemyselfworkingthereasaprogrammerbrironhackdoesntteachyoutocodeitteachesyoutobeadeveloperppironhackhelpsyoudiscoverifyoureallywanttoworkasadeveloperornotandafterthebootcampicandefinetlysayiwillworkasacoderppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16333dataremotetruedatamethodposthrefreviews16333votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20ironhack20doesn27t20teach20you20to20code2c20it20teaches20you20to20be20a20developer207c20id3a2016333flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16332datadeeplinktargetreview_16332datareviewid16332hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16332reviewsreview16332idreview_16332aboutmyexperinceabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltpablotabaodaortizuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqfrwvtzz9vtiaprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptl1zw6ienmebscbcvwfwpj9li3hiz62voiy0bor4qfzmdivspanclassreviewernamepablotabaodaortizspanspanjuniorfullstackdeveloperspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominpablotaboada04254316bverifiedvialinkedinaspandivdivclassratingsspanclasshiddenaboutmyexperincespandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepiwanttotalkaboutmylast9weeksicametoironhackwithoutanybackgroundandaftercompletingthebootcampifeelreallyimpressedofhowmuchilearntthesupportandfacilitiesareamazingandalsotheleveloftheteachersmyfullyrecommendationironhacktoeveryonenotonlyprofessionalsthatarelookingforrenewtheirskillsbutalsotopeopletryingtofindnewchallengesppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16332dataremotetruedatamethodposthrefreviews16332votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20about20my20experince207c20id3a2016332flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16331datadeeplinktargetreview_16331datareviewid16331hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16331reviewsreview16331idreview_16331webdevabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltricardoalonzouserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4d03aqfik4zkpmlezaprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptttjn_xwha0tl9kpcrhetmgd8u4j2javyojiddzde3tsdivspanclassreviewernamericardoalonzospanspanwebdeveloperspanspanstudentspanspanclasshiddenxsspanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominalonzoricardoverifiedvialinkedinaspandivdivclassratingsspanclasshiddenwebdevspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepironhackitsperfectifyouwanttostartacareerinwebdevelopmentitopenssomanydoorsasaprofessionalitstrullyimpresivewhatyoucanlearninashortperiodoftimeppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16331dataremotetruedatamethodposthrefreviews16331votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20web20dev207c20id3a2016331flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16330datadeeplinktargetreview_16330datareviewid16330hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16330reviewsreview16330idreview_16330anawesomewaytokickstartyourdevelopercarreerabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltjhonscarzouserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5103aqeqztty60r3zaprofiledisplayphotoshrink_100_1000e1545868800ampvbetaampt6ly760vnykzcrmbcvrszlub1dvz3gxqgkfp5ocaw7mdivspanclassreviewernamejhonscarzospanspanspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominjhonscarzoverifiedvialinkedinaspandivdivclassratingsspanclasshiddenanawesomewaytokickstartyourdevelopercarreerspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivdivclassbodydivclassexpandablepatironhacktheirgoalistoteacheveryonefromthebasicsandthecoreconceptsofprogrammingandbuildupfromtheretoprovideyouaverywellroundededucationandincentivizeyoutokeeplearningonyourownppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16330dataremotetruedatamethodposthrefreviews16330votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20an20awesome20way20to20kickstart20your20developer20carreer21207c20id3a2016330flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16329datadeeplinktargetreview_16329datareviewid16329hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16329reviewsreview16329idreview_16329reallycoolbootcampabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltsarauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqh1a9lrqrrjawprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptvxf6lkkwu1tcqultrae47hxgs6ljbcidrpsvd1i8oudivspanclassreviewernamesaraspanspanfullstackwebdeveloperspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominsaracurielverifiedvialinkedinaspandivdivclassratingsspanclasshiddenreallycoolbootcampspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepihavebeenalwaysmotivatedtolearnnewthingsandthankstoironhackiintegratedallmypreviousknowledgeinapowerfulwaycreating3differentprojectsandenjoyingeverythingabouttheexperiencepeoplehereareamazingandalwaysdisposedtohelpyouduringtheprocessbr100recommendableppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16329dataremotetruedatamethodposthrefreviews16329votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20really20cool20bootcamp21207c20id3a2016329flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16282datadeeplinktargetreview_16282datareviewid16282hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16282reviewsreview16282idreview_16282changeyourlifeinjust2monthsabrdivclassreviewdate10222018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltyagovegauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4d03aqhuojooprtmqprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptiptv1p7pcjrmpu2syig1fbhjdfvcxnzo_ng_laltlcdivspanclassreviewernameyagovegaspanspanfullstackdeveloperspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominyagovegaverifiedvialinkedinaspandivdivclassratingsspanclasshiddenchangeyourlifeinjust2monthsspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepitshardtoputinafewwordwhatihaveexperiencedin4monthsoffullcommitmenttoironhackswebdevelopmentanduxuibootcampsppivemetamazingpeopleivelearnedfromamazingpeopleandimgladicouldaswellhelpamazingpeopleppnomatterwhereyoucomefromorifyouhaventreadasinglelineofcodeinyourlifeaftertwomonthsyouareadifferentpersonimsogladimadethisdecisionitswortheverypennyppfromhtmltoangular5reactarollercoasterofemotionsandalotofhardworkicansaytodaythatimofficiallyafullstackdeveloperworkingforagreatcompanyinareallycoolprojectandthatwouldntbepossiblewithoutironhackppifyouarejustbrowsingforpossibleeducationaloptionsjuststopandtrustandjoinalltheironhackersaroundtheworldthatareconnectedandhelpingeachothereverydayppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16282dataremotetruedatamethodposthrefreviews16282votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20change20your20life20in20just20220months207c20id3a2016282flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16276datadeeplinktargetreview_16276datareviewid16276hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16276reviewsreview16276idreview_16276anincredibleexperienceabrdivclassreviewdate10222018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltdiegomndezpeouserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqhsxmvcrdirqqprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptbd_0rdi82jyeticnsxbxl9mzu01ynbm1sqlqrb3isdgdivspanclassreviewernamediegomndezpeospanspanspanspanstudentspanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincomindiegomendezpec3b1overifiedvialinkedinaspandivdivclassratingsspanclasshiddenanincredibleexperiencespandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepcomingfromuniversityironhackhasexceededallmyexpectationsitseverythingiwaslookingforbecauseironhackgavemeeverythingtobepreparedforajobinprogrammingppteacherassistantsaregreatandeveryonefrommybootcampwasawesomewelearntfromeachotheralotppirecommendironhacktoeveryonenotonlytotechenthusiastbutalsotopeoplewhoarelookingtochangecareerorlookingtoboostitppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16276dataremotetruedatamethodposthrefreviews16276votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20an20incredible20experience21207c20id3a2016276flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16275datadeeplinktargetreview_16275datareviewid16275hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16275reviewsreview16275idreview_16275howtochangeyourliveinonly9weeksabrdivclassreviewdate10222018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltteodiazuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4d03aqfz0kjtldo9pgprofiledisplayphotoshrink_100_1000e1545868800ampvbetaampttqcf0vxr6theusvc822ffkiuvpclusssr_geq9opj9udivspanclassreviewernameteodiazspanspanspanspanstudentspanspanclasshiddenxsspanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominteodiazverifiedvialinkedinaspandivdivclassratingsspanclasshiddenhowtochangeyourliveinonly9weeksspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepironhackwasthewaytochangemylifeandtobeabletolearninatotallydifferentwaythanusualtheymakeyoufeelthatyoubelongtoabigfamilyandallyourcolleaguesaretheretohelpyouafterfinishingthebootcampirealizedeverythingihadlearnedandthatiwasreadytoenteracompanywiththeguaranteethatiwoulddowellppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16275dataremotetruedatamethodposthrefreviews16275votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20how20to20change20your20live20in20only20920weeks207c20id3a2016275flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacourseuxuidesignbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16248datadeeplinktargetreview_16248datareviewid16248hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16248reviewsreview16248idreview_16248besteducationalexperienceeverabrdivclassreviewdate10202018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltronaldricardouserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqexcvlptm0ecwprofiledisplayphotoshrink_100_1000e1545264000ampvbetaampt7ioz6g8kcywmstzy3uczzuatswmhhkfyoa4ln_obpu4divspanclassreviewernameronaldricardospanspanspanspangraduatespanspanclasshiddenxscourseuxuidesignbootcampfulltimespanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincominronaldricardoverifiedvialinkedinaspandivdivclassratingsspanclasshiddenbesteducationalexperienceeverspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepandyesiwenttoatraditional4yearuniversityppiwenttolearnuxuiandendeduplearningsomuchmoreisawhowanorganizationthatcaresaboutitsemployeesandclientsisrundontjustaskthestudenthowmuchtheylikeattendingironhackasktheemployeeshowmuchtheylikeworkinghereyoucantellthateveryoneishappyandincludedthatisonlypossibleifthecultureiswellestablishedfromtoptobottomtheyhaveweeklysurveyswhichaimatgatheringfeedbackregularlythatshowstheycareaboutbeingthehighlyregardedbootcampthattheyareppthestartalexisverypersonalbleandhelpfulguidingtheprocessfromapplicationtofinancialaidprocessingjessicaisalsoinstrumentalinguidingthenewlyregisteredsothattheystartoffthecourseontherightfoottheymaketasavailablesothatyouhaveanyquestionsansweredbeforethecoursebeginsthepreworkcanbeafreestandingcoursedavidfastandkarenlumareverystronginstructorsthatreallycareaboutyourprogressasauxuidesignerthenwhenitsalldoneyouknowthatyouarepartofanewcommunitysocontinuingyourlearningjourneyisalmostunavoidablepptoppingitoffisdanielbritowhoismaniacalinhisdrivetohelpgradsfindthenecessaryemploymentresourcesnoonewhoisseriousshouldexpectanyonetofindyouajobbutreallyyouhavetogooutofyourwayinordertofailppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16248dataremotetruedatamethodposthrefreviews16248votesthisreviewishelpfulspanclasshelpfulcount1spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20best20educational20experience20ever207c20id3a2016248flagasinappropriateapdivdivdivdivdivclassreviewdatacampusdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16199datadeeplinktargetreview_16199datareviewid16199hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16199reviewsreview16199idreview_16199auniqueoportunityabrdivclassreviewdate10182018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltmontserratmonroyuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqe8kv0gzohmqaprofiledisplayphotoshrink_100_1000e1545264000ampvbetaamptdz8ssbztddzi2ts0gmokah4i51ywngxpf7zzk3eyvkdivspanclassreviewernamemontserratmonroyspanspanspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxsspanspanclassreviewernameahrefhttpwwwlinkedincominmonroylc3b3pezbmverifiedvialinkedinaspandivdivclassratingsspanclasshiddenauniqueoportunityspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepduringmysearchtostartmytriptolearnaboutthevirtualareaironhackwasthebestoptioninwhichtheytaughtmemyskillsandabilitiestocreatematerializeandsolveproblemsthroughacoordinatedeffortwithteacherswhothroughouttheprocessareaccompanyingyouandsharingyourachievementsppwithoutadoubtthebestjourneyihavelivedandfromwhichihavelearnedalotduringthesesixmonthsgeneratingagratitudeandrespectforthosewhoaccompaniedduringmystudyandthosepeoplewhowithasmileandtheirkindwordshelpedintheprocessesadministrativeppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16199dataremotetruedatamethodposthrefreviews16199votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20a20unique20oportunity207c20id3a2016199flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursewebdevelopmentbootcampparttimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16183datadeeplinktargetreview_16183datareviewid16183hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16183reviewsreview16183idreview_16183greatdecisionabrdivclassreviewdate10182018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltmariafernandaquezadauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsavatars2githubusercontentcomu35006493v4divspanclassreviewernamemariafernandaquezadaspanspanstudentspanspanspanspanclasshiddenxscoursewebdevelopmentbootcampparttimespanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpsgithubcommafeq03verifiedviagithubaspandivdivclassratingsspanclasshiddengreatdecisionspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepbeforedecidingonsigninguptoironhackiresearchedandvisitedotherbootcampsironhackscurriculumattractedmethemostbecausetheyteachyouthelatesttechnologiesforwebdevelopmentppthestaffwasveryhelpfulcommunicativeandknowledgeabletheclassroomenvironmentwasofhighqualityeveryonewasveryrespectfulandeagertolearnppmyoverallexperiencewasgreatandhighlyvaluableitalreadyhasimpactedmycareeranddecisiontocontinuelearningandgrowinginthisindustryppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16183dataremotetruedatamethodposthrefreviews16183votesthisreviewishelpfulspanclasshelpfulcount2spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20great20decision207c20id3a2016183flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmexicocityironhackdatacoursewebdevelopmentbootcampparttimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16160datadeeplinktargetreview_16160datareviewid16160hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16160reviewsreview16160idreview_16160myfavoriteexperiencetillnowabrdivclassreviewdate10172018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltsalemmuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqhvl6y_jryi4gprofiledisplayphotoshrink_100_1000e1545264000ampvbetaamptmvrgzyc9d36js0oab0ozura79phsirrplt620oikz1qdivspanclassreviewernamesalemmspanspanspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampparttimespanspanclasshiddenxscampusmexicocityspanspanclassreviewernameahrefhttpwwwlinkedincominsalvadoremmanueljuc3a1rezgranados13604a117verifiedvialinkedinaspandivdivclassratingsspanclasshiddenmyfavoriteexperiencetillnowspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandableponeofthemostamazingexperiencesofallbeingpartofagreatcommunityaroundtheworldandbeingwrappedbytheirsenseofcommunityandvaluesitsnotjustthelearningparttheyreallymakeyoufeellikepartofitanditsworldwidejustamazingppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16160dataremotetruedatamethodposthrefreviews16160votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20my20favorite20experience20till20now207c20id3a2016160flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16149datadeeplinktargetreview_16149datareviewid16149hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16149reviewsreview16149idreview_16149bestdecisioneverabrdivclassreviewdate10172018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltjulieturbinauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqfglxipjr8ijwprofiledisplayphotoshrink_100_1000e1545264000ampvbetaampthyxxnaigicxavvk3ibssew1py7qdt3gwucrnszsfgkidivspanclassreviewernamejulieturbinaspanspanstudentspanspanstudentspanspanclasshiddenxsspanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincominjulieturbinaverifiedvialinkedinaspandivdivclassratingsspanclasshiddenbestdecisioneverspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivdivclassbodydivclassexpandablepspaniresearchedwellandconsideredmyoptionscarefullybeforedecidingtotakethewebdevcourseatironhackitwasarollercoasterrideandinowregretnotdoingitsoonerspanppspanthecoursewaschallengingbutwiththeguidanceandencouragementreadilyavailableitbecameaprocessthatgavemeanincrediblesenseofaccomplishmentihadthesupportthatwasessentialandtheencouragementthatineededtoseeitthroughspanppspanironhackopenedanewdoorformespanppspantodayicanhonestlysaythatimadethebestdecisiontotakeawellstructuredcourseandmostimportantlytotakethecourseatironhackspanppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16149dataremotetruedatamethodposthrefreviews16149votesthisreviewishelpfulspanclasshelpfulcount2spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20best20decision20ever21207c20id3a2016149flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16143datadeeplinktargetreview_16143datareviewid16143hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16143reviewsreview16143idreview_16143bestcourseeverabrdivclassreviewdate10162018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltpablorezolauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4d03aqfepicebdodqwprofiledisplayphotoshrink_100_1000e1545264000ampvbetaampt878evt_vk0pnksbgfrqso1g66_9sskfaey8axejlqy0divspanclassreviewernamepablorezolaspanspanspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominpablorezolaverifiedvialinkedinaspandivdivclassratingsspanclasshiddenbestcourseeverspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepirecentlycompletedthefulltimewebdevelopmentcourseandihighlyrecommendittoanyonelookingtoexpandtheirskillsthiscoursehaschangedmylifestyletoabetteroneihadneverthoughtaboutallthethingsacomputerisabletodoandtheonlyrealuseigavetothembeforethisfantasticexperiencewereschoolprojectsatlawschoolppatthebeginningofthecourseiwaswarnedjusthowhardandintensethiscoursewouldbemyclosestfriendsandrelativesalsoencouragedmetodothisandshowedmethehugeimportanceoflearningtechnologiesandhowthiswouldhelpmegetajobbecausewearecurrentlylivinginaworldwhichalmosteveryoneworkwithacomputerppiamimpressedabouteverythingilearnedtherenotonlycodingihadtolivetogetherwithmyclassmateseverydayaskingforhelpinthegoodtimesandbadtimesimademanyfriendswhichistillkeepintouchwiththemironhackisabigcommunitytobepartofitdefinetelyiamreallypleasedwithironhackineverysingleaspectofthecoursepptasspendtheirtimeintensivelytostudentsnomatterhowlongitwilltakepptechnologieslearnedarecompletelyupdatedtofirmsrequisitesmeanstackppsocialeventsandspeechesenrichourknowledgeandappetitetolearnmorethingsppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16143dataremotetruedatamethodposthrefreviews16143votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20best20course20ever21207c20id3a2016143flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16131datadeeplinktargetreview_16131datareviewid16131hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16131reviewsreview16131idreview_16131bestexperienceeverabrdivclassreviewdate10162018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltjoshuamatosuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqegrlwnfajumaprofiledisplayphotoshrink_100_1000e1545264000ampvbetaampt7pa6hqinwgh9zo2a4fwsio7ovg3hvd9us4touc8dicdivspanclassreviewernamejoshuamatosspanspanspanspanspanspanclasshiddenxsspanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincominjoshuamatos1verifiedvialinkedinaspandivdivclassratingsspanclasshiddenbestexperienceeverspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepmyonlyregretisnotdoingthissoonertheniwishedididthisbootcamphasshiftedmylifetoamorepositivesideandihavelearnedsomuchinsuchasmallamountoftimeexcitedtoseewhatthefutureholdsformeaftergainingtheknowledgeofgreatdevelopersppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16131dataremotetruedatamethodposthrefreviews16131votesthisreviewishelpfulspanclasshelpfulcount2spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20best20experience20ever21207c20id3a2016131flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16118datadeeplinktargetreview_16118datareviewid16118hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16118reviewsreview16118idreview_16118mostcurrentcontentyoucanlearnaboutfullstackwebdevabrdivclassreviewdate10162018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltjonathanharrisuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqgsvxeyi7bovgprofiledisplayphotoshrink_100_1000e1545264000ampvbetaamptx4nk5sf7zlxospu3pppqxyz2tahuq_iyoecrnasmyzadivspanclassreviewernamejonathanharrisspanspanspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincominyonatanharrisverifiedvialinkedinaspandivdivclassratingsspanclasshiddenmostcurrentcontentyoucanlearnaboutfullstackwebdevspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepiwassearchingforalongtimefortherightschoolandthenifoundironhacktheyalwaysstayuptodateandiamveryhappyichosethisschooliwasveryworriedformanyreasonsbeforeistartedwillitbetohardwillitbetoeasywillwelearnenoughwillimanagetokeepupnowthatiamaftergraduationandicansayiamveryhappywithmychoiceallthesequestionswereansweredinthebestcasescenarioformetheteacherswerereallyawesomeiwasaskingmanyquestionsconstantlyduringtheclassandtheyansweredallofthemwithgreatpatienceireallyfeltigotthemostoutofthetimeicouldpossiblygetitwasnteasyitwassuperhardactuallybuttheypushedmetomylimitwithoutbreakingmeandifeelilearnedthemaximumicouldinthisamountoftimeandilearnedalotiamveryhappyichosethisbootcampppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16118dataremotetruedatamethodposthrefreviews16118votesthisreviewishelpfulspanclasshelpfulcount2spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20most20current20content20you20can20learn20about20full20stack20web20dev207c20id3a2016118flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16117datadeeplinktargetreview_16117datareviewid16117hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16117reviewsreview16117idreview_16117kitchenstocomputersabrdivclassreviewdate10162018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgalteranushauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqfof7aaornb_aprofiledisplayphotoshrink_100_1000e1545264000ampvbetaamptqhr8x9u8_21lete57pjspk857h2e4msisk6jqkflrzgdivspanclassreviewernameeranushaspanspanspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincomineranushaverifiedvialinkedinaspandivdivclassratingsspanclasshiddenkitchenstocomputersspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepatthebeginningofthecourseiwaswarnedjusthowhardandintensethiscoursewouldbefortheseeminglyshort9weeksthatiwasenrolledilearnedanovelsworthofinformationbutwhatsomeofthebestthingsilearnedwereaboutmyselfthiscoursehelpedmetoseeareasofmyselfthatineededtoimproveonasapersonandaprofessionaltheteachersandassitantswerefantasticandwerereadytohelpthiscoursereallyhelpsyoutodevelopaspecialrelationshipwithyourfellowclassmatesseeingaseveryoneisgoingthroughthesameintensedevelopmentinlifeifeelmoreconfidentaboutenteringthisprofessioncomingfromabackgroundinhospitalitywith0experiencethanieverthoughtiwouldppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16117dataremotetruedatamethodposthrefreviews16117votesthisreviewishelpfulspanclasshelpfulcount2spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20kitchens20to20computers207c20id3a2016117flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview15838datadeeplinktargetreview_15838datareviewid15838hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review15838reviewsreview15838idreview_15838verygooddecisionabrdivclassreviewdate9282018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltvctorgabrielpeguerogarcauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqeddlnkhdrecwprofiledisplayphotoshrink_100_1000e1543449600ampvbetaampt86mx9w5pirjucixnjpxsy8048ywiagnfhrp_wq5qgdivspanclassreviewernamevctorgabrielpeguerogarcaspanspancofounderofleemurappspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominvictorgabrielpegueroverifiedvialinkedinaspandivdivclassratingsspanclasshiddenverygooddecisionspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepthankstotheuxuibootcampfromironhackihaveimprovedalotasadesigneriapproachedtheworldofappsafewyearsagoandistarteddesigningiloveddesigningandtheironhackexperiencehasbeenaveryimportantqualitativeimprovementformeppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid15838dataremotetruedatamethodposthrefreviews15838votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20very20good20decision207c20id3a2015838flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview15837datadeeplinktargetreview_15837datareviewid15837hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review15837reviewsreview15837idreview_15837ironhackexperiencefulltimewebdevabrdivclassreviewdate9282018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltjosearjonauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqhr_gdkooskxwprofiledisplayphotoshrink_100_1000e1543449600ampvbetaamptbz49dlovqzgfx8oobuqannst9tubvu_vmzvxeh6xe9wdivspanclassreviewernamejosearjonaspanspanfullstackdeveloperspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincominjosedarjonaverifiedvialinkedinaspandivdivclassratingsspanclasshiddenironhackexperiencefulltimewebdevspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandabledivdivdivdivdivpstrongaboutmestrongppiworkedinitanddidsomecodingbutnothingpastbasicjavascriptitpeakedmyinterestsoibeganlearningonmyownbytakingcoursesonlineirealizedineededtogoaboutlearninginadifferentwayiresearchedcoursesbootcampsandranintoironhackanddecidedtodiveinandtakeitsfulltimewebdevcourseaftercomingacrossgreatreviewsratingsppstrongexpectationsandcourserundownstrongppbereadytolearnbecauseyouregoingtolearnalotitsafulltime95pmeverydayfor9weeksnotincludingtheafterhoursyouwanttoputinaswellitsnojokesojustpreparetofullyinvestthenext9weeksintoironhackyoulearnfor2weeksandthenimmediatelyaresentofftocreateaprojectwithinaweekrepeatagain2moretimesafterthatcomeinpreparedtolearntakeinallthematerialandbewillingtoputintheworkppspanstronghelpduringcourseworkcurriculumtasandteacherstrongspanpptheinstructorforourcohortnickwasveryknowledgeabletheonlydownsidewasthatitwashisfirsttimeteachingthecoursesoitfeltlikehewasalsolearningaswewerealltryingtolearnsomethingtoobesidesthathewasmostdefinitelyagreatinstructorandwithouthisproficiencyonthesubjectiwouldnothavelearnedasmuchasididasfortheteachingassistantsallthreeofthemwereamazingsandramarcosiantheywereallveryfamiliarwiththecourseworksincetheywereallironhackgraduatesaswellitwasextremelyhelpfulhavingdedicatedtaswhowereformerstudentshelpingusbecausetheyknowthestrugglesotheystrongwantstrongtohelptheresmorethanenoughhelptogoaroundjustmakesuretostrongaskstrongforitwhenyouneeditandyouwontfallbehindppthecourseworkdefinitelyneededsometweakingonsomedaysourinstructornickpushedasidewhathefeltwaswrongandobsoleteandtaughtitthebestwayhecouldanditdefinitelyworkedoutduringthecoursethiswasoneofmytopissuesthecurriculumforsureneededanupdatebutfromwhatihaveseenaftermytimetheretheyareoralreadyhavetakenthestepsnecessarytodosowhichmeanstheytakeyourfeedbackseriouslyandwontbrushyourinputasideppstrongrestofironhackstaffstrongppsincethefirstdayiappliedandevennowthestaffatironhackhasntmissedabeattheyhavebeenhelpfulandthereformewithanyquestionsihadtheyhaveanideaastowhattheywanttodowiththecourseandtheydefinitelymakesurethatyoureceivethebestexperiencepossibleitdoesntmatterwhoyoutrytocontacttheownerdowntothetastheyallrespondhappilyandmakeyoufeellikeoneofthemppstronghiringfairprepstrongppfromthefirstweekatironhackyoubecomewellacquaintedwithamannamedbritotakehisadviceseriouslyifyourgoalisgettingajobhewalksyouthroughallthenecessarystepstoprepareyousuchasbuildingyourresumecreatingyourlinkedinandletsyouknowaboutnetworkingeventstoattendheconstantlybringsinpeopletogivespeechestoyouweeklybritoisagreatsourceforhelpandinformationsomakesureyouareconstantlycheckinginwithhimalongwithallthisprepworkyouarealsocreatingyourportfolioduringthecourseyoucreate3projectsonyourownorinasmallgroupwhichshowcaseeverythingyouvelearnedinthecoursefrombeginningtoendandisthefirststeptothebuildingofyourportfolioppstronghiringfaireventstrongppattheendofthecoursebritoarrangescompaniestocometoironhackandsitdownwithyouforinterviewsthisisavaluableintroductionforyourfirstinterviewseventuallyyouwillbeoffdoinginterviewsonyourownandthishiringfairisagreatwaytoevaluatewhatyoudidanddidntdosothatultimatelyyoubecomemoreandmorecomfortableduringthemstillthatdoesntmeanyoushouldnttaketheseinterviewsatthehiringfairseriouslydefinitelycomepreparedtonailthemduringtheeventpeoplestrongdostronggethiredoutofthesethisiswhatyouprepareforandithelpstoprepareforfutureinterviewsppstrongpostironhackexperiencestrongppafterironhackfindingajobifthatiswhatyouarethereforisthenextbattlebritoistherewithyoueverystepofthewayheholdsplacementshelpmeetingsatironhackeveryotherweekandisalwaysavailableforanyquestionsyouhaveheguidesyouandremindsyouthatyoumuststrongkeepcodingstrongandstrongkeepapplyingstrongifyouslackoffonthosetwostepsthejobhuntinstantlybecomesmuchhardertakeyourlinkedinnetworkingandresumeseriouslydolittleprojectsonyourownafterthecohortandmakesureyourjavascriptknowledgeisfreshbydoingcodingchallengesonhackerrankcodewarsbecausetheywillhelpwiththetechnicalinterviewsppididnotgethiredimmediatelyafterironhackiappliedtoaround300jobsandonlygotabouttwohandfulsofphoneinterviewsandinpersoninterviewsigothired3andahalfmonthsafterineverstoppedcodingineverstoppedapplyingandialwayskeptintouchwithbritothisprocessinitselfcouldfeelmorestressfulthanthebootcampbutdonotquitppstrongconclusionstrongppyesyoulearnalotatironhackandaregivengreatguidancebutnotheywillnothandyouajobyougeteverythingyouneedfromthemandnowitsuptoyoutoputintheworkandlandittheyaretherewithyoueverystepofthewayiwould100doitagainiputmylifeonholdinvestedinmyselfpushedthroughandchangedmycareerintosomethingifeltwouldbemorefulfillingsofarithasntdisappointedonebitnotonlydoyoulearnalotatironhackbutyoumaketonsoffriendsandbecomepartoftheirgreatcommunitypdivdivspanifyouhaveanyquestionsfeelfreetomessagemeonlinkedinandiwillgladlyanswerthemforyouspandivdivdivdivdivdivdivdivdivdivdivpclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid15837dataremotetruedatamethodposthrefreviews15837votesthisreviewishelpfulspanclasshelpfulcount4spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20ironhack20experience2020full20time20web20dev207c20id3a2015837flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview15757datadeeplinktargetreview_15757datareviewid15757hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review15757reviewsreview15757idreview_15757awesomelearningexperienceabrdivclassreviewdate9232018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltalexanderteodormaziluuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqeuue2gds42wwprofiledisplayphotoshrink_100_1000e1543449600ampvbetaamptmi4sex_czdgkec3dqgvm9wqiyopwwgvk7rwu19fbagdivspanclassreviewernamealexanderteodormaziluspanspanspanspanspanspanclasshiddenxsspanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincominalexmaziluverifiedvialinkedinaspandivdivclassratingsspanclasshiddenawesomelearningexperiencespandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepirecentlycompletedtheparttimewebdevelopmentcourseandihighlyrecommendittoanyonelookingtoexpandtheirskillsortechnologicalknowledgebaseihadanallaroundwonderfullearningexperienceyoudontneedtohavemuchcomputerknowledgegoingintoitbecauseeachclasshasmultipleteachingassistantswhowillbetheretohelpifyoufallbehindorarestrugglingtokeepupmyclasshad3exceptionaltasmanuelcolbyandadrianwhoconstantlywereabletoprovideassistancewheniranintotroublehadbugsorjustgotlosttheywerealwaysnicepatientandwillingtogotheextramilejusttomakesureireallyunderstooddeeplywhatwewerelearningincludingcominginextraearlyontheweekendsandspendingoneononetimewithmeinfrontofthewhiteboardtogoovereachaspectofwhatwewerelearningindetailiwasreallyimpressedwithandgratefulforeachofthembrbriwasalsoveryimpressedwiththeprofessoralanheisanextremelyknowledgeablepersonwithanaturalaptitudeforteachingalwayspatientcourteousandwelcomingofquestionsfeedbackandtakingtimetoaskusifweallunderstoodorwererunningintoanyproblemswhatreallyimpressedmemostaboutalanishowhewouldtakealittlebitoftimeatthestartofeachclasstogobeyondthecurriculumandtochallengeuswithcomputersciencecodingchallengestoprepareustothinklikecomputerscientistsandgetusreadyforthetypesofquestionswewouldlikelyseeinacodinginterviewandexplainthedifferentwaystoapproachtheproblemsandhowtothinkaboutthemintermsoftimecomplexityormemorymanagementitwaswellbeyondwhatiexpectedfromawebdevelopmentcourseandifoundtheselessonsparticularlyrewardingalanhasaknackforbreakingdowncomplexandabstractconceptsintodigestiblebitsandgettingtheclasscomfortableenoughtotryandcollectivelyattemptasolutionprotipalwaysvolunteertotryandsolvetheproblemshepresentsinoticedthestudentsbraveenoughtoattempttheseproblemsretainedinformationbetterandwalkedawaywithamoresolidunderstandingifhegivesyouthemarkergetupthereandgiveityourbesteffortgohomeandresearchtheconceptsfurtherjustdoitgetawhiteboardforyourhouseandwriteimportantconceptsobjectivesgoalsandproblemexamplesfromclassthiswillforceyourbraintoreconcilethisnewinformationonadailybasisyouwillalmostcertainlyseethesetypesofcodingchallengesinjobinterviewsandtheyreabstractandfrustratingifyouarenotpreparedbrbraftergraduationyoullbecounseledbybritoyourcareercounselorwhoisalsoaverycooldowntoearthandknowledgeablepersonhehassomerealwisdomtoshareabouttheinterviewingprocesshowtoconstructyourresumeandspecificallytellsyoutoreachouttohimbeforeacceptinganyjoboffersiamreallyimpressedwithhisinsightandwillingnesstobesupportivehelpfulandmakesureyoulandagoodstartingjobwellaftergraduationbrbrlookingbackiamextremelythankfultoironhackandhumbledtohavehadtheopportunitytostudywithsuchanawesomeclasseveryonefrommyclassmatestotheteacherstotheteachersassistantstothecareercounselorhaveallbeenanabsolutepleasuretodealwithbrbralsoiwasblownawaybytheuxuistudentswethewebdevclassgotachancetoworkwiththeminthehackathonwhichwasatotallyawesomeexperienceandtheywereveryimpressiveilegitimatelywishicouldgotaketheirclassaswellbecausetheyabsolutelyblewmymindwiththeirsystematicmethodologycreativityandorganizedthoughtprocessestheywereamazingilovedworkingwiththembrbrsotowrapitupiwholeheartedlyrecommendedironhackswebdevelopmentcourse110activelyparticipateaskquestionsbeengagedhelpclassmateskeepapositiveattitudeandthisbootcampwillbealifechangingeventforyouasithasbeenformebrppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid15757dataremotetruedatamethodposthrefreviews15757votesthisreviewishelpfulspanclasshelpfulcount2spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20awesome20learning20experience21207c20id3a2015757flagasinappropriateapdivdivdivdivdivdivdivsectiondividpaginatornavclasspaginationspanclasspagecurrent1spanspanclasspageaclassparamifydataremotetruehrefschoolsironhackpage2reviews2aspanspanclasspageaclassparamifydataremotetruehrefschoolsironhackpage3reviews3aspanspanclasspageaclassparamifydataremotetruehrefschoolsironhackpage4reviews4aspanspanclasspageaclassparamifydataremotetruehrefschoolsironhackpage5reviews5aspanspanclasspagegaphellipspanspanclassnextaclassparamifydataremotetruehrefschoolsironhackpage2reviewsnextrsaquoaspanspanclasslastadataremotetruehrefschoolsironhackpage24reviewslastraquoaspannavdivdivdivdivdivdivclasspanelwrapperdatadeeplinkpathnewsdatatabnews_tabidnewsdivclasspanelpaneldefaultpanelcontentdivclasspanelheadingcollapsedvisiblexsdatadeeplinktargetnewsdatatargetnewscollapsedatatogglecollapseidnewscollapseheadingh4classpaneltitlenewsh4divdivclasspanelcollapsecollapseinidnewscollapsedivclasspanelbodyh2classhiddenxsnewsh2sectionh4ourlatestonironhackh4ulidpostsliclasspostdatadeeplinkpathnewsparttimecodingbootcampswebinardatadeeplinktargetpost_1059idpost_1059h2ahrefblogparttimecodingbootcampswebinarwebinarchoosingaparttimecodingbootcampah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan962018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsnewyorkcodedesignacademynewyorkcodedesignacademyaaclassbtnbtninversehrefschoolsfullstackacademyfullstackacademyappstrongdidyouwanttoswitchcareersintotechbutnotsureifyoucanquityourjobandlearntocodeatafulltimestrongstrongbootcampstrongstronginthishourlongwebinarwetalkedwithapanelofparttimestrongstrongbootcampstrongstrongalumnifromfullstackacademyironhackandnewyorkcodedesignacademytohearhowtheybalancedothercommitmentswithlearningtocodeplustheyansweredtonsofaudiencequestionsrewatchitherestrongppiframeheight507srchttpswwwyoutubecomembednv6apa8vthawidth902iframepahrefblogparttimecodingbootcampswebinarcontinuereadingrarraliliclasspostdatadeeplinkpathnewsdafnebecameadeveloperinbarcelonaafterironhackdatadeeplinktargetpost_1056idpost_1056h2ahrefschoolsironhacknewsdafnebecameadeveloperinbarcelonaafterironhackhowdafnebecameadeveloperinbarcelonaafterironhackah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan8132018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4685s1200dafnedeveloperinbarcelonaafterironhackpngppstrongafterlivingallovertheworldanddippinghertoesingraphicdesignfinanceandentrepreneurshipdafneolcawaslookingforacareerwhereshewouldalwayskeeplearningsheeventuallytriedafreecodingcourseloveditanddecidedtoenrollinahrefhttpswwwironhackcomencourseswebdevelopmentbootcamputm_mediumsponsoredcontentamputm_sourcecoursereportamputm_campaignwebdevbootcampbcnamputm_contentalumnispotlightrelfollowtarget_blankironhackswebdevelopmentbootcampainbarcelonaspaintaughtinenglishdafnetellsushowlearningtocodewasbothverydifficultandverysatisfyinghowsupportiveahrefhttpswwwcoursereportcomschoolsironhackrelfollowironhackawasandstillisforhercareerandhowmuchsheisenjoyingbeingafrontenddeveloperinhernewjobatstrongstrongeverisstrongstrongaeuropeanconsultingfirmstrongppstrongqampastrongppstrongwhatsyourcareerandeducationbackgroundhowdidyourpathleadtoabootcampstrongppmycareerpathhasbeenverydiversesofarimoriginallyfromaustriaandididabachelorsdegreeinmultimediainlondonandhonoluluwiththeaimofworkingingraphicdesignandvideoproductionbutifoundthejobopportunitieswerenotthekindofjobsiimaginedthemtobethenididanmbainviennaandsandiegotoincreasemycareeroptionsandendedupinfinanceinbarcelonappafterthreeyearsigotboredwithfinanceandwantedtofigureoutwhattodowithmylifeihadalwaysbeeninterestedintechnologyandworkedforawhileonafamilybusinessfocusedontheinternetofthingsienjoyedresearchingtechnologiesphilosophicalaspectsofthebusinessandlookingatthedirectioninwhichtheworldisheadingppieventuallycameacrossfreecodecampandenjoyeditalotmyfriendswhoworkinwebdevelopmenttoldmeifibecameawebdeveloperiwouldbelearningfortherestofmylifeatfirstthatsoundedintimidatingbutitmademerealizethatsexactlywhatiwanttodowithmylifeitsawaytomakesureiwontgetboredicankeeplearningandgettingbetteratwhatidoitgoeshandinhandwithmypersonalitybecauseilovetolearnanddonewthingsithinkthatswhywebdevelopmentistherightchoiceformeppstrongyouvestrongstrongtraveledstrongstrongalotwhatmadeyouchooseironhackinbarcelonaratherthananotherbootcampinstrongstrongadifferentstrongstrongcitygoingbacktocollegeorteachingyourselfstrongppiconsideredteachingmyselfbutgoingtouniversitywasntanoptionitwasbetweenteachingmyselfandgoingtothebootcampasabeginnerthebestwaytochangecareerswastogofullonandbearoundprofessionalstheteachersatironhackareverytalentedandareprofessionalswhohavebeeninthefieldforalongtimeppimovedtobarcelonathreeyearsagoandfellinlovewiththecitysoitwascleartomethatiwantedtodoabootcamphereitalkedtopeopleaboutthebesttechnologiesandlanguagestolearnandeveryoneconfirmedthatironhackhadthebestfullstackjavascriptcurriculumbarcelonahasagoodtechatmosphereandagrowingstartupsceneideventuallyliketohavetheflexibilitytoworkremotelyandithinkthatbarcelonawillallowthatppalsothecourseididwastaughtinenglishinbarcelonaironhackoffersonefulltimecohortinenglishandonefulltimecohortandoneparttimecohortinspanishppstrongwhatwastheironhackapplicationandinterviewprocesslikeforyoustrongppthefirstpartwasapersonalityinterviewtoseeifyourereallygenuinelyinterestedindoingthecourseandpursuingacareerinwebdevelopmentafterpassingthatfirstinterviewiwasgivensomeverybasiccodingexercisesafterthoseexercisesihadatechnicalinterviewwithateacherassistantwhichipassedbeforegettingacceptedintoironhackppstrongwhatwasthelearningexperiencelikeatironhackwhatwastheteachingstylestrongppihavetobehonestitwasveryverytoughformethiswasthefirsttimeihaddoneacourseinwebdevelopmentironhackwassplitintothreemodulesfirstwehadthebasicfrontendmodulewhichwasprettydoablethesecondmodulewasbackendwhichformewasverydifficultthenthefinalmodulewasbackendwiththeangularframeworkwhichwasalsodemandingppthehourswereveryintenseofficiallythehoursare9amto6pmlikeafulltimejobbutidontremembermanydayswhenweactuallyfinishedat6ifyoureatironhackthenitsinyourbestinteresttogetasmuchoutoftheprogramasyoucanpptheteachingwasalsoquiteintenseim30nowsoihadbeenoutofschoolformanyyearsandgoingbacktolectureswasalotmoredemandingthanithoughtitwouldbebutasintenseasitwasitwasalsoverysatisfyingyourcharacterreallyshowswhenyourelearningwebdevelopmentyouhavetodealwithdailyfrustrationsandalotofchallengesbutovercomingthosechallengesisreallyrewardingppstrongwhatwasyourcohortlikestrongppironhackwasoneofthemostdiverseexperiencesiveeverhadsomeofmyclassmateswere18andhadcomestraightoutofhighschoolandtheoldestguywasinhislate40stheaveragepersonwassomebodywhohaddecidedtochangetheircareerppwewereveryinternationaltherewerearound22studentsinmyclassfourofthosestudentswerespanishandtherestofthemwerefromallovertheworldincludingeuropeansandlatinamericansppstrongwhatwasyourfavoriteprojectthatyoubuiltatironhackstrongppmyfavoriteprojectwasmyfirstprojecticreatedagameofblackjackwithfrontendjavascriptsinceitwasmyfirstprojectifeltlikeihadaccomplishedsomethingthatineverinmylifethoughticouldhaveaccomplishedofcoursewegothelpfromtheteachersbutitsquiteimpressivetoseewhatyouyourselfarecapableofdoingbeforewestartedtheprojectiwascluelessihonestlyhadnoideawhatiwasgoingtodohowiwasgoingtodoitandididntbelieveicoulddoitbutaftercompletingtheprojectitwasreallyimpressivetoseewhaticouldgetmyselftodoppstronghowdidironhackprepareyouforjobhuntingstrongppwheniwasresearchingbootcampsitwasreallyimportantformetobeabletolandajobassoonaspossibleandironhackprettymuchguaranteesthatalmostallalumniwhowanttofindworkwillfindworkinthefieldrightafterbootcampwehadahiringdaywheremorethan20recruitersfromtechcompaniescametothecampustoseeourworkitwasaquickinterviewwhereweshowthemourprojecttheyaskquestionstheygettoknowusandwegettoknowthecompaniesppsoniamycareersadviserwasalwaysgettingintouchwithcompaniesandgettingmyinputaboutwhatidliketodoontopofthatithoughtitwasamazingthatafterilandedajobandneededsomeguidanceoneofthetasstillgavemeadviceandinputevennowifeellikeicangobacktoironhackandgetsupportanytimeineedititrynottomilkitbuttheyarejustsohelpfulandsocaringppstrongsoyouvebeenworkingatstrongstrongeverisstrongstrongfor7monthsnowcongratshowdidyoufindthejobstrongppeverisdidcometoironhackforthehiringdaybutididntgetachancetotalktothembecausethereweresomanycompaniestheresothenextdayicontactedthemandtoldthemihadmissedthembutiwantedtogettoknowthemiwasquiteactiveaboutreachingouttocompaniestheyrepliedimmediatelyiwentintotheofficethatsamedayforaninterviewwithintwoweekstheycalledmeinforasecondinterviewandshortlyafterthatireceivedanofferiwasexhaustedaftergraduatingfromironhacksoitookamonthoffovertheholidaysbutaboutamonthintomyjobsearchiwasworkingateverisppstrongcanyoutellmeabouteverisandwhatyouworkontherestrongppahrefhttpswwweveriscomglobalenrelfollowtarget_blankeverisaisaconsultancysoweworkonprojectswithdifferentclientsimajuniorfrontenddeveloperandiworkwithangularandtypescriptitsapurelyfrontendjobwhichiswhatiwantedppimonmysecondprojectsinceistartedateveristhefirstprojectwasawebapptohelporganizationsapplyforgovernmentalloansitwasaverysmallglobalteamtwopeopleinbarcelonatwopeopleinzaragozaspainandtheprojectmanagerwasbasedinbrusselsbelgiumformycurrentprojecttherearefourofusandwereallbasedinbarcelonaexceptfortheprojectmanagerwhoisbasedinzaragozappitsahugecompanyithinkthereareabout3000peopleinbarcelonaandtheyhavebranchesaroundtheworldthecompanyisverydiverseandtheteamsareverydiverseaswelltheyhaveanemphasisonhiringverygenderbalancedteamswhichisniceeverisisdefinitelymoregenderbalancedthanothercompaniesppstrongareyouusingthetechnologiesandprogramminglanguagesateveristhatyoulearnedatironhackstrongppimworkinginangularwhichisaframeworkwecoveredinthethirdmoduleofironhacktherearealwaysnewthingstolearninangularbecauseangularisquitecomplexandalwaysevolvingsoihaventlearnedanynewlanguagesorframeworksbutihadtolearnmoreaboutangularonthejobppironhackprovideduswiththetoolstobeabletoteachourselvesnewtechnologiesmoreeasilyinthefutureiwillinevitablyneedtolearnmorelanguagesandframeworksbutnowihavetherighttoolstobeabletoteachmyselfalotmoreeasilythanbeforethebootcampppstrongsinceyoujoinedeverishowdoyoufeelyouvegrownasafrontenddeveloperstrongppin6monthsifeellikeivebecomealotmoreindependentandimlessafraidoftouchingthecodeinadditionivedevelopedapassionforproblemsasweirdasthatsoundsienjoyrunningintoproblemsbecauseienjoysolvingthemitsveryfulfillinghonestlyithinkironhackisthebestdecisionivemadeinmylifeintermsofacademiaandcareerdevelopmentihaventregretteditonceppstronghowhasyourbackgroundingraphicdesignfinanceandentrepreneurshipbeenusefulinyournewjobasafrontenddeveloperstrongppgraphicdesignisverymuchabouttrendsanditsbeenalongtimesinceistudieditwhiletherearesomeaspectsofdesignthatstillapplyalothaschangedateveriswhenwegetanewprojectalotofthedesignisgivenbytheclientmyjobismoreaboutimplementingthelogicandfunctionsratherthanthedesignitselfppmyexperienceworkinginfinancehasdefinitelybeenusefulateverishavingexperienceinahugecorporationdefinitelyhelpsyouworkwithotherpeopleandclientsinaprofessionalenvironmentppstrongwhatsbeenthebiggestchallengeorroadblockinyourjourneytobecomingafrontenddeveloperstrongppsometimesyoucangetstuckonaproblemforareallylongtimeandyoustarthavingtodealwithyourownfrustrationsthemoreyougetfrustratedthemoreyoublockyourbrainandthelessyoucanreallythinklogicallythatsachallengethativehadtolearntodealwithandimreallylearninghowtobecalmandpatientiwasntapatientpersonbeforeandimnowreallyseeingtheresultsofpatienceppstrongitsoundslikeironhackhasstayedinvolvedinyourcareerhaveyoukeptintouchwithotheralumnistrongppiwasjustatironhacklastweekactuallyandimgoingagainsoonalotofpeoplefrommycohorthaveleftbutivegottentoknowpeoplefromthecohortsbeforeandaftermineandwevebecomequitetightitsaverystrongcommunitywheneverironhackhostseventsiprioritizethemitsaverygoodatmosphereandagreatnetworkandeverytimeigothereifeellikeimathomeppstrongwhatadvicedoyouhaveforpeoplemakingacareerchangethroughacodingbootcampstrongppjustdoitmybestadviceistostaycalmandbeawarethatyouregoingtoreachyourmentallimitsyouregoingtohaveahardtimebutitsreallyworthitanditsveryrewardingtherearegoingtobetimeswhenyoullwanttofeelverystupiddontifyoucanbeamasterofyouremotionsthenyouhaveagoodpathaheadppstrongfindoutmoreandreadahrefhttpswwwcoursereportcomschoolsironhackrelfollowironhackreviewsaoncoursereportcheckouttheahrefhttpswwwironhackcomencourseswebdevelopmentbootcamputm_mediumsponsoredcontentamputm_sourcecoursereportamputm_campaignwebdevbootcampbcnamputm_contentalumnispotlightrelfollowtarget_blankironhackawebsitestrongpdivclassauthorbiobootstraph4abouttheauthorh4imgclassimgroundedpullleftsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files1586s300imogencrispeheadshotjpgalthttpscourse_report_productions3amazonawscomrichrich_filesrich_files1586s300imogencrispeheadshotjpglogoppimogenisawriterandcontentproducerwhonbsploveswritingabouttechnologyandeducationnbspherbackgroundisinjournalismwritingfornewspapersandnewswebsitesshegrewupinenglanddubaiandnewzealandandnowlivesinbrooklynnyppdivliliclasspostdatadeeplinkpathnewshowtolandauxuijobinspaindatadeeplinktargetpost_1016idpost_1016h2ahrefbloghowtolandauxuijobinspainhowtolandauxuidesignjobinspainah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan5212018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappahrefhttpswwwcoursereportcomschoolsironhacknewshowtolandauxuijobinspainrelfollowtarget_blankimgaltsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4561originalhowtolandauxuidesignjobspainironhackpngappstrongdemandforuxanduidesignersisnotjustlimitedtosiliconvalleycompaniesallovertheworldarerealizingtheimportanceofsoliduxdesigncitieslikebarcelonaknownforitsarchitecturaldesignarebecomingdigitaldesignhubssofadalponteteachesuxuidesignatahrefhttpswwwcoursereportcomschoolsironhackrelfollowtarget_blankironhackastrongstrongbootcampstrongstronginbarcelonaandhasseenthedemandforuxuidesignersincreaseoverthelast18monthsandasahrefhttpswwwironhackcomencoursesuxuidesignbootcamplearnuxdesignutm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blankironhackasoutcomesmanagerjoanacahnermakessureironhackstudentsaresupportedinfindingtherightcareerpathaftergraduatingtheytelluswhythedesignmarketishotinspainrightnowwhatsortofbackgroundandskillsuxuidesignersneedandtipsforfindingauxuidesignjobstrongpahrefbloghowtolandauxuijobinspaincontinuereadingrarraliliclasspostdatadeeplinkpathnewscampusspotlightironhackberlindatadeeplinktargetpost_983idpost_983h2ahrefschoolsironhacknewscampusspotlightironhackberlincampusspotlightironhackberlinah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan3122018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappahrefhttpswwwcoursereportcomschoolsironhacknewscampusspotlightironhackberlinrelfollowtarget_blankimgaltcampusspotlightironhackberlinsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4430s1200ironhackberlincampusspotlightpngappstrongberlinisprovingtobeanincredibletechecosystemwithcampusesinmiamimadridparismexicoandbarcelonaahrefhttpswwwcoursereportcomschoolsironhackrelfollowtarget_blankironhackaislaunchingtheirwebdevelopmentstrongstrongbootcampstrongstronginberlingermanyin2018totakeadvantageofthegrowingtechscenewespokewithahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blankironhackasemeaexpansionleadalvarorojasabouttheberlincampusataweworkspacehowironhackisrecruitinglotsoflocalhiringpartnersandwhatsortofjobsironhackgraduatescanexpecttogetinberlinplusasanironhackgradhimselfalvarogivesadviceonwheretostartasanewcoderstrongph3strongqampastrongh3pstrongwhatsyourbackgroundandhowdidyougetinvolvedwithironhackstrongppmybackgroundisinstrategyconsultingistudiedbusinessinlondonandtheniworkedinstrategicconsultingfortechstartupsinspainandcaliforniaiworkedfortheembassyofspaininlosangelesforalittlewhileandthenilaunchedmyownventurethereppimactuallyanironhackgraduateworkinginthetechindustryihadalwaysbeeninterestedinlearninghowtocodesoididsomeresearchonlineandifoundironhackigraduatedfromironhackaroundayearandahalfagoppifellinlovewiththecompanysmissionandthecommunitytheywerecreatingyouhearsomereallyincrediblestorieswhenyoureworkingwithpeoplefromsuchdiversebackgroundsaftergraduatingikeptintouchwithahrefhttpswwwlinkedincomingonzalomanriquerelfollowtarget_blankgonzalomanriqueaoneofthecofounderssowhentheydecidedtoexpandineuropehecontactedmeabouttheemeaeuropemiddleeasternandafricaexpansionleadpositionitwasanobrainerformeppstrongdidyouattendironhacktobecomeadeveloperordidyoujustwanttopickupcodingskillsstrongppiwantedtopickupcodingskillsithinkeverybodyinthefutureshouldbecomeliterateinsomekindofcodinglanguageevenifyourenotplanningonworkingasadevelopermostjobsinthefuturewillrequireabasicknowledgeofprogrammingandiwantedtostayaheadofthecurveifyouworkintechunderstandinghowsoftwareisbuiltisamustregardlessofyourpositioneventuallymachineswilldominatetheworldandyoullhavetospeaktheirlanguageppstrongyouhavethisuniqueperspectiveofactuallybeingastudentbeforeworkingasstaffatironhackstrongppabsolutelyitseasierformetoexplainthebenefitsbehindironhackbecauseivelivedthroughthewholeexperienceitsreallygreatwhenwedoeventsandprospectivestudentsaskmeaboutironhackthefirstthingitellthemislookimanalumiwentthroughthewholeexperienceicantellyoueverythingyouneedtoknowandeverythingyoullgothroughitwasdefinitelyoneofthemostchallengingandrewardingtimesinmylifeppstrongtellusaboutyourroleatironhackstrongppthefirststepwhenistartedwasworkingwiththecofoundersandthevpofopsampexpansionalexberrichetomakeastrategyplanforeuropewehadvariouscitiesinmindanddecidedtotakeastructuredapproachandrankthemaccordingtofactorsweknowtobedeterminantsforsuccesswefinallydecidedberlinwasclearlythenextstepforusppafterdecidingonacityimovetheretoseteverythinguptherearetwomainareasimresponsibleforthefirstisoperationsamphrsettingupthelegalentityforironhacksnewcampussecuringfinancingforourstudentsetcandgettingtogetheradreamteamtorunthecampusppthesecondkeyareaismarketingwetailorourstrategytoeachmarketitsallaboutunderstandingthedifferentcustomersegmentsandbuildingbrandawarenessoncepeopleunderstandourvaluepropositiontheyrealwaysconvincedwefocusstronglyonpartneringupwithcoolcompaniesliken26ormoberriesanddoingfreeworkshopsandeventsforprospectivestudentsitsallaboutgettingpeopleexcitedaboutlearningnewdigitalskillsppourfirstcohortinberlinlaunchesmay212018ppstrongwhatstoodoutaboutberlingermanywhyisthiscityagreatplaceforironhacktohaveacampusstrongppironhackalreadyhascampusesineuropemadridbarcelonaandparissowewanttocontinuetobepresentinthestrongesttechecosystemsandberlinisprovingtobeanincredibletechecosystemberlinishometothesinglelargestsoftwaremarketineuropethatsaroundaquarteroftheeuropeanmarketbyvaluewhichisprettycrazytherearearound2000to2500activetechstartupshereincludingsomereallydisruptivecompaniesthetechecosystemisboomingandthecityhastheabilitytoattractandretaintalentedpeoplelikenootherplacepeopleareflockingtoberlinbecausetheylikelivinghereandtheresplentyofjobopportunitiesppalsotheitjobsmarketingermanyhasagrowingdigitalskillsgaptherearealotofnewstartupsthatdemanddevelopersanddesignersalongwithtraditionaloldercompanieswhoaregoingthroughadigitalizationprocessahrefhttpswwwmckinseydefiles131007_pm_berlin_builds_businessespdfrelfollowtarget_blankmckinseyreleasedastudyasayingtherewouldbe100000digitaljobsinberlinby2020sothatwasbigdatapointforusppstrongsincestudentscangotouniversityforfreeinberlinwhywouldtheywanttopaytogotoironhackstrongppcompaniesaredemandingmorepeoplewithdigitalskillsandfouryearuniversitiesjustcantcatertothatmarketironhackbelievesuniversitiesregardlessofwhethertheyareprivateorpublicarefailingtoadapttothedigitalrevolutiontheuniversityapproachhasntchangedin100yearsandgettingajobinthisdayandagerequiresadifferentupdatedapproachppironhackprovideshighimpactcondensededucationalexperienceswithoneobjectiveinmindgettingstudentsfromzerotojobreadyinthreemonthsbecauseofthiswebelievetherewillalwaysbeagapinthemarketwherewecanprovidevalueregardlessweareworkinghardtomakeiteasierforstudentstohaveaccesstoourprogramsbyprovidingfinancingoptionsthroughbothprivateandpublicchannelsppstrongwhatwillmakeironhackstandoutamongstthecompetitioninberlinstrongppwearelaserfocusedononeobjectiveenablingstudentstosecureajobwithinthreemonthsaftergraduationppsohowdoweachievethatwellfirstwemakeourstudentsemployableweconstantlyupdateourcurriculumtoensureweteachthelatesttechnologiesthatemployersactuallydemandandwehireprofessionalinstructorswithrealworldexperiencetoteachthemweprovidecareerguidanceandsupportthroughoutthewholeprogramandstudentsarepreparedfortechnicalinterviewsbehavioralinterviewsetcwebelieveinlearningbydoingsostudentscomeoutwiththreeprojectstoshowtotheworldoncetheyvegraduatedppwealsofocusongivingourstudentsaccesstothoseopportunitiesbysecuringhiringpartnersandorganizingacareerweekwherestudentsgettomeetprospectiveemployersattheendofeachcohortppstrongwhattypesofapplicantsareyoulookingtoenrollintheberlincampusstrongppwerelookingforcareerchangerstherearesomanytalentedpeopleinberlinwhohavemovedherelookingforopportunitiesironhackgivesyouthepossibilitytospecializeandlandajobinthreemonthswecatertoanyonewhorealizestheimportanceoflearningnewdigitalskillsandhasapassiontolearnppstronghowmanystudentsdoesironhackplantoaccommodateattheberlincampusstrongppweregoingtohavethreecohortsin2018thefirstonestartsinmaythesecondoneinjulyandthethirdoneinoctoberforthefirstcohortwerelookingatabout20studentswedontliketohavecohortsmuchbiggerthanthatbecausewewanttoguaranteequalitymovingforwardwewilllooktogrowourteamandnumberofcohortsalwaysensuringstudentshavethebestpossibleexperienceppstronghowdoyousourcenewinstructorswhatwillbetheinstructorstudentratiostrongppwehirerealprofessionalswhohaveworkedinthetechindustryourleadinstructorforberlinwasworkingattheironhackpariscampusastheleadinstructorforayearandhewantedtomovetoberlinhesoneofthosepeoplewhohasbeencodinghiswholelifehestartedhisowncompanyandhesworkedintheindustryasaleaddeveloperhehasaveryimpressivebackgroundandhealreadyknowstheironhackbootcampandourcoursesothatsalwaysaplusppatironhackaleadinstructorleadsthewholeprogramandthenwehaveteachingassistantswhoarealsocodingprofessionalsforeveryeightstudentstoprovidesupportandguidestudentsthroughthecourseforexampleinthefirstcohortifwehave20studentswewouldhaveoneleadinstructorandtwoorthreeteachingassistantshavinggonethroughthebootcampmyselfifeeltheteachingassistantsplayanincrediblyimportantrolebecausetheyprovidevaluableassistancethroughoutthewholebootcampppstrongwillthecurriculumatironhackberlinbethesameasotherironhackcampusesstrongppironhackscurrentcurriculumisdividedintothreemodulesfrontendhtmlcssampjavascriptbackendmeanstackandmicroserviceswithangular2apiswearealwayslookingtomakeourcurriculumbetterwewereteachingrubyonrailsbutwedecidedtomoveontoalsosomethingialwaystellprospectivestudentsisthatyoulearnhowtolearnigraduatedfromtherubyonrailscourseandwasabletolearnnodejsonmyownjustthenextmonthppwereincontactwithalotofstartupssowemakesureourcurriculumisexactlywhatemployersneedanddemandwemakeapointtokeepthecurriculumconsistentacrossallcampusesthisallowsustohaveafeedbackloopateverycampusandensureconsistentqualitysowerestickingwiththesamecurriculumineverycampusfornowbutalwayslookingtoiterateandmakeitbetterppstrongtellusabouttheberlincampuswhatistheclassroomlikestrongppaswithmostofournewcampuseswellbelocatedataweworkcoworkingspaceanewbuildingcalledatriumtowerrightonpotsdamerplatzthespaceitselfisabigroomwhichholdsaround40studentswhenwevisitedthespaceaboutamonthandahalfagowefellinlovewiththefacilitiesthecampusisaccessiblefromanywhereintownbecauseofitscentrallocationandithasanincredibleterraceatthetopppwhenyouregoingtobelearningforthreemonthsinanincrediblyintenseprogrambeinginanicespacewithamenitiescoffeesnacksreallyniceviewsissomethingreallyimportantppstrongwhataresomeexamplesofthetypesofjobsyouenvisionyourberlingraduateslandingafterstrongstrongbootcampstrongstrongstrongppwehaveaverystrongreputationworldwidewithaglobalcommunityofalumniandpartnersforexamplewejustsignedupn26amobilebanktobeourhiringpartnerwereintalkswithseveralberlincompaniestosignthemupashiringpartnerstooattheendofeachnineweekcourseweprepareprospectiveemployerstomeetwiththestudentslikeisaidwereveryfocusedoncareerchangersandensuringourstudentsgetajobwithinthreemonthsaftergraduationppinthepastwevehadcompanieslikegoogletwittervisarocketinternetandmagicleaphireironhackgraduatessoinberlinwerelookingforthesameprofilesthoseareglobalcompanieswealreadyhavepartnershipswithsoourstudentsalreadyhaveaccesstothatpoolofemployersthenlocallywearelookingforthemostdisruptivecompaniesthatarereadytohireentryleveljuniordevelopersppstrongdoyouenvisionberlingradsstayinginberlinisyourfocustogetpeoplehiredinthecitywheretheystudiedstrongppwehaveabigfocusonhavingaglobalcommunitysowereallyliketheideathatourstudentscanaccessallthecommunitiesinallourcitiesforexampleirecentlypassedontheresumesoftwograduatesfromthemadriduxuicoursetoberlinbasedn26itsuptoeachgraduatetodecidewhichcitytoworkinppalotofpeoplewanttostayintheirhomecityandothersdontsowecatertobothwetrytogiveopportunitiestogoabroadandoptionstoworkinthelocalmarketppstrongwhatwouldyourecommendacompletebeginnerdotolearnmoreaboutthetechsceneinberlinstrongppiwouldrecommendgoingtoasmanymeetupsandeventsasyoucanialwaystellpeoplethatyouneverknowwhatopportunitiescouldariseifyouputyourselfoutthereandstarttalkingtopeopleweactuallyjustwroteablogpostaboutahrefhttpsmediumcomironhackhowtolandatechjobinberlinbb391a96a2c0relfollowtarget_blankhowtolandthetechjobinberlinaandonepieceofadviceistominglejustnetworkppthenofcourseiwouldrecommendgoingtotheironhackmeetupsthereareabunchofworkshopsinberlinandourinformalnetworkishugeahrefhttpswwwmeetupcomironhackberlinrelfollowtarget_blankweredoingonefreeworkshopeveryweekaandwelldosomebiggereventsaswellppstrongwhatadvicedoyouhaveforsomeonewhosthinkingaboutattendingacodingstrongstrongbootcampstrongstronginberlinandconsideringironhackstrongppformmyexperienceasanalumithinkitsallabouttheattitudewhenyougointoacodingbootcamptheresalwaysthisfeelingwhereyourealittlebitscaredbecauseitissomethingreallydemandingpeoplehaveanaturaltendencytoberesistanttolearnsomethingsotechnicalbutjuststartcodingitsnotasdifficultasitmayseemandhavingtherightguidanceiskeywereactuallylaunchingacoolchallengeinberlinahrefhttpberlincodingchallengecomrelfollowtarget_blankafreeonlinecourseatoencouragepeopletogettheirfeetwetwithcodingppalotmorepeoplethanwebelievehavetheaptitudeforitandactuallybecomereallygoodprogrammersyoujusthavetotakealeapoffaithandcommittothreemonthsofveryintenseworkwehavea90placementrateandwhilewedohavearigorousadmissionsprocessthemajorityofourstudentsgethiredirecommendpeopletojustgoforiticanguaranteethatifyouhavetherightattitudeyoullsucceedppstrongfindoutmoreaboutahrefhttpswwwcoursereportcomschoolsironhackrelfollowtarget_blankironhackabyreadingcoursereportreviewscheckoutahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blanktheironhackwebsiteastrongpdivclassauthorbiobootstraph4abouttheauthorh4imgclassimgroundedpullleftsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpgalthttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpglogopplaurenisacommunicationsandoperationsstrategistwholovestohelpothersfindtheirideaofsuccesssheispassionateabouttechonologyeducationcareerdevelopmentstartupsandtheartsherbackgroundincludescareeryouthdevelopmentpublicaffairsnbspandphilanthropynbspsheisfromrichmondvaandnowcurrentlyresidesinlosangelescappdivliliclasspostdatadeeplinkpathnewsjanuary2018codingbootcampnewspodcastdatadeeplinktargetpost_966idpost_966h2ahrefblogjanuary2018codingbootcampnewspodcastjanuary2018codingbootcampnewspodcastah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan1312018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsrevaturerevatureaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolselewaeducationelewaeducationaaclassbtnbtninversehrefschoolsholbertonschoolholbertonschoolaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolsblocblocaaclassbtnbtninversehrefschoolseditbootcampeditaaclassbtnbtninversehrefschoolsandelaandelaaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsgalvanizegalvanizeaaclassbtnbtninversehrefschoolscodingdojocodingdojoaaclassbtnbtninversehrefschoolsthinkfulthinkfulaaclassbtnbtninversehrefschoolsredacademyredacademyaaclassbtnbtninversehrefschoolsorigincodeacademyorigincodeacademyaaclassbtnbtninversehrefschoolshackbrightacademyhackbrightacademyaaclassbtnbtninversehrefschoolscodercampscodercampsaaclassbtnbtninversehrefschoolsmuktekacademymuktekacademyappiframeheight300srchttpswsoundcloudcomplayerurlhttps3aapisoundcloudcomtracks392107080ampcolor23ff5500ampauto_playfalseamphide_relatedfalseampshow_commentstrueampshow_usertrueampshow_repostsfalseampshow_teasertrueampvisualtruewidth100iframeppstrongwelcometothefirstnewsroundupof2018werealreadyhavingabusy2018wepublishedourlatestoutcomesanddemographicsreportandwereseeingapromisingfocusondiversityintechinjanuarywesawasignificantfundraisingannouncementfromanonlinebootcampwesawjournalistsexploringwhyemployersshouldhirebootcampandapprenticeshipgraduateswereadaboutcommunitycollegesversusbootcampsandhowbootcampsarehelpingtogrowtechecosystemspluswelltalkaboutthenewestcampusesandschoolsonthesceneandourfavoriteblogpostsreadbeloworahrefhttpssoundcloudcomcoursereportepisode23january2018codingbootcampnewsrounduprelfollowtarget_blanklistentothepodcastastrongbrpahrefblogjanuary2018codingbootcampnewspodcastcontinuereadingrarraliliclasspostdatadeeplinkpathnewscampusspotlightironhackmexicocitydatadeeplinktargetpost_945idpost_945h2ahrefschoolsironhacknewscampusspotlightironhackmexicocitycampusspotlightironhackmexicocityah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan1242017spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappahrefhttpswwwcoursereportcomschoolsironhacknewscampusspotlightironhackmexicocityrelfollowtarget_blankimgaltironhackcampusmexicocitysrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4129s1200ironhackcampusmexicocitypngappstrongglobaltechschoolironhackislaunchinganewcampusinmexicocityonjanuary152018wespokewithahrefhttpswwwcoursereportcomschoolsironhackrelfollowtarget_blankironhackasvpofoperationsampexpansionalexandreberrichetolearnaboutthemexicocitytechecosystemandwhythereisagrowingdemandfordevelopersintheareathisschoolusesfeedbackfromtheircampusesaroundtheworldtocontinuallyimprovethecurriculumdiscoverhowahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagerelfollowtarget_blankironhackacanconnectyoutoa1000networkofalumnihelpyouwithjobplacementandgetsometipsforyourapplicationstrongppspanstylefontsize16pxstrongqampastrongspanppstrongwhatsyourbackgroundwhatdrewyoutowanttoworkwithironhackstrongppafterstartingmycareerinprivateequityijoinedjumiaarocketinternetcompanyalsocalledtheafricanamazoniwasheadofoperationsinnorthafricaandthenmanagingdirectoroftunisiaigotintouchwitharielandgonzalothefoundersofironhackandwasreallyinspiredbytheirvisionalsosinceiactuallyattendedacodingbootcampmyselfiwasexcitedtocomeandworkinthisindustryisawthegreatpotentialthebootcampmodelhadineuropeandalsolatinamericaiwaskeentohaveanimpactonpeopleslivessoiwassuperreceptivetoourconversationandworkingwithironhackitwasagreatfitppstrongasthevpofexpansioncanyoudescribeyourrolestrongppasvpofexpansioniworkwiththefounderstocreateastrategyanddecidewhichmarketsmakesenseforustoopeninnexttheniminvolvedwiththeoperationspreparationwhereiactuallylaunchthenewmarketspptherearethreemainareastoconsiderwhenlaunchinginanewmarketthefirstishumanresourceswewanttobuildanawesometeamincludingageneralmanagerweweresuperexcitedtofindagreatgmforourmexicocampusmarketingandbrandawarenessisnumbertwowhenyourelaunchinginanewmarketyouwanttoincreasethebrandawarenessandconvinceyourfirststudentsofthebenefitsofthenewcampusitcanbedifficultinanewmarketbecausewearestartingfromscratchsowehavetoleveragetheuseofmarketingchannelssuchaspublicrelationseventsandpartnershipstointegrateourselvesintothelocalecosystemthethirdareaislegalmakingsurethelegaladministrationiscompletedifyousucceedinthosethreeareasyouarereadytoopeninanymarketppstrongwhatstoodoutaboutmexicocitywhydidironhackchoosetoopenacampustherestrongppweareoneoftheleadersinthecodingbootcampindustrygloballyandwevebeenthinkingaboutopeninginlatinamericaforquitesometimelatinamericaisagreatmarketbecausethereissomuchdemandfortechskillsbutthereisalimitednumberofestablishedbootcampsintheareain2019itisestimatedtherewillbeadeficitof150000itjobsinmexicosowecanhaveagreatimpactonthatwewanttotrainthenewgenerationoftechnologyprofessionalstojointheindustrynotmanyifanybootcampshavecampusesintheuseuropeandinlatinamericasolatinamericawasveryattractivetousppmexicocitywasthepreferredchoicebecauseithasaboomingtechecosystemitsoneofthelargestmarketsforstartupsmexicocityistheentryformanytechcompaniesmovingtolatinamericafacebookamazonandsoonsomanytechmultinationalsaremovingintheecosystemisnotjustboomingitsalsomaturingsignificantlywellasthereareplentyofvcsacceleratorsandcompanybuildersppfinallyitsaprettyfriendlyenvironmentforinternettechnologyandcomputerscienceitsabigmarkettopenetratebutitslessdifficultthansomeothermarketsbecausetherearenoglobalcompetitorsthereareobviouslysomelocalcompetitorswhomwerespectalotbutwearegoingtogivethemexicocityecosystemaccesstoironhacksglobalcommunitywhichisalreadypresentinmiamiparisbarcelonaandmadridwethinkbuildingtieswithinthosemarketswillexcitestudentslearninginmexicocityppstrongthereareonlyafewstrongstrongbootcampsstrongstronginmexicocityhowwillironhackstandoutonceotherstrongstrongbootcampsstrongstrongstarttopopupstrongppironhackwillstandoutbecauseweareglobalwehavealreadylearnedsomuchaboutrunningabootcampbecauseeachmarketweoperateinhasdifferentstandardsanddifferentchallengessobybringingthisexperienceintothemarketweareraisingthecodingbootcampstandardsformexicocityironhackhasgraduated1000studentssowehavealargecommunitywehavealumniworkingforamazongoogleandibmwhichisabigpluswehavegreatreviewsoncoursereportandwehavegreatstudentsatisfactionforourcurriculumoverthefouryearswehavebeenoperatingwehavecontinuedtoimproveourteachingmethodsppstrongwhatistheironhackmexicocitycampuslikestrongppourofficesareattheweworkinsurgentescoworkingspaceanditsamazingtoworkalongsidedifferentmexicocitystartupsandseehowdynamicthespaceisitssuperexcitingwereinthecolonianapoleswhichislikeadistrictofstartupsatweworkwetakeuptworoomsof20x30feeteachwhichholdbetween15to20studentswewillstartwithoneclassandtheneventuallyhavetwoclassesrollingatthesametimeoneuxuidesigncourseandonewebdevelopmentcourseppourobjectiveatironhackisnotquantitativeitsmorequalitativesowearenotgoingtoacceptstudentsiftheydonthavetherequiredtechnicallevelweareselectivewithstudentsandwedontaccepteveryoneppstrongcouldyoudescribetheironhackapplicationprocessisitthesameacrosscampusesstrongppyeswehavetwointerviewsonepersonalinterviewandonetechnicalinterviewyoucanmakeitthroughthetechnicalinterviewevenifyoudonthavetonsofknowledgebutyoumustbeahardworkerifyouprepareyourcaseyoucanmakeitinbutwewanttobeselectiveppbeforethebootcampstartswealsohavepreworkandtheobjectiveistohaveeveryoneatthesameknowledgelevelwhenwestartthecoursepeoplearespendingalotoftimeandmoneytoreallyimprovesothecoursesareveryintensiveforthatreasonppstrongironhackteachesuxuidesignandwebdevelopmentwillyoubeteachingthesamecurriculuminmexicocitystrongppwecollectfeedbackineachmarketandwitheachpieceoffeedbackwereceiveweimproveourcurriculumlittlebylittlewetrustandusethesamecurriculumineverymarketyoucantscaleefficientlyifyouhaveeachmarketdoingdifferentclassesthefeedbackloopsinallthedifferentmarketsallowustohavethebestqualityprogramidontthinkwecouldhavethebestqualityifwemadetoomanyspecificitiesforthevariouscitiesppstronghowmanyinstructorswillyouhaveatthemexicocitycampusstrongppthenumberofinstructorswillgrowasthenumberofstudentsandthenumberofclassesincreaseforinstanceatthepariscampusfourmonthsafterlaunchingwehadseventeachersitwillbethesameformexicosowellstartwithoneinstructorandthenafterafewmonthssevenandafteroneyearmaybe10weregoingtoseehowfastitgrowsppstrongsinceironhackisaglobalstrongstrongbootcampstrongstronghowdoyouhelpwiththejobsearchandplacementwhatsortofjobsdoyouexpectgraduatestogetstrongppwearetryingtobuildpartnershipswithliniotipandmanymexicanstartupswherewecanplaceourstudentscompanieswillbeinvitedtohiringweekattheendofthebootcamptoseewhattypeoftalentweproducewellstartbytargetingcompaniesinmexicocityandthenwellexpandandmakepartnershipswithcompaniesinguadalajaraandmonterreyasasecondstepppmostofourgraduatesbecomejuniordeveloperswehavelessentrepreneursandmorejuniordevelopersironhackfocusesoncareerchangersandtryingtohelpthemtoachievetheirambitionssothatswhywearesofocusedonplacementwithironweekandaplacementmanagerineachmarketppstrongisitprettynormalforgraduatestostayinthecitywheretheystudiedstrongppweareseeinggraduatesstayinthecitywheretheystudiedunlesstheyrecomingfromabroadwehaveafewinternationalstudentsandcurrentlymostofthemgotothebarcelonaandpariscampuseswedontknowaboutmexicocitygraduatesyetbutmostofourapplicationssofararefrommexicowithsomeinternationalapplicantsaswellppstrongifsomeoneisabeginnerandthinkingaboutattendingacodingbootcampinmexicocitylikeironhackdoyouhaveanymeetuporeventsuggestionsstrongppyesironhackisdoingahrefhttpswwwmeetupcomesironhackmexicoevents245056900utm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blankahugefulldayeventatweworkondecember9thaanyonecanattendanditsfreethisisagreatopportunitytolearnabouttechdiscoverthemexicocityecosystemanddecideifyouwanttoapplytoironhackppstrongwhatadvicedoyouhaveforpeoplethinkingaboutattendingacodingbootcamplikeironhackstrongppthefirstthingisitsanamazingcommitmentandifyouareapplyingforgoodreasonsandhavethetechnicalabilityyouwillbeacceptedandgetthebestexperienceitsaonceinalifetimeexperiencetospendnineweekschangingyourcareeryouwilllearnsomuchmeetnewcompaniesandgethiredifyouwanttolearnmoreahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagerelfollowtarget_blankgototheironhackwebsiteadownloadtheapplicationguideandcometosomeeventswehaveameetupgroupandfacebookpageyoucanreadplentyofreviewsoftheschooloncoursereportifyouaresureofyourmotivationsyouareahardworkerandyourecommittedimsureyouwillbeacceptedppstrongdoyouhaveanyadditionalcommentsabouttheironhacksnewmexicocitycampusstrongppweareveryexcitedabouthavinganamazingteamatweworkinmexicocityweareatthecenterofthestartupecosystemsoithinkitwillbeanamazingexperienceforourstudentsppstrongreadahrefhttpswwwcoursereportcomschoolsironhackrelfollowtarget_blankironhackreviewsaoncoursereportandcheckouttheahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagerelfollowtarget_blankironhackwebsiteastrongpdivclassauthorbiobootstraph4abouttheauthorh4imgclassimgroundedpullleftsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpgalthttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpglogopplaurenisacommunicationsandoperationsstrategistwholovestohelpothersfindtheirideaofsuccesssheispassionateabouttechonologyeducationcareerdevelopmentstartupsandtheartsherbackgroundincludescareeryouthdevelopmentpublicaffairsnbspandphilanthropynbspsheisfromrichmondvaandnowcurrentlyresidesinlosangelescappdivliliclasspostdatadeeplinkpathnewsmeetourreviewsweepstakeswinnerluisnagelofironhackdatadeeplinktargetpost_892idpost_892h2ahrefschoolsironhacknewsmeetourreviewsweepstakeswinnerluisnagelofironhackmeetourreviewsweepstakeswinnerluisnagelofironhackah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan892017spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappahrefhttpswwwcoursereportcomschoolsironhacknewsmeetourreviewsweepstakeswinnerluisnagelofironhackrelfollowimgaltironhacksweepstakeswinnerluisnagelsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files3764s1200ironhacksweepstakeswinnerluisnagelpngappstrongthankstostrongstrongbootcampstrongstronggraduateswhoenteredoursweepstakescompetitiontowina500amazongiftcardbyleavingaverifiedreviewoftheirstrongstrongbootcampstrongstrongexperienceoncoursereportthistimeourluckywinnerwasluiswhograduatedfromironhackinmadridthisaprilwecaughtupwithhimtofindoutabitabouthiscodingstrongstrongbootcampstrongstrongexperienceandwhyhedecidedtoattendironhackstrongppstrongwanttobeournextreviewssweepstakeswinnerahrefhttpswwwcoursereportcomwriteareviewrelfollowtarget_blankwriteaverifiedreviewofyourcodingastrongahrefhttpswwwcoursereportcomwriteareviewrelfollowtarget_blankstrongbootcampstrongaahrefhttpswwwcoursereportcomwriteareviewrelfollowtarget_blankstrongexperienceherestrongaph3strongmeetluisstrongh3pstrongwhatwereyouuptobeforeironhackstrongppbeforedoingtheironhacksuxuibootcampihadalongcareerworkingasamarketingandadvertisingdesignerppstrongwhatsyourjobtitletodaystrongppimauxuidesigneratdevialabauxuiandsoftwaredevelopmentconsultingagencymainlyfocusedonstartupsandbasedinmadridwhatmakesdevialabspecialisthatwelauncheveryprojectlikeitwereourownandalsoworkreallyclosewiththeentrepreneurppstrongwhatsyouradvicetosomeoneconsideringironhackoranothercodingstrongstrongbootcampstrongstrongstrongppmyadvicetoanyoneconsideringironhackisdoititisagreatopportunityyouarebringingyourselfitmaybehardsometimesbutyouwillneverregretitppbeforestartingfreeyourmindandyouragendaandbereadyforagreatimmersiveexperienceyouwillgrowasmuchasyourewillingtoandyouwillnotonlylearnbutyouwillalsoexperiencewhatyourjobisgoingtobeandalsoyouwillmeetamazingprofessionalsnetworkingisoneofthebestopportunitiesofferedbyabootcamplikeironhackppstrongcongratsahrefhttpswwwtwittercomluisnagelrelfollowluisatolearnmoreahrefhttpswwwcoursereportcomschoolsthinkfulreviewsrelfollowtarget_blankreadironhackreviewsaoncoursereportorahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagerelfollowtarget_blankvisittheironhackwebsiteastrongppstrongwanttobeournextreviewssweepstakeswinnerahrefhttpswwwcoursereportcomwriteareviewrelfollowtarget_blankleaveaverifiedreviewofyourcodingbootcampexperiencehereastrongpppdivclassauthorbiobootstraph4abouttheauthorh4imgclassimgroundedpullleftsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpgalthttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpglogopplaurenisacommunicationsandoperationsstrategistwholovestohelpothersfindtheirideaofsuccesssheispassionateabouttechonologyeducationcareerdevelopmentstartupsandtheartsherbackgroundincludescareeryouthdevelopmentpublicaffairsnbspandphilanthropynbspsheisfromrichmondvaandnowcurrentlyresidesinlosangelescappdivliliclasspostdatadeeplinkpathnewsjuly2017codingbootcampnewspodcastdatadeeplinktargetpost_888idpost_888h2ahrefblogjuly2017codingbootcampnewspodcastjuly2017codingbootcampnewsrounduppodcastah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan812017spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsgeorgiatechbootcampsgeorgiatechbootcampsaaclassbtnbtninversehrefschoolstheironyardtheironyardaaclassbtnbtninversehrefschoolsdevbootcampdevbootcampaaclassbtnbtninversehrefschoolsupacademyupacademyaaclassbtnbtninversehrefschoolsuscviterbidataanalyticsbootcampuscviterbidataanalyticsbootcampaaclassbtnbtninversehrefschoolscovalencecovalenceaaclassbtnbtninversehrefschoolsdeltavcodeschooldeltavcodeschoolaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolssoutherncareersinstitutesoutherncareersinstituteaaclassbtnbtninversehrefschoolslaunchacademylaunchacademyaaclassbtnbtninversehrefschoolssefactorysefactoryaaclassbtnbtninversehrefschoolswethinkcode_wethinkcode_aaclassbtnbtninversehrefschoolsdevtreeacademydevtreeacademyaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsunitfactoryunitfactoryaaclassbtnbtninversehrefschoolstk2academytk2academyaaclassbtnbtninversehrefschoolsmetismetisaaclassbtnbtninversehrefschoolscodeplatooncodeplatoonaaclassbtnbtninversehrefschoolscodeupcodeupaaclassbtnbtninversehrefschoolscodingdojocodingdojoaaclassbtnbtninversehrefschoolsuniversityofrichmondbootcampsuniversityofrichmondbootcampsaaclassbtnbtninversehrefschoolsthinkfulthinkfulaaclassbtnbtninversehrefschoolsuniversityofminnesotabootcampsuniversityofminnesotabootcampsaaclassbtnbtninversehrefschoolshackbrightacademyhackbrightacademyaaclassbtnbtninversehrefschoolsfullstackacademyfullstackacademyaaclassbtnbtninversehrefschoolsuniversityofmiamibootcampsuniversityofmiamibootcampsappiframeheight100srchttpswsoundcloudcomplayerurlhttps3aapisoundcloudcomtracks335711318ampauto_playfalseamphide_relatedfalseampshow_commentstrueampshow_usertrueampshow_repostsfalseampvisualtruewidth100iframeppstrongneedasummaryofnewsaboutcodingbootcampsfromjuly2017coursereporthasjustwhatyouneedweveputtogetherthemostimportantnewsanddevelopmentsinthisblogpostandpodcastinjulywereadabouttheclosureoftwomajorcodingbootcampswedivedintoanumberofnewindustryreportsweheardsomestudentsuccessstorieswereadaboutnewinvestmentsinbootcampsandwewereexcitedtohearaboutmorediversityinitiativesplusweroundupallthenewcampusesandnewcodingbootcampsaroundtheworldstrongpahrefblogjuly2017codingbootcampnewspodcastcontinuereadingrarraliliclasspostdatadeeplinkpathnewscampusspotlightironhackparisdatadeeplinktargetpost_857idpost_857h2ahrefschoolsironhacknewscampusspotlightironhackpariscampusspotlightironhackparisah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan5262017spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltcampusspotlightironhackparissrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files3440s1200campusspotlightironhackparispngppstrongahrefhttpswwwcoursereportcomschoolsironhackrelfollowtarget_blankironhackaisaglobalwebdevelopmentstrongstrongbootcampstrongstrongwithlocationsinmadridmiamibarcelonaandnowpariswespokewithahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blankironhackasgeneralmanagerforfrancefranoisstrongstrongfillettestrongstrongtolearnmoreabouttheirnewpariscampuslaunchingjune26thfranceisthesecondlargesttechecosystemineuropelearnwhyironhackchosetoexpandtotheareareadhowthestrongstrongbootcampstrongstrongwillstandoutfromtherestandseewhatresourcesareavailabletobecomeasuccessfulstrongstrongbootcampstrongstronggradinparisstrongppstrongfirstasthefrancegeneralmanagertellmehowyouvebeeninvolvedwiththenewironhackcampusstrongppsureasageneralmanagerihavebeeninvolvedinallthedimensionsrelatedtothenewcampusfindinganamazingplaceforourstudentsrecruitingateamofaplayerssettingupthedocsandprocessesandsoonihavebeenworkingwithalexourheadofinternationalexpansionwhohasbeentremendouslyhelpfulwehaveworkedsuperhardoverthelastfewweekstomakesurethatourpariscampuswillbeonthesamestandardsastheothersppstrongwhatsyourbackgroundandhowdidyougetinvolvedwithstrongstrongbootcampsstrongstrongwhatdrewyoutowanttoworkwithironhackstrongppiwascomingbackfromsanfranciscowhereiwasworkingasvpofstrategyandbusinessdevelopmentforahrefhttpswwwcodingamecomstartutm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blankcodingameaoneofmyvcfriendstoldmethatarielandgonzalothecofounderswerelookingforsomeonetolaunchironhackinfranceimetthetwoofthemandimmediatelyembracedtheirvisionandgotimpressedbytheirabilitytoexecutefastandwelligotsuperexcitedbytheprojectandtheteamsoacoupleofdayslateriwasinmiamitoworkonthestrategyandthelaunchplanforfranceitsbeen3monthsnowandhonestlyiveneverbeenhappiertowakeupinthemorningandstartanewdayppstrongironhackislaunchingtheirpariscampusonjune26thwhyisparisagreatplaceforacodingstrongstrongbootcampstrongstrongcouldyouexplainironhacksmotivationtoexpandtherestrongppintermsoffundingfranceisnowthe2ndlargesttechecosystemineuroperightafterenglandoverthelast5yearsithasgrownexponentiallyandisnowoneofthekeytechhubsintheworldtakeahrefhttpsstationfcorelfollowtarget_blankstationfaforinstancethankstoxaviernielcofounderoffreepariswillnowhavethebiggestincubatorintheworldthatgrowthhasfueledanincreasingdemandfornewskillsinthetecheconomyandthetalentshortageisnotfilledbythetraditionaleducationplayerstheresanamazingopportunityforustoexpandhereandwelldoeverythingwecantoreachourtargetsppstrongthereareafewothercodingstrongstrongbootcampsstrongstronginpariswhatwillmakeironhackstandoutamongstthecompetitionstrongppseveralinitiativesandplayershaveappearedoverthelastcoupleofyearswhichshowsyouhowdynamicthemarketisithink3elementswillsetironhackapartfromthecompetitionfirstourcoursesarefocusedonthelatesttechnologiesforexamplefullstackjavascriptforwebdevelopmentandweconstantlyiteratetoimproveboththecontentandtheacademicexperiencethenwededicatealargeshareofthecourse6070tohandsonreallifeapplicationsstudentsworkonrealprojectssubmittedbypartnersorbythemselvesiftheywanttocreatetheirstartupbusinesslastwehelpwiththeplacementofourstudentsiftheyrelookingforajobcoachingfortechnicalandbehavioralinterviewsconnectionstocompaniesstartupseventsetcwehaveanaverageplacementrateof90after3monthsacrossourcampusesppstrongletsdiscussthepariscampuswhatistheclassroomlikewhatneighborhoodisitinstrongppthecampusislocatedinthenewspaceopenedbyweworkitislocatedinthe9tharrondissementneartheparisoperaitisaccessiblevia3metrolines8buslines2bikesharingstationsand2carsharingstationsitwillbeopen247forourstudentspptheplaceisabsolutelymagnificentbothintermsofdesignandcommunitystudentswillenjoyalargeclassroomclosetothepatioandmeetingworkingroomstocompletetheirprojectsandassignmentsppstrongwhatwebdevelopmentanduxuidesigntracksorlanguagesareyouteachingatthiscampusandwhyaretheonesyouvechosenparticularlypopularorrelevantinparisstrongppthecorecurriculumisthesameacrossthedifferentcampusestomakesurestudentshavethesameacademicexperienceandthatwehaveastrongexpertiseinourareathenwetailorthementorstheeventsandtheprojectstothelocalspecificitiesofthestudentsandoftheecosystemsoforwebdevelopmentwellbefocusingonfullstackjavascriptbutwellbeintegratingeventsandmentorsaroundframeworksreallypopularhereexreactormeteorandindustriesthataretherisingtrendsexonlinemediaandentertainmentppstronghowmanyinstructorsandormentorswillyouhaveinparisstrongppwellhavealeadinstructorwhoisaprofessionaldeveloperandhighlyinvolvedintheopensourcecommunityhehasseveralyearsofexperienceinstartupsanditservicesagencieshellbeassistedbyatawhoisabitmorejuniorbutpassionateabouteducationandteachingstudentspluswellhaveanetworkof1520mentorstohelpandcoachstudentsforcodingaswellasformanagementmentorswillbechosenbasedontheprojectsofthestudentsalsothestudentsofthefirstwebdevelopmentsessionwillbesponsoredbyflorianjourdaflorianwasthe1stengineeratboxandscaledtheirdevteamfrom2to300peoplehespent8yearsinthesiliconvalleyandisnowchiefproductofficeratbayesimpactanngofundedbygooglethatusesmachinelearningtosolvesocialproblemslikeunemploymentppstronghowmanystudentsdoyouusuallyhaveinacohorthowmanycanyouaccommodatestrongppforthatfirstcohortweplantohave20studentsmaximumbecausewewanttomakesureweprovidethebestexperiencethatwillensureastrongmonitoringofstudentsaswellasaperfectoperationalexecutiononoursideforthenextcohortswellincreasethenumberofstudentsbutwewontgoabove30andwellrecruit1or2moretastokeepthesamequalityppstrongwhatkindofhourswillstudentsneedtoputintobesuccessfulstrongppstudentsoftenaskthatquestionanditsalwayshardtoanswereverythingdependsontheirlearningcurveonaveragestudentsworkbetween50to70hoursaweekmainlyonprojectsandassignmentsbutwerefullytransparentonthisyoucantlearnrealhardskillsandgetajobin3monthswithoutfullydedicatingyourselfwemakesurethattheatmosphereisasgoodasitcanbesothatstudentswontseetimepassingbyppstronghowisyourcampussimilarordifferenttotheotherironhackcampusesstrongppithinkthatourcampusisprettysimilartomiamiswearelocatedinanamazingcoworkingspaceinaveryniceneighborhoodandwithlotsofstartupsaroundthemaindifferencewouldbeourrooftoponthe8thfloorofthebuildingwhereweregularlyorganizeeventsandlunchesppstronghowareyouapproachingjobplacementinanewcitydoesironhackhaveanemployernetworkalreadystrongppjobplacementisoneoftheelementswetailortothelocalrealitiesandneedswehavealreadypartneredwith20techcompaniessuchasdrivyworldleaderinpeertopeercarrentaljumiatheequivalentofamazoninafricaandmiddleeaststootieeuropeleaderinpeertopeerserviceskimaventuresvcfundofxaviernielwith400portfoliocompaniesetcusuallytheyarelargestartupsfromseriesatoseriesdlookingtohirewebdevelopersasagmitwillbepartofmyjobtosupportandhelpstudentsaccomplishtheirprofessionalprojectswithouremployerpartnersppstrongwhattypesofcompaniesarehiringdevelopersinparisandwhytypesofcompaniesdoyouexpecttohirefromironhackspariscampusstrongppithinkthereare3typesofcompaniesthatcouldhirewebdeveloperswhograduatedfromironhackcorporationsintelecommediatechnologystartupsfromseriesatoseriesdanditservicescompaniesthedemandisreallyintenseforthelasttwooptionsastheyrelookingforpeoplemasteringthelatesttechnologiesinhighvolumesbasedontheenthusiasmtheyveexpressedwhentalkingwithironhackweknowtheyllbegreatrecruitingpartnersppstrongwhatsortofjobshaveyouseengraduatesgetatotherironhackcampusesandwhatdoyouexpectforironhackparisgraduatesdotheyusuallystayinthecityaftergraduationstrongppbasedonthemetricsofothercampusesusually5060ofpeoplejoinastartupasanemployeeajuniorwebdeveloperprojectmanagerorgrowthhacker2030createtheirownstartupafterthecoursewhile2030becomefreelancersusuallyinwebdevelopmentandworkonaremotebasiswellhaveagoodshareofstudentswhoarenotfromfranceoriginallysowethinksomeofthemmightleaveparisafterthecoursebutwellhelpthemfindtherightopportunityabroadandwellkeepconstantinteractionwiththosestudentsppstrongwhatmeetupsorresourceswouldyourecommendforacompletebeginnerinpariswhowantstogetstartedstrongppfrancehassomegreatplayersinthefieldifyouwanttogetanintrotojavascriptiwouldrecommendyouvisitopenclassroomscodecademyorcodecombatthenintermsofmeetupsthefamilyandnumaaretwoacceleratorswithoutstandingweeklyeventssomeofthemarerelatedtoonespecificcodingtopicandtheyreusuallyapprehendedatabeginnerlevelppstronganyfinalthoughtsthatyoudlikeourreaderstoknowaboutironhackparisstrongppwewanttobuildsomethingthatisnothinglikewhatexistsinparisin3monthsyoullbeoperationalinwebdevelopmentyoullmeetawesomepeoplestudentsmentorsentrepreneursandyoullaccomplishyourprofessionalprojectsendusanemailtoknowmoreatahrefmailtoparisironhackcomsubjectim20interested20in20ironhack20parisrelfollowparisironhackcomawehaveafewseatsleftforthesessionstartingonjune26thnextsessionwillstartonseptember4thifyouwanttoapplyjustsendusyourapplicationthroughthisahrefhttpswwwironhackcomenwebdevelopmentbootcampapplyrelfollowtarget_blanktypeformappstrongreadmoreahrefhttpswwwcoursereportcomschoolsironhackreviewsrelfollowtarget_blankironhackreviewsaandbesuretocheckouttheahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blankironhackwebsiteastrongpdivclassauthorbiobootstraph4abouttheauthorh4imgclassimgroundedpullleftsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpgalthttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpglogopplaurenisacommunicationsandoperationsstrategistwholovestohelpothersfindtheirideaofsuccesssheispassionateabouttechonologyeducationcareerdevelopmentstartupsandtheartsherbackgroundincludescareeryouthdevelopmentpublicaffairsnbspandphilanthropynbspsheisfromrichmondvaandnowcurrentlyresidesinlosangelescappdivliliclasspostdatadeeplinkpathnewsepisode13april2017codingbootcampnewsrounduppodcastdatadeeplinktargetpost_841idpost_841h2ahrefblogepisode13april2017codingbootcampnewsrounduppodcastepisode13april2017codingbootcampnewsrounduppodcastah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan7222017spanppclassrelatedschoolsaclassbtnbtninversehrefschoolstheironyardtheironyardaaclassbtnbtninversehrefschoolsdevbootcampdevbootcampaaclassbtnbtninversehrefschoolsgreenfoxacademygreenfoxacademyaaclassbtnbtninversehrefschoolsrevaturerevatureaaclassbtnbtninversehrefschoolsgrandcircusgrandcircusaaclassbtnbtninversehrefschoolsacclaimeducationacclaimeducationaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolsplaycraftingplaycraftingaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsuniversityofarizonabootcampsuniversityofarizonabootcampsaaclassbtnbtninversehrefschoolsgalvanizegalvanizeaaclassbtnbtninversehrefschoolshackreactorhackreactoraaclassbtnbtninversehrefschoolstech901tech901aaclassbtnbtninversehrefschoolsbigskycodeacademybigskycodeacademyaaclassbtnbtninversehrefschoolscodingdojocodingdojoaaclassbtnbtninversehrefschoolsumassamherstcodingbootcampumassamherstcodingbootcampaaclassbtnbtninversehrefschoolsaustincommunitycollegecontinuingeducationaustincommunitycollegecontinuingeducationaaclassbtnbtninversehrefschoolscodechrysaliscodechrysalisaaclassbtnbtninversehrefschoolsdeepdivecodersdeepdivecodingaaclassbtnbtninversehrefschoolsunhcodingbootcampunhcodingbootcampaaclassbtnbtninversehrefschoolsqueenstechacademyqueenstechacademyaaclassbtnbtninversehrefschoolscoderacademycoderacademyaaclassbtnbtninversehrefschoolszipcodewilmingtonzipcodewilmingtonaaclassbtnbtninversehrefschoolsdevacademydevacademyaaclassbtnbtninversehrefschoolscodecodeappiframeheight450srchttpswsoundcloudcomplayerurlhttps3aapisoundcloudcomtracks320348426ampauto_playfalseamphide_relatedfalseampshow_commentstrueampshow_usertrueampshow_repostsfalseampvisualtruewidth100iframeppstrongmissedoutoncodingbootcampnewsinaprilneverfearcoursereportisherewevecollectedeverythinginthishandyblogpostandpodcastthismonthwereadaboutwhyoutcomesreportingisusefulforstudentshowanumberofschoolsareworkingtoboosttheirdiversitywithscholarshipsweheardaboutstudentexperiencesatbootcampplusweaddedabunchofinterestingnewschoolstothecoursereportschooldirectoryreadbeloworlistentoourlatestcodingbootcampnewsrounduppodcaststrongpahrefblogepisode13april2017codingbootcampnewsrounduppodcastcontinuereadingrarraliliclasspostdatadeeplinkpathnewsyour2017learntocodenewyearsresolutiondatadeeplinktargetpost_771idpost_771h2ahrefblogyour2017learntocodenewyearsresolutionyour2017learntocodenewyearsresolutionah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan12302016spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsdevbootcampdevbootcampaaclassbtnbtninversehrefschoolscodesmithcodesmithaaclassbtnbtninversehrefschoolsvschoolvschoolaaclassbtnbtninversehrefschoolslevellevelaaclassbtnbtninversehrefschoolsdavincicodersdavincicodersaaclassbtnbtninversehrefschoolsgracehopperprogramgracehopperprogramaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolsclaimacademyclaimacademyaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolswecancodeitwecancodeitaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsmetismetisaaclassbtnbtninversehrefschoolsbovacademybovacademyaaclassbtnbtninversehrefschoolshackreactorhackreactoraaclassbtnbtninversehrefschoolsdesignlabdesignlabaaclassbtnbtninversehrefschoolstheappacademynltheappacademynlaaclassbtnbtninversehrefschoolstechelevatortechelevatoraaclassbtnbtninversehrefschoolsthinkfulthinkfulaaclassbtnbtninversehrefschoolslearningfuzelearningfuzeaaclassbtnbtninversehrefschoolsredacademyredacademyaaclassbtnbtninversehrefschoolsgrowthxacademygrowthxacademyaaclassbtnbtninversehrefschoolsstartupinstitutestartupinstituteaaclassbtnbtninversehrefschoolswyncodewyncodeaaclassbtnbtninversehrefschoolsfullstackacademyfullstackacademyaaclassbtnbtninversehrefschoolsturntotechturntotechaaclassbtnbtninversehrefschoolscodingtemplecodingtempleappimgaltnewyearsresolution2017learntocodesrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files3600s1200newyearsresolution2017learntocodev2pngppstrongitsthattimeagainatimetoreflectontheyearthatiscomingtoanendandatimetoplanforwhatthenewyearhasinstorewhileitmaybeeasytobeatyourselfupaboutcertainunmetgoalsonethingisforsureyoumadeitthroughanotheryearandwebetyouaccomplishedmorethanyouthinkmaybeyoufinishedyourfirstcodecademystrongstrongclassstrongstrongmadea30daygithubcommitstreakormaybeyoueventookastrongstrongbootcampstrongstrongprepcoursesoletscheerstothatbutiflearningtocodeisstillatthetopofyourresolutionslistthentakingtheplungeintoacodingstrongstrongbootcampstrongstrongmaybethebestwaytoofficiallycrossitoffwevecompiledalistofstellarschoolsofferingemfulltimeememparttimeemandemonlineemcourseswithstartdatesatthetopoftheyearfiveofthesestrongstrongbootcampsstrongstrongevenhavescholarshipmoneyreadytodishouttoaspiringcoderslikeyoustrongpahrefblogyour2017learntocodenewyearsresolutioncontinuereadingrarraliliclasspostdatadeeplinkpathnewsdecember2016codingbootcampnewsroundupdatadeeplinktargetpost_770idpost_770h2ahrefblogdecember2016codingbootcampnewsroundupdecember2016codingbootcampnewsroundupah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan12292016spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsdevbootcampdevbootcampaaclassbtnbtninversehrefschoolscodinghousecodinghouseaaclassbtnbtninversehrefschoolsrevaturerevatureaaclassbtnbtninversehrefschoolsfounderscodersfoundersampcodersaaclassbtnbtninversehrefschoolsasidatascienceasidatascienceaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolslabsiotlabsiotaaclassbtnbtninversehrefschoolsopencloudacademyopencloudacademyaaclassbtnbtninversehrefschoolshackeryouhackeryouaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolselevenfiftyacademyelevenfiftyacademyaaclassbtnbtninversehrefschools42school42aaclassbtnbtninversehrefschoolsthefirehoseprojectthefirehoseprojectaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolssoftwareguildsoftwareguildaaclassbtnbtninversehrefschoolsgalvanizegalvanizeaaclassbtnbtninversehrefschoolshackreactorhackreactoraaclassbtnbtninversehrefschoolscodingnomadscodingnomadsaaclassbtnbtninversehrefschoolsupscaleacademyupscaleacademyaaclassbtnbtninversehrefschoolscodingdojocodingdojoaaclassbtnbtninversehrefschoolsthinkfulthinkfulaaclassbtnbtninversehrefschoolsnycdatascienceacademynycdatascienceacademyaaclassbtnbtninversehrefschoolscodingacademybyepitechcodingacademybyepitechaaclassbtnbtninversehrefschoolsorigincodeacademyorigincodeacademyaaclassbtnbtninversehrefschoolskeepcodingkeepcodingaaclassbtnbtninversehrefschoolsfullstackacademyfullstackacademyaaclassbtnbtninversehrefschoolsucirvinebootcampsucirvinebootcampsappimgaltcodingbootcampnewsroundupdecember2016srchttpscourse_report_productions3amazonawscomrichrich_filesrich_files3601s1200codingbootcampnewsroundupdecember2016v2pngppstrongwelcometoourlastmonthlycodingbootcampnewsroundupof2016eachmonthwelookatallthehappeningsfromthecodingbootcampworldfromnewbootcampstofundraisingannouncementstointerestingtrendsweretalkingaboutintheofficethisdecemberweheardaboutabootcampscholarshipfromuberemployerswhoarehappilyhiringbootcampgradsinvestmentsfromnewyorkstateandatokyobasedstaffingfirmdiversityintechandasusualnewcodingschoolscoursesandcampusesstrongpahrefblogdecember2016codingbootcampnewsroundupcontinuereadingrarraliliclasspostdatadeeplinkpathnewsinstructorspotlightjacquelinepastoreofironhackdatadeeplinktargetpost_709idpost_709h2ahrefschoolsironhacknewsinstructorspotlightjacquelinepastoreofironhackinstructorspotlightjacquelinepastoreofironhackah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan10122016spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltjacquelinepastoreironhackinstructorspotlightsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files2486s1200jacquelinepastoreironhackinstructorspotlightpngppstrongmiamicodingbootcampahrefhttpswwwcoursereportcomschoolsironhackrelfollowironhackarecentlylaunchedanintensivecourseinuxuidesignwherestudentslearneverythingtheyneedtoknowaboutuserresearchrapidprototypingusertestingandfrontendwebdevelopmenttolandtheirfirstjobinuxdesignwesatdownwithinstructoranduxsuperstarjacquelinepastoreontheirfirstdayofclasstofindoutwhatmakesagreatuxuidesignerthinklisteningskillsempathyandcommunicationhowtheschoolproducesuserexperienceunicornsbyincorporatinghtmlbootstrapskillsintothecurriculumandtheteachingstylethatfuturestudentscanexpectatahrefhttpswwwironhackcomenrelfollowtarget_blankironhackmiamiastrongph3strongqampastrongh3pstronghowdidyoubecomeasuccessfuluxdesignerdidyougetadegreeinuxdesignstrongppimacareerchangermybackgroundwasfirstinfilmandcreativewritingandiworkedinthefilmindustryinmiamibeforeiendedupinbostontempingasaprojectmanagerforaventurecapitalcompanywithanincubatorfocusedonharvardandmitstartupsilearnedfromreallysmartpeopleaboutcomputerssoftwaregraphicdesignandprojectmanagementandibmhadtheirlotusnotesusabilitylabsnextdoorsoigottoparticipateasausabilitytesteriwentbacktogradschoolatbentleyuniversityformymastersinhumanfactorsininformationdesignandhadamagicalcareerdoingethnographyanduserresearchatmicrosoftstaplesadidasandreebokanduxdesignforfidelityinvestmentsstaplesthefederalreservejpmorganchasehamprblocknovartispharmaceuticalsandzumbafitnesspptwoyearsagoimovedbacktomiamiandstartedmyownproductahrefhttpuxgofercomwhatisgoferrelfollowtarget_blankuxgoferawhichisauxresearchtoolppstrongafterspendingyearslearninguserexperienceandevengettingamastersdegreewhydoyoubelieveinthebootcampmodelasaneffectivewaytolearnuxdesignstrongppiwentthroughmygradprogramveryquicklyinoneyearsoibelievethatyoucanlearnthismaterialveryquicklyandthencontinuelearningonthejobthatsexactlywhyivehadasuccessfulcareerbyspecificallygoingafterdifferentverticalstechnologiesandplatformsifihadntusedsomethingbeforeiwantedtotryitibelievethatyoucanlearnthefundamentalsquicklyandthenrefinethemthroughoutyourcareerppstrongwhatmadeyouexcitedtoworkatironhackinparticularwhatstandsoutaboutironhacktoyouasaprofessionaluxdesignerstrongppitwasthepeopleiwasreferredtoironhackbysomeoneiverespectedintheindustryforyearsandtheywererightthepeoplerunningironhackarewhatconvincedmetoworkonthisuxbootcampppstrongdidyouhaveteachingexperiencepriortoteachingatthebootcampwhatisdifferentaboutteachingatacodingbootcampstrongppiteachnowattheuniversityofmiamiatconferencesandbootcampsatironhackmypersonalteachingstyleistolectureverylittleandfocusonhandsonworkitsimportanttoknowthefoundationsandprinciplesandsciencebehindwhatwedobutattheendofthedayyouhavetodeliversowespendthemajorityofourdaysdoingactivitieswhichmeansrunningsurveysdoinginterviewsrunningusabilitytestsdesigningproductsithinkitssoimportantforstudentstocreatetheirportfoliopiecesthroughoutthebootcampinsteadofjusthavingoneportfolioprojectattheendofthecourseforsomeonebreakingintotheuxcommunitytheportfolioishowstudentsdemonstratetheirknowledgeandhowtheyapproachprojectsppimgaltironhackmiamiclassroomstudentssrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files2489s1200ironhack20classroomjpgppstrongthisisironhacksfirstforayintouxuidesigncoursestellusaboutthecurriculumstrongppmarcelopaivaandicreatedtheironhackcurriculumbasedonwhatwewouldhavewantedtolearninabootcampifweweretojustgetstartedinthisfieldwefollowtheuserandproductdevelopmentlifecyclestomakesurethatourstudentshavealltheskillstheyneedtobeusefulrightnowinthecurrentmarketplaceppwestartwithstronguserresearchstronghowtotalktoyourtargetmarketthemethodologybehindthatresearchwhattodowiththatdatadeliverablesandturningthatdataintoconceptdesignppwemoveintostronginformationarchitectureandinteractiondesignstrongwithlowfidelityallthewayintohighfidelityandmicrointeractionmodelsweuseinvisionsketchandprincipalasthetoolsforthatpieceofthecurriculumthenwemoveintostrongvisualstrongstrongdesignstrongformobileandwebbecausetheyaretwodifferentbeastsppthenwemoveintostrongfrontenddevelopmentstrongwherestudentslearnhowtoimplementthedesignstheyrecreatingthisiswhattheindustryislookingforrightnowtheunicornsthatcandothehtmlandbootstraptoimplementtheirowndesignsthatwillmakeironhackstudentsreallyeffectiveandmarketableppfinallywemoveintostrongindividualprojectsstrongironhackstudentsarebuildingportfoliopiecesfromdayonebuttowardstheendofthecoursetheyworkonmorespecificprojectsandbreakoutsforadditionaltopicsthatwehaventcoveredyetppimsosuperexcitedaboutthisbootcampandithinkitsreallyvaluableppstrongisthepushfordesignerstolearntocodethebiggesttrendstrongstronginstrongstrongtheuxuifieldrightnowstrongppitdependsonwhereourgraduateschoosetoworkaspartofasmallerteamauxdesignerwillhavetobemoreofageneralistandneedtodoresearchdesignanddevelopmentiftheyreworkingforalargerorganizationtheycanspecializeinaparticularfieldwithinuxlikeethnographyormobiledesignordesignthinkingasawholeithinkcareersintheuxcommunityarebecomingbothbroaderandmorespecializedtheuxcommunityisbothcomingtogetherandbreakingintonichesppstronghowmanyinstructorsstrongstrongtasstrongstrongandormentorsdoyouhaveisthereanidealstudentteacherratiostrongppthestudentteacherratiofortheuxuicourseis101manyoftherequiredactivitiesaretackledingroupsamongthestudentsingroupsof3or4astheprincipalinstructorileadandteachthemainflowofthecourseandwehavesubjectmatterexpertsandmentorscomeintoteachsectionsofthecurriculumthataremorespecializedegdesignthinkingfrontenddevelopmentetcppstrongcanyoutellusalittlebitabouttheidealstudentforironhacksuxuidesignbootcampwhatsyourclasslikerightnowandhowdotheuxstudentsdifferfromthecodingbootcampstudentsstrongpptheidealstudentfortheuxuidesignbootcampissomeonewhopossessesstrongcommunicationskillscanuseempathytojumpintootherpeoplesshoesandhasapassionforuserexperiencethecurrentclassisawonderfulmixofmanyprofessionalbackgroundsforexamplesomeprofilesincludeaformermarketingmanagerforsonymusicaresearchdirectorfromthenonprofitspaceandanmbagradlookingtousetheirpreviousbusinessprocessskillstocrackintotheuxsectorppimgaltironhackstudentsgroupoutsideironhacklogomiamisrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files2488s1200ux20group20picjpgppstrongthisisafulltimebootcampbuthowmanyhoursaweekdoyouexpectyourstudentstocommittoironhackmiamistrongppinadditiontothedailyscheduleof9amto6pmweexpectstudentstospendapproximately20hoursoutsideofclasstimetoworkonassignmentsandprojectssoabout65hoursweekppstronginauxbootcampisthestylelargelyprojectbasedcanyougiveusanexamplestrongppyesstudentswillworkon2projectsduringthefirst6weeksoneindividualprojectandonegroupprojecttheseprojectsareasumoftheindividualunitswecoveronaweekbyweekbasisthecapstoneofthecourseisa2weekfinalprojectthateachstudentcompletesindividuallyastheygothroughtheentireuserandproductdevelopmentlifecyclestheresultattheendofthecourseisthateachstudenthas3prototypesthattheycanuseasportfoliopiecesmovingforwardppstrongwhatsthegoalforastudentthatgraduatesfromironhackintermsofcareerandabilityforexamplewilltheybepreparedforajunioruxuiroleaseniorrolestrongppthegoalofthiscourseistoprovidestudentstheskillstocarryoutauxuidesignprocessfrombeginningtoendinmultiplecircumstanceswithvaryinggoalsasaresultstudentswillbepreparedforjuniorandentrylevelrolesinuxuifieldsdependingonwhichpartofthatprocessmostintereststhemppstrongforourreaderswhoarebeginnerswhatresourcesormeetupsdoyourecommendforaspiringbootcampersinmiamistrongppweholdopenhousesandfreeintroductoryworkshopstocodinganddesignmonthlywhichcanbefoundontheahrefhttpwwwmeetupcomlearntocodeinmiamirelfollowtarget_blankironhackmeetuppageaourfriendsatahrefhttpswwwmeetupcomixdamiamirelfollowtarget_blankixdaaalsooffersomecoolworkshopsonmeetupppwealsoreallylovethefreeahrefhttpshackdesignorgrelfollowtarget_blankhackdesignacoursewhichisafantasticresourceforsomeonewhowantstodelvemoreintothisworldppstrongisthereanythingelsethatyouwanttomakesureourreadersknowaboutironhacksnewuxuidesignbootcampstrongppifyouhaveanymorequestionsaboutthecoursecodingorironhackingeneralpleaseemailusatadmissionsmiaironhackcomwedbehappytohelpyoufigureoutwhatnextstepsmightworkbestforyourprofileandindividualgoalsppstrongtolearnmorecheckoutahrefhttpswwwcoursereportcomschoolsironhackrelfollowironhackreviewsaoncoursereportorvisittheahrefhttpswwwironhackcomenuxuidesignbootcamplearnuxdesignrelfollowtarget_blankironhackuxuidesignbootcampawebsiteformorestrongpdivclassauthorbiobootstraph4abouttheauthorh4imgclassimgroundedpullleftsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files1527s300lizpicjpgalthttpscourse_report_productions3amazonawscomrichrich_filesrich_files1527s300lizpicjpglogopplizisthenbspcofounderofnbspahrefhttpwebinarscoursereportcomcsdegreevscodingbootcampclknhttpcoursereportcomrelnofollowcoursereportathemostcompletenbspresourceforstudentsconsideringacodingbootcampshelovesbreakfasttacosandspendingtimegettingtoknowbootcampalumniandfoundersallovertheworldcheckoutlizampcoursereportonahrefhttptwittercomcoursereportrelnofollowtwitteraahrefhttpswwwquoracomprofilelizegglestonrelnofollowquoraaandahrefhttpswwwyoutubecomchannelucb9w1ftkcrikx3w7c8elegvideosrelnofollowyoutubeanbspppdivliliclasspostdatadeeplinkpathnewslearntocodein2016atasummercodingbootcampdatadeeplinktargetpost_582idpost_582h2ahrefbloglearntocodein2016atasummercodingbootcamplearntocodein2016atasummercodingbootcampah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan7242016spanppclassrelatedschoolsaclassbtnbtninversehrefschoolslogitacademylogitacademyaaclassbtnbtninversehrefschoolslevellevelaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsmetismetisaaclassbtnbtninversehrefschoolsnycdatascienceacademynycdatascienceacademyaaclassbtnbtninversehrefschoolsnewyorkcodedesignacademynewyorkcodedesignacademyaaclassbtnbtninversehrefschoolsmakeschoolmakeschoolaaclassbtnbtninversehrefschoolswyncodewyncodeaaclassbtnbtninversehrefschoolstechtalentsouthtechtalentsouthaaclassbtnbtninversehrefschoolsfullstackacademyfullstackacademyaaclassbtnbtninversehrefschoolscodefellowscodefellowsappstrongahrefhttpswwwcoursereportcombloglearnatthese9summercodingprogramsrelfollowseeourmostrecentrecommendationsforsummercodingastrongstrongahrefhttpswwwcoursereportcombloglearnatthese9summercodingprogramsrelfollowbootcampsastrongstrongahrefhttpswwwcoursereportcombloglearnatthese9summercodingprogramsrelfollowhereastrongppstrongifyoureacollegestudentanincomingfreshmanorateacherwithasummerbreakyouhavetonsofsummercodingbootcampoptionsaswellasseveralcodeschoolsthatcontinuetheirnormalofferingsinthesummermonthsstrongpahrefbloglearntocodein2016atasummercodingbootcampcontinuereadingrarraliliclasspostdatadeeplinkpathnews5techcitiesyoushouldconsiderforyourcodingbootcampdatadeeplinktargetpost_542idpost_542h2ahrefblog5techcitiesyoushouldconsiderforyourcodingbootcamp5techcitiesyoushouldconsiderforyourcodingbootcampah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan2182016spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolstechelevatortechelevatoraaclassbtnbtninversehrefschoolswyncodewyncodeaaclassbtnbtninversehrefschoolszipcodewilmingtonzipcodewilmingtonappstrongwevepickedfivecitieswhichareupandcominginthetechsceneandhaveagreatrangeofcodingbootcampoptionswhenyouthinkofcodingbootcampsyoumightfirstthinkofcitieslikeahrefhttpswwwcoursereportcomcitiessanfranciscorelfollowsanfranciscoaahrefhttpswwwcoursereportcomcitiesnewyorkcityrelfollownewyorkaahrefhttpswwwcoursereportcomcitieschicagorelfollowchicagoaahrefhttpswwwcoursereportcomcitiesseattlerelfollowseattleaandahrefhttpswwwcoursereportcomcitiesaustinrelfollowaustinabutthosearentyouronlyoptionstherearenowbootcampsinalmost100citiesacrosstheusstrongbrpppahrefblog5techcitiesyoushouldconsiderforyourcodingbootcampcontinuereadingrarraliliclasspostdatadeeplinkpathnewscodingbootcampcostcomparisonfullstackimmersivesdatadeeplinktargetpost_537idpost_537h2ahrefblogcodingbootcampcostcomparisonfullstackimmersivescodingbootcampcostcomparisonfullstackimmersivesah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan10172018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolscodesmithcodesmithaaclassbtnbtninversehrefschoolsvschoolvschoolaaclassbtnbtninversehrefschoolsdevmountaindevmountainaaclassbtnbtninversehrefschoolsgrandcircusgrandcircusaaclassbtnbtninversehrefschoolsredwoodcodeacademyredwoodcodeacademyaaclassbtnbtninversehrefschoolsgracehopperprogramgracehopperprogramaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolsclaimacademyclaimacademyaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolslaunchacademylaunchacademyaaclassbtnbtninversehrefschoolsrefactorurefactoruaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolssoftwareguildsoftwareguildaaclassbtnbtninversehrefschoolsappacademyappacademyaaclassbtnbtninversehrefschoolshackreactorhackreactoraaclassbtnbtninversehrefschoolsrithmschoolrithmschoolaaclassbtnbtninversehrefschoolscodingdojocodingdojoaaclassbtnbtninversehrefschoolsdevpointlabsdevpointlabsaaclassbtnbtninversehrefschoolsmakersquaremakersquareaaclassbtnbtninversehrefschoolsdigitalcraftsdigitalcraftsaaclassbtnbtninversehrefschoolsnewyorkcodedesignacademynewyorkcodedesignacademyaaclassbtnbtninversehrefschoolslearnacademylearnacademyaaclassbtnbtninversehrefschoolsbottegabottegaaaclassbtnbtninversehrefschoolswyncodewyncodeaaclassbtnbtninversehrefschoolshackbrightacademyhackbrightacademyaaclassbtnbtninversehrefschoolscodecraftschoolcodecraftschoolaaclassbtnbtninversehrefschoolsfullstackacademyfullstackacademyaaclassbtnbtninversehrefschoolscodefellowscodefellowsaaclassbtnbtninversehrefschoolsturingturingaaclassbtnbtninversehrefschoolscodingtemplecodingtempleappstronghowmuchdocodingbootcampscostfromstudentslookingforahrefhttpswwwcoursereportcomblogbestfreebootcampoptionsrelfollowfreecodingastrongahrefhttpswwwcoursereportcomblogbestfreebootcampoptionsrelfollowstrongbootcampsstrongastrongtothosewonderingifan18000strongstrongbootcampstrongstrongisworthitweunderstandthatcostisimportanttofuturestrongstrongbootcampersstrongstrongwhileahrefhttpswwwcoursereportcomreports2018codingbootcampmarketsizeresearchrelfollowtarget_blanktheaveragefulltimeprogrammingaahrefhttpswwwcoursereportcomreports2018codingbootcampmarketsizeresearchrelfollowtarget_blankbootcampaahrefhttpswwwcoursereportcomreports2018codingbootcampmarketsizeresearchrelfollowtarget_blankintheuscosts11906astrongstrongahrefhttpswwwcoursereportcomreports2018codingbootcampmarketsizeresearchrelfollowtarget_blankastrongstrongbootcampstrongstrongtuitioncanrangefrom9000to21000andsomecodingbootcampshavedeferredtuitionsohowdoyoudecideahrefhttpswwwcoursereportcomresourcescalculatecodingbootcamproirelfollowwhattobudgetforaherewebreakdownthecostsofcodingstrongstrongbootcampsfromaroundtheusastrongstrongstrongppthisisacostcomparisonoffullstackfrontendandbackendinpersononsiteimmersivebootcampsthatarenineweeksorlongerandmanyofthemalsoincludeextraremotepreworkstudywehavechosencourseswhichwethinkarecomparableincoursecontenttheyallteachhtmlcssandjavascriptplusbackendlanguagesorframeworkssuchasrubyonrailspythonangularandnodejsallschoolslistedherehaveatleastonecampusintheusatofindoutmoreabouteachbootcamporreadreviewsclickonthelinksbelowtoseetheirdetailedcoursereportpagespahrefblogcodingbootcampcostcomparisonfullstackimmersivescontinuereadingrarraliliclasspostdatadeeplinkpathnewscodingbootcampinterviewquestionsironhackdatadeeplinktargetpost_436idpost_436h2ahrefschoolsironhacknewscodingbootcampinterviewquestionsironhackcrackingthecodeschoolinterviewironhackmiamiah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan922015spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltcrackingthecodinginterviewwithironhacksrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files884s1200codingbootcampinterviewironhackpngppstrongironhackisanimmersiveiosandwebdevelopmentbootcampthatstartedinspainandhasnowexpandedtomiamiwithahiringnetworkandahrefhttpswwwcoursereportcomschoolsironhacknewsstudentspotlightmartafondaironhackrelfollowhappyalumniaironhackisagreatfloridabootcampoptionbutwhatexactlydoesittaketogetintoironhackwecaughtupwiththeironhackteamtolearneverythingemyouemneedtoknowabouttheironhackapplicationandinterviewprocessincludinghowlongitwilltaketheircurrentacceptancerateandasneakpeekatthequestionsyoullhearintheinterviewstrongph3strongtheapplicationstrongh3pstronghowlongdoestheironhackapplicationtypicallytakestrongpptheironhackapplicationprocessfallsinto3stagesthewrittenapplicationfirstinterviewandsecondtechnicalinterviewandtakesonaverage1015daystocompleteinentiretyppstrongwhatgoesintothewrittenapplicationdoesironhackrequireavideosubmissionstrongppthewrittenapplicationisachanceforstudentstogiveaquicksummaryoftheirbackgroundandmotivationsforwantingtoattenditstheiropportunitytotellusaboutthemselvesinanutshellandpeaktheadmissioncommitteesinterestppstrongwhattypesofbackgroundshavesuccessfulironhackstudentshaddoeseveryonecomefromatechnicalbackgroundstrongppweareimpressedandinspiredbythediversityofstudentsthatironhackattractswevehadformerflightattendantsworldtravellingyoginisandcsgradsfromivyleaguesallattendironhackwevebeenamazedathowcodingissodemocraticandattractsallsortsofpeopleregardlessofeducationalbackgroundorpedigreethosewhotendtoperformthebestatironhackarethosewhohavecommittedtodoingsonotnecessarilythosewithatechnicalbackgroundppimgaltironhackstudenttypingsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files893s1200ironhackpre132jpgph3strongtheinterviewstrongh3pstrongcanyougiveusasamplequestionfromthefirstinterviewstrongppwhatmotivatesyouonadaytodaybasisandwhatdoyoulovetodoppstrongcanyougiveusasamplequestionfromthetechnicalinterviewstrongppwhathappenswhenyouputafunctioninsidealoopppstrongwhatareafewresourcesthatyousuggestapplicantsusetoreallyacethetechnicalinterviewstrongppwhenanapplicantisinthemidstofourprocessweactuallysendthemmaterialsspecificallytoprepareforthetechnicalinterviewandsetofficehourswithourteachingassistantssotheycangetsomeoneononetimetoaddressspecificquestionsapartfromthatiftheyalreadyhavesomeexperienceprogrammingahrefhttpsautotelicumgithubiosmoothcoffeescriptliteratejsintrohtmlrelfollowtarget_blankhttpsautotelicumgithubiosmoothcoffeescriptliteratejsintrohtmlawerecommendthisresourceforcompletebeginnersjavascriptforcatsahrefhttpjsforcatscomrelfollowtarget_blankhttpjsforcatscomappstronghowdoyouevaluateanapplicantsfuturepotentialwhatqualitiesareyoulookingforstrongppironhacksapplicationprocessrevealsalotofqualitiesinpotentialcandidatesbecauseitisabitlongerthanmostcodingschoolstheadvantageofthisisitallowsustoseehowcandidatesandapplicantsrespondtolearningmaterialinashortamountoftimeandhowdedicatedtheyaretotheirgoalsiftheycantevencompletetheinterviewprocessitsanindicatorthattheymightnothavethepassionordrivetogetthrough8weeksofacodingbootcampwelookforcuriositypassionanddrivedriveisprobablythemostimportantqualitytosucceedatironhackppimgaltstudentsdoingyogairohacksrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files892s1200ironhackpre090jpgppstrongisthereatechnicalcodingchallengeintheironhackapplicationstrongppyesppstronghowlongshouldittakeisthereatimelimitstrongppwegiveourstudentsexactly7daystoprepareforthetechnicalinterviewafterthe1stinterviewandprovidethematerialstheyneedtoprepforitthetechnicalinterviewisledbyoneofourmiamiinstructorsandconsistsofacodingchallengethattheapplicanthas30minutestosolveppstrongcananapplicantcompletethecodingchallengeinanyprogramminglanguagestrongpptheapplicantcancompletethechallengeinwhateverprogramminglanguagetheyfeelmostcomfortableinaslongasthatlanguagecansolveabreadthofproblemsthatmeansthatsomethinglikecssisoutph3stronggettingacceptedstrongh3pstrongwhatisthecurrentacceptancerateatironhackstrongppasofnowourcurrentacceptancerateis20235tobeexactppstrongarestudentsacceptedonarollingbasisstrongppyesspotsfillupquicklysothesoonertheapplicantgetsstartedthebetterppstrongdoesironhackmiamihavealotofinternationalstudentssinceyourrootsareinspaindointernationalstudentsgetstudentvisastouristvisastodotheprogramstrongppyeswehavemorethan25countriesrepresentedinourbootcampsgloballyegthailandpakistangermanyfrancebraziletcthemajorityofourstudentswhotraveltomiamifromabroaduseatouristvisatovisittheusandattendourprogramwelovethemeltingpotofmiamicombinedwithironhacksreputationgloballyitsreallyafunplacetolearnandstudyppimgaltstudentsatroundtablecodingsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files894s1200ironhackpre249jpgppstrongwanttolearnmoreaboutironhackcheckoutahrefhttpwwwironhackcomrelfollowtarget_blanktheirwebsiteastrongppstronghavequestionsabouttheironhackapplicationthatwerentansweredinthisarticleletusknowinthecommentsstrongpliliclasspostdatadeeplinkpathnews9bestcodingbootcampsinthesouthdatadeeplinktargetpost_335idpost_335h2ahrefblog9bestcodingbootcampsinthesouth14bestcodingbootcampsinthesouthah2pclassdetailsspanclassauthorspanclassiconuserspanharryhantelspanspanclassdatespanclassiconcalendarspan462015spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsdevmountaindevmountainaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolsnashvillesoftwareschoolnashvillesoftwareschoolaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsaustincodingacademyaustincodingacademyaaclassbtnbtninversehrefschoolscodeupcodeupaaclassbtnbtninversehrefschoolscodecampcharlestoncodecampcharlestonaaclassbtnbtninversehrefschoolscodingdojocodingdojoaaclassbtnbtninversehrefschoolsmakersquaremakersquareaaclassbtnbtninversehrefschoolscoderfoundrycoderfoundryaaclassbtnbtninversehrefschoolswyncodewyncodeaaclassbtnbtninversehrefschoolstechtalentsouthtechtalentsouthaaclassbtnbtninversehrefschoolscodercampscodercampsappemupdatedapril2018emppstrongslideacrosstheroofofthegeneralleewereheadingsouthofthemasondixontocheckoutthebestcodingbootcampsinthesouthernunitedstatestherearesomefantasticcodeschoolsfromthecarolinastogeorgiaandallthewaytotexasandwerecoveringthemalltalkaboutsouthernhospitalitystrongpahrefblog9bestcodingbootcampsinthesouthcontinuereadingrarraliliclasspostdatadeeplinkpathnewsstudentspotlightgorkamaganaironhackdatadeeplinktargetpost_191idpost_191h2ahrefschoolsironhacknewsstudentspotlightgorkamaganaironhackstudentspotlightgorkamaganaironhackah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan1012014spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltgorkaironhackstudentspotlightsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files343s1200gorka20ironhack20student20spotlightpngppstronginthisstudentspotlightwetalktoahrefhttpcoursereportcomschoolsironhackrelfollowtarget_blankironhackagraduategorkamaganaabouthisexperienceatthebootcampbasedinspainreadontolearnabouthisapplicationprocesstheprojecthecreatedduringthecourseandhowironhackhelpedhimnailajobasaniosdeveloperatrushmorefmstrongppppstrongwhatwereyoudoingbeforeyoustartedatironhackstrongppiwasafreelancerforayearfocusedonwebfrontenddevelopmentiworkedatanagencybeforealsoforayearintermsofeducationididntstudyanythingrelatedtocomputersciencebeforeironhackppppstrongdidyouhaveatechnicalbackgroundbeforeyouappliedstrongppivebeendevelopingsinceiwas14andallthatiknowisselftaughtandnotinanyconcreteplatformbuthavingprojectsofmyownwheretheneedoflearningmoreeverytimedrovemetogetthemdoneppppstrongwhydidyouchooseironhackdidyouapplytoanyotherbootcampsstrongppichoseironhackbasicallybecauseittookverygoodadvantageofgoogleadwordssoicouldnotavoidreachingitswebsiteandgettinginterestedonittheyofferedmeameritscholarshipsoifinallymadethedecisionihaveneverappliedtoanythinglikeironhackppppstrongwhatwastheapplicationprocesslikestrongpptheapplicationprocesswasgoodtheinterviewsweremoreofculturefitandtheywerenotmuchseparatedintimewitheachothersoittooklessthanamonthtohaveitallapprovedppppstrongwhatwasyourcohortlikedidyoufinddiversityinagegenderetcstrongppitwasquitegoodformetherewascleardiversityinagebutnotingenderatallaswewerejustmenaboutthelevelitwasnotasfairisitshouldvebeenbutingeneraltheclasswasabletofollowthecoursesprocessppppstrongwhowereyourinstructorswhatwastheteachingstylelikeandhowdiditworkwithyourlearningstylestrongppthereweremanyinstructorssotryingtogivefeedbackaboutallofthemwouldbeendlesstheteachingstylewasagileaskingforfeedbackcontinuouslyandadaptingthecoursetoitsoitmadetheexperiencereallyenrichingiveneverhadateachingstylelikethisbeforeanditreallyfitwithmeppppstrongdidyoueverexperienceburnouthowdidyoupushthroughitstrongppididnotreallyexperienceburnoutbuttherewasaweekwhenwelearnedaboutusingcoredatathatigotreallytiredbecauseitwasboringtomeitwastheuglysideofiosdevelopmentbuttheprofessorwassogoodthatigotitallandlearnedalotthose5daysppppstrongcanyoutellusaboutatimewhenyouwerechallengedintheclasshowdidyousucceedstrongbrformethechallengewasnotinaconcretesituationbutinfollowingthecoursesspeeditwasthefirsttimeformetoneedtolearnsofastandsomuchppppstrongtellusaboutaprojectyoureproudofthatyoumadeduringironhackstrongppimcurrentlyworkingonanappwhichistheoneistartedatironhackasthefinalprojectbutididnthavetimeenoughtofinishitsoimstilldevelopingitincollaborationwithmypartnerwhoisagraphicdesignerandtheonewhodesignedtheappiwillprovidelinksassoonasitisreleaseditiscalledsnapreminderstaytunedppppstrongwhatareyouuptotodaywhereareyouworkingandwhatdoesyourjobentailstrongppimworkingatrushmorefmasaleadiosdeveloperbuildingthenewapplicationwellbereleasingsoonimcurrentlytheonlyiosdeveloperbutillleadtheteamwhenitgrowsigotthisjobbecausetheycontactedmedirectlyppppstrongdidyoufeellikeironhackpreparedyoutogetajobintherealworldstrongppittotallypreparedmeforarealworldjobitwasworththemoneyformeidontregretatallppppstronghaveyoucontinuedyoureducationafteryougraduatedstrongppnotformallybutikeeplearningeverydayandtryingtoenrichmyselfppppstrongwanttolearnmoreaboutironhackcheckouttheirahrefhttpswwwcoursereportcomschoolsironhackrelfollowschoolpageaoncoursereportortheirahrefhttpwwwironhackcomenrelfollowtarget_blankwebsitehereastrongpliliclasspostdatadeeplinkpathnewsexclusivecoursereportbootcampscholarshipsdatadeeplinktargetpost_148idpost_148h2ahrefblogexclusivecoursereportbootcampscholarshipsexclusivecoursereportbootcampscholarshipsah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan222018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsmakersacademymakersacademyaaclassbtnbtninversehrefschoolsdevmountaindevmountainaaclassbtnbtninversehrefschoolsrutgersbootcampsrutgersbootcampsaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolsstarterleaguestarterleagueaaclassbtnbtninversehrefschoolsblocblocaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsmetismetisaaclassbtnbtninversehrefschoolsdigitalprofessionalinstitutedigitalprofessionalinstituteaaclassbtnbtninversehrefschools10xorgil10xorgilaaclassbtnbtninversehrefschoolsvikingcodeschoolvikingcodeschoolaaclassbtnbtninversehrefschoolsvikingcodeschoolvikingcodeschoolaaclassbtnbtninversehrefschoolsguildofsoftwarearchitectsguildofsoftwarearchitectsaaclassbtnbtninversehrefschoolsdevpointlabsdevpointlabsaaclassbtnbtninversehrefschoolsthinkfulthinkfulaaclassbtnbtninversehrefschoolslearningfuzelearningfuzeaaclassbtnbtninversehrefschoolsdigitalcraftsdigitalcraftsaaclassbtnbtninversehrefschoolsnycdatascienceacademynycdatascienceacademyaaclassbtnbtninversehrefschoolsnewyorkcodedesignacademynewyorkcodedesignacademyaaclassbtnbtninversehrefschoolsorigincodeacademyorigincodeacademyaaclassbtnbtninversehrefschoolsbyteacademybyteacademyaaclassbtnbtninversehrefschoolsdevleaguedevleagueaaclassbtnbtninversehrefschoolssabiosabioaaclassbtnbtninversehrefschoolscodefellowscodefellowsaaclassbtnbtninversehrefschoolsturntotechturntotechaaclassbtnbtninversehrefschoolsdevcodecampdevcodecampaaclassbtnbtninversehrefschoolslighthouselabslighthouselabsaaclassbtnbtninversehrefschoolscodingtemplecodingtempleappstronglookingforcodingbootcampexclusivescholarshipsdiscountsandpromocodescoursereporthasexclusivediscountstothetopprogrammingbootcampsstrongppstrongquestionsemailahrefmailtoscholarshipscoursereportcomrelfollowtarget_blankscholarshipscoursereportcomastrongpahrefblogexclusivecoursereportbootcampscholarshipscontinuereadingrarraliliclasspostdatadeeplinkpathnewsstudentspotlightjaimemunozironhackdatadeeplinktargetpost_129idpost_129h2ahrefschoolsironhacknewsstudentspotlightjaimemunozironhackstudentspotlightjaimemunozironhackah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan7182014spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltjaimeironhackstudentspotlightsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files248s1200jaime20ironhack20student20spotlightpngppstrongafterworkingatanitcompanymanagingprogrammersjaimemunozdecidedthathewantedtolearncodingskillssoheenrolledinahrefhttpcoursereportcomschoolsironhackrelfollowtarget_blankironhackaacodingbootcampinmadridwithlocationsinmiamiandbarcelonajaimetellsuswhyhechoseironhackthetechnicalemandemsoftskillshelearnedinhiscourseandthementorswhohavehelpedhimalongthewaystrongppppstrongwhatwereyouuptobeforedecidingtoenrollinironhackdidyouhaveatechnicalbackgroundbeforeapplyingstrongppbeforebeingaprogrammeriwasprojectmanagerinabigitcompanyihiredprogrammersandmanagedtheirworkaftersometimeibegantobemoreandmoreinterestedintheworkthoseprogrammersweredoingsomuchthatidecidedtoquitmyjobandlearntocodeididamastersdegreeof400hoursinciceaitschoolinmadridwiththegreatlucktohaveanamazingteachercalledahrefhttptwittercomdevtasrelfollowtarget_blankdevtasinghailearnedmuchmorethanjustcodingfromhimheshowedmehowtofacetheproblemfindthebettersolutionandhowtosucceedonititwasapersonalrevelationandsincethismomentiknewthatiwantedtobeaprogrammerppafterthedegreeistartedtoworkinadigitaladvertisingcompanycalledthefactweworkedfortraditionalofflineadvertisingcompaniestheyneededdigitaldevelopmentforhisclientsiimprovedmyphpandjavascriptskillsthereduringalmost2yearsbutihadthefeelingiwasntimprovingfasterenoughitriedtolookforsomethingnewtostimulatemyselfandbegantoteachcodinginaitacademyfrommadridcalledtrazosbutineededachangetokeeppushingmyskillsthatswhyiturnedtoironhackppppstrongwasironhacktheonlybootcampyouappliedtowhataboutironhackconvincedyoutogotherethelanguagestheytaughtinstructorspriceetcstrongppironhackwasmyfirstandlastchoicehonestlyididntknewmanybootcampsbutthemainreasonweretheinstructorsandthegreatprofessionalstheytalkedverygoodaboutthecoursemanyofthecodersiadmirelikeahrefhttpstwittercomkeyvanakbaryrelfollowtarget_blankkeyvanakbaryaorahrefhttptwittercomcarlosblerelfollowtarget_blankcarlosblawereinvolvedandinterestedonthebootcampthiswasenoughtomakethechoiceppppstrongcanyoutalkaboutatimewhenyougotstuckintheclassandhowyoupushedthroughstrongppfortunatelyididnotgotstuckalotinclassbutwhenididnotunderstoodsomethingiaskedformoreexplanationsandireceiveditimmediatelyandsolvedtheproblemppppstrongwhatwereyourclassmatesandinstructorslikestrongpptheywereallamazingiguessiwasveryveryveryluckyonthatpointbecauseallmyclassmateswereamazingnotonlybecausetheywerefriendlytheyreallywerebutbecausetheywereskilledandinterestedtopushlikeiwasbritsamazingwhenyousharesuchexperiencewithpeopletheythinkandlikethesamethinkslikeyoubecauseitpushedthelevelveryhighbrtheinstructorswerealsogreatveryfriendlyandopentodiscussortrywhateverweaskedforithinktheycantimaginehowthankfuliambutnotonlywiththeteachersorstudentsalsowithironhacksstafftheydideverythingpossibletomakeusreceivewhatweneededppppstrongtellusaboutyourfinalprojectwhatdoesitdowhattechnologiesdidyouusehowlongdidittakeetcstrongppformyfinalprojectiusedrubyonrailspostgresqlhtmlcssandjavascripttodevelopaonlinemedicalappointmentsapplicationittookaweektohavesomethingworkingandabletobeshowninthedemodayppppstrongwhatareyouworkingonnowdoyouhaveajobasadeveloperwhatdoesitentailstrongppimworkingnowinmarketgoocomawebsitemarketingandseoonlinedoityourselftoolasfullstackdeveloperiusephpmysqlhtml5lessphinxphpactiverecordjavascriptandothertechnologieseverydaybutthekeyisthatimnotonlyadeveloperthereimalsoinvolvedintheproductmanagementcollaboratingeverydayindecisionsabouttheproducthislookandfeelhisbehaviorandthebusinessitselfppppstrongwouldyouhavebeenabletolearnwhatyounowknowwithoutironhackstrongppmaybeicouldbeabletolearnthetechnicalpartbutthereisnowaytolearnitin2monthswithoutabootcampitsjusttoomuchinformationtohandleitalonebesidesthereismuchmorethanthetechnicalknowledgethatyoureceiveinironhackyoualsogetalotofcontactsfriendsexperienceknowhowandthemostimportantthingaperspectiveofwhatyoudontknowyetppppstrongwanttolearnmoreaboutironhackcheckouttheirahrefhttpswwwcoursereportcomschoolsironhackrelfollowschoolpageaoncoursereportorahrefhttpwwwironhackcomenrelfollowtarget_blanktheirwebsitehereawanttocatchupwithjaimereadahrefhttpjaimemmpcomrelfollowtarget_blankhisblogaorfollowhimonahrefhttptwittercomjaime_mmpe2808brelfollowtarget_blanktwitterastrongbrpliliclasspostdatadeeplinkpathnewsstudentspotlightmartafondaironhackdatadeeplinktargetpost_127idpost_127h2ahrefschoolsironhacknewsstudentspotlightmartafondaironhackstudentspotlightmartafondaironhackah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan7162014spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltmartaironhackstudentspotlightsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files244s1200marta20ironhack20student20spotlightpngppstrongmartafondaneededtoimproveherwebdevelopmentskillsinordertocompeteforjobsatherdreamcompaniessosheenrolledinahrefhttpcoursereportcomschoolsironhackrelfollowtarget_blankironhackaan8weekintensiveprogrammingcoursefordevelopersandentrepreneurswetalktomartaabouthowshesucceededintheclassandgotajobasafrontendengineeratfloqqcomstrongppstrongwhatwereyouuptobeforedecidingtoenrollinironhackdidyouhaveatechnicalbackgroundbeforeapplyingstrongppwhenidecidedtoenrollinironhackihadjustfinishedmydegreesinsoftwareengineeringandbusinessadministrationwhenifinishedmystudiesirealizedthatmybackgroundinmobileandwebdevelopmentwasnotenoughsoiwaslookingforanopportunityinacompanythatwouldbetonmebrimaverymotivatedpersonandinfactiinterviewedwithcompanieslikegoogleandibmbutididnothaveenoughexperienceitwasaroundthattimethatifoundironhackbootcampandidecidedtotryitppihadtechnicalbackgroundasasoftwareengineerbutmostofmyexperienceprogrammingwasbasedonlanguagessuchcjavaorsqlineededtoimprovemyskillsinordertobecomeabetterdeveloperppppstrongwasironhacktheonlybootcampyouappliedtowhataboutironhackconvincedyoutogotherestrongppthiswastheonlybootcampiappliedtoandthemainreasonwasthattheywerelookingforpeoplelikememotivatedpeoplewhohadthedrivetobecomeagreatprofessionalandwereonlylackingtheopportunitytoshowtheirpotentialtheytrainpeopleinmodernlanguageslikerubybrthiswasnotonlyanawesomeopportunitytolearnrailsbutalsotobeinanenvironmentthatisdifficulttofindinotherplacesiwaslearningfromtheverybestprofessionalsandfromanincrediblytalentedgroupofstudentsppppstrongcanyoutalkaboutatimewhenyougotstuckintheclassandhowyoupushedthroughstrongppironhackisanintensivebootcampyoumustbesurethatyouareabletopushthroughanyproblemyouhaveandmyclassmateswereanimportantpointtoleanonononeofmyveryfirstdaysatironhackiwashavingtroubleunderstandingoneoftheconceptsthatwewerecoveringanditwasthroughteamworkwithmyotherclassmatesthatwewereallabletounderstanditppmyclassmateswereasmotivatedasmesoitwaseasytofindpeopletocontinueprogrammingonweekendsoraftertheclassitwasgreatformeppppstrongwhatwereyourclassmatesandinstructorslikestrongppinthisbootcampiwassurroundedbytheverybestprofessionalsfromalloverthecountrysoicanonlysaythatitwasapleasuretoconverttheirknowledgeintominebeingabletosharethisexperiencewithmyclassmateswasawesomeificouldhavetheopportunitytodoanotherironhackbootcampitwouldbeamazingtheyarethefastesttwomonthsiveeverlivedppppstrongtellusaboutyourfinalprojectwhatdoesitdowhattechnologiesdidyouusehowlongdidittakeetcstrongppwellmyfinalprojectwasaboutatravelapplicationwiththiswebapplicationyouwereabletosaveorganizeandshareallyourtripinformationthisprojectwasdevelopedintwoweeksandinordertoachieveallthefeaturesthatiwantedtoincludeonitiusedrailsasiwantedtodemonstrateallthethingsthatihadlearnedinironhackidecidedtoincluderesponsivewebdesignusingcss3andjavascriptjqueryandhtml5functionalitieslikegeolocalizationorwebstoragetoimprovetheuserexperienceppattheendofthosetwoweeksihadahugefrontendprojectwhichwasmorethanideverexpectedthankstomyhardworkandeffortsinthisprojectiwasoneofthefinalistsinthehackshowtheironhackfinalshowwherethefinalistscanshowwhattheyhavemadeintwoweeksandicouldshowmyprojecttomorethanahundredpeopleppppstrongwhatareyouworkingonnowdoyouhaveajobasadeveloperwhatdoesitentailstrongppthankstothehackshowtwodaysaftertheendofironhackiwasworkingatfloqqcomthebiggestonlineeducationmarketplaceinspanishallovertheworldnowadaysimfrontenddeveloperandproductmanageratfloqqcomandimworkingdoingwhatilovetodobrironhackgavemetheopportunitythatothercompaniesdidntgivemeihadnoexperienceandnobodywantedtohiremeandnowimstilllearningandimprovingmyskillsinthebestplaceicouldeverfindppppstrongwouldyouhavebeenabletolearnwhatyounowknowwithoutironhackstrongppitwouldbeimpossibletolearnwhativelearnedinironhackintwomonthsonmyownbutitsnotonlyaboutthedevelopmentskillsthativeimprovedinthosetwomonthsitsalsoaboutthepersonalskillsthativebeenabletodevelopandtheopportunitytomeetthebestitprofessionalsfromallaroundspainironhackwasjusta180experiencethatchangedmywholelifeandthatallowedmetodowhatibelieveiwasborntodoppppstrongwanttolearnmoreaboutironhackcheckouttheirahrefhttpcoursereportcomschoolsironhackrelfollowtarget_blankschoolpageaoncoursereportortheirahrefhttpwwwironhackcomenrelfollowtarget_blankwebsitehereastrongpliliclasspostdatadeeplinkpathnewsfounderspotlightarielquinonesofironhackdatadeeplinktargetpost_64idpost_64h2ahrefschoolsironhacknewsfounderspotlightarielquinonesofironhackfounderspotlightarielquinonesofironhackah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan4212014spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltfounderspotlightarielquinonesironhacksrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files148s1200founder20spotlight20ironhackpngppstrongahrefhttpcoursereportcomschoolsironhackrelfollowtarget_blankironhackaisan8weekcodingbootcampwithcampusesinmadridbarcelonaandsoonmiamiwetalkedwithcofounderarielquinonesabouttheirrailscurriculumhowtheyattractamericanstudentstostudyabroadinspainandwhatsetsironhackapartstrongppppstrongtellusabouthowironhackstartedstrongppicomefromafinancebackgroundimoriginallyfrompuertoricobutspent5yearsinnewyorkmycofoundergonzalocomesfromtheconstructionindustryhesacivilengineerandhebuiltallsortsofmajorinfrastructureprojectsineuropehavingsaidthaticomefromahouseholdofeducatorsbothofmyparentswereteacherswheniwasgrowingupandmyfatheractuallystartedaprivateuniversityinpuertorico20yearsagothatstartedwith15studentsandnowtheyhave6campusesandover10000studentsenrolledppithinkeducationwasalwaysapartofmydnaandiwantedtodosomethingaftercompletingmyeducationimetgonzaloduringourmbawewerebothatwhartonhealsowantedtodosomethingineducationineuropeandpossiblyinedtechaswellduringthose2yearsofthembawewereiteratingideasconstantlyandithinkhadthesameissuethatmostnontechnicalfoundershaveintheuswhichishavingbrilliantideasbutonceyougettothepointwhereyouneedtoexecutethemandproduceanmvpyourenotabletodoititsincrediblychallengingtofindacofounderanditsincrediblychallengingfromacostandalsofromanoperationalperspectivetooutsourcethedevelopmentppgonzaloanditooka2daycourseatwhartonwheretheytaughtustodoverybasicrailseventhoughwedidntacquiretheskillsnecessarytobuildourmvpwewereexcitedaboutthepossibilityofteachingbothtechnicalandnontechnicalpeopletheseskillsthroughahighlyintensiveandcompressedtimeperiodafterthatexperiencewestartedlookingatthebootcampmodelatthatpointtheearlieroneswerestartingtogetalittlebitoftractionwethoughtitwouldbeinterestingtodothissomewhereabroadiddonealotofbusinessinlatinamericasoihadsometiestotheregiongonzalomypartnerisspanishsoourfirstbetwasspainppppstrongwouldyousaythatironhackismoregearedtowardsmakersortechnicalcofoundersasopposedtopeoplewhowanttogetajobatanestablishedcompanyasajuniordeveloperstrongppwevehadbothprofileswevebeenselectiveinthepeopleweadmitfromatechnicalbackgroundwevebeenhesitantsofartosaygofromtotalnewbietoprofessionalwebdeveloperinxweeksourapproachisappealingtofolksthataremaybealreadyinclosetouchwithtechnologyandcodedevelopersthatwanttoprofessionalizetheirskillsandtakethemtothenextlevelorpeoplethatareverysmartanalyticalandarelookingforahardcoreexperiencethatwillallowthemtolearnfromthesetypesofpeopleppppstrongwhenwasthefirstcohortstrongppthefirstcohortwasinoctoberof2013eachcourseis8weekslongppppstrongwhatwasthebiggestlessonthatyoulearnedafterrunningyourfirstcohortstrongpponethingwelearnedisthatthe8weeksjustflybywhenyouplanforpeopletobecoding10to12hoursadaythatseemslikealotbuteverydaygoesbysoquicklypptheotherthingwelearnedwasthatnomatterhowmuchyoufiltertomakesureyoudonthavedisparatelevelspriortoarrivingpeoplejustlearndifferentlyatdifferentvelocitieswithdifferentlearningstylessowithinthestructureof8weeksweneededdifferentexercisesandflexibilitytogivepeoplethechancetolearnrightattheirownpacewhileensuringthateveryoneslearningfundamentalsppppstrongdoyouhavestudentsdopreworkbeforetheygettoironhackstrongppyeahtheydo100hoursofpreworkppppstrongwhatcitiesareyouliveinnowstrongppwereliveinmadridandbarcelonaandwerelaunchinginmiamiinseptemberppppstrongcouldyoutellusaboutthetechscenesinthelocationsthatyoureliveinmadridandbarcelonastrongpppeoplelovetocometospainandstudyabroaditsacountrythathasalottoofferfromthelifestyleperspectiveyouknowyouhavegreatfoodthepartiesstudyabroadinspainhasbeenanintegralpartofspanishsocietyformanyyearswithinthetraditionalhighereducationarenainourcaseweretryingtopositionspaininasimilarfashioninthefirstcohortswetrainedalotofpeoplefromspainbutgoingforwardwewanttomakeitattractiveforforeignerstocomeoverandenjoyeverythingthatspainhastoofferandatthesametimelearnhowtocodeppbarcelonaisveryexcitingbecauseyouhavepeoplefromallovertheworldthatarelaunchingstartupsthereobviouslywithintheeutheresalotofmobilityifyoureaeuropeanunioncitizenyoucangoanywherewithoutanysortofvisarequirementsandithinkalotofnortherneuropeansandpeoplefromgermanyforinstancelovebarcelonaforweatherreasonsthegreatbeachesthelifestylesoalotofthemarecomingovertobarcelonatolaunchtheirownventureshereinbarcelonathetechecosystemisthrivinganditsveryinternationaltheresalotofmobilestartupsthataregettingtractionoverthereppmadridisstillverymuchacosmopolitancityandwereseeingalotoftractioninthestartupspaceitsobviouslyanemergingecosystemnowherenearsiliconvalleybutwereseeingearlystagecompaniesgeteitheracquiredorgoforsubstantialroundsoffinancinghereinmadridwhichisultimatelyadriverforourtypeofbusinesscompaniesneedfundingtoemployengineersandwereseeingthatcapitalflowtoearlystageprojectsppppstrongdoyougetinterestfrompeopleintheusstrongppyesrightnowweregettingalotofinterestfrompeopleallovertheworldincludingtheusiinterviewedafewcandidatesfromthenortheastwehaveanotherstudentfromcaliforniawhosenrollinginourjunecourseppppstrongisitpossibleforsomeonefromtheustocompleteironhackandthenworkinspainorintheeustrongppyesitsdefinitelypossibleitsnotaschallengingassomeonefromeuropetogototheusforsuretheresstillcoststhattheemployerhastoincurbutithasnowherenearthecostsandalltheredtapethatyouhavetodealwithintheusppppstronghasironhackraisedanymoneystrongppnorightnowwerebootstrappedandwewanttokeepitthatwayaslongaspossibleppppstrongsotelluswhatprogramminglanguagesstudentsaremasteringatironhacktellusabouttheteachingstylestrongppwehavetwocoursesthatareliverightnowwebandmobileppthewebcourseisan8weekcourseidsayonaveragestudentsarewithusinouroffices1012hoursadaywecoverhtmlcssandjavascriptonthefrontendandthenonthebackweworkwithrubyonrailsandteachalittlebitofsinatraaswellthefirst6weekswereteachingthosecoretechnologiesandthelast2weeksstudentsareworkingontheirownprojectfromscratchtheculminationoftheprogramisademodaywheretheypresenttheirprojectstothecommunitydevelopersstartupcofoundersthattypeofaudienceppidsay90ofourcontentispracticalwerebigbelieversintheflippedclassroommodelsowewanttomakesurethatwereducetheamountoftheorytimetotheextentpossiblewegetthemalltheresourcesvideosandexercisestocompleteathomepriortoarrivingherewhiletheyreherewegivethemhomeworkandassignmentsfortheweekendsowecanreducethattheorytimeppthetechnologydemandsinspainareveryfragmenteditsnotlikesanfranciscowhereyoucanproduceagazillionrubyonrailsgradseveryyearandtheyllbehiredbyrailsstartupsherewereseeingsomedemandforrailsstartupsbutalsopythonphpetcppppstrongdoyouexpectthataftercompletingyourcourseagraduatewouldbeabletolearnpythonorphpontheirownstrongppahundredpercentandwereseeingthateventhoughlovethetechnologiesweworkwithwerenotobsessedwiththemeithertoustheyreaninstrumenttoteachgooddevelopmentpracticesithinkonethingthatdifferentiatesusfrombootcampsisourfocusandobsessionwithgoodcodingpracticeswereobsessedwithtestingcleancodeandgooddesignpatternswevedoneourjobifthestudentgetagoodbackgroundintechnologybutmoreimportantlytakeawaythosegoodcodingpracticesthattheyapplytowhateverlanguageorframeworktheyuseppppstrongisthemobileclassstructuredthesamewaystrongppsameformatexactsamestructureslightlyhigherrequirementstobeacceptedinordertobeacceptedintothemobilecourseyoualreadyhavetoprogramwithanotherobjectorientedlanguageourfirstcourseisfocusedoniosdevelopmentppppstrongdoyouthinkyoulleverdoanandroidcoursestrongppwellprobablydoandroidinthenearfutureppppstronghowmanystudentsdoyouhaveineachcohortstrongpprightnowwevecappedat20wecanprobablygoabitmorethanthatbutwedontwanttodomorethanthatppppstronghowmanyinstructorsdoyouhaveperclassstrongppwealwaysliketohavearatioofatleast6studentsperteachersowhenwehave15studentswehaveonemainprofessorandtwoteachingassistantsourviewisthatifweregoingtoteachyouonetechnologywewanttomakesurethatthepersonthatisinstructingyouisthebestmostcapablepersonandishighlyspecializedinthatlanguageppppstronghowhaveyoufoundinstructorsstrongppwewenttothebestcompanieshereinspainandotherpartsofeuropeandbasicallyfoundthebestpeopletheretheyworkparttimeforusitsverydifferenttohavesomeonewhosfulltimebootcampprofessorversussomeonewhoisadeveloperandisteachingatabootcampfor2weeksppandalsofromarecruitingperspectivealotofourstudentshavebeenhiredbytheirteachersalsoourstudentshaveanetworkthatgoesbeyondtheirpeersandtheironhackstafftheyhaveanetworkthatconnectstoallthesecompaniesthattheseprofessorsarecomingfromppppstrongyousaidthatpotentialstudentsshouldhavesomevestedinterestinprogrammingandshouldhavesomebackgroundandbeabletoprovethattheycanreallyhandlethematerialwhatstheapplicationprocessstrongppwehavea3stepapplicationprocessthefirstpartisawrittenformthatwescreenandthenwedotwo30minuteskypeinterviewsthefirst30minuteskypeinterviewistogetasenseofwhoyouarewhyyouwanttodothisandgetasenseofisyoufitwithinourcultureandifyouhavethatintrinsicmotivationtomakethemostoutofthe400hoursthatyouhavehereppwesaylistenyouregoingtobecodingmondaythroughfriday10hoursadayandthenyouregoingtohaveworkeverydayonsaturdaysundaywhenitellthemthatwewantsomeonewhobeamsenergyandpositivityiftheymakeitthroughthatinterviewwehaveasecondroundwhichisbasicallytoassesstechnicalskillsweveactuallyacceptedabunchofpeoplethathaveneverprogrammedbeforebutwewanttomakesurethatyouhavethemotivationandtheanalyticalskillsettobeabletocatchuppriortoarrivingtoourcampppinsomecaseswehavepeoplethatwethinkareverysmartandincrediblymotivatedbuthavenevercodedintheirliveshaveneverevenworkedwithhtmlweadmitthemsubjecttoanothervaluationpostthatsecondinterviewsowellgetthemtocomplete60hoursofpreworkandthenseewheretheyareppppstronghowdoesironhackprepareyourgraduatestofindjobsstrongppthedemodayisagreatwaytoshowcaseourtalenttoouremployersandyouhaveallsortsofemployerstherefromthefoundingstagewheretheyhaventraisedanymoneyorarestillpreproducttotechemployerswhohavetechnicalteamsandmorethan3040employeesppontopofthecorecurriculumwehavespeakerslikeemployerscomeinduringthe8weekstopresenttheirproductsandalsoitservesasanopportunityforthemtogetintouchwiththeirstudentsandidentifypotentialhiringleadsppwealsobringinleadinghrpeoplefromsomeofourtoptechemployersheretoofferworkshopsonhowtosetupyourcvhowtooptimizeyourlinkedinprofileseoandallthesethingsandwecoachthemonhowtoconductaninterviewrightnowwevehadtheluxuryofbeingsmallsowereallveryinvolvedintheprocessppppstrongarethosecompaniespayingafeetogetintothedemodayoraretheypayingarecruitingfeeoncetheyvehiredsomeonestrongpprightnowwerenotchargingemployerswerefocusedonplacing100ofourgraduatesandgivingaccesstogreatcompanieseventhosethatwouldntbeinterestedinpayingarecruitingfeeppppstronghaveyoubeensuccessfulinplacingyourgraduatesstrongppwerestartingtoplaceasecondcohortbutinourfirstcohortweplacednearly100percentofourgraduatesithinkinthefirstcohortweplaced60ofthepeople3weekafterthefirstcourseandthentherestoverthenext2monthsppppstrongistheaccreditationbuzzthatshappeningincaliforniaanywhereonyourradardoyougetanypressurefromthegovernmentinspainorareyouthinkingaboutgoingthroughtheaccreditationprocesswhenyouexpandtomiamistrongppweredefinitelygoingtopayattentiontothisinmiamiwereallforitifithelpsthestudentaslongasitdoesntinterferewiththemodelanddoesntlimittheabilityoftheseinstitutionstooffereducationthatsagileandthatcanadapttothetimesandthetechnologiesppppstrongareyouplanningonexpandingbeyondmiamianytimesoonstrongppithinkforthenextyearorevenbeyondthatweregoingtofocusonmiamiandspainhoweverweregoingtousemiamiandspainashubsforotherregionsweregettingalotofinterestfromlatinamericanstudentstocometospainsoforthosewhowouldrathercometomiamibecauseitscloserwecanofferthataswellppppstrongtofindoutmoreaboutironhackcheckouttheirahrefhttpcoursereportcomschoolsironhackrelfollowtarget_blankschoolpageaoncoursereportorahrefhttpwwwironhackcomenrelfollowtarget_blanktheirwebsiteastrongpliulsectiondivdivdivdivdivdivdivclasscolmd4idsidebardivclasshiddenxshiddensmidschoolheaderahrefschoolsironhackdivclassvanityimageimgaltironhacklogotitleironhacklogosrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4017s200logoironhackbluepngdivadivclassaltheaderh1ironhackh1pclassdetailsspanclasslocationspanclassiconlocationspanamsterdambarcelonaberlinmadridmexicocitymiamiparissaopaulospanpdivdivdivdataformcontactdataschoolironhackidcontactbuttonclassbuttonbtnspanimgsrchttpss3amazonawscomcourse_report_productionmisc_imgsmailsvgtitlecontactschoolspancontactalexwilliamsfromironhackbuttondivdivclasspanelgroupidaccordiondivclasspanelpanelsidepaneldefaultidschooldetailsdivclasspanelheadingvisiblexsdatadeeplinktargetmoreinfodatatargetschoolinfocollapsedatatogglecollapseidschoolinfocollapseheadingh4classpaneltitleschoolinfoh4divh4classhiddenxstextcenterschoolinfoh4divclasspanelcollapsecollapseinidschoolinfocollapsedivclasspanelbodypaneldivclassflexfavoritetextcenterbuttonclassbtnbtninversefavlogindatarequestid84dataschoolid84savenbspspanclassglyphiconglyphiconheartemptyspanbuttondivulclassschoolinfoliclassurltextcenterdesktoponlyspanclassiconearthspanaitempropurltarget_blankhrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageironhackwebsitealiliclassemailtextcenterdesktoponlyspanclassiconmailspanaitempropemailhrefmailtohiironhackcomhiironhackcomaliliclassschooltrackstextleftspanclassiconbookspanahreftracksfrontenddeveloperbootcampsfrontendwebdevelopmentabrahreftrackswebdevelopmentcoursesfullstackwebdevelopmentabrahreftracksuxuidesignbootcampsuxdesignabrliliclasslocationtextleftspanclassiconlocationspanahrefcitiesamsterdamamsterdamabrahrefcitiesbarcelonabarcelonaabrahrefcitiesberlinberlinabrahrefcitiesmadridmadridabrahrefcitiesmexicocitymexicocityabrahrefcitiesmiamicodingbootcampsmiamiabrahrefcitiesparisparisabrahrefcitiessaopaulosaopauloabrliululliclassurltextcenteraclassnodecorationhrefhttpswwwfacebookcomtheironhackutm_sourcecoursereportamputm_mediumschoolpagespanclassiconfacebook2largeiconspanaaclassnodecorationhrefhttpstwittercomironhackutm_sourcecoursereportamputm_mediumschoolpagespanclassicontwitterlargeiconspanaaclassnodecorationhrefhttpswwwlinkedincomcompanyironhackutm_sourcecoursereportamputm_mediumschoolpagespanclassiconlinkedinlargeiconspanaaclassnodecorationhrefhttpsgithubcomtheironhackutm_sourcecoursereportamputm_mediumschoolpagespanclassicongithublargeiconspanaaclassnodecorationhrefhttpswwwquoracomtopicironhackutm_sourcecoursereportamputm_mediumschoolpagespanclassiconquoralargeiconspanaliuldivdivdivdivclasspanelpanelsidepaneldefaultidmoreinfodivclasspanelheadingvisiblexsdatadeeplinktargetmoreinfodatatargetmoreinfocollapsedatatogglecollapseidmoreinfocollapseheadingh4classpaneltitlemoreinformationh4divh4classhiddenxstextcentermoreinformationh4divclasspanelcollapsecollapseinidmoreinfocollapsedivclasspanelbodypanelh5spanclassglyphiconglyphiconremovecircleredspannbspguaranteesjobh5h5spanclassglyphiconglyphiconremovecircleredspannbspacceptsgibillh5h5spanclassglyphiconglyphiconokcirclegreenspannbspjobassistanceh5h5licensingh5plicensedbythefloridadeptofeducationph5spanclassglyphiconglyphiconremovecircleredspannbsphousingh5h5spanclassglyphiconglyphiconokcirclegreenspanahrefenterpriseofferscorporatetrainingah5divdivclasspanelpanelsideidcoursereportdivclasspanelheadingahrefbestcodingbootcampsdivclassbestbootcampcontainerimgclasssrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetsbest_bootcamp_course_report_white4a07db772ccb9aee4fa0f3ad6a6b9a23pngalthttpscoursereportproductionherokuappcomglobalsslfastlynetassetsbest_bootcamp_course_report_white4a07db772ccb9aee4fa0f3ad6a6b9a23pnglogoimgclasssrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetsbest_bootcamp_badge_course_report_green_20187fa206d8283713de4d0c00391f0109d7pngalthttpscoursereportproductionherokuappcomglobalsslfastlynetassetsbest_bootcamp_badge_course_report_green_20187fa206d8283713de4d0c00391f0109d7pnglogodivbrdivclassbannercontainerimgclassbannersrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetsestablished_school_badgeebe0a3f352bb36a13f02710919cda647pngalthttpscoursereportproductionherokuappcomglobalsslfastlynetassetsestablished_school_badgeebe0a3f352bb36a13f02710919cda647pnglogoimgclassbannersrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetslarge_alumni_network_badge848ae03429d96b6db30c413d38dad62apngalthttpscoursereportproductionherokuappcomglobalsslfastlynetassetslarge_alumni_network_badge848ae03429d96b6db30c413d38dad62apnglogoimgclassbannersrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetstop_rated_badge2a537914dae4979722e66430ef0756bdpngalthttpscoursereportproductionherokuappcomglobalsslfastlynetassetstop_rated_badge2a537914dae4979722e66430ef0756bdpnglogodivadivdivdivdivdivdivclasssidebarapplymoduleaclassgagetmatchedmpgetmatcheddatacityhrefgetmatchedspanclasstopnotsurewhatyourebrlookingforspanspanclassbottomwellmatchyouspanadivdivdivdivsectiondivclasscontactoverlaydivclassmodalcontainerdivclassmodalheaderh4starttheconversationh4pcompletethisformtoconnectwithironhackpdivformactioncontactclasscontactformcontactformvalidatedataschoolironhackidmpcontactformmethodpostinputtypehiddennameauthenticity_tokenidauthenticity_tokenvalueabw0cnplttay8fpejyrzu8qt6ndnpuxge1vyl2xjz2mocitetxsmgzavt6tydakzu0dovdcwz98meoe9ginputtypehiddennameschool_emailidschool_emailvaluehiironhackcominputtypehiddennameschool_ididschool_idvalue84inputtypehiddennameschool_contact_nameidschool_contact_namevaluealexwilliamsinputtypehiddennameschool_contact_emailidschool_contact_emailvaluealexwilliamsironhackcominputidschool_namenameschoolstyledisplaynonetypetextvalueironhackdivclassfieldcolmd12divclassbricklabelmynamelabelinputidnamenameuser_nametypetextdivdivclassbricklabelmyemaillabelinputclasscontactformidcontactemailnameuser_emailtypeemaildividresultdivdivdivclassbricklabelmyphonenumberoptionallabelinputclasscontactformidcontactphonenamephonetypeteldivdivdivclassfieldmidfieldcolmd12divclassbricktextrightlabelimmostinterestedinlabeldivdivclassbrickselectnamecontact_campus_ididcontact_campus_iddatadynamicselectabletargetcontact_course_iddatadynamicselectableurldynamic_selectcontact_campus_idcoursesdatatargetplaceholderselectcourseoptionvalueselectcampusoptionoptionvalue1089amsterdamoptionoptionvalue780barcelonaoptionoptionvalue995berlinoptionoptionvalue779madridoptionoptionvalue913mexicocityoptionoptionvalue107miamioptionoptionvalue843parisoptionoptionvalue1090saopaulooptionselectdivdivclassbrickselectnamecontact_course_ididcontact_course_idselectdivdividschool_errorsdivdivdivclassfieldcolmd12labelanyotherinformationyoudliketosharewithalexwilliamsfromironhacklabeltextareaclasscontactformidmessagenamemessageplaceholderoptionaltypetextboxtextareabrdivdivclassfieldinputclassbtnbuttoncontactformvalidatetypesubmitvaluegetintouchpclassh6bysubmittingiacknowledgethatmyinformationwillbesharedwithironhackpdivformaidclosecontactbtnclasscloserhrefspanclassiconcrossspanadivdivclassmodallowerdivdivclasssuccessmessagespanclassiconcheckaltspanh2thanksh2divdivscriptsrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetspagespecificintltelinputc585d5ec48fb4f7dbb37d0c2c31e7d17jsscriptdivclassopeninstructionsdivdivclassinstructionsoverlaydivclassmodalcontainerdivclassmodalheaderloginguestmodalheaderdivclasstextcenterdivclassloginerrorsdivdivclassloginsuccessdivdivdivclassrowno_bordercolmd12divdivclasspreconfirmationcontainerclasstextcenterh2classtextcenterrevpubtitleh2divclassrevpubpdivpclasstextcenterrevanonpph4classtextcenterrevpubh4verifyviah4divclasstextcenterrevpubconfirmemailbuttondatareviewdataurlidverifyreviewbuttonclassbtnbtndefaultonclickjavascriptemailverifyemailbuttonbuttonclassbtnbtndefaultonclickjavascriptopenverify3939linkedinbuttonbuttonclassbtnbtndefaultonclickjavascriptopenverify3939githubbuttondivpclasstextcentersubscriptbyclickingverifyvialinkedingithubyouagreetoletcoursereportstoreyourpublicprofiledetailsppclasstextcenterthankssomuchfortakingthetimetoshareyourexperiencewiththecoursereportcommunitypcontainerdivdivclassconfirmedviaemaildivclassreviewinstructionscontainerclasstextcenterh2greath2pwejustsentaspeciallinktoyouremailgoclickthatlinktopublishthisreviewph4classrevconfirmlinkonceyouveconfirmedyourpostyoucanviewyourlivereviewh4pthankssomuchfortakingthetimetoshareyourexperiencewiththecoursereportcommunitypcontainerdivdivdivclasscolmd12textcenterbottombufferahrefschoolsbuttonclassbtnbtndefaultbrowseschoolsbuttonadivdivdivdivscriptvarnewwindowfunctionopenverifyprovider_urlvarscreenxtypeofwindowscreenxundefinedwindowscreenxwindowscreenleftscreenytypeofwindowscreenyundefinedwindowscreenywindowscreentopouterwidthtypeofwindowouterwidthundefinedwindowouterwidthdocumentbodyclientwidthouterheighttypeofwindowouterheightundefinedwindowouterheightdocumentbodyclientheight22leftparseintscreenxouterwidth800210topparseintscreenyouterheight8002510featureswidth800height800leftlefttoptopreviewverifyreviewdatareviewtostringparamsreview_idreviewurlprovider_urlparamsbodycsscursorprogressnewwindowwindowopenurlloginfeaturesifwindowfocusnewwindowfocusreturnfalsefunctionemailverifyprovider_urlreviewverifyreviewdatareviewtostringurlverifyreviewdataurltostringpostsendconfirmationreviewreviewurlurlsuccessfunctiondatapreconfirmationhideconfirmedviaemailshowbottombuffershowscriptdivclassduplicateinstructionsoverlaydivclassmodalcontainerdivclassmodalheaderloginguestmodalheaderdivclassreviewinstructionscontainerclasstextcenterh2classduprevtitleh2hrpifyouwouldliketoreviseordeleteareviewpleaseemailahrefmailtohellocoursereportcomcoursereportmoderatorsapcontainerdivdivclasscolmd12textcenterbottombufferbuttonclassbtnbtndefaultidloginconfirmbacktoreviewbuttondivaidinstructionsclosehrefspanclassiconcrossspanadivdivdivscriptclose_instructions_modalfunctioninstructionsoverlayfadeout250duplicateinstructionsoverlayfadeout250returnfalseinstructionsconfirminstructionscloseonclickclose_instructions_modalscriptdivclassconfirmscholarshipoverlaydivclassmodalcontainerdivclassmodalheaderconfirmscholarshipmodalheaderdivclasstextcenterdivclassloginerrorsdivdivclassloginsuccessdivdivcontainerclasstextcenterh2successh2pph4classrevconfirmlinkanemailwiththesedetailshasbeensenttoironhackh4containerdivclasscolmd12textcenterbuttonclassbtnbtndefaultonclickjavascriptviewscholarshipsviewmyscholarshipsbuttondivdivaonclickjavascriptclosethismodalidscholarshipclosehrefspanclassiconcrossspanadivdivscriptvarnewwindowfunctionclosethismodalconfirmscholarshipoverlayfadeout500bodycssoverflowscrollfunctionviewscholarshipswindowlocationhrefresearchcenterscholarshipsscriptdivclassconfirmscholarshipappliedoverlaydivclassmodalcontainerdivclassmodalheaderconfirmscholarshipmodalheaderdivclasstextcenterdivclassloginerrorsdivdivclassloginsuccessdivdivcontainerclasstextcenterh2hangonh2pph4classrevconfirmlinkyouvealreadyappliedtothisscholarshipwithironhackh4containerdivclasscolmd12textcenterbuttonclassbtnbtndefaultonclickjavascriptclosethismodalclosebuttondivdivaonclickjavascriptclosethismodalidscholarshipclosehrefspanclassiconcrossspanadivdivscriptvarnewwindowfunctionclosethismodalconfirmscholarshipoverlayfadeout500bodycssoverflowscrollscriptdivclasserrorsoverlaydivclassmodalcontainerdivclassmodalheaderloginguestmodalheaderdivclasstextcenterh3classlogtitlewhoah3psomethingmusthavegoneterriblywrongfixthefollowingandtryagainpdivclassloginerrorsdivdivclassloginsuccessdivdivdivaidsubmiterrorclosehrefspanclassiconcrossspanadivdivdivclassshareoverlaydivclassmodalcontainerdivclassshareheaderh2sharethisreviewh2divdivclasssharebodypclasssharereviewtitlepinputclassshareableurlidshareinputreadonlybuttonclassbtnbtnreversesharebuttonspanclassglyphiconglyphiconsharenbspspancopytoclipboardbuttondivaidshareclosehrefspanclassiconcrossspanadivdivdivclassmatchpopupdivclassmodalcontainerdivclassmodalheadersectionclassfindbootcampwrapperdivclasscontainerdivclassonethirdfbwdescriptionpclassh1dataaossliderightdataaosduration400findthebrbestbrbootcampbrforyoupdivdivclasstwothirdsdivclasshalfpclassh2dataaossliderightdataaosduration800telluswhatyouresearchingforandwellmatchyouwithourhighestratedschoolspdivdivclasshalfaclassacceptlinkgagetmatcheddataoriginmodalhrefgetmatchedoriginmodalbuttonclassbtnbtnmatchgetmatchedbuttonadivdivdivsectiondivaidmatchclosebtnhrefspanclassiconcrossspanadivclasssuccessmessagespanclassiconcheckaltspanh2thanksh2divdivdivdivclassemailfootersectionclassemailfootercontainersectionclassheadercontainerdivclassimageboximgaltguidetopayingforbootcampssrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetspaying_for_bootcamp_ipad_mincb6dec01480a37f8f37dbdc1c919ae6cpngdivdivclassheaderboxh2getourfreeultimateguidetopayingforacodingbootcamph2divsectionsectionclassemailsubmissionboxformidoptinparsleyvalidateclassflexcolumnleftactionmodal_saveacceptcharsetutf8dataremotetruemethodpostinputnameutf8typehiddenvaluex2713inputtypeemailnameemailidemailplaceholderemailaddressrequiredrequiredsectionclassflexrowselectnamemailing_list_categoryidmailingcategoryinputoptionvalueiamoptionoptionvalueresearchingcodingbootcampsresearchingcodingbootcampsoptionoptionvaluecurrentstudentalumcurrentstudentalumoptionoptionvalueindustryprofessionalindustryprofessionaloptionoptionvalueotherotheroptionselectinputtypehiddennameutm_sourceidutm_sourceinputtypehiddennameutm_mediumidutm_mediuminputtypehiddennameutm_termidutm_terminputtypehiddennameutm_contentidutm_contentinputtypehiddennameutm_campaignidutm_campaigninputtypesubmitnamecommitvaluesignmeupclassbuttonbuttonbluesectiondivclassemailerrorlookslikeyourealreadyonourmailinglistifyourenotshootusannbspahrefmailtohellocoursereportcomemailadivdivclasssuccessgreatwevesignedyouupdivdivclassformnotesplusyoullbethefirsttoknowaboutcodingbootcampnewsandyouremailissafewithusdivformsectionsectiondivfooterdivclasscontainerlargerfooterdivclassrowdivclasscolsm3h4coursereporth4ulliidhomeahrefhomealiliidschoolsahrefschoolsschoolsaliliidblogahrefblogblogaliliidresourcesahrefresourcesadvicealiliidwriteareviewahrefwriteareviewwriteareviewaliliidaboutahrefaboutaboutaliliidconnectahrefconnectconnectwithusaliuldivdivclasscolsm3h4legalh4ulliahreftermsofservicetermsofservicealiliahrefprivacypolicyprivacypolicyaliulh4followush4ulclasscontactlinksliahreftwittercomcoursereporttarget_blankspanclassicontwitterspanaahrefwwwfacebookcomcoursereporttarget_blankspanclassiconfacebookspanaaahrefplusgooglecom110399277954088556485relpublishertarget_blankspanclassicongoogleplusspanaahrefmailtohellocoursereportcomspanclassiconmailspanaliuldivdivclasscolsm3h4researchh4ulliahrefcodingbootcampultimateguideultimateguidetochoosingacodingbootcampaliliahrefbestcodingbootcampsbestcodingbootcampsof2017aliliahrefreports2017codingbootcampmarketsizeresearch2017codingbootcampmarketsizereportaliliahrefreportscodingbootcampjobplacement20172017codingbootcampoutcomesdemographicsstudyaliuldivdivclasscolsm3aclasslogosmallpullrighthrefimgaltcoursereporttitlecoursereportsrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetslogosmalla04da9639b878f3d36becf065d607e0epngadivdivdivdivclasscontainermobilefooterdivclassrowdivclasscolxs6h4coursereporth4ulliidhomeahrefhomealiliidschoolsahrefschoolsschoolsaliliidblogahrefblogblogaliliidresourcesahrefresourcesadvicealiliidwriteareviewahrefwriteareviewwriteareviewaliliidaboutahrefaboutaboutaliliidconnectahrefconnectconnectwithusaliuldivdivclasscolxs6h4legalh4ulliahreftermsofservicetermsofservicealiliahrefprivacypolicyprivacypolicyaliulh4followush4ulclasscontactlinksliahreftwittercomcoursereporttarget_blankspanclassicontwitterspanaahrefwwwfacebookcomcoursereporttarget_blankspanclassiconfacebookspanaaahrefplusgooglecom110399277954088556485relpublishertarget_blankspanclassicongoogleplusspanaahrefmailtohellocoursereportcomspanclassiconmailspanaliulh4ahrefreportsresearchah4divdivdivfooterdivclassloginoverlaydivclassmodalcontainerdivclassmodalheaderloginmodalheaderdivclasstextcenterdivclassloginerrorsdivdivclassloginsuccessdivdivdivclassrowno_bordercolmd12divclasscolmd6textcenterh3classlogtitleloginh3divclassloginrevealidlog_informclassnew_useridnew_useractionloginacceptcharsetutf8dataremotetruemethodpostinputnameutf8typehiddenvaluex2713divclassfieldtextcenterinputplaceholderemailtypeemailvaluenameuseremailiduser_emaildivdivclassfieldtextcenterinputplaceholderpasswordtypepasswordnameuserpasswordiduser_passworddivdivclassfieldlinktextcenterahrefresetpasswordforgotpasswordadivdivclasstextcenterpclasstextcenterno__marginorpdivclasstextcenterinlinemediaaclasssocialmedialoginvaluefacebookdataauthfacebookhrefusersauthfacebookimgclasssociallogosrchttpss3amazonawscomcourse_report_productionmisc_imgsfbflogo__blue_29pngalthttpss3amazonawscomcourse_report_productionmisc_imgsfbflogo__blue_29pnglogoadivdivclasstextcenterinlinemediaaclasssocialmedialoginvaluetwitterdataauthtwitterhrefusersauthtwitterimgclasssociallogosrchttpss3amazonawscomcourse_report_productionmisc_imgstwitter_logo_white_on_bluepngalthttpss3amazonawscomcourse_report_productionmisc_imgstwitter_logo_white_on_bluepnglogoadivdivclasstextcenterinlinemediaaclasssocialmedialoginvaluegoogledataauthgooglehrefusersauthgoogle_oauth2imgclasssociallogosrchttpss3amazonawscomcourse_report_productionmisc_imgs1473366122_newgooglefaviconpngalthttpss3amazonawscomcourse_report_productionmisc_imgs1473366122_newgooglefaviconpnglogoadivdivdivclassactionstextcentersubmitlogintrayinputtypesubmitnamecommitvalueloginclassbtnbtndefaultdivformdivdivclasssignuprevealidsign_upformclassnew_useridnew_useractionsignupacceptcharsetutf8dataremotetruemethodpostinputnameutf8typehiddenvaluex2713divclassfieldtextcenterinputplaceholderemailtypeemailvaluenameuseremailiduser_emaildivdivclassfieldtextcenterinputplaceholderpasswordtypepasswordnameuserpasswordiduser_passworddivdivclasstextcenterpclasstextcenterno__marginorpdivclasstextcenterinlinemediaaclasssocialmedialoginvaluefacebookdataauthfacebookhrefusersauthfacebookimgclasssociallogosrchttpss3amazonawscomcourse_report_productionmisc_imgsfbflogo__blue_29pngalthttpss3amazonawscomcourse_report_productionmisc_imgsfbflogo__blue_29pnglogoadivdivclasstextcenterinlinemediaaclasssocialmedialoginvaluetwitterdataauthtwitterhrefusersauthtwitterimgclasssociallogosrchttpss3amazonawscomcourse_report_productionmisc_imgstwitter_logo_white_on_bluepngalthttpss3amazonawscomcourse_report_productionmisc_imgstwitter_logo_white_on_bluepnglogoadivdivclasstextcenterinlinemediaaclasssocialmedialoginvaluegoogledataauthgooglehrefusersauthgoogle_oauth2imgclasssociallogosrchttpss3amazonawscomcourse_report_productionmisc_imgs1473366122_newgooglefaviconpngalthttpss3amazonawscomcourse_report_productionmisc_imgs1473366122_newgooglefaviconpnglogoadivdivdivclassactionstextcentersubmitlogintrayinputtypesubmitnamecommitvaluesignupclassbtnbtndefaultdivformdivdivdivclasscolmd6textcenterleftborderpclasslogintextlogintoclaimtrackandfollowuponyourscholarshipplusyoucantrackyourbootcampreviewscomparebootcampsandsaveyourfavoriteschoolspdivclassformtraydivclasstextcenterloginrevealpnewtocoursereportpbuttonclassbtnbtndefaultidclose_log_insignupbuttondivdivclasstextcenterdisplaynonesignuprevealpalreadyhaveanaccountpbuttonclassbtnbtndefaultidclose_sign_uploginbuttondivdivdivdivdivspanclassiconcrossidloginclosespandivdivdivclassdisplaynoneidcurrentuseremailcurrent_useremaildivbodyhtml']\n", + "['doctypehtmlhtmlclassclientnojslangendirltrheadmetacharsetutf8titledataanalysiswikipediatitleheadbodyclassmediawikiltrsitedirltrmwhideemptyeltns0nssubjectpagedata_analysisrootpagedata_analysisskinvectoractionviewdividmwpagebaseclassnoprintdivdividmwheadbaseclassnoprintdivdividcontentclassmwbodyrolemainaidtopadividsitenoticeclassmwbodycontentcentralnoticedivdivclassmwindicatorsmwbodycontentdivh1idfirstheadingclassfirstheadinglangendataanalysish1dividbodycontentclassmwbodycontentdividsitesubclassnoprintfromwikipediathefreeencyclopediadivdividcontentsubdivdividjumptonavdivaclassmwjumplinkhrefmwheadjumptonavigationaaclassmwjumplinkhrefpsearchjumptosearchadividmwcontenttextlangendirltrclassmwcontentltrdivclassmwparseroutputtableclassverticalnavboxnowraplinksplainliststylefloatrightclearrightwidth220emmargin0010em10embackgroundf9f9f9border1pxsolidaaapadding02emborderspacing04em0textaligncenterlineheight14emfontsize88tbodytrtdstylepaddingtop04emlineheight12empartofaseriesonahrefwikistatisticstitlestatisticsstatisticsatdtrtrthstylepadding02em04em02empaddingtop0fontsize145lineheight12emahrefwikidata_visualizationtitledatavisualizationdatavisualizationathtrtrtdstylepadding001em04emdivclassnavframestylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftbackgroundddffddmajordimensionsdivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterulliahrefwikiexploratory_data_analysistitleexploratorydataanalysisexploratorydataanalysisa160822632ahrefwikiinformation_designtitleinformationdesigninformationdesignaliliahrefwikiinteractive_data_visualizationtitleinteractivedatavisualizationinteractivedatavisualizationaliliahrefwikidescriptive_statisticstitledescriptivestatisticsdescriptivestatisticsa160822632ahrefwikistatistical_inferencetitlestatisticalinferenceinferentialstatisticsaliliahrefwikistatistical_graphicstitlestatisticalgraphicsstatisticalgraphicsa160822632ahrefwikiplot_graphicstitleplotgraphicsplotaliliaclassmwselflinkselflinkdataanalysisa160822632ahrefwikiinfographictitleinfographicinfographicaliliahrefwikidata_sciencetitledatasciencedatasciencealiuldivdivtdtrtrtdstylepadding001em04emdivclassnavframestylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftbackgroundddffddimportantfiguresdivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterulliahrefwikitamara_munznertitletamaramunznertamaramunznera160822632ahrefwikiben_shneidermantitlebenshneidermanbenshneidermana160822632ahrefwikijohn_w_tukeyclassmwredirecttitlejohnwtukeyjohnwtukeya160822632ahrefwikiedward_tuftetitleedwardtufteedwardtuftea160822632ahrefwikifernanda_vic3a9gastitlefernandavigasfernandavigasa160822632ahrefwikihadley_wickhamtitlehadleywickhamhadleywickhamaliuldivdivtdtrtrtdstylepadding001em04emdivclassnavframestylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftbackgroundddffddinformationgraphictypesdivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterulliahrefwikiline_charttitlelinechartlinecharta160822632ahrefwikibar_charttitlebarchartbarchartaliliahrefwikihistogramtitlehistogramhistograma160822632ahrefwikiscatterplotclassmwredirecttitlescatterplotscatterplotaliliahrefwikiboxplotclassmwredirecttitleboxplotboxplota160822632ahrefwikipareto_charttitleparetochartparetochartaliliahrefwikipie_charttitlepiechartpiecharta160822632ahrefwikiarea_charttitleareachartareachartaliliahrefwikicontrol_charttitlecontrolchartcontrolcharta160822632ahrefwikirun_charttitlerunchartrunchartaliliahrefwikistemandleaf_displaytitlestemandleafdisplaystemandleafdisplaya160822632ahrefwikicartogramtitlecartogramcartogramaliliahrefwikismall_multipletitlesmallmultiplesmallmultiplea160822632ahrefwikisparklinetitlesparklinesparklinealiliahrefwikitable_informationtitletableinformationtablealiuldivdivtdtrtrtdstylepadding001em04emdivclassnavframestylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftbackgroundddffddrelatedtopicsdivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterulliahrefwikidatatitledatadataa160822632ahrefwikiinformationtitleinformationinformationaliliahrefwikibig_datatitlebigdatabigdataa160822632ahrefwikidatabasetitledatabasedatabasealiliahrefwikichartjunktitlechartjunkchartjunka160822632ahrefwikivisual_perceptiontitlevisualperceptionvisualperceptionaliliahrefwikiregression_analysistitleregressionanalysisregressionanalysisa160822632ahrefwikistatistical_modeltitlestatisticalmodelstatisticalmodelaliliahrefwikimisleading_graphtitlemisleadinggraphmisleadinggraphaliuldivdivtdtrtrtdstyletextalignrightfontsize115paddingtop06emdivclassplainlinkshlistnavbarminiulliclassnvviewahrefwikitemplatedata_visualizationtitletemplatedatavisualizationabbrtitleviewthistemplatevabbraliliclassnvtalkahrefwindexphptitletemplate_talkdata_visualizationampactioneditampredlink1classnewtitletemplatetalkdatavisualizationpagedoesnotexistabbrtitlediscussthistemplatetabbraliliclassnveditaclassexternaltexthrefenwikipediaorgwindexphptitletemplatedata_visualizationampactioneditabbrtitleeditthistemplateeabbraliuldivtdtrtbodytabletableclassverticalnavboxnowraplinksstylefloatrightclearrightwidth220emmargin0010em10embackgroundf9f9f9border1pxsolidaaapadding02emborderspacing04em0textaligncenterlineheight14emfontsize88tbodytrthstylepadding02em04em02emfontsize145lineheight12emahrefwikicomputational_physicstitlecomputationalphysicscomputationalphysicsathtrtrtdstylepadding02em004emahrefwikifilerayleightaylor_instabilityjpgclassimageimgaltrayleightaylorinstabilityjpgsrcuploadwikimediaorgwikipediacommonsthumb554rayleightaylor_instabilityjpg220pxrayleightaylor_instabilityjpgwidth220height220srcsetuploadwikimediaorgwikipediacommonsthumb554rayleightaylor_instabilityjpg330pxrayleightaylor_instabilityjpg15xuploadwikimediaorgwikipediacommonsthumb554rayleightaylor_instabilityjpg440pxrayleightaylor_instabilityjpg2xdatafilewidth500datafileheight500atdtrtrtdstylepadding001em04empahrefwikinumerical_analysistitlenumericalanalysisnumericalanalysisa160b183b32ahrefwikicomputer_simulationtitlecomputersimulationsimulationabrpaclassmwselflinkselflinkdataanalysisa160b183b32ahrefwikiscientific_visualizationtitlescientificvisualizationvisualizationatdtrtrtdstylepadding001em04emdivclassnavframecollapsedstylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftahrefwikipotentialtitlepotentialpotentialsadivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterahrefwikimorselongrange_potentialtitlemorselongrangepotentialmorselongrangepotentiala160b183b32ahrefwikilennardjones_potentialtitlelennardjonespotentiallennardjonespotentiala160b183b32ahrefwikiyukawa_potentialtitleyukawapotentialyukawapotentiala160b183b32ahrefwikimorse_potentialtitlemorsepotentialmorsepotentialadivdivtdtrtrtdstylepadding001em04emdivclassnavframecollapsedstylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftahrefwikicomputational_fluid_dynamicstitlecomputationalfluiddynamicsfluiddynamicsadivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterahrefwikifinite_difference_methodtitlefinitedifferencemethodfinitedifferencea160b183b32ahrefwikifinite_volume_methodtitlefinitevolumemethodfinitevolumeabrpahrefwikifinite_element_methodtitlefiniteelementmethodfiniteelementa160b183b32ahrefwikiboundary_element_methodtitleboundaryelementmethodboundaryelementabrahrefwikilattice_boltzmann_methodstitlelatticeboltzmannmethodslatticeboltzmanna160b183b32ahrefwikiriemann_solvertitleriemannsolverriemannsolverabrahrefwikidissipative_particle_dynamicstitledissipativeparticledynamicsdissipativeparticledynamicsabrahrefwikismoothedparticle_hydrodynamicstitlesmoothedparticlehydrodynamicssmoothedparticlehydrodynamicsabrpahrefwikiturbulence_modelingtitleturbulencemodelingturbulencemodelsadivdivtdtrtrtdstylepadding001em04emdivclassnavframecollapsedstylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftahrefwikimonte_carlo_methodtitlemontecarlomethodmontecarlomethodsadivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterahrefwikimonte_carlo_integrationtitlemontecarlointegrationintegrationa160b183b32ahrefwikigibbs_samplingtitlegibbssamplinggibbssamplinga160b183b32ahrefwikimetropolise28093hastings_algorithmtitlemetropolishastingsalgorithmmetropolisalgorithmadivdivtdtrtrtdstylepadding001em04emdivclassnavframecollapsedstylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftparticledivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterahrefwikinbody_simulationtitlenbodysimulationnbodya160b183b32ahrefwikiparticleincelltitleparticleincellparticleincellabrahrefwikimolecular_dynamicstitlemoleculardynamicsmoleculardynamicsadivdivtdtrtrtdstylepadding001em04emdivclassnavframecollapsedstylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftscientistsdivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterahrefwikisergei_k_godunovtitlesergeikgodunovgodunova160b183b32ahrefwikistanislaw_ulamtitlestanislawulamulama160b183b32ahrefwikijohn_von_neumanntitlejohnvonneumannvonneumanna160b183b32ahrefwikiboris_galerkintitleborisgalerkingalerkina160b183b32ahrefwikiedward_norton_lorenztitleedwardnortonlorenzlorenza160b183b32ahrefwikikenneth_g_wilsontitlekennethgwilsonwilsonadivdivtdtrtrtdstyletextalignrightfontsize115paddingtop06emdivclassplainlinkshlistnavbarminiulliclassnvviewahrefwikitemplatecomputational_physicstitletemplatecomputationalphysicsabbrtitleviewthistemplatevabbraliliclassnvtalkahrefwikitemplate_talkcomputational_physicstitletemplatetalkcomputationalphysicsabbrtitlediscussthistemplatetabbraliliclassnveditaclassexternaltexthrefenwikipediaorgwindexphptitletemplatecomputational_physicsampactioneditabbrtitleeditthistemplateeabbraliuldivtdtrtbodytablepbdataanalysisbisaprocessofinspectingahrefwikidata_cleansingtitledatacleansingcleansingaahrefwikidata_transformationtitledatatransformationtransformingaandahrefwikidata_modelingtitledatamodelingmodelingaahrefwikidatatitledatadataawiththegoalofdiscoveringusefulinformationinformingconclusionsandsupportingdecisionmakingdataanalysishasmultiplefacetsandapproachesencompassingdiversetechniquesunderavarietyofnameswhilebeingusedindifferentbusinessscienceandsocialsciencedomainsppahrefwikidata_miningtitledataminingdataminingaisaparticulardataanalysistechniquethatfocusesonmodelingandknowledgediscoveryforpredictiveratherthanpurelydescriptivepurposeswhileahrefwikibusiness_intelligencetitlebusinessintelligencebusinessintelligenceacoversdataanalysisthatreliesheavilyonaggregationfocusingmainlyonbusinessinformationsupidcite_ref1classreferenceahrefcite_note191193asupinstatisticalapplicationsdataanalysiscanbedividedintoahrefwikidescriptive_statisticstitledescriptivestatisticsdescriptivestatisticsaahrefwikiexploratory_data_analysistitleexploratorydataanalysisexploratorydataanalysisaedaandahrefwikistatistical_hypothesis_testingtitlestatisticalhypothesistestingconfirmatorydataanalysisacdaedafocusesondiscoveringnewfeaturesinthedatawhilecdafocusesonconfirmingorfalsifyingexistingahrefwikihypothesesclassmwredirecttitlehypotheseshypothesesaahrefwikipredictive_analyticstitlepredictiveanalyticspredictiveanalyticsafocusesonapplicationofstatisticalmodelsforpredictiveforecastingorclassificationwhileahrefwikitext_analyticsclassmwredirecttitletextanalyticstextanalyticsaappliesstatisticallinguisticandstructuraltechniquestoextractandclassifyinformationfromtextualsourcesaspeciesofahrefwikiunstructured_datatitleunstructureddataunstructureddataaalloftheabovearevarietiesofdataanalysisppahrefwikidata_integrationtitledataintegrationdataintegrationaisaprecursortodataanalysissupclassnoprintinlinetemplatestylemarginleft01emwhitespacenowrap91iahrefwikiwikipediamanual_of_stylewords_to_watchunsupported_attributionstitlewikipediamanualofstylewordstowatchspantitlethematerialnearthistagmayuseweaselwordsortoovagueattributionmarch2018accordingtowhomspanai93supanddataanalysisiscloselylinkedsupclassnoprintinlinetemplatestylewhitespacenowrap91iahrefwikiwikipediaplease_clarifytitlewikipediapleaseclarifyspantitlepleaseclarifythefollowingstatementorstatementswithagoodexplanationfromareliablesourcemarch2018howspanai93suptoahrefwikidata_visualizationtitledatavisualizationdatavisualizationaanddatadisseminationthetermidataanalysisiissometimesusedasasynonymfordatamodelingpdividtocclasstocinputtypecheckboxrolebuttonidtoctogglecheckboxclasstoctogglecheckboxstyledisplaynonedivclasstoctitlelangendirltrh2contentsh2spanclasstoctogglespanlabelclasstoctogglelabelfortoctogglecheckboxlabelspandivulliclasstoclevel1tocsection1ahrefthe_process_of_data_analysisspanclasstocnumber1spanspanclasstoctexttheprocessofdataanalysisspanaulliclasstoclevel2tocsection2ahrefdata_requirementsspanclasstocnumber11spanspanclasstoctextdatarequirementsspanaliliclasstoclevel2tocsection3ahrefdata_collectionspanclasstocnumber12spanspanclasstoctextdatacollectionspanaliliclasstoclevel2tocsection4ahrefdata_processingspanclasstocnumber13spanspanclasstoctextdataprocessingspanaliliclasstoclevel2tocsection5ahrefdata_cleaningspanclasstocnumber14spanspanclasstoctextdatacleaningspanaliliclasstoclevel2tocsection6ahrefexploratory_data_analysisspanclasstocnumber15spanspanclasstoctextexploratorydataanalysisspanaliliclasstoclevel2tocsection7ahrefmodeling_and_algorithmsspanclasstocnumber16spanspanclasstoctextmodelingandalgorithmsspanaliliclasstoclevel2tocsection8ahrefdata_productspanclasstocnumber17spanspanclasstoctextdataproductspanaliliclasstoclevel2tocsection9ahrefcommunicationspanclasstocnumber18spanspanclasstoctextcommunicationspanaliulliliclasstoclevel1tocsection10ahrefquantitative_messagesspanclasstocnumber2spanspanclasstoctextquantitativemessagesspanaliliclasstoclevel1tocsection11ahreftechniques_for_analyzing_quantitative_dataspanclasstocnumber3spanspanclasstoctexttechniquesforanalyzingquantitativedataspanaliliclasstoclevel1tocsection12ahrefanalytical_activities_of_data_usersspanclasstocnumber4spanspanclasstoctextanalyticalactivitiesofdatausersspanaliliclasstoclevel1tocsection13ahrefbarriers_to_effective_analysisspanclasstocnumber5spanspanclasstoctextbarrierstoeffectiveanalysisspanaulliclasstoclevel2tocsection14ahrefconfusing_fact_and_opinionspanclasstocnumber51spanspanclasstoctextconfusingfactandopinionspanaliliclasstoclevel2tocsection15ahrefcognitive_biasesspanclasstocnumber52spanspanclasstoctextcognitivebiasesspanaliliclasstoclevel2tocsection16ahrefinnumeracyspanclasstocnumber53spanspanclasstoctextinnumeracyspanaliulliliclasstoclevel1tocsection17ahrefother_topicsspanclasstocnumber6spanspanclasstoctextothertopicsspanaulliclasstoclevel2tocsection18ahrefsmart_buildingsspanclasstocnumber61spanspanclasstoctextsmartbuildingsspanaliliclasstoclevel2tocsection19ahrefanalytics_and_business_intelligencespanclasstocnumber62spanspanclasstoctextanalyticsandbusinessintelligencespanaliliclasstoclevel2tocsection20ahrefeducationspanclasstocnumber63spanspanclasstoctexteducationspanaliulliliclasstoclevel1tocsection21ahrefpractitioner_notesspanclasstocnumber7spanspanclasstoctextpractitionernotesspanaulliclasstoclevel2tocsection22ahrefinitial_data_analysisspanclasstocnumber71spanspanclasstoctextinitialdataanalysisspanaulliclasstoclevel3tocsection23ahrefquality_of_dataspanclasstocnumber711spanspanclasstoctextqualityofdataspanaliliclasstoclevel3tocsection24ahrefquality_of_measurementsspanclasstocnumber712spanspanclasstoctextqualityofmeasurementsspanaliliclasstoclevel3tocsection25ahrefinitial_transformationsspanclasstocnumber713spanspanclasstoctextinitialtransformationsspanaliliclasstoclevel3tocsection26ahrefdid_the_implementation_of_the_study_fulfill_the_intentions_of_the_research_designspanclasstocnumber714spanspanclasstoctextdidtheimplementationofthestudyfulfilltheintentionsoftheresearchdesignspanaliliclasstoclevel3tocsection27ahrefcharacteristics_of_data_samplespanclasstocnumber715spanspanclasstoctextcharacteristicsofdatasamplespanaliliclasstoclevel3tocsection28ahreffinal_stage_of_the_initial_data_analysisspanclasstocnumber716spanspanclasstoctextfinalstageoftheinitialdataanalysisspanaliliclasstoclevel3tocsection29ahrefanalysisspanclasstocnumber717spanspanclasstoctextanalysisspanaliliclasstoclevel3tocsection30ahrefnonlinear_analysisspanclasstocnumber718spanspanclasstoctextnonlinearanalysisspanaliulliliclasstoclevel2tocsection31ahrefmain_data_analysisspanclasstocnumber72spanspanclasstoctextmaindataanalysisspanaulliclasstoclevel3tocsection32ahrefexploratory_and_confirmatory_approachesspanclasstocnumber721spanspanclasstoctextexploratoryandconfirmatoryapproachesspanaliliclasstoclevel3tocsection33ahrefstability_of_resultsspanclasstocnumber722spanspanclasstoctextstabilityofresultsspanaliliclasstoclevel3tocsection34ahrefstatistical_methodsspanclasstocnumber723spanspanclasstoctextstatisticalmethodsspanaliulliulliliclasstoclevel1tocsection35ahreffree_software_for_data_analysisspanclasstocnumber8spanspanclasstoctextfreesoftwarefordataanalysisspanaliliclasstoclevel1tocsection36ahrefinternational_data_analysis_contestsspanclasstocnumber9spanspanclasstoctextinternationaldataanalysiscontestsspanaliliclasstoclevel1tocsection37ahrefsee_alsospanclasstocnumber10spanspanclasstoctextseealsospanaliliclasstoclevel1tocsection38ahrefreferencesspanclasstocnumber11spanspanclasstoctextreferencesspanaulliclasstoclevel2tocsection39ahrefcitationsspanclasstocnumber111spanspanclasstoctextcitationsspanaliliclasstoclevel2tocsection40ahrefbibliographyspanclasstocnumber112spanspanclasstoctextbibliographyspanaliulliliclasstoclevel1tocsection41ahreffurther_readingspanclasstocnumber12spanspanclasstoctextfurtherreadingspanaliuldivh2spanclassmwheadlineidthe_process_of_data_analysistheprocessofdataanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection1titleeditsectiontheprocessofdataanalysiseditaspanclassmweditsectionbracketspanspanh2divclassthumbtrightdivclassthumbinnerstylewidth352pxahrefwikifiledata_visualization_process_v1pngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumbbbadata_visualization_process_v1png350pxdata_visualization_process_v1pngwidth350height263classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumbbbadata_visualization_process_v1png525pxdata_visualization_process_v1png15xuploadwikimediaorgwikipediacommonsthumbbbadata_visualization_process_v1png700pxdata_visualization_process_v1png2xdatafilewidth960datafileheight720adivclassthumbcaptiondivclassmagnifyahrefwikifiledata_visualization_process_v1pngclassinternaltitleenlargeadivdatascienceprocessflowchartfromdoingdatasciencecathyoneilandrachelschutt2013divdivdivpanalysisreferstobreakingawholeintoitsseparatecomponentsforindividualexaminationdataanalysisisaahrefwikiprocess_theorytitleprocesstheoryprocessaforobtainingrawdataandconvertingitintoinformationusefulfordecisionmakingbyusersdataiscollectedandanalyzedtoanswerquestionstesthypothesesordisprovetheoriessupidcite_refjudd_and_mcclelland_1989_20classreferenceahrefcite_notejudd_and_mcclelland_1989291293asupppstatisticianahrefwikijohn_tukeytitlejohntukeyjohntukeyadefineddataanalysisin1961asproceduresforanalyzingdatatechniquesforinterpretingtheresultsofsuchprocedureswaysofplanningthegatheringofdatatomakeitsanalysiseasiermorepreciseormoreaccurateandallthemachineryandresultsofmathematicalstatisticswhichapplytoanalyzingdatasupidcite_ref3classreferenceahrefcite_note391393asupppthereareseveralphasesthatcanbedistinguisheddescribedbelowthephasesareiterativeinthatfeedbackfromlaterphasesmayresultinadditionalworkinearlierphasessupidcite_refo39neil_and_schutt_2013_40classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupph3spanclassmwheadlineiddata_requirementsdatarequirementsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection2titleeditsectiondatarequirementseditaspanclassmweditsectionbracketspanspanh3pthedataisnecessaryasinputstotheanalysiswhichisspecifiedbasedupontherequirementsofthosedirectingtheanalysisorcustomerswhowillusethefinishedproductoftheanalysisthegeneraltypeofentityuponwhichthedatawillbecollectedisreferredtoasanexperimentalunitegapersonorpopulationofpeoplespecificvariablesregardingapopulationegageandincomemaybespecifiedandobtaineddatamaybenumericalorcategoricalieatextlabelfornumberssupidcite_refo39neil_and_schutt_2013_41classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupph3spanclassmwheadlineiddata_collectiondatacollectionspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection3titleeditsectiondatacollectioneditaspanclassmweditsectionbracketspanspanh3pdataiscollectedfromavarietyofsourcestherequirementsmaybecommunicatedbyanalyststocustodiansofthedatasuchasinformationtechnologypersonnelwithinanorganizationthedatamayalsobecollectedfromsensorsintheenvironmentsuchastrafficcamerassatellitesrecordingdevicesetcitmayalsobeobtainedthroughinterviewsdownloadsfromonlinesourcesorreadingdocumentationsupidcite_refo39neil_and_schutt_2013_42classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupph3spanclassmwheadlineiddata_processingdataprocessingspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection4titleeditsectiondataprocessingeditaspanclassmweditsectionbracketspanspanh3divclassthumbtrightdivclassthumbinnerstylewidth352pxahrefwikifilerelationship_of_data_information_and_intelligencepngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumbeeerelationship_of_data2c_information_and_intelligencepng350pxrelationship_of_data2c_information_and_intelligencepngwidth350height263classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumbeeerelationship_of_data2c_information_and_intelligencepng525pxrelationship_of_data2c_information_and_intelligencepng15xuploadwikimediaorgwikipediacommonsthumbeeerelationship_of_data2c_information_and_intelligencepng700pxrelationship_of_data2c_information_and_intelligencepng2xdatafilewidth960datafileheight720adivclassthumbcaptiondivclassmagnifyahrefwikifilerelationship_of_data_information_and_intelligencepngclassinternaltitleenlargeadivthephasesoftheahrefwikiintelligence_cycletitleintelligencecycleintelligencecycleausedtoconvertrawinformationintoactionableintelligenceorknowledgeareconceptuallysimilartothephasesindataanalysisdivdivdivpdatainitiallyobtainedmustbeprocessedororganisedforanalysisforinstancethesemayinvolveplacingdataintorowsandcolumnsinatableformatieahrefwikidata_modeltitledatamodelstructureddataaforfurtheranalysissuchaswithinaspreadsheetorstatisticalsoftwaresupidcite_refo39neil_and_schutt_2013_43classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupph3spanclassmwheadlineiddata_cleaningdatacleaningspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection5titleeditsectiondatacleaningeditaspanclassmweditsectionbracketspanspanh3ponceprocessedandorganisedthedatamaybeincompletecontainduplicatesorcontainerrorstheneedfordatacleaningwillarisefromproblemsinthewaythatdataisenteredandstoreddatacleaningistheprocessofpreventingandcorrectingtheseerrorscommontasksincluderecordmatchingidentifyinginaccuracyofdataoverallqualityofexistingdatasupidcite_ref5classreferenceahrefcite_note591593asupdeduplicationandcolumnsegmentationsupidcite_ref6classreferenceahrefcite_note691693asupsuchdataproblemscanalsobeidentifiedthroughavarietyofanalyticaltechniquesforexamplewithfinancialinformationthetotalsforparticularvariablesmaybecomparedagainstseparatelypublishednumbersbelievedtobereliablesupidcite_refkoomey1_70classreferenceahrefcite_notekoomey1791793asupunusualamountsaboveorbelowpredeterminedthresholdsmayalsobereviewedthereareseveraltypesofdatacleaningthatdependonthetypeofdatasuchasphonenumbersemailaddressesemployersetcquantitativedatamethodsforoutlierdetectioncanbeusedtogetridoflikelyincorrectlyentereddatatextualdataspellcheckerscanbeusedtolessentheamountofmistypedwordsbutitishardertotellifthewordsthemselvesarecorrectsupidcite_ref8classreferenceahrefcite_note891893asupph3spanclassmwheadlineidexploratory_data_analysisexploratorydataanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection6titleeditsectionexploratorydataanalysiseditaspanclassmweditsectionbracketspanspanh3poncethedataiscleaneditcanbeanalyzedanalystsmayapplyavarietyoftechniquesreferredtoasahrefwikiexploratory_data_analysistitleexploratorydataanalysisexploratorydataanalysisatobeginunderstandingthemessagescontainedinthedatasupidcite_ref9classreferenceahrefcite_note991993asupsupidcite_ref10classreferenceahrefcite_note10911093asuptheprocessofexplorationmayresultinadditionaldatacleaningoradditionalrequestsfordatasotheseactivitiesmaybeiterativeinnatureahrefwikidescriptive_statisticstitledescriptivestatisticsdescriptivestatisticsasuchastheaverageormedianmaybegeneratedtohelpunderstandthedataahrefwikidata_visualizationtitledatavisualizationdatavisualizationamayalsobeusedtoexaminethedataingraphicalformattoobtainadditionalinsightregardingthemessageswithinthedatasupidcite_refo39neil_and_schutt_2013_44classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupph3spanclassmwheadlineidmodeling_and_algorithmsmodelingandalgorithmsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection7titleeditsectionmodelingandalgorithmseditaspanclassmweditsectionbracketspanspanh3pmathematicalformulasormodelscalledahrefwikialgorithmsclassmwredirecttitlealgorithmsalgorithmsamaybeappliedtothedatatoidentifyrelationshipsamongthevariablessuchasahrefwikicorrelation_and_dependencetitlecorrelationanddependencecorrelationaorahrefwikicausalitytitlecausalitycausationaingeneraltermsmodelsmaybedevelopedtoevaluateaparticularvariableinthedatabasedonothervariablesinthedatawithsomeresidualerrordependingonmodelaccuracyiedatamodelerrorsupidcite_refjudd_and_mcclelland_1989_21classreferenceahrefcite_notejudd_and_mcclelland_1989291293asupppahrefwikiinferential_statisticsclassmwredirecttitleinferentialstatisticsinferentialstatisticsaincludestechniquestomeasurerelationshipsbetweenparticularvariablesforexampleahrefwikiregression_analysistitleregressionanalysisregressionanalysisamaybeusedtomodelwhetherachangeinadvertisingindependentvariablexexplainsthevariationinsalesdependentvariableyinmathematicaltermsysalesisafunctionofxadvertisingitmaybedescribedasyaxberrorwherethemodelisdesignedsuchthataandbminimizetheerrorwhenthemodelpredictsyforagivenrangeofvaluesofxanalystsmayattempttobuildmodelsthataredescriptiveofthedatatosimplifyanalysisandcommunicateresultssupidcite_refjudd_and_mcclelland_1989_22classreferenceahrefcite_notejudd_and_mcclelland_1989291293asupph3spanclassmwheadlineiddata_productdataproductspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection8titleeditsectiondataproducteditaspanclassmweditsectionbracketspanspanh3padataproductisacomputerapplicationthattakesdatainputsandgeneratesoutputsfeedingthembackintotheenvironmentitmaybebasedonamodeloralgorithmanexampleisanapplicationthatanalyzesdataaboutcustomerpurchasinghistoryandrecommendsotherpurchasesthecustomermightenjoysupidcite_refo39neil_and_schutt_2013_45classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupph3spanclassmwheadlineidcommunicationcommunicationspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection9titleeditsectioncommunicationeditaspanclassmweditsectionbracketspanspanh3divclassthumbtrightdivclassthumbinnerstylewidth252pxahrefwikifilesocial_network_analysis_visualizationpngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumb99bsocial_network_analysis_visualizationpng250pxsocial_network_analysis_visualizationpngwidth250height186classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumb99bsocial_network_analysis_visualizationpng375pxsocial_network_analysis_visualizationpng15xuploadwikimediaorgwikipediacommonsthumb99bsocial_network_analysis_visualizationpng500pxsocial_network_analysis_visualizationpng2xdatafilewidth1185datafileheight883adivclassthumbcaptiondivclassmagnifyahrefwikifilesocial_network_analysis_visualizationpngclassinternaltitleenlargeadivahrefwikidata_visualizationtitledatavisualizationdatavisualizationatounderstandtheresultsofadataanalysissupidcite_ref11classreferenceahrefcite_note11911193asupdivdivdivdivrolenoteclasshatnotenavigationnotsearchablemainarticleahrefwikidata_visualizationtitledatavisualizationdatavisualizationadivponcethedataisanalyzeditmaybereportedinmanyformatstotheusersoftheanalysistosupporttheirrequirementstheusersmayhavefeedbackwhichresultsinadditionalanalysisassuchmuchoftheanalyticalcycleisiterativesupidcite_refo39neil_and_schutt_2013_46classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupppwhendetermininghowtocommunicatetheresultstheanalystmayconsiderahrefwikidata_visualizationtitledatavisualizationdatavisualizationatechniquestohelpclearlyandefficientlycommunicatethemessagetotheaudiencedatavisualizationusesahrefwikiinformation_displaysclassmwredirecttitleinformationdisplaysinformationdisplaysasuchastablesandchartstohelpcommunicatekeymessagescontainedinthedatatablesarehelpfultoauserwhomightlookupspecificnumberswhilechartsegbarchartsorlinechartsmayhelpexplainthequantitativemessagescontainedinthedataph2spanclassmwheadlineidquantitative_messagesquantitativemessagesspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection10titleeditsectionquantitativemessageseditaspanclassmweditsectionbracketspanspanh2divrolenoteclasshatnotenavigationnotsearchablemainarticleahrefwikidata_visualizationtitledatavisualizationdatavisualizationadivdivclassthumbtrightdivclassthumbinnerstylewidth252pxahrefwikifiletotal_revenues_and_outlays_as_percent_gdp_2013pngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumbffbtotal_revenues_and_outlays_as_percent_gdp_2013png250pxtotal_revenues_and_outlays_as_percent_gdp_2013pngwidth250height118classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumbffbtotal_revenues_and_outlays_as_percent_gdp_2013png375pxtotal_revenues_and_outlays_as_percent_gdp_2013png15xuploadwikimediaorgwikipediacommonsthumbffbtotal_revenues_and_outlays_as_percent_gdp_2013png500pxtotal_revenues_and_outlays_as_percent_gdp_2013png2xdatafilewidth1025datafileheight484adivclassthumbcaptiondivclassmagnifyahrefwikifiletotal_revenues_and_outlays_as_percent_gdp_2013pngclassinternaltitleenlargeadivatimeseriesillustratedwithalinechartdemonstratingtrendsinusfederalspendingandrevenueovertimedivdivdivdivclassthumbtrightdivclassthumbinnerstylewidth252pxahrefwikifileus_phillips_curve_2000_to_2013pngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumb77eus_phillips_curve_2000_to_2013png250pxus_phillips_curve_2000_to_2013pngwidth250height188classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumb77eus_phillips_curve_2000_to_2013png375pxus_phillips_curve_2000_to_2013png15xuploadwikimediaorgwikipediacommonsthumb77eus_phillips_curve_2000_to_2013png500pxus_phillips_curve_2000_to_2013png2xdatafilewidth960datafileheight720adivclassthumbcaptiondivclassmagnifyahrefwikifileus_phillips_curve_2000_to_2013pngclassinternaltitleenlargeadivascatterplotillustratingcorrelationbetweentwovariablesinflationandunemploymentmeasuredatpointsintimedivdivdivpstephenfewdescribedeighttypesofquantitativemessagesthatusersmayattempttounderstandorcommunicatefromasetofdataandtheassociatedgraphsusedtohelpcommunicatethemessagecustomersspecifyingrequirementsandanalystsperformingthedataanalysismayconsiderthesemessagesduringthecourseoftheprocesspollitimeseriesasinglevariableiscapturedoveraperiodoftimesuchastheunemploymentrateovera10yearperiodaahrefwikiline_charttitlelinechartlinechartamaybeusedtodemonstratethetrendlilirankingcategoricalsubdivisionsarerankedinascendingordescendingordersuchasarankingofsalesperformancetheimeasureibysalespersonstheicategoryiwitheachsalespersonaicategoricalsubdivisioniduringasingleperiodaahrefwikibar_charttitlebarchartbarchartamaybeusedtoshowthecomparisonacrossthesalespersonsliliparttowholecategoricalsubdivisionsaremeasuredasaratiotothewholeieapercentageoutof100aahrefwikipie_charttitlepiechartpiechartaorbarchartcanshowthecomparisonofratiossuchasthemarketsharerepresentedbycompetitorsinamarketlilideviationcategoricalsubdivisionsarecomparedagainstareferencesuchasacomparisonofactualvsbudgetexpensesforseveraldepartmentsofabusinessforagiventimeperiodabarchartcanshowcomparisonoftheactualversusthereferenceamountlilifrequencydistributionshowsthenumberofobservationsofaparticularvariableforgivenintervalsuchasthenumberofyearsinwhichthestockmarketreturnisbetweenintervalssuchas0101120etcaahrefwikihistogramtitlehistogramhistogramaatypeofbarchartmaybeusedforthisanalysislilicorrelationcomparisonbetweenobservationsrepresentedbytwovariablesxytodetermineiftheytendtomoveinthesameoroppositedirectionsforexampleplottingunemploymentxandinflationyforasampleofmonthsaahrefwikiscatter_plottitlescatterplotscatterplotaistypicallyusedforthismessagelilinominalcomparisoncomparingcategoricalsubdivisionsinnoparticularordersuchasthesalesvolumebyproductcodeabarchartmaybeusedforthiscomparisonliligeographicorgeospatialcomparisonofavariableacrossamaporlayoutsuchastheunemploymentratebystateorthenumberofpersonsonthevariousfloorsofabuildingaahrefwikicartogramtitlecartogramcartogramaisatypicalgraphicusedsupidcite_ref12classreferenceahrefcite_note12911293asupsupidcite_ref13classreferenceahrefcite_note13911393asupliolh2spanclassmwheadlineidtechniques_for_analyzing_quantitative_datatechniquesforanalyzingquantitativedataspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection11titleeditsectiontechniquesforanalyzingquantitativedataeditaspanclassmweditsectionbracketspanspanh2divrolenoteclasshatnotenavigationnotsearchableseealsoahrefwikiproblem_solvingtitleproblemsolvingproblemsolvingadivpauthorjonathankoomeyhasrecommendedaseriesofbestpracticesforunderstandingquantitativedatatheseincludepullicheckrawdataforanomaliespriortoperformingyouranalysislilireperformimportantcalculationssuchasverifyingcolumnsofdatathatareformuladrivenliliconfirmmaintotalsarethesumofsubtotalslilicheckrelationshipsbetweennumbersthatshouldberelatedinapredictablewaysuchasratiosovertimelilinormalizenumberstomakecomparisonseasiersuchasanalyzingamountsperpersonorrelativetogdporasanindexvaluerelativetoabaseyearlilibreakproblemsintocomponentpartsbyanalyzingfactorsthatledtotheresultssuchasahrefwikidupont_analysistitledupontanalysisdupontanalysisaofreturnonequitysupidcite_refkoomey1_71classreferenceahrefcite_notekoomey1791793asupliulpforthevariablesunderexaminationanalyststypicallyobtainahrefwikidescriptive_statisticstitledescriptivestatisticsdescriptivestatisticsaforthemsuchasthemeanaverageahrefwikimediantitlemedianmedianaandahrefwikistandard_deviationtitlestandarddeviationstandarddeviationatheymayalsoanalyzetheahrefwikiprobability_distributiontitleprobabilitydistributiondistributionaofthekeyvariablestoseehowtheindividualvaluesclusteraroundthemeanpdivclassthumbtrightdivclassthumbinnerstylewidth252pxahrefwikifileus_employment_statistics__march_2015pngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumbddbus_employment_statistics__march_2015png250pxus_employment_statistics__march_2015pngwidth250height163classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumbddbus_employment_statistics__march_2015png375pxus_employment_statistics__march_2015png15xuploadwikimediaorgwikipediacommonsthumbddbus_employment_statistics__march_2015png500pxus_employment_statistics__march_2015png2xdatafilewidth1200datafileheight783adivclassthumbcaptiondivclassmagnifyahrefwikifileus_employment_statistics__march_2015pngclassinternaltitleenlargeadivanillustrationoftheahrefwikimece_principletitlemeceprinciplemeceprincipleausedfordataanalysisdivdivdivptheconsultantsatahrefwikimckinsey_and_companyclassmwredirecttitlemckinseyandcompanymckinseyandcompanyanamedatechniqueforbreakingaquantitativeproblemdownintoitscomponentpartscalledtheahrefwikimece_principletitlemeceprinciplemeceprincipleaeachlayercanbebrokendownintoitscomponentseachofthesubcomponentsmustbeahrefwikimutually_exclusive_eventsclassmwredirecttitlemutuallyexclusiveeventsmutuallyexclusiveaofeachotherandahrefwikicollectively_exhaustive_eventstitlecollectivelyexhaustiveeventscollectivelyaadduptothelayerabovethemtherelationshipisreferredtoasmutuallyexclusiveandcollectivelyexhaustiveormeceforexampleprofitbydefinitioncanbebrokendownintototalrevenueandtotalcostinturntotalrevenuecanbeanalyzedbyitscomponentssuchasrevenueofdivisionsabandcwhicharemutuallyexclusiveofeachotherandshouldaddtothetotalrevenuecollectivelyexhaustiveppanalystsmayuserobuststatisticalmeasurementstosolvecertainanalyticalproblemsahrefwikihypothesis_testingclassmwredirecttitlehypothesistestinghypothesistestingaisusedwhenaparticularhypothesisaboutthetruestateofaffairsismadebytheanalystanddataisgatheredtodeterminewhetherthatstateofaffairsistrueorfalseforexamplethehypothesismightbethatunemploymenthasnoeffectoninflationwhichrelatestoaneconomicsconceptcalledtheahrefwikiphillips_curveclassmwredirecttitlephillipscurvephillipscurveahypothesistestinginvolvesconsideringthelikelihoodofahrefwikitype_i_and_type_ii_errorstitletypeiandtypeiierrorstypeiandtypeiierrorsawhichrelatetowhetherthedatasupportsacceptingorrejectingthehypothesisppahrefwikiregression_analysistitleregressionanalysisregressionanalysisamaybeusedwhentheanalystistryingtodeterminetheextenttowhichindependentvariablexaffectsdependentvariableyegtowhatextentdochangesintheunemploymentratexaffecttheinflationrateythisisanattempttomodelorfitanequationlineorcurvetothedatasuchthatyisafunctionofxpparelnofollowclassexternaltexthrefhttpswwwerimeurnlcentresnecessaryconditionanalysisnecessaryconditionanalysisancamaybeusedwhentheanalystistryingtodeterminetheextenttowhichindependentvariablexallowsvariableyegtowhatextentisacertainunemploymentratexnecessaryforacertaininflationrateywhereasmultipleregressionanalysisusesadditivelogicwhereeachxvariablecanproducetheoutcomeandthexscancompensateforeachothertheyaresufficientbutnotnecessarynecessaryconditionanalysisncausesnecessitylogicwhereoneormorexvariablesallowtheoutcometoexistbutmaynotproduceittheyarenecessarybutnotsufficienteachsinglenecessaryconditionmustbepresentandcompensationisnotpossibleph2spanclassmwheadlineidanalytical_activities_of_data_usersanalyticalactivitiesofdatausersspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection12titleeditsectionanalyticalactivitiesofdatauserseditaspanclassmweditsectionbracketspanspanh2pusersmayhaveparticulardatapointsofinterestwithinadatasetasopposedtogeneralmessagingoutlinedabovesuchlowleveluseranalyticactivitiesarepresentedinthefollowingtablethetaxonomycanalsobeorganizedbythreepolesofactivitiesretrievingvaluesfindingdatapointsandarrangingdatapointssupidcite_ref14classreferenceahrefcite_note14911493asupsupidcite_ref15classreferenceahrefcite_note15911593asupsupidcite_ref16classreferenceahrefcite_note16911693asupsupidcite_refcontaas_170classreferenceahrefcite_notecontaas17911793asupptableclasswikitableborder1tbodytrthaligncenterththwidth160taskththgeneralbrdescriptionththproformabrabstractththwidth35examplesthtrtrtdaligncenter1tdtdbretrievevaluebtdtdgivenasetofspecificcasesfindattributesofthosecasestdtdwhatarethevaluesofattributesxyzinthedatacasesabctdtdiwhatisthemileagepergallonofthefordmondeoipihowlongisthemoviegonewiththewindiptdtrtrtdaligncenter2tdtdbfilterbtdtdgivensomeconcreteconditionsonattributevaluesfinddatacasessatisfyingthoseconditionstdtdwhichdatacasessatisfyconditionsabctdtdiwhatkelloggscerealshavehighfiberipiwhatcomedieshavewonawardsippiwhichfundsunderperformedthesp500iptdtrtrtdaligncenter3tdtdbcomputederivedvaluebtdtdgivenasetofdatacasescomputeanaggregatenumericrepresentationofthosedatacasestdtdwhatisthevalueofaggregationfunctionfoveragivensetsofdatacasestdtdiwhatistheaveragecaloriecontentofpostcerealsipiwhatisthegrossincomeofallstorescombinedippihowmanymanufacturersofcarsarethereiptdtrtrtdaligncenter4tdtdbfindextremumbtdtdfinddatacasespossessinganextremevalueofanattributeoveritsrangewithinthedatasettdtdwhatarethetopbottomndatacaseswithrespecttoattributeatdtdiwhatisthecarwiththehighestmpgipiwhatdirectorfilmhaswonthemostawardsippiwhatmarvelstudiosfilmhasthemostrecentreleasedateiptdtrtrtdaligncenter5tdtdbsortbtdtdgivenasetofdatacasesrankthemaccordingtosomeordinalmetrictdtdwhatisthesortedorderofasetsofdatacasesaccordingtotheirvalueofattributeatdtdiorderthecarsbyweightipirankthecerealsbycaloriesiptdtrtrtdaligncenter6tdtdbdeterminerangebtdtdgivenasetofdatacasesandanattributeofinterestfindthespanofvalueswithinthesettdtdwhatistherangeofvaluesofattributeainasetsofdatacasestdtdiwhatistherangeoffilmlengthsipiwhatistherangeofcarhorsepowersippiwhatactressesareinthedatasetiptdtrtrtdaligncenter7tdtdbcharacterizedistributionbtdtdgivenasetofdatacasesandaquantitativeattributeofinterestcharacterizethedistributionofthatattributesvaluesoverthesettdtdwhatisthedistributionofvaluesofattributeainasetsofdatacasestdtdiwhatisthedistributionofcarbohydratesincerealsipiwhatistheagedistributionofshoppersiptdtrtrtdaligncenter8tdtdbfindanomaliesbtdtdidentifyanyanomalieswithinagivensetofdatacaseswithrespecttoagivenrelationshiporexpectationegstatisticaloutlierstdtdwhichdatacasesinasetsofdatacaseshaveunexpectedexceptionalvaluestdtdiarethereexceptionstotherelationshipbetweenhorsepowerandaccelerationipiarethereanyoutliersinproteiniptdtrtrtdaligncenter9tdtdbclusterbtdtdgivenasetofdatacasesfindclustersofsimilarattributevaluestdtdwhichdatacasesinasetsofdatacasesaresimilarinvalueforattributesxyztdtdiaretheregroupsofcerealswsimilarfatcaloriessugaripiisthereaclusteroftypicalfilmlengthsiptdtrtrtdaligncenter10tdtdbcorrelatebtdtdgivenasetofdatacasesandtwoattributesdetermineusefulrelationshipsbetweenthevaluesofthoseattributestdtdwhatisthecorrelationbetweenattributesxandyoveragivensetsofdatacasestdtdiisthereacorrelationbetweencarbohydratesandfatipiisthereacorrelationbetweencountryoforiginandmpgippidodifferentgendershaveapreferredpaymentmethodippiisthereatrendofincreasingfilmlengthovertheyearsiptdtrtrtdaligncenter11tdtdbahrefwikicontextualization_computer_sciencetitlecontextualizationcomputersciencecontextualizationasupidcite_refcontaas_171classreferenceahrefcite_notecontaas17911793asupbtdtdgivenasetofdatacasesfindcontextualrelevancyofthedatatotheuserstdtdwhichdatacasesinasetsofdatacasesarerelevanttothecurrentuserscontexttdtdiaretheregroupsofrestaurantsthathavefoodsbasedonmycurrentcaloricintakeitdtrtbodytableh2spanclassmwheadlineidbarriers_to_effective_analysisbarrierstoeffectiveanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection13titleeditsectionbarrierstoeffectiveanalysiseditaspanclassmweditsectionbracketspanspanh2pbarrierstoeffectiveanalysismayexistamongtheanalystsperformingthedataanalysisoramongtheaudiencedistinguishingfactfromopinioncognitivebiasesandinnumeracyareallchallengestosounddataanalysisph3spanclassmwheadlineidconfusing_fact_and_opinionconfusingfactandopinionspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection14titleeditsectionconfusingfactandopinioneditaspanclassmweditsectionbracketspanspanh3divclassquoteboxpullquotefloatrightstylewidth250px32styledatamwdeduplicatetemplatestylesr856303512mwparseroutputquoteboxbackgroundcolorf9f9f9border1pxsolidaaaboxsizingborderboxpadding10pxfontsize88mwparseroutputquoteboxfloatleftmargin05em14em08em0mwparseroutputquoteboxfloatrightmargin05em008em14emmwparseroutputquoteboxcenteredmargin05emauto08emautomwparseroutputquoteboxfloatleftpmwparseroutputquoteboxfloatrightpfontstyleinheritmwparseroutputquoteboxtitlebackgroundcolorf9f9f9textaligncenterfontsizelargerfontweightboldmwparseroutputquoteboxquotequotedbeforefontfamilytimesnewromanseriffontweightboldfontsizelargecolorgraycontentverticalalign45lineheight0mwparseroutputquoteboxquotequotedafterfontfamilytimesnewromanseriffontweightboldfontsizelargecolorgraycontentlineheight0mwparseroutputquoteboxleftalignedtextalignleftmwparseroutputquoteboxrightalignedtextalignrightmwparseroutputquoteboxcenteralignedtextaligncentermwparseroutputquoteboxcitedisplayblockfontstylenormalmediascreenandmaxwidth360pxmwparseroutputquoteboxminwidth100margin0008emimportantfloatnoneimportantstyledivclassquoteboxquoteleftalignedstyleyouareentitledtoyourownopinionbutyouarenotentitledtoyourownfactsdivpciteclassleftalignedstyleahrefwikidaniel_patrick_moynihantitledanielpatrickmoynihandanielpatrickmoynihanacitepdivpeffectiveanalysisrequiresobtainingrelevantahrefwikifacttitlefactfactsatoanswerquestionssupportaconclusionorformalahrefwikiopiniontitleopinionopinionaortestahrefwikihypothesesclassmwredirecttitlehypotheseshypothesesafactsbydefinitionareirrefutablemeaningthatanypersoninvolvedintheanalysisshouldbeabletoagreeuponthemforexampleinaugust2010theahrefwikicongressional_budget_officetitlecongressionalbudgetofficecongressionalbudgetofficeacboestimatedthatextendingtheahrefwikibush_tax_cutstitlebushtaxcutsbushtaxcutsaof2001and2003forthe20112020timeperiodwouldaddapproximately33trilliontothenationaldebtsupidcite_ref18classreferenceahrefcite_note18911893asupeveryoneshouldbeabletoagreethatindeedthisiswhatcboreportedtheycanallexaminethereportthismakesitafactwhetherpersonsagreeordisagreewiththecboistheirownopinionppasanotherexampletheauditorofapubliccompanymustarriveataformalopiniononwhetherfinancialstatementsofpubliclytradedcorporationsarefairlystatedinallmaterialrespectsthisrequiresextensiveanalysisoffactualdataandevidencetosupporttheiropinionwhenmakingtheleapfromfactstoopinionsthereisalwaysthepossibilitythattheopinionisahrefwikitype_i_and_type_ii_errorstitletypeiandtypeiierrorserroneousaph3spanclassmwheadlineidcognitive_biasescognitivebiasesspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection15titleeditsectioncognitivebiaseseditaspanclassmweditsectionbracketspanspanh3pthereareavarietyofahrefwikicognitive_biastitlecognitivebiascognitivebiasesathatcanadverselyaffectanalysisforexampleahrefwikiconfirmation_biastitleconfirmationbiasconfirmationbiasaisthetendencytosearchfororinterpretinformationinawaythatconfirmsonespreconceptionsinadditionindividualsmaydiscreditinformationthatdoesnotsupporttheirviewsppanalystsmaybetrainedspecificallytobeawareofthesebiasesandhowtoovercometheminhisbookipsychologyofintelligenceanalysisiretiredciaanalystahrefwikirichards_heuertitlerichardsheuerrichardsheuerawrotethatanalystsshouldclearlydelineatetheirassumptionsandchainsofinferenceandspecifythedegreeandsourceoftheuncertaintyinvolvedintheconclusionsheemphasizedprocedurestohelpsurfaceanddebatealternativepointsofviewsupidcite_refheuer1_190classreferenceahrefcite_noteheuer119911993asupph3spanclassmwheadlineidinnumeracyinnumeracyspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection16titleeditsectioninnumeracyeditaspanclassmweditsectionbracketspanspanh3peffectiveanalystsaregenerallyadeptwithavarietyofnumericaltechniqueshoweveraudiencesmaynothavesuchliteracywithnumbersorahrefwikinumeracytitlenumeracynumeracyatheyaresaidtobeinnumeratepersonscommunicatingthedatamayalsobeattemptingtomisleadormisinformdeliberatelyusingbadnumericaltechniquessupidcite_ref20classreferenceahrefcite_note20912093asupppforexamplewhetheranumberisrisingorfallingmaynotbethekeyfactormoreimportantmaybethenumberrelativetoanothernumbersuchasthesizeofgovernmentrevenueorspendingrelativetothesizeoftheeconomygdportheamountofcostrelativetorevenueincorporatefinancialstatementsthisnumericaltechniqueisreferredtoasnormalizationsupidcite_refkoomey1_72classreferenceahrefcite_notekoomey1791793asuporcommonsizingtherearemanysuchtechniquesemployedbyanalystswhetheradjustingforinflationiecomparingrealvsnominaldataorconsideringpopulationincreasesdemographicsetcanalystsapplyavarietyoftechniquestoaddressthevariousquantitativemessagesdescribedinthesectionaboveppanalystsmayalsoanalyzedataunderdifferentassumptionsorscenariosforexamplewhenanalystsperformahrefwikifinancial_statement_analysistitlefinancialstatementanalysisfinancialstatementanalysisatheywilloftenrecastthefinancialstatementsunderdifferentassumptionstohelparriveatanestimateoffuturecashflowwhichtheythendiscounttopresentvaluebasedonsomeinterestratetodeterminethevaluationofthecompanyoritsstocksimilarlythecboanalyzestheeffectsofvariouspolicyoptionsonthegovernmentsrevenueoutlaysanddeficitscreatingalternativefuturescenariosforkeymeasuresph2spanclassmwheadlineidother_topicsothertopicsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection17titleeditsectionothertopicseditaspanclassmweditsectionbracketspanspanh2h3spanclassmwheadlineidsmart_buildingssmartbuildingsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection18titleeditsectionsmartbuildingseditaspanclassmweditsectionbracketspanspanh3padataanalyticsapproachcanbeusedinordertopredictenergyconsumptioninbuildingssupidcite_reftowards_energy_efficiency_smart_buildings_models_based_on_intelligent_data_analytics_210classreferenceahrefcite_notetowards_energy_efficiency_smart_buildings_models_based_on_intelligent_data_analytics21912193asupthedifferentstepsofthedataanalysisprocessarecarriedoutinordertorealisesmartbuildingswherethebuildingmanagementandcontroloperationsincludingheatingventilationairconditioninglightingandsecurityarerealisedautomaticallybymimingtheneedsofthebuildingusersandoptimisingresourceslikeenergyandtimeph3spanclassmwheadlineidanalytics_and_business_intelligenceanalyticsandbusinessintelligencespanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection19titleeditsectionanalyticsandbusinessintelligenceeditaspanclassmweditsectionbracketspanspanh3divrolenoteclasshatnotenavigationnotsearchablemainarticleahrefwikianalyticstitleanalyticsanalyticsadivpanalyticsistheextensiveuseofdatastatisticalandquantitativeanalysisexplanatoryandpredictivemodelsandfactbasedmanagementtodrivedecisionsandactionsitisasubsetofahrefwikibusiness_intelligencetitlebusinessintelligencebusinessintelligenceawhichisasetoftechnologiesandprocessesthatusedatatounderstandandanalyzebusinessperformancesupidcite_refcompeting_on_analytics_2007_220classreferenceahrefcite_notecompeting_on_analytics_200722912293asupph3spanclassmwheadlineideducationeducationspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection20titleeditsectioneducationeditaspanclassmweditsectionbracketspanspanh3divclassthumbtrightdivclassthumbinnerstylewidth352pxahrefwikifileuseractivitiespngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumb880useractivitiespng350pxuseractivitiespngwidth350height279classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumb880useractivitiespng525pxuseractivitiespng15xuploadwikimediaorgwikipediacommonsthumb880useractivitiespng700pxuseractivitiespng2xdatafilewidth710datafileheight566adivclassthumbcaptiondivclassmagnifyahrefwikifileuseractivitiespngclassinternaltitleenlargeadivanalyticactivitiesofdatavisualizationusersdivdivdivpinahrefwikieducationtitleeducationeducationamosteducatorshaveaccesstoaahrefwikidata_systemtitledatasystemdatasystemaforthepurposeofanalyzingstudentdatasupidcite_ref23classreferenceahrefcite_note23912393asupthesedatasystemspresentdatatoeducatorsinanahrefwikioverthecounter_datatitleoverthecounterdataoverthecounterdataaformatembeddinglabelssupplementaldocumentationandahelpsystemandmakingkeypackagedisplayandcontentdecisionstoimprovetheaccuracyofeducatorsdataanalysessupidcite_ref24classreferenceahrefcite_note24912493asupph2spanclassmwheadlineidpractitioner_notespractitionernotesspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection21titleeditsectionpractitionernoteseditaspanclassmweditsectionbracketspanspanh2pthissectioncontainsrathertechnicalexplanationsthatmayassistpractitionersbutarebeyondthetypicalscopeofawikipediaarticleph3spanclassmwheadlineidinitial_data_analysisinitialdataanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection22titleeditsectioninitialdataanalysiseditaspanclassmweditsectionbracketspanspanh3pthemostimportantdistinctionbetweentheinitialdataanalysisphaseandthemainanalysisphaseisthatduringinitialdataanalysisonerefrainsfromanyanalysisthatisaimedatansweringtheoriginalresearchquestiontheinitialdataanalysisphaseisguidedbythefollowingfourquestionssupidcite_reffootnoteadr2008a337_250classreferenceahrefcite_notefootnoteadr2008a33725912593asupph4spanclassmwheadlineidquality_of_dataqualityofdataspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection23titleeditsectionqualityofdataeditaspanclassmweditsectionbracketspanspanh4pthequalityofthedatashouldbecheckedasearlyaspossibledataqualitycanbeassessedinseveralwaysusingdifferenttypesofanalysisfrequencycountsdescriptivestatisticsmeanstandarddeviationmediannormalityskewnesskurtosisfrequencyhistogramsnvariablesarecomparedwithcodingschemesofvariablesexternaltothedatasetandpossiblycorrectedifcodingschemesarenotcomparablepullitestforahrefwikicommonmethod_variancetitlecommonmethodvariancecommonmethodvariancealiulpthechoiceofanalysestoassessthedataqualityduringtheinitialdataanalysisphasedependsontheanalysesthatwillbeconductedinthemainanalysisphasesupidcite_reffootnoteadr2008a338341_260classreferenceahrefcite_notefootnoteadr2008a33834126912693asupph4spanclassmwheadlineidquality_of_measurementsqualityofmeasurementsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection24titleeditsectionqualityofmeasurementseditaspanclassmweditsectionbracketspanspanh4pthequalityoftheahrefwikimeasuring_instrumenttitlemeasuringinstrumentmeasurementinstrumentsashouldonlybecheckedduringtheinitialdataanalysisphasewhenthisisnotthefocusorresearchquestionofthestudyoneshouldcheckwhetherstructureofmeasurementinstrumentscorrespondstostructurereportedintheliteraturepptherearetwowaystoassessmeasurementnoteonlyonewayseemstobelistedpullianalysisofhomogeneityahrefwikiinternal_consistencytitleinternalconsistencyinternalconsistencyawhichgivesanindicationoftheahrefwikireliability_statisticstitlereliabilitystatisticsreliabilityaofameasurementinstrumentduringthisanalysisoneinspectsthevariancesoftheitemsandthescalestheahrefwikicronbach27s_alphatitlecronbach39salphacronbachsaofthescalesandthechangeinthecronbachsalphawhenanitemwouldbedeletedfromascalesupidcite_reffootnoteadr2008a341342_270classreferenceahrefcite_notefootnoteadr2008a34134227912793asupliulh4spanclassmwheadlineidinitial_transformationsinitialtransformationsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection25titleeditsectioninitialtransformationseditaspanclassmweditsectionbracketspanspanh4pafterassessingthequalityofthedataandofthemeasurementsonemightdecidetoimputemissingdataortoperforminitialtransformationsofoneormorevariablesalthoughthiscanalsobedoneduringthemainanalysisphasesupidcite_reffootnoteadr2008a344_280classreferenceahrefcite_notefootnoteadr2008a34428912893asupbrpossibletransformationsofvariablesaresupidcite_ref29classreferenceahrefcite_note29912993asuppullisquareroottransformationifthedistributiondiffersmoderatelyfromnormallililogtransformationifthedistributiondifferssubstantiallyfromnormalliliinversetransformationifthedistributiondiffersseverelyfromnormallilimakecategoricalordinaldichotomousifthedistributiondiffersseverelyfromnormalandnotransformationshelpliulh4spaniddid_the_implementation_of_the_study_fulfill_the_intentions_of_the_research_design3fspanspanclassmwheadlineiddid_the_implementation_of_the_study_fulfill_the_intentions_of_the_research_designdidtheimplementationofthestudyfulfilltheintentionsoftheresearchdesignspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection26titleeditsectiondidtheimplementationofthestudyfulfilltheintentionsoftheresearchdesigneditaspanclassmweditsectionbracketspanspanh4poneshouldcheckthesuccessoftheahrefwikirandomizationtitlerandomizationrandomizationaprocedureforinstancebycheckingwhetherbackgroundandsubstantivevariablesareequallydistributedwithinandacrossgroupsbrifthestudydidnotneedorusearandomizationprocedureoneshouldcheckthesuccessofthenonrandomsamplingforinstancebycheckingwhetherallsubgroupsofthepopulationofinterestarerepresentedinsamplebrotherpossibledatadistortionsthatshouldbecheckedarepulliahrefwikidropout_electronicsclassmwredirecttitledropoutelectronicsdropoutathisshouldbeidentifiedduringtheinitialdataanalysisphaseliliitemahrefwikiresponse_rate_surveytitleresponseratesurveynonresponseawhetherthisisrandomornotshouldbeassessedduringtheinitialdataanalysisphaselilitreatmentqualityusingahrefwikimanipulation_checktitlemanipulationcheckmanipulationchecksasupidcite_reffootnoteadr2008a344345_300classreferenceahrefcite_notefootnoteadr2008a34434530913093asupliulh4spanclassmwheadlineidcharacteristics_of_data_samplecharacteristicsofdatasamplespanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection27titleeditsectioncharacteristicsofdatasampleeditaspanclassmweditsectionbracketspanspanh4pinanyreportorarticlethestructureofthesamplemustbeaccuratelydescribeditisespeciallyimportanttoexactlydeterminethestructureofthesampleandspecificallythesizeofthesubgroupswhensubgroupanalyseswillbeperformedduringthemainanalysisphasebrthecharacteristicsofthedatasamplecanbeassessedbylookingatpullibasicstatisticsofimportantvariablesliliscatterplotslilicorrelationsandassociationslilicrosstabulationssupidcite_reffootnoteadr2008a345_310classreferenceahrefcite_notefootnoteadr2008a34531913193asupliulh4spanclassmwheadlineidfinal_stage_of_the_initial_data_analysisfinalstageoftheinitialdataanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection28titleeditsectionfinalstageoftheinitialdataanalysiseditaspanclassmweditsectionbracketspanspanh4pduringthefinalstagethefindingsoftheinitialdataanalysisaredocumentedandnecessarypreferableandpossiblecorrectiveactionsaretakenbralsotheoriginalplanforthemaindataanalysescanandshouldbespecifiedinmoredetailorrewrittenbrinordertodothisseveraldecisionsaboutthemaindataanalysescanandshouldbemadepulliinthecaseofnonahrefwikinormal_distributiontitlenormaldistributionnormalsashouldoneahrefwikidata_transformation_statisticstitledatatransformationstatisticstransformavariablesmakevariablescategoricalordinaldichotomousadapttheanalysismethodliliinthecaseofahrefwikimissing_datatitlemissingdatamissingdataashouldoneneglectorimputethemissingdatawhichimputationtechniqueshouldbeusedliliinthecaseofahrefwikioutliertitleoutlieroutliersashouldoneuserobustanalysistechniquesliliincaseitemsdonotfitthescaleshouldoneadaptthemeasurementinstrumentbyomittingitemsorratherensurecomparabilitywithotherusesofthemeasurementinstrumentsliliinthecaseoftoosmallsubgroupsshouldonedropthehypothesisaboutintergroupdifferencesorusesmallsampletechniqueslikeexacttestsorahrefwikibootstrapping_statisticstitlebootstrappingstatisticsbootstrappingaliliincasetheahrefwikirandomizationtitlerandomizationrandomizationaprocedureseemstobedefectivecanandshouldonecalculateahrefwikipropensity_score_matchingtitlepropensityscorematchingpropensityscoresaandincludethemascovariatesinthemainanalysessupidcite_reffootnoteadr2008a345346_320classreferenceahrefcite_notefootnoteadr2008a34534632913293asupliulh4spanclassmwheadlineidanalysisanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection29titleeditsectionanalysiseditaspanclassmweditsectionbracketspanspanh4pseveralanalysescanbeusedduringtheinitialdataanalysisphasesupidcite_reffootnoteadr2008a346347_330classreferenceahrefcite_notefootnoteadr2008a34634733913393asuppulliunivariatestatisticssinglevariablelilibivariateassociationscorrelationsliligraphicaltechniquesscatterplotsliulpitisimportanttotakethemeasurementlevelsofthevariablesintoaccountfortheanalysesasspecialstatisticaltechniquesareavailableforeachlevelsupidcite_reffootnoteadr2008a349353_340classreferenceahrefcite_notefootnoteadr2008a34935334913493asuppullinominalandordinalvariablesullifrequencycountsnumbersandpercentagesliliassociationsullicircumambulationscrosstabulationslilihierarchicalloglinearanalysisrestrictedtoamaximumof8variableslililoglinearanalysistoidentifyrelevantimportantvariablesandpossibleconfoundersliulliliexacttestsorbootstrappingincasesubgroupsaresmalllilicomputationofnewvariablesliullilicontinuousvariablesullidistributionullistatisticsmsdvarianceskewnesskurtosislilistemandleafdisplaysliliboxplotsliulliulliulh4spanclassmwheadlineidnonlinear_analysisnonlinearanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection30titleeditsectionnonlinearanalysiseditaspanclassmweditsectionbracketspanspanh4pnonlinearanalysiswillbenecessarywhenthedataisrecordedfromaahrefwikinonlinear_systemtitlenonlinearsystemnonlinearsystemanonlinearsystemscanexhibitcomplexdynamiceffectsincludingahrefwikibifurcation_theorytitlebifurcationtheorybifurcationsaahrefwikichaos_theorytitlechaostheorychaosaahrefwikiharmonicsclassmwredirecttitleharmonicsharmonicsaandahrefwikisubharmonicsclassmwredirecttitlesubharmonicssubharmonicsathatcannotbeanalyzedusingsimplelinearmethodsnonlineardataanalysisiscloselyrelatedtoahrefwikinonlinear_system_identificationtitlenonlinearsystemidentificationnonlinearsystemidentificationasupidcite_refsab1_350classreferenceahrefcite_notesab135913593asupph3spanclassmwheadlineidmain_data_analysismaindataanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection31titleeditsectionmaindataanalysiseditaspanclassmweditsectionbracketspanspanh3pinthemainanalysisphaseanalysesaimedatansweringtheresearchquestionareperformedaswellasanyotherrelevantanalysisneededtowritethefirstdraftoftheresearchreportsupidcite_reffootnoteadr2008b363_360classreferenceahrefcite_notefootnoteadr2008b36336913693asupph4spanclassmwheadlineidexploratory_and_confirmatory_approachesexploratoryandconfirmatoryapproachesspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection32titleeditsectionexploratoryandconfirmatoryapproacheseditaspanclassmweditsectionbracketspanspanh4pinthemainanalysisphaseeitheranexploratoryorconfirmatoryapproachcanbeadoptedusuallytheapproachisdecidedbeforedataiscollectedinanexploratoryanalysisnoclearhypothesisisstatedbeforeanalysingthedataandthedataissearchedformodelsthatdescribethedatawellinaconfirmatoryanalysisclearhypothesesaboutthedataaretestedppahrefwikiexploratory_data_analysistitleexploratorydataanalysisexploratorydataanalysisashouldbeinterpretedcarefullywhentestingmultiplemodelsatoncethereisahighchanceonfindingatleastoneofthemtobesignificantbutthiscanbeduetoaahrefwikitype_1_errorclassmwredirecttitletype1errortype1erroraitisimportanttoalwaysadjustthesignificancelevelwhentestingmultiplemodelswithforexampleaahrefwikibonferroni_correctiontitlebonferronicorrectionbonferronicorrectionaalsooneshouldnotfollowupanexploratoryanalysiswithaconfirmatoryanalysisinthesamedatasetanexploratoryanalysisisusedtofindideasforatheorybutnottotestthattheoryaswellwhenamodelisfoundexploratoryinadatasetthenfollowingupthatanalysiswithaconfirmatoryanalysisinthesamedatasetcouldsimplymeanthattheresultsoftheconfirmatoryanalysisareduetothesameahrefwikitype_1_errorclassmwredirecttitletype1errortype1errorathatresultedintheexploratorymodelinthefirstplacetheconfirmatoryanalysisthereforewillnotbemoreinformativethantheoriginalexploratoryanalysissupidcite_reffootnoteadr2008b361362_370classreferenceahrefcite_notefootnoteadr2008b36136237913793asupph4spanclassmwheadlineidstability_of_resultsstabilityofresultsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection33titleeditsectionstabilityofresultseditaspanclassmweditsectionbracketspanspanh4pitisimportanttoobtainsomeindicationabouthowgeneralizabletheresultsaresupidcite_reffootnoteadr2008b361371_380classreferenceahrefcite_notefootnoteadr2008b36137138913893asupwhilethisishardtocheckonecanlookatthestabilityoftheresultsaretheresultsreliableandreproducibletherearetwomainwaysofdoingthispulliahrefwikicrossvalidation_statisticstitlecrossvalidationstatisticscrossvalidationabysplittingthedatainmultiplepartswecancheckifananalysislikeafittedmodelbasedononepartofthedatageneralizestoanotherpartofthedataaswellliliahrefwikisensitivity_analysistitlesensitivityanalysissensitivityanalysisaaproceduretostudythebehaviorofasystemormodelwhenglobalparametersaresystematicallyvariedonewaytodothisiswithbootstrappingliulh4spanclassmwheadlineidstatistical_methodsstatisticalmethodsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection34titleeditsectionstatisticalmethodseditaspanclassmweditsectionbracketspanspanh4pmanystatisticalmethodshavebeenusedforstatisticalanalysesaverybrieflistoffourofthemorepopularmethodsispulliahrefwikigeneral_linear_modeltitlegenerallinearmodelgenerallinearmodelaawidelyusedmodelonwhichvariousmethodsarebasedegahrefwikit_testclassmwredirecttitlettestttestaahrefwikianovaclassmwredirecttitleanovaanovaaahrefwikiancovaclassmwredirecttitleancovaancovaaahrefwikimanovaclassmwredirecttitlemanovamanovaausableforassessingtheeffectofseveralpredictorsononeormorecontinuousdependentvariablesliliahrefwikigeneralized_linear_modeltitlegeneralizedlinearmodelgeneralizedlinearmodelaanextensionofthegenerallinearmodelfordiscretedependentvariablesliliahrefwikistructural_equation_modellingclassmwredirecttitlestructuralequationmodellingstructuralequationmodellingausableforassessinglatentstructuresfrommeasuredmanifestvariablesliliahrefwikiitem_response_theorytitleitemresponsetheoryitemresponsetheoryamodelsformostlyassessingonelatentvariablefromseveralbinarymeasuredvariableseganexamliulh2spanclassmwheadlineidfree_software_for_data_analysisfreesoftwarefordataanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection35titleeditsectionfreesoftwarefordataanalysiseditaspanclassmweditsectionbracketspanspanh2ulliahrefwikidevinfotitledevinfodevinfoaadatabasesystemendorsedbytheahrefwikiunited_nations_development_grouptitleunitednationsdevelopmentgroupunitednationsdevelopmentgroupaformonitoringandanalyzinghumandevelopmentliliahrefwikielkititleelkielkiadataminingframeworkinjavawithdataminingorientedvisualizationfunctionsliliahrefwikiknimetitleknimeknimeathekonstanzinformationminerauserfriendlyandcomprehensivedataanalyticsframeworkliliahrefwikiorange_softwaretitleorangesoftwareorangeaavisualprogrammingtoolfeaturingahrefwikiinteractive_data_visualizationtitleinteractivedatavisualizationinteractiveaahrefwikidata_visualizationtitledatavisualizationdatavisualizationaandmethodsforstatisticaldataanalysisahrefwikidata_miningtitledataminingdataminingaandahrefwikimachine_learningtitlemachinelearningmachinelearningaliliarelnofollowclassexternaltexthrefhttpsfolkuionoohammerpastpastafreesoftwareforscientificdataanalysisliliahrefwikiphysics_analysis_workstationtitlephysicsanalysisworkstationpawafortrancdataanalysisframeworkdevelopedatahrefwikicerntitlecerncernaliliahrefwikir_programming_languagetitlerprogramminglanguageraaprogramminglanguageandsoftwareenvironmentforstatisticalcomputingandgraphicsliliahrefwikiroottitlerootrootacdataanalysisframeworkdevelopedatahrefwikicerntitlecerncernaliliahrefwikiscipytitlescipyscipyaandahrefwikipandas_softwaretitlepandassoftwarepandasapythonlibrariesfordataanalysisliulh2spanclassmwheadlineidinternational_data_analysis_contestsinternationaldataanalysiscontestsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection36titleeditsectioninternationaldataanalysiscontestseditaspanclassmweditsectionbracketspanspanh2pdifferentcompaniesororganizationsholdadataanalysisconteststoencourageresearchersutilizetheirdataortosolveaparticularquestionusingdataanalysisafewexamplesofwellknowninternationaldataanalysiscontestsareasfollowspullikagglecompetitionheldbyahrefwikikaggletitlekagglekaggleasupidcite_ref39classreferenceahrefcite_note39913993asupliliahrefwikiltpp_international_data_analysis_contestclassmwredirecttitleltppinternationaldataanalysiscontestltppdataanalysiscontestaheldbyahrefwikifhwaclassmwredirecttitlefhwafhwaaandahrefwikiasceclassmwredirecttitleasceasceasupidcite_refnehme_20160929_400classreferenceahrefcite_notenehme_2016092940914093asupsupidcite_ref41classreferenceahrefcite_note41914193asupliulh2spanclassmwheadlineidsee_alsoseealsospanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection37titleeditsectionseealsoeditaspanclassmweditsectionbracketspanspanh2divrolenavigationarialabelportalsclassnoprintportalplainlisttrightstylemargin05em005em1embordersolidaaa1pxulstyledisplaytableboxsizingborderboxpadding01emmaxwidth175pxbackgroundf9f9f9fontsize85lineheight110fontstyleitalicfontweightboldlistyledisplaytablerowspanstyledisplaytablecellpadding02emverticalalignmiddletextaligncenterahrefwikifilefisher_iris_versicolor_sepalwidthsvgclassimageimgalticonsrcuploadwikimediaorgwikipediacommonsthumb440fisher_iris_versicolor_sepalwidthsvg32pxfisher_iris_versicolor_sepalwidthsvgpngwidth32height22classnoviewersrcsetuploadwikimediaorgwikipediacommonsthumb440fisher_iris_versicolor_sepalwidthsvg48pxfisher_iris_versicolor_sepalwidthsvgpng15xuploadwikimediaorgwikipediacommonsthumb440fisher_iris_versicolor_sepalwidthsvg64pxfisher_iris_versicolor_sepalwidthsvgpng2xdatafilewidth822datafileheight567aspanspanstyledisplaytablecellpadding02em02em02em03emverticalalignmiddleahrefwikiportalstatisticstitleportalstatisticsstatisticsportalaspanliuldivdivclassdivcolcolumnscolumnwidthstylemozcolumnwidth20emwebkitcolumnwidth20emcolumnwidth20emulliahrefwikiactuarial_sciencetitleactuarialscienceactuarialsciencealiliahrefwikianalyticstitleanalyticsanalyticsaliliahrefwikibig_datatitlebigdatabigdataaliliahrefwikibusiness_intelligencetitlebusinessintelligencebusinessintelligencealiliahrefwikicensoring_statisticstitlecensoringstatisticscensoringstatisticsaliliahrefwikicomputational_physicstitlecomputationalphysicscomputationalphysicsaliliahrefwikidata_acquisitiontitledataacquisitiondataacquisitionaliliahrefwikidata_blendingtitledatablendingdatablendingaliliahrefwikidata_governancetitledatagovernancedatagovernancealiliahrefwikidata_miningtitledataminingdataminingaliliahrefwikidata_presentation_architectureclassmwredirecttitledatapresentationarchitecturedatapresentationarchitecturealiliahrefwikidata_sciencetitledatasciencedatasciencealiliahrefwikidigital_signal_processingtitledigitalsignalprocessingdigitalsignalprocessingaliliahrefwikidimension_reductionclassmwredirecttitledimensionreductiondimensionreductionaliliahrefwikiearly_case_assessmenttitleearlycaseassessmentearlycaseassessmentaliliahrefwikiexploratory_data_analysistitleexploratorydataanalysisexploratorydataanalysisaliliahrefwikifourier_analysistitlefourieranalysisfourieranalysisaliliahrefwikimachine_learningtitlemachinelearningmachinelearningaliliahrefwikimultilinear_principal_component_analysistitlemultilinearprincipalcomponentanalysismultilinearpcaaliliahrefwikimultilinear_subspace_learningtitlemultilinearsubspacelearningmultilinearsubspacelearningaliliahrefwikimultiway_data_analysistitlemultiwaydataanalysismultiwaydataanalysisaliliahrefwikinearest_neighbor_searchtitlenearestneighborsearchnearestneighborsearchaliliahrefwikinonlinear_system_identificationtitlenonlinearsystemidentificationnonlinearsystemidentificationaliliahrefwikipredictive_analyticstitlepredictiveanalyticspredictiveanalyticsaliliahrefwikiprincipal_component_analysistitleprincipalcomponentanalysisprincipalcomponentanalysisaliliahrefwikiqualitative_researchtitlequalitativeresearchqualitativeresearchaliliahrefwikiscientific_computingclassmwredirecttitlescientificcomputingscientificcomputingaliliahrefwikistructured_data_analysis_statisticstitlestructureddataanalysisstatisticsstructureddataanalysisstatisticsaliliahrefwikisystem_identificationtitlesystemidentificationsystemidentificationaliliahrefwikitest_methodtitletestmethodtestmethodaliliahrefwikitext_analyticsclassmwredirecttitletextanalyticstextanalyticsaliliahrefwikiunstructured_datatitleunstructureddataunstructureddataaliliahrefwikiwavelettitlewaveletwaveletaliuldivh2spanclassmwheadlineidreferencesreferencesspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection38titleeditsectionreferenceseditaspanclassmweditsectionbracketspanspanh2h3spanclassmwheadlineidcitationscitationsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection39titleeditsectioncitationseditaspanclassmweditsectionbracketspanspanh3divclassrefliststyleliststyletypedecimaldivclassmwreferenceswrapmwreferencescolumnsolclassreferencesliidcite_note1spanclassmwcitebacklinkbahrefcite_ref1abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpswebarchiveorgweb20171018181046httpsspotlessdatacomblogexploringdataanalysisexploringdataanalysisaspanliliidcite_notejudd_and_mcclelland_19892spanclassmwcitebacklinkahrefcite_refjudd_and_mcclelland_1989_20supibabisupaahrefcite_refjudd_and_mcclelland_1989_21supibbbisupaahrefcite_refjudd_and_mcclelland_1989_22supibcbisupaspanspanclassreferencetextciteclasscitationbookjuddcharlesandmcclelandgary1989iahrefwikidata_analysisclassmwredirecttitledataanalysisdataanalysisaiharcourtbracejovanovichahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources0155167650titlespecialbooksources01551676500155167650acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenrebookamprftbtitledataanalysisamprftpubharcourtbracejovanovichamprftdate1989amprftisbn0155167650amprftaulastjudd2ccharlesandamprftaufirstmccleland2cgaryamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanstyledatamwdeduplicatetemplatestylesr861714446mwparseroutputcitecitationfontstyleinheritmwparseroutputqquotesmwparseroutputcodecs1codecolorinheritbackgroundinheritborderinheritpaddinginheritmwparseroutputcs1lockfreeabackgroundurluploadwikimediaorgwikipediacommonsthumb665lockgreensvg9pxlockgreensvgpngnorepeatbackgroundpositionright1emcentermwparseroutputcs1locklimitedamwparseroutputcs1lockregistrationabackgroundurluploadwikimediaorgwikipediacommonsthumbdd6lockgrayalt2svg9pxlockgrayalt2svgpngnorepeatbackgroundpositionright1emcentermwparseroutputcs1locksubscriptionabackgroundurluploadwikimediaorgwikipediacommonsthumbaaalockredalt2svg9pxlockredalt2svgpngnorepeatbackgroundpositionright1emcentermwparseroutputcs1subscriptionmwparseroutputcs1registrationcolor555mwparseroutputcs1subscriptionspanmwparseroutputcs1registrationspanborderbottom1pxdottedcursorhelpmwparseroutputcs1hiddenerrordisplaynonefontsize100mwparseroutputcs1visibleerrorfontsize100mwparseroutputcs1subscriptionmwparseroutputcs1registrationmwparseroutputcs1formatfontsize95mwparseroutputcs1kernleftmwparseroutputcs1kernwlleftpaddingleft02emmwparseroutputcs1kernrightmwparseroutputcs1kernwlrightpaddingright02emstylespanliliidcite_note3spanclassmwcitebacklinkbahrefcite_ref3abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpprojecteuclidorgdownloadpdf_1euclidaoms1177704711johntukeythefutureofdataanalysisjuly1961aspanliliidcite_noteo39neil_and_schutt_20134spanclassmwcitebacklinkahrefcite_refo39neil_and_schutt_2013_40supibabisupaahrefcite_refo39neil_and_schutt_2013_41supibbbisupaahrefcite_refo39neil_and_schutt_2013_42supibcbisupaahrefcite_refo39neil_and_schutt_2013_43supibdbisupaahrefcite_refo39neil_and_schutt_2013_44supibebisupaahrefcite_refo39neil_and_schutt_2013_45supibfbisupaahrefcite_refo39neil_and_schutt_2013_46supibgbisupaspanspanclassreferencetextciteclasscitationbookoneilcathyandschuttrachel2013iahrefwindexphptitledoing_data_scienceampactioneditampredlink1classnewtitledoingdatasciencepagedoesnotexistdoingdatascienceaioreillyahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources9781449358655titlespecialbooksources97814493586559781449358655acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenrebookamprftbtitledoingdatascienceamprftpubo27reillyamprftdate2013amprftisbn9781449358655amprftaulasto27neil2ccathyandamprftaufirstschutt2crachelamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note5spanclassmwcitebacklinkbahrefcite_ref5abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpswwwsuntecindiacomblogcleandataincrmthekeytogeneratesalesreadyleadsandboostyourrevenuepoolcleandataincrmthekeytogeneratesalesreadyleadsandboostyourrevenuepoolaretrieved29thjuly2016spanliliidcite_note6spanclassmwcitebacklinkbahrefcite_ref6abspanspanclassreferencetextciteclasscitationwebarelnofollowclassexternaltexthrefhttpresearchmicrosoftcomenusprojectsdatacleaningdatacleaningamicrosoftresearchspanclassreferenceaccessdateretrievedspanclassnowrap26octoberspan2013spancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenreunknownamprftbtitledatacleaningamprftpubmicrosoftresearchamprft_idhttp3a2f2fresearchmicrosoftcom2fenus2fprojects2fdatacleaning2famprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_notekoomey17spanclassmwcitebacklinkahrefcite_refkoomey1_70supibabisupaahrefcite_refkoomey1_71supibbbisupaahrefcite_refkoomey1_72supibcbisupaspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpwwwperceptualedgecomarticlesbeyequantitative_datapdfperceptualedgejonathankoomeybestpracticesforunderstandingquantitativedatafebruary142006aspanliliidcite_note8spanclassmwcitebacklinkbahrefcite_ref8abspanspanclassreferencetextciteclasscitationjournalhellersteinjoseph27february2008arelnofollowclassexternaltexthrefhttpdbcsberkeleyedujmhpaperscleaningunecepdfquantitativedatacleaningforlargedatabasesaspanclasscs1formatpdfspanieecscomputersciencedivisioni3spanclassreferenceaccessdateretrievedspanclassnowrap26octoberspan2013spancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3ajournalamprftgenrearticleamprftjtitleeecscomputersciencedivisionamprftatitlequantitativedatacleaningforlargedatabasesamprftpages3amprftdate20080227amprftaulasthellersteinamprftaufirstjosephamprft_idhttp3a2f2fdbcsberkeleyedu2fjmh2fpapers2fcleaningunecepdfamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note9spanclassmwcitebacklinkbahrefcite_ref9abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpwwwperceptualedgecomarticlesiethe_right_graphpdfstephenfewperceptualedgeselectingtherightgraphforyourmessageseptember2004aspanliliidcite_note10spanclassmwcitebacklinkbahrefcite_ref10abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpcllstanfordeduwillbcoursebehrens97pmpdfbehrensprinciplesandproceduresofexploratorydataanalysisamericanpsychologicalassociation1997aspanliliidcite_note11spanclassmwcitebacklinkbahrefcite_ref11abspanspanclassreferencetextciteclasscitationjournalgrandjeanmartin2014arelnofollowclassexternaltexthrefhttpwwwmartingrandjeanchwpcontentuploads201502grandjean2014connaissancereseaupdflaconnaissanceestunrseauaspanclasscs1formatpdfspanilescahiersdunumriqueib10b33754ahrefwikidigital_object_identifiertitledigitalobjectidentifierdoiaarelnofollowclassexternaltexthrefdoiorg1031662flcn1033754103166lcn1033754acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3ajournalamprftgenrearticleamprftjtitlelescahiersdunumc3a9riqueamprftatitlelaconnaissanceestunrc3a9seauamprftvolume10amprftissue3amprftpages3754amprftdate2014amprft_idinfo3adoi2f1031662flcn1033754amprftaulastgrandjeanamprftaufirstmartinamprft_idhttp3a2f2fwwwmartingrandjeanch2fwpcontent2fuploads2f20152f022fgrandjean2014connaissancereseaupdfamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note12spanclassmwcitebacklinkbahrefcite_ref12abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpwwwperceptualedgecomarticlesiethe_right_graphpdfstephenfewperceptualedgeselectingtherightgraphforyourmessage2004aspanliliidcite_note13spanclassmwcitebacklinkbahrefcite_ref13abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpwwwperceptualedgecomarticlesmiscgraph_selection_matrixpdfstephenfewperceptualedgegraphselectionmatrixaspanliliidcite_note14spanclassmwcitebacklinkbahrefcite_ref14abspanspanclassreferencetextrobertamarjameseaganandjohnstasko2005arelnofollowclassexternaltexthrefhttpwwwccgatechedustaskopapersinfovis05pdflowlevelcomponentsofanalyticactivityininformationvisualizationaspanliliidcite_note15spanclassmwcitebacklinkbahrefcite_ref15abspanspanclassreferencetextwilliamnewman1994arelnofollowclassexternaltexthrefhttpwwwmdnpresscomwmnpdfschi94proformas2pdfapreliminaryanalysisoftheproductsofhciresearchusingproformaabstractsaspanliliidcite_note16spanclassmwcitebacklinkbahrefcite_ref16abspanspanclassreferencetextmaryshaw2002arelnofollowclassexternaltexthrefhttpwwwcscmueducomposeftpshawfinetapspdfwhatmakesgoodresearchinsoftwareengineeringaspanliliidcite_notecontaas17spanclassmwcitebacklinkahrefcite_refcontaas_170supibabisupaahrefcite_refcontaas_171supibbbisupaspanspanclassreferencetextciteclasscitationwebarelnofollowclassexternaltexthrefhttpsscholarspacemanoahawaiieduhandle1012541879contaasanapproachtointernetscalecontextualisationfordevelopingefficientinternetofthingsapplicationsaischolarspaceihicss50spanclassreferenceaccessdateretrievedspanclassnowrapmay24span2017spancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3ajournalamprftgenreunknownamprftjtitlescholarspaceamprftatitlecontaas3aanapproachtointernetscalecontextualisationfordevelopingefficientinternetofthingsapplicationsamprft_idhttps3a2f2fscholarspacemanoahawaiiedu2fhandle2f101252f41879amprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note18spanclassmwcitebacklinkbahrefcite_ref18abspanspanclassreferencetextciteclasscitationwebarelnofollowclassexternaltexthrefhttpwwwcbogovpublication21670congressionalbudgetofficethebudgetandeconomicoutlookaugust2010table17onpage24aspanclasscs1formatpdfspanspanclassreferenceaccessdateretrievedspanclassnowrap20110331spanspancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenreunknownamprftbtitlecongressionalbudgetofficethebudgetandeconomicoutlookaugust2010table17onpage24amprft_idhttp3a2f2fwwwcbogov2fpublication2f21670amprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_noteheuer119spanclassmwcitebacklinkbahrefcite_refheuer1_190abspanspanclassreferencetextciteclasscitationwebarelnofollowclassexternaltexthrefhttpswwwciagovlibrarycenterforthestudyofintelligencecsipublicationsbooksandmonographspsychologyofintelligenceanalysisart3htmlintroductionaiciagovicitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3ajournalamprftgenreunknownamprftjtitleciagovamprftatitleintroductionamprft_idhttps3a2f2fwwwciagov2flibrary2fcenterforthestudyofintelligence2fcsipublications2fbooksandmonographs2fpsychologyofintelligenceanalysis2fart3htmlamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note20spanclassmwcitebacklinkbahrefcite_ref20abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpwwwbloombergviewcomarticles20141028badmaththatpassesforinsightbloombergbarryritholzbadmaththatpassesforinsightoctober282014aspanliliidcite_notetowards_energy_efficiency_smart_buildings_models_based_on_intelligent_data_analytics21spanclassmwcitebacklinkbahrefcite_reftowards_energy_efficiency_smart_buildings_models_based_on_intelligent_data_analytics_210abspanspanclassreferencetextciteclasscitationjournalgonzlezvidalauroramorenocanovictoria2016towardsenergyefficiencysmartbuildingsmodelsbasedonintelligentdataanalyticsiprocediacomputerscienceib83belsevier994999ahrefwikidigital_object_identifiertitledigitalobjectidentifierdoiaarelnofollowclassexternaltexthrefdoiorg1010162fjprocs201604213101016jprocs201604213acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3ajournalamprftgenrearticleamprftjtitleprocediacomputerscienceamprftatitletowardsenergyefficiencysmartbuildingsmodelsbasedonintelligentdataanalyticsamprftvolume83amprftissueelsevieramprftpages994999amprftdate2016amprft_idinfo3adoi2f1010162fjprocs201604213amprftaulastgonzc3a1lezvidalamprftaufirstauroraamprftaumorenocano2cvictoriaamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_notecompeting_on_analytics_200722spanclassmwcitebacklinkbahrefcite_refcompeting_on_analytics_2007_220abspanspanclassreferencetextciteclasscitationbookdavenportthomasandharrisjeanne2007iahrefwindexphptitlecompeting_on_analyticsampactioneditampredlink1classnewtitlecompetingonanalyticspagedoesnotexistcompetingonanalyticsaioreillyahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources9781422103326titlespecialbooksources97814221033269781422103326acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenrebookamprftbtitlecompetingonanalyticsamprftpubo27reillyamprftdate2007amprftisbn9781422103326amprftaulastdavenport2cthomasandamprftaufirstharris2cjeanneamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note23spanclassmwcitebacklinkbahrefcite_ref23abspanspanclassreferencetextaaronsd2009arelnofollowclassexternaltexthrefhttpsearchproquestcomdocview202710770accountid28180reportfindsstatesoncoursetobuildpupildatasystemsaieducationweek29i136spanliliidcite_note24spanclassmwcitebacklinkbahrefcite_ref24abspanspanclassreferencetextrankinj2013march28arelnofollowclassexternaltexthrefhttpssaselluminatecomsiteexternalrecordingplaybacklinktabledropinsid2008350ampsuidd4df60c7117d5a77fe3aed546909ed2howdatasystemsampreportscaneitherfightorpropagatethedataanalysiserrorepidemicandhoweducatorleaderscanhelpaipresentationconductedfromtechnologyinformationcenterforadministrativeleadershipticalschoolleadershipsummitispanliliidcite_notefootnoteadr2008a33725spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a337_250abspanspanclassreferencetextahrefciterefadr2008aadr2008aap160337spanliliidcite_notefootnoteadr2008a33834126spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a338341_260abspanspanclassreferencetextahrefciterefadr2008aadr2008aapp160338341spanliliidcite_notefootnoteadr2008a34134227spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a341342_270abspanspanclassreferencetextahrefciterefadr2008aadr2008aapp160341342spanliliidcite_notefootnoteadr2008a34428spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a344_280abspanspanclassreferencetextahrefciterefadr2008aadr2008aap160344spanliliidcite_note29spanclassmwcitebacklinkbahrefcite_ref29abspanspanclassreferencetexttabachnickampfidell2007p8788spanliliidcite_notefootnoteadr2008a34434530spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a344345_300abspanspanclassreferencetextahrefciterefadr2008aadr2008aapp160344345spanliliidcite_notefootnoteadr2008a34531spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a345_310abspanspanclassreferencetextahrefciterefadr2008aadr2008aap160345spanliliidcite_notefootnoteadr2008a34534632spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a345346_320abspanspanclassreferencetextahrefciterefadr2008aadr2008aapp160345346spanliliidcite_notefootnoteadr2008a34634733spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a346347_330abspanspanclassreferencetextahrefciterefadr2008aadr2008aapp160346347spanliliidcite_notefootnoteadr2008a34935334spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a349353_340abspanspanclassreferencetextahrefciterefadr2008aadr2008aapp160349353spanliliidcite_notesab135spanclassmwcitebacklinkbahrefcite_refsab1_350abspanspanclassreferencetextbillingssanonlinearsystemidentificationnarmaxmethodsinthetimefrequencyandspatiotemporaldomainswiley2013spanliliidcite_notefootnoteadr2008b36336spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008b363_360abspanspanclassreferencetextahrefciterefadr2008badr2008bap160363spanliliidcite_notefootnoteadr2008b36136237spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008b361362_370abspanspanclassreferencetextahrefciterefadr2008badr2008bapp160361362spanliliidcite_notefootnoteadr2008b36137138spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008b361371_380abspanspanclassreferencetextahrefciterefadr2008badr2008bapp160361371spanliliidcite_note39spanclassmwcitebacklinkbahrefcite_ref39abspanspanclassreferencetextciteclasscitationnewsarelnofollowclassexternaltexthrefhttpwwwsymmetrymagazineorgarticlejuly2014themachinelearningcommunitytakesonthehiggsthemachinelearningcommunitytakesonthehiggsaisymmetrymagazineijuly152014spanclassreferenceaccessdateretrievedspanclassnowrap14januaryspan2015spancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3ajournalamprftgenrearticleamprftjtitlesymmetrymagazineamprftatitlethemachinelearningcommunitytakesonthehiggsamprftdate20140715amprft_idhttp3a2f2fwwwsymmetrymagazineorg2farticle2fjuly20142fthemachinelearningcommunitytakesonthehiggs2famprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_notenehme_2016092940spanclassmwcitebacklinkbahrefcite_refnehme_20160929_400abspanspanclassreferencetextciteclasscitationwebnehmejeanseptember292016arelnofollowclassexternaltexthrefhttpswwwfhwadotgovresearchtfhrcprogramsinfrastructurepavementsltpp2016_2017_asce_ltpp_contest_guidelinescfmltppinternationaldataanalysiscontestafederalhighwayadministrationspanclassreferenceaccessdateretrievedspanclassnowrapoctober22span2017spancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenreunknownamprftbtitleltppinternationaldataanalysiscontestamprftpubfederalhighwayadministrationamprftdate20160929amprftaulastnehmeamprftaufirstjeanamprft_idhttps3a2f2fwwwfhwadotgov2fresearch2ftfhrc2fprograms2finfrastructure2fpavements2fltpp2f2016_2017_asce_ltpp_contest_guidelinescfmamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note41spanclassmwcitebacklinkbahrefcite_ref41abspanspanclassreferencetextciteclasscitationwebarelnofollowclassexternaltexthrefhttpswwwfhwadotgovresearchtfhrcprogramsinfrastructurepavementsltppdatagovlongtermpavementperformanceltppamay262016spanclassreferenceaccessdateretrievedspanclassnowrapnovember10span2017spancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenreunknownamprftbtitledatagov3alongtermpavementperformance28ltpp29amprftdate20160526amprft_idhttps3a2f2fwwwfhwadotgov2fresearch2ftfhrc2fprograms2finfrastructure2fpavements2fltpp2famprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanlioldivdivh3spanclassmwheadlineidbibliographybibliographyspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection40titleeditsectionbibliographyeditaspanclassmweditsectionbracketspanspanh3ulliciteidciterefadr2008aclasscitationbookahrefwikiherman_j_adc3a8rtitlehermanjadradrhermanja2008achapter14phasesandinitialstepsindataanalysisinadrhermanjahrefwikigideon_j_mellenberghtitlegideonjmellenberghmellenberghgideonjaahrefwikidavid_hand_statisticiantitledavidhandstatisticianhanddavidjaarelnofollowclassexternaltexthrefhttpwwwworldcatorgtitleadvisingonresearchmethodsaconsultantscompanionoclc905799857viewportiadvisingonresearchmethods160aconsultantscompanioniahuizennetherlandsjohannesvankesselpubpp160333356ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources9789079418015titlespecialbooksources97890794180159789079418015aahrefwikioclctitleoclcoclca160arelnofollowclassexternaltexthrefwwwworldcatorgoclc905799857905799857acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenrebookitemamprftatitlechapter143aphasesandinitialstepsindataanalysisamprftbtitleadvisingonresearchmethods3aaconsultant27scompanionamprftplacehuizen2cnetherlandsamprftpages333356amprftpubjohannesvankesselpubamprftdate2008amprft_idinfo3aoclcnum2f905799857amprftisbn9789079418015amprftaulastadc3a8ramprftaufirsthermanjamprft_idhttp3a2f2fwwwworldcatorg2ftitle2fadvisingonresearchmethodsaconsultantscompanion2foclc2f9057998572fviewportamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446liliciteidciterefadr2008bclasscitationbookahrefwikiherman_j_adc3a8rtitlehermanjadradrhermanja2008bchapter15themainanalysisphaseinadrhermanjahrefwikigideon_j_mellenberghtitlegideonjmellenberghmellenberghgideonjaahrefwikidavid_hand_statisticiantitledavidhandstatisticianhanddavidjaarelnofollowclassexternaltexthrefhttpwwwworldcatorgtitleadvisingonresearchmethodsaconsultantscompanionoclc905799857viewportiadvisingonresearchmethods160aconsultantscompanioniahuizennetherlandsjohannesvankesselpubpp160357386ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources9789079418015titlespecialbooksources97890794180159789079418015aahrefwikioclctitleoclcoclca160arelnofollowclassexternaltexthrefwwwworldcatorgoclc905799857905799857acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenrebookitemamprftatitlechapter153athemainanalysisphaseamprftbtitleadvisingonresearchmethods3aaconsultant27scompanionamprftplacehuizen2cnetherlandsamprftpages357386amprftpubjohannesvankesselpubamprftdate2008amprft_idinfo3aoclcnum2f905799857amprftisbn9789079418015amprftaulastadc3a8ramprftaufirsthermanjamprft_idhttp3a2f2fwwwworldcatorg2ftitle2fadvisingonresearchmethodsaconsultantscompanion2foclc2f9057998572fviewportamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446lilitabachnickbgampfidellls2007chapter4cleaningupyouractscreeningdatapriortoanalysisinbgtabachnickamplsfidelledsusingmultivariatestatisticsfiftheditionpp16060116bostonpearsoneducationincallynandbaconliulh2spanclassmwheadlineidfurther_readingfurtherreadingspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection41titleeditsectionfurtherreadingeditaspanclassmweditsectionbracketspanspanh2tablerolepresentationclassmboxsmallplainlinkssistersiteboxstylebackgroundcolorf9f9f9border1pxsolidaaacolor000tbodytrtdclassmboximageimgaltsrcuploadwikimediaorgwikipediacommonsthumb991wikiversitylogosvg40pxwikiversitylogosvgpngwidth40height32classnoviewersrcsetuploadwikimediaorgwikipediacommonsthumb991wikiversitylogosvg60pxwikiversitylogosvgpng15xuploadwikimediaorgwikipediacommonsthumb991wikiversitylogosvg80pxwikiversitylogosvgpng2xdatafilewidth1000datafileheight800tdtdclassmboxtextplainlistwikiversityhaslearningresourcesaboutibahrefhttpsenwikiversityorgwikispecialsearchdata_analysisclassextiwtitlevspecialsearchdataanalysisdataanalysisabitdtrtbodytableulliahrefwikiadc3a8r_hjclassmwredirecttitleadrhjadrhjaampahrefwikigideon_j_mellenberghtitlegideonjmellenberghmellenberghgjawithcontributionsbydjhand2008iadvisingonresearchmethodsaconsultantscompanionihuizenthenetherlandsjohannesvankesselpublishinglilichambersjohnmclevelandwilliamskleinerbeattukeypaula1983igraphicalmethodsfordataanalysisiwadsworthduxburypresslinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources053498052xtitlespecialbooksources053498052x053498052xalilifandangoarmando2008ipythondataanalysis2ndeditionipacktpublisherslilijuranjosephmgodfreyablanton1999ijuransqualityhandbook5theditioninewyorkmcgrawhilllinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources007034003xtitlespecialbooksources007034003x007034003xalililewisbeckmichaels1995idataanalysisanintroductionisagepublicationsinclinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources0803957726titlespecialbooksources08039577260803957726alilinistsematech2008arelnofollowclassexternaltexthrefhttpwwwitlnistgovdiv898handbookihandbookofstatisticalmethodsialilipyzdekt2003iqualityengineeringhandbookilinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources0824746147titlespecialbooksources08247461470824746147aliliahrefwikirichard_veryardtitlerichardveryardrichardveryarda1984ipragmaticdataanalysisioxford160blackwellscientificpublicationslinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources0632013117titlespecialbooksources06320131170632013117alilitabachnickbgfidellls2007iusingmultivariatestatistics5theditionibostonpearsoneducationincallynandbaconlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources9780205459384titlespecialbooksources97802054593849780205459384aliuldivrolenavigationclassnavboxarialabelledbyauthority_control_frameless_amp124texttop_amp12410px_amp124altedit_this_at_wikidata_amp124linkhttpsamp58wwwwikidataorgwikiq1988917amp124edit_this_at_wikidatastylepadding3pxtableclassnowraplinkshlistnavboxinnerstyleborderspacing0backgroundtransparentcolorinherittbodytrthidauthority_control_frameless_amp124texttop_amp12410px_amp124altedit_this_at_wikidata_amp124linkhttpsamp58wwwwikidataorgwikiq1988917amp124edit_this_at_wikidatascoperowclassnavboxgroupstylewidth1ahrefwikihelpauthority_controltitlehelpauthoritycontrolauthoritycontrolaahrefhttpswwwwikidataorgwikiq1988917titleeditthisatwikidataimgalteditthisatwikidatasrcuploadwikimediaorgwikipediacommonsthumb773blue_pencilsvg10pxblue_pencilsvgpngwidth10height10styleverticalaligntexttopsrcsetuploadwikimediaorgwikipediacommonsthumb773blue_pencilsvg15pxblue_pencilsvgpng15xuploadwikimediaorgwikipediacommonsthumb773blue_pencilsvg20pxblue_pencilsvgpng2xdatafilewidth600datafileheight600athtdclassnavboxlistnavboxoddstyletextalignleftborderleftwidth2pxborderleftstylesolidwidth100padding0pxdivstylepadding0em025emullispanclassnowrapahrefwikiintegrated_authority_filetitleintegratedauthorityfilegndaspanclassuidarelnofollowclassexternaltexthrefhttpsdnbinfognd4123037141230371aspanspanliuldivtdtrtbodytabledivdivrolenavigationclassnavboxarialabelledbydatastylepadding3pxtableclassnowraplinkscollapsibleautocollapsenavboxinnerstyleborderspacing0backgroundtransparentcolorinherittbodytrthscopecolclassnavboxtitlecolspan2divclassplainlinkshlistnavbarminiulliclassnvviewahrefwikitemplatedatatitletemplatedataabbrtitleviewthistemplatestylebackgroundnonetransparentbordernonemozboxshadownonewebkitboxshadownoneboxshadownonepadding0vabbraliliclassnvtalkahrefwikitemplate_talkdatatitletemplatetalkdataabbrtitlediscussthistemplatestylebackgroundnonetransparentbordernonemozboxshadownonewebkitboxshadownoneboxshadownonepadding0tabbraliliclassnveditaclassexternaltexthrefenwikipediaorgwindexphptitletemplatedataampactioneditabbrtitleeditthistemplatestylebackgroundnonetransparentbordernonemozboxshadownonewebkitboxshadownoneboxshadownonepadding0eabbraliuldivdividdatastylefontsize114margin04emahrefwikidata_computingtitledatacomputingdataadivthtrtrtdcolspan2classnavboxlistnavboxoddhliststylewidth100padding0pxdivstylepadding0em025emulliaclassmwselflinkselflinkanalysisaliliahrefwikidata_archaeologytitledataarchaeologyarchaeologyaliliahrefwikidata_cleansingtitledatacleansingcleansingaliliahrefwikidata_collectiontitledatacollectioncollectionaliliahrefwikidata_compressiontitledatacompressioncompressionaliliahrefwikidata_corruptiontitledatacorruptioncorruptionaliliahrefwikidata_curationtitledatacurationcurationaliliahrefwikidata_degradationtitledatadegradationdegradationaliliahrefwikidata_editingtitledataeditingeditingaliliahrefwikidata_farmingtitledatafarmingfarmingaliliahrefwikidata_format_managementtitledataformatmanagementformatmanagementaliliahrefwikidata_fusiontitledatafusionfusionaliliahrefwikidata_integrationtitledataintegrationintegrationaliliahrefwikidata_integritytitledataintegrityintegrityaliliahrefwikidata_librarytitledatalibrarylibraryaliliahrefwikidata_losstitledatalosslossaliliahrefwikidata_managementtitledatamanagementmanagementaliliahrefwikidata_migrationtitledatamigrationmigrationaliliahrefwikidata_miningtitledataminingminingaliliahrefwikidata_preprocessingtitledatapreprocessingpreprocessingaliliahrefwikidata_preservationtitledatapreservationpreservationaliliahrefwikiinformation_privacytitleinformationprivacyprotectionprivacyaliliahrefwikidata_recoverytitledatarecoveryrecoveryaliliahrefwikidata_reductiontitledatareductionreductionaliliahrefwikidata_retentiontitledataretentionretentionaliliahrefwikidata_qualitytitledataqualityqualityaliliahrefwikidata_sciencetitledatasciencesciencealiliahrefwikidata_scrapingtitledatascrapingscrapingaliliahrefwikidata_scrubbingtitledatascrubbingscrubbingaliliahrefwikidata_securitytitledatasecuritysecurityaliliahrefwikidata_stewardshipclassmwredirecttitledatastewardshipstewardshipaliliahrefwikidata_storagetitledatastoragestoragealiliahrefwikidata_validationtitledatavalidationvalidationaliliahrefwikidata_warehousetitledatawarehousewarehousealiliahrefwikidata_wranglingtitledatawranglingwranglingmungingaliuldivtdtrtbodytabledivnewpplimitreportparsedbymw1258cachedtime20181023205919cacheexpiry1900800dynamiccontentfalsecputimeusage0596secondsrealtimeusage0744secondspreprocessorvisitednodecount31771000000preprocessorgeneratednodecount01500000postexpandincludesize729952097152bytestemplateargumentsize28332097152byteshighestexpansiondepth1240expensiveparserfunctioncount5500unstriprecursiondepth120unstrippostexpandsize621355000000bytesnumberofwikibaseentitiesloaded3400luatimeusage023010000secondsluamemoryusage576mb50mbtransclusionexpansiontimereportmscallstemplate100005231141total31981673051templatereflist1744912485templatecite_book971508066templateisbn763399371templateaccording_to_whom734383943templatecite_journal698365241templateauthority_control673352172templatesidebar_with_collapsible_lists658344081templatefixspan582304591templatedata_visualizationsavedinparsercachewithkeyenwikipcacheidhash27209540canonicalandtimestamp20181023205918andrevisionid862584710divnoscriptimgsrcenwikipediaorgwikispecialcentralautologinstarttype1x1alttitlewidth1height1stylebordernonepositionabsolutenoscriptdivdivclassprintfooterretrievedfromadirltrhrefhttpsenwikipediaorgwindexphptitledata_analysisampoldid862584710httpsenwikipediaorgwindexphptitledata_analysisampoldid862584710adivdividcatlinksclasscatlinksdatamwinterfacedividmwnormalcatlinksclassmwnormalcatlinksahrefwikihelpcategorytitlehelpcategorycategoriesaulliahrefwikicategorydata_analysistitlecategorydataanalysisdataanalysisaliliahrefwikicategoryscientific_methodtitlecategoryscientificmethodscientificmethodaliliahrefwikicategoryparticle_physicstitlecategoryparticlephysicsparticlephysicsaliliahrefwikicategorycomputational_fields_of_studytitlecategorycomputationalfieldsofstudycomputationalfieldsofstudyaliuldivdividmwhiddencatlinksclassmwhiddencatlinksmwhiddencatshiddenhiddencategoriesulliahrefwikicategoryall_articles_with_specifically_marked_weaselworded_phrasestitlecategoryallarticleswithspecificallymarkedweaselwordedphrasesallarticleswithspecificallymarkedweaselwordedphrasesaliliahrefwikicategoryarticles_with_specifically_marked_weaselworded_phrases_from_march_2018titlecategoryarticleswithspecificallymarkedweaselwordedphrasesfrommarch2018articleswithspecificallymarkedweaselwordedphrasesfrommarch2018aliliahrefwikicategorywikipedia_articles_needing_clarification_from_march_2018titlecategorywikipediaarticlesneedingclarificationfrommarch2018wikipediaarticlesneedingclarificationfrommarch2018aliliahrefwikicategorywikipedia_articles_with_gnd_identifierstitlecategorywikipediaarticleswithgndidentifierswikipediaarticleswithgndidentifiersaliuldivdivdivclassvisualcleardivdivdivdividmwnavigationh2navigationmenuh2dividmwheaddividppersonalrolenavigationclassarialabelledbyppersonallabelh3idppersonallabelpersonaltoolsh3ulliidptanonuserpagenotloggedinliliidptanontalkahrefwikispecialmytalktitlediscussionabouteditsfromthisipaddressnaccesskeyntalkaliliidptanoncontribsahrefwikispecialmycontributionstitlealistofeditsmadefromthisipaddressyaccesskeyycontributionsaliliidptcreateaccountahrefwindexphptitlespecialcreateaccountampreturntodataanalysistitleyouareencouragedtocreateanaccountandloginhoweveritisnotmandatorycreateaccountaliliidptloginahrefwindexphptitlespecialuserloginampreturntodataanalysistitleyou039reencouragedtologinhoweverit039snotmandatoryoaccesskeyologinaliuldivdividleftnavigationdividpnamespacesrolenavigationclassvectortabsarialabelledbypnamespaceslabelh3idpnamespaceslabelnamespacesh3ulliidcanstabmainclassselectedspanahrefwikidata_analysistitleviewthecontentpagecaccesskeycarticleaspanliliidcatalkspanahrefwikitalkdata_analysisreldiscussiontitlediscussionaboutthecontentpagetaccesskeyttalkaspanliuldivdividpvariantsrolenavigationclassvectormenuemptyportletarialabelledbypvariantslabelinputtypecheckboxclassvectormenucheckboxarialabelledbypvariantslabelh3idpvariantslabelspanvariantsspanh3divclassmenuululdivdivdivdividrightnavigationdividpviewsrolenavigationclassvectortabsarialabelledbypviewslabelh3idpviewslabelviewsh3ulliidcaviewclasscollapsibleselectedspanahrefwikidata_analysisreadaspanliliidcaeditclasscollapsiblespanahrefwindexphptitledata_analysisampactionedittitleeditthispageeaccesskeyeeditaspanliliidcahistoryclasscollapsiblespanahrefwindexphptitledata_analysisampactionhistorytitlepastrevisionsofthispagehaccesskeyhviewhistoryaspanliuldivdividpcactionsrolenavigationclassvectormenuemptyportletarialabelledbypcactionslabelinputtypecheckboxclassvectormenucheckboxarialabelledbypcactionslabelh3idpcactionslabelspanmorespanh3divclassmenuululdivdivdividpsearchrolesearchh3labelforsearchinputsearchlabelh3formactionwindexphpidsearchformdividsimplesearchinputtypesearchnamesearchplaceholdersearchwikipediatitlesearchwikipediafaccesskeyfidsearchinputinputtypehiddenvaluespecialsearchnametitleinputtypesubmitnamefulltextvaluesearchtitlesearchwikipediaforthistextidmwsearchbuttonclasssearchbuttonmwfallbacksearchbuttoninputtypesubmitnamegovaluegotitlegotoapagewiththisexactnameifitexistsidsearchbuttonclasssearchbuttondivformdivdivdivdividmwpaneldividplogorolebanneraclassmwwikilogohrefwikimain_pagetitlevisitthemainpageadivdivclassportalrolenavigationidpnavigationarialabelledbypnavigationlabelh3idpnavigationlabelnavigationh3divclassbodyulliidnmainpagedescriptionahrefwikimain_pagetitlevisitthemainpagezaccesskeyzmainpagealiliidncontentsahrefwikiportalcontentstitleguidestobrowsingwikipediacontentsaliliidnfeaturedcontentahrefwikiportalfeatured_contenttitlefeaturedcontentthebestofwikipediafeaturedcontentaliliidncurrenteventsahrefwikiportalcurrent_eventstitlefindbackgroundinformationoncurrenteventscurrenteventsaliliidnrandompageahrefwikispecialrandomtitleloadarandomarticlexaccesskeyxrandomarticlealiliidnsitesupportahrefhttpsdonatewikimediaorgwikispecialfundraiserredirectorutm_sourcedonateamputm_mediumsidebaramputm_campaignc13_enwikipediaorgampuselangentitlesupportusdonatetowikipediaaliliidnshoplinkahrefshopwikimediaorgtitlevisitthewikipediastorewikipediastorealiuldivdivdivclassportalrolenavigationidpinteractionarialabelledbypinteractionlabelh3idpinteractionlabelinteractionh3divclassbodyulliidnhelpahrefwikihelpcontentstitleguidanceonhowtouseandeditwikipediahelpaliliidnaboutsiteahrefwikiwikipediaabouttitlefindoutaboutwikipediaaboutwikipediaaliliidnportalahrefwikiwikipediacommunity_portaltitleabouttheprojectwhatyoucandowheretofindthingscommunityportalaliliidnrecentchangesahrefwikispecialrecentchangestitlealistofrecentchangesinthewikiraccesskeyrrecentchangesaliliidncontactpageahrefenwikipediaorgwikiwikipediacontact_ustitlehowtocontactwikipediacontactpagealiuldivdivdivclassportalrolenavigationidptbarialabelledbyptblabelh3idptblabeltoolsh3divclassbodyulliidtwhatlinkshereahrefwikispecialwhatlinksheredata_analysistitlelistofallenglishwikipediapagescontaininglinkstothispagejaccesskeyjwhatlinksherealiliidtrecentchangeslinkedahrefwikispecialrecentchangeslinkeddata_analysisrelnofollowtitlerecentchangesinpageslinkedfromthispagekaccesskeykrelatedchangesaliliidtuploadahrefwikiwikipediafile_upload_wizardtitleuploadfilesuaccesskeyuuploadfilealiliidtspecialpagesahrefwikispecialspecialpagestitlealistofallspecialpagesqaccesskeyqspecialpagesaliliidtpermalinkahrefwindexphptitledata_analysisampoldid862584710titlepermanentlinktothisrevisionofthepagepermanentlinkaliliidtinfoahrefwindexphptitledata_analysisampactioninfotitlemoreinformationaboutthispagepageinformationaliliidtwikibaseahrefhttpswwwwikidataorgwikispecialentitypageq1988917titlelinktoconnecteddatarepositoryitemgaccesskeygwikidataitemaliliidtciteahrefwindexphptitlespecialcitethispageamppagedata_analysisampid862584710titleinformationonhowtocitethispagecitethispagealiuldivdivdivclassportalrolenavigationidpcollprint_exportarialabelledbypcollprint_exportlabelh3idpcollprint_exportlabelprintexporth3divclassbodyulliidcollcreate_a_bookahrefwindexphptitlespecialbookampbookcmdbook_creatoramprefererdataanalysiscreateabookaliliidcolldownloadasrdf2latexahrefwindexphptitlespecialelectronpdfamppagedataanalysisampactionshowdownloadscreendownloadaspdfaliliidtprintahrefwindexphptitledata_analysisampprintableyestitleprintableversionofthispagepaccesskeypprintableversionaliuldivdivdivclassportalrolenavigationidpwikibaseotherprojectsarialabelledbypwikibaseotherprojectslabelh3idpwikibaseotherprojectslabelinotherprojectsh3divclassbodyulliclasswbotherprojectlinkwbotherprojectcommonsahrefhttpscommonswikimediaorgwikicategorydata_analysishreflangenwikimediacommonsaliuldivdivdivclassportalrolenavigationidplangarialabelledbyplanglabelh3idplanglabellanguagesh3divclassbodyulliclassinterlanguagelinkinterwikiarahrefhttpsarwikipediaorgwikid8aad8add984d98ad984_d8a8d98ad8a7d986d8a7d8aatitlearabiclangarhreflangarclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikideahrefhttpsdewikipediaorgwikidatenanalysetitledatenanalysegermanlangdehreflangdeclassinterlanguagelinktargetdeutschaliliclassinterlanguagelinkinterwikietahrefhttpsetwikipediaorgwikiandmeanalc3bcc3bcstitleandmeanalsestonianlangethreflangetclassinterlanguagelinktargeteestialiliclassinterlanguagelinkinterwikiesahrefhttpseswikipediaorgwikianc3a1lisis_de_datostitleanlisisdedatosspanishlangeshreflangesclassinterlanguagelinktargetespaolaliliclassinterlanguagelinkinterwikieoahrefhttpseowikipediaorgwikidatuma_analitikotitledatumaanalitikoesperantolangeohreflangeoclassinterlanguagelinktargetesperantoaliliclassinterlanguagelinkinterwikifaahrefhttpsfawikipediaorgwikid8aad8add984db8cd984_d8afd8a7d8afd987e2808cd987d8a7titlepersianlangfahreflangfaclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikifrbadgeq17437798badgegoodarticletitlegoodarticleahrefhttpsfrwikipediaorgwikianalyse_des_donnc3a9estitleanalysedesdonnesfrenchlangfrhreflangfrclassinterlanguagelinktargetfranaisaliliclassinterlanguagelinkinterwikihiahrefhttpshiwikipediaorgwikie0a4a1e0a587e0a49fe0a4be_e0a4b5e0a4bfe0a4b6e0a58de0a4b2e0a587e0a4b7e0a4a3titlehindilanghihreflanghiclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikiitahrefhttpsitwikipediaorgwikianalisi_dei_datititleanalisideidatiitalianlangithreflangitclassinterlanguagelinktargetitalianoaliliclassinterlanguagelinkinterwikiheahrefhttpshewikipediaorgwikid7a0d799d7aad795d797_d79ed799d793d7a2titlehebrewlanghehreflangheclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikiknahrefhttpsknwikipediaorgwikie0b2aee0b2bee0b2b9e0b2bfe0b2a4e0b2bf_e0b2b5e0b2bfe0b2b6e0b38de0b2b2e0b387e0b2b7e0b2a3e0b386titlekannadalangknhreflangknclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikihuahrefhttpshuwikipediaorgwikiadatelemzc3a9stitleadatelemzshungarianlanghuhreflanghuclassinterlanguagelinktargetmagyaraliliclassinterlanguagelinkinterwikiplahrefhttpsplwikipediaorgwikianaliza_danychtitleanalizadanychpolishlangplhreflangplclassinterlanguagelinktargetpolskialiliclassinterlanguagelinkinterwikiptahrefhttpsptwikipediaorgwikianc3a1lise_de_dadostitleanlisededadosportugueselangpthreflangptclassinterlanguagelinktargetportugusaliliclassinterlanguagelinkinterwikiruahrefhttpsruwikipediaorgwikid090d0bdd0b0d0bbd0b8d0b7_d0b4d0b0d0bdd0bdd18bd185titlerussianlangruhreflangruclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikisiahrefhttpssiwikipediaorgwikie0b6afe0b6ade0b78ae0b6ad_e0b780e0b792e0b781e0b78ae0b6bde0b79ae0b782e0b6abe0b6batitlesinhalalangsihreflangsiclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikickbahrefhttpsckbwikipediaorgwikid8b4db8cdaa9d8a7d8b1db8cdb8c_d8afd8b1d8a7d988db95titlecentralkurdishlangckbhreflangckbclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikifiahrefhttpsfiwikipediaorgwikidataanalyysititledataanalyysifinnishlangfihreflangficlassinterlanguagelinktargetsuomialiliclassinterlanguagelinkinterwikitaahrefhttpstawikipediaorgwikie0aea4e0aeb0e0aeb5e0af81_e0aeaae0ae95e0af81e0aeaae0af8de0aeaae0aebee0aeafe0af8de0aeb5e0af81titletamillangtahreflangtaclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikiukahrefhttpsukwikipediaorgwikid090d0bdd0b0d0bbd196d0b7_d0b4d0b0d0bdd0b8d185titleukrainianlangukhreflangukclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikizhahrefhttpszhwikipediaorgwikie695b0e68daee58886e69e90titlechineselangzhhreflangzhclassinterlanguagelinktargetaliuldivclassafterportletafterportletlangspanclasswblanglinkseditwblanglinkslinkahrefhttpswwwwikidataorgwikispecialentitypageq1988917sitelinkswikipediatitleeditinterlanguagelinksclasswbceditpageeditlinksaspandivdivdivdivdivdividfooterrolecontentinfoulidfooterinfoliidfooterinfolastmodthispagewaslasteditedon5october2018at0950spanclassanonymousshowutcspanliliidfooterinfocopyrighttextisavailableunderthearellicensehrefenwikipediaorgwikiwikipediatext_of_creative_commons_attributionsharealike_30_unported_licensecreativecommonsattributionsharealikelicenseaarellicensehrefcreativecommonsorglicensesbysa30styledisplaynoneaadditionaltermsmayapplybyusingthissiteyouagreetotheahreffoundationwikimediaorgwikiterms_of_usetermsofuseaandahreffoundationwikimediaorgwikiprivacy_policyprivacypolicyawikipediaisaregisteredtrademarkoftheahrefwwwwikimediafoundationorgwikimediafoundationincaanonprofitorganizationliululidfooterplacesliidfooterplacesprivacyahrefhttpsfoundationwikimediaorgwikiprivacy_policyclassextiwtitlewmfprivacypolicyprivacypolicyaliliidfooterplacesaboutahrefwikiwikipediaabouttitlewikipediaaboutaboutwikipediaaliliidfooterplacesdisclaimerahrefwikiwikipediageneral_disclaimertitlewikipediageneraldisclaimerdisclaimersaliliidfooterplacescontactahrefenwikipediaorgwikiwikipediacontact_uscontactwikipediaaliliidfooterplacesdevelopersahrefhttpswwwmediawikiorgwikispecialmylanguagehow_to_contributedevelopersaliliidfooterplacescookiestatementahrefhttpsfoundationwikimediaorgwikicookie_statementcookiestatementaliliidfooterplacesmobileviewahrefenmwikipediaorgwindexphptitledata_analysisampmobileactiontoggle_view_mobileclassnoprintstopmobileredirecttogglemobileviewaliululidfootericonsclassnoprintliidfootercopyrighticoahrefhttpswikimediafoundationorgimgsrcstaticimageswikimediabuttonpngsrcsetstaticimageswikimediabutton15xpng15xstaticimageswikimediabutton2xpng2xwidth88height31altwikimediafoundationaliliidfooterpoweredbyicoahrefwwwmediawikiorgimgsrcstaticimagespoweredby_mediawiki_88x31pngaltpoweredbymediawikisrcsetstaticimagespoweredby_mediawiki_132x47png15xstaticimagespoweredby_mediawiki_176x62png2xwidth88height31aliuldivstyleclearbothdivdivbodyhtml']\n", + "['doctypehtmlhtmllangenheadtitleloremipsumallthefactslipsumgeneratortitlemetanamekeywordscontentloremipsumlipsumloremipsumtextgenerategeneratorfactsinformationwhatwhywheredummytexttypesettingprintingdefinibusbonorumetmalorumdefinibusbonorumetmalorumextremesofgoodandevilcicerolatingarbledscrambledloremipsumdolorsitametdolorsitametconsecteturadipiscingelitsedeiusmodtemporincididuntmetanamedescriptioncontentreferencesiteaboutloremipsumgivinginformationonitsoriginsaswellasarandomlipsumgeneratormetanameviewportcontentwidthdevicewidthinitialscale10metahttpequivcontenttypecontenttexthtmlcharsetutf8scripttypetextjavascriptsrcstaticampservicesclientsstreamamplipsumjsscriptlinkrelicontypeimagexiconhreffaviconicolinkrelstylesheettypetextcsshrefcss020617cssheadbodydividouterdivclassbannerdividdivgptad14561483161980scripttypetextjavascriptgoogletagcmdpushfunctiongoogletagdisplaydivgptad14561483161980scriptdivdivdividinnerdividlanguagesaclasshyhrefhttphylipsumcom1344137713971381140813811398aaclasssqhrefhttpsqlipsumcomshqipaspanclassltrdirltraclassxxhrefhttparlipsumcomimgsrcimagesargifwidth18height12alt82351575160415931585157616101577aaclassxxhrefhttparlipsumcom82351575160415931585157616101577aspannbspnbspaclassbghrefhttpbglipsumcom104110981083107510721088108910821080aaclasscahrefhttpcalipsumcomcatalagraveaaclasscnhrefhttpcnlipsumcom20013259913161620307aaclasshrhrefhttphrlipsumcomhrvatskiaaclasscshrefhttpcslipsumcom268eskyaaclassdahrefhttpdalipsumcomdanskaaclassnlhrefhttpnllipsumcomnederlandsaaclassenzzhrefhttpwwwlipsumcomenglishaaclassethrefhttpetlipsumcomeestiaaclassphhrefhttpphlipsumcomfilipinoaaclassfihrefhttpfilipsumcomsuomiaaclassfrhrefhttpfrlipsumcomfranccedilaisaaclasskahrefhttpkalipsumcom4325430443204311432343144312aaclassdehrefhttpdelipsumcomdeutschaaclasselhrefhttpellipsumcom917955955951957953954940aspanclassltrdirltraclassxxhrefhttphelipsumcomimgsrcimageshegifwidth18height12alt823515061489151214971514aaclassxxhrefhttphelipsumcom823515061489151214971514aspannbspnbspaclasshihrefhttphilipsumcom236123672344238123422368aaclasshuhrefhttphulipsumcommagyaraaclassidhrefhttpidlipsumcomindonesiaaaclassithrefhttpitlipsumcomitalianoaaclasslvhrefhttplvlipsumcomlatviskiaaclasslthrefhttpltlipsumcomlietuviscaronkaiaaclassmkhrefhttpmklipsumcom1084107210821077107610861085108910821080aaclassmshrefhttpmslipsumcommelayuaaclassnohrefhttpnolipsumcomnorskaaclassplhrefhttppllipsumcompolskiaaclasspthrefhttpptlipsumcomportuguecircsaaclassrohrefhttprolipsumcomromacircnaaaclassruhrefhttprulipsumcompycc108210801081aaclasssrhrefhttpsrlipsumcom105710881087108910821080aaclassskhrefhttpsklipsumcomsloven269inaaaclassslhrefhttpsllipsumcomsloven353269inaaaclasseshrefhttpeslipsumcomespantildeolaaclasssvhrefhttpsvlipsumcomsvenskaaaclassthhrefhttpthlipsumcom365236073618aaclasstrhrefhttptrlipsumcomtuumlrkccedileaaclassukhrefhttpuklipsumcom1059108210881072111110851089110010821072aaclassvihrefhttpvilipsumcomti7871ngvi7879tadivh1loremipsumh1h4nequeporroquisquamestquidoloremipsumquiadolorsitametconsecteturadipiscivelith4h5thereisnoonewholovespainitselfwhoseeksafteritandwantstohaveitsimplybecauseitispainh5hrdividcontentdividpanesdivh2whatisloremipsumh2pstrongloremipsumstrongissimplydummytextoftheprintingandtypesettingindustryloremipsumhasbeentheindustrysstandarddummytexteversincethe1500swhenanunknownprintertookagalleyoftypeandscrambledittomakeatypespecimenbookithassurvivednotonlyfivecenturiesbutalsotheleapintoelectronictypesettingremainingessentiallyunchangeditwaspopularisedinthe1960swiththereleaseofletrasetsheetscontainingloremipsumpassagesandmorerecentlywithdesktoppublishingsoftwarelikealduspagemakerincludingversionsofloremipsumpdivdivh2whydoweuseith2pitisalongestablishedfactthatareaderwillbedistractedbythereadablecontentofapagewhenlookingatitslayoutthepointofusingloremipsumisthatithasamoreorlessnormaldistributionoflettersasopposedtousingcontentherecontentheremakingitlooklikereadableenglishmanydesktoppublishingpackagesandwebpageeditorsnowuseloremipsumastheirdefaultmodeltextandasearchforloremipsumwilluncovermanywebsitesstillintheirinfancyvariousversionshaveevolvedovertheyearssometimesbyaccidentsometimesonpurposeinjectedhumourandthelikepdivbrdivh2wheredoesitcomefromh2pcontrarytopopularbeliefloremipsumisnotsimplyrandomtextithasrootsinapieceofclassicallatinliteraturefrom45bcmakingitover2000yearsoldrichardmcclintockalatinprofessorathampdensydneycollegeinvirginialookeduponeofthemoreobscurelatinwordsconsecteturfromaloremipsumpassageandgoingthroughthecitesofthewordinclassicalliteraturediscoveredtheundoubtablesourceloremipsumcomesfromsections11032and11033ofdefinibusbonorumetmalorumtheextremesofgoodandevilbycicerowrittenin45bcthisbookisatreatiseonthetheoryofethicsverypopularduringtherenaissancethefirstlineofloremipsumloremipsumdolorsitametcomesfromalineinsection11032ppthestandardchunkofloremipsumusedsincethe1500sisreproducedbelowforthoseinterestedsections11032and11033fromdefinibusbonorumetmalorumbyciceroarealsoreproducedintheirexactoriginalformaccompaniedbyenglishversionsfromthe1914translationbyhrackhampdivdivh2wherecanigetsomeh2ptherearemanyvariationsofpassagesofloremipsumavailablebutthemajorityhavesufferedalterationinsomeformbyinjectedhumourorrandomisedwordswhichdontlookevenslightlybelievableifyouaregoingtouseapassageofloremipsumyouneedtobesurethereisntanythingembarrassinghiddeninthemiddleoftextalltheloremipsumgeneratorsontheinternettendtorepeatpredefinedchunksasnecessarymakingthisthefirsttruegeneratorontheinternetitusesadictionaryofover200latinwordscombinedwithahandfulofmodelsentencestructurestogenerateloremipsumwhichlooksreasonablethegeneratedloremipsumisthereforealwaysfreefromrepetitioninjectedhumourornoncharacteristicwordsetcpformmethodpostactionfeedhtmltablestylewidth100trtdrowspan2inputtypetextnameamountvalue5size3idamounttdtdrowspan2tablestyletextalignlefttrtdstylewidth20pxinputtyperadionamewhatvalueparasidparascheckedcheckedtdtdlabelforparasparagraphslabeltdtrtrtdstylewidth20pxinputtyperadionamewhatvaluewordsidwordstdtdlabelforwordswordslabeltdtrtrtdstylewidth20pxinputtyperadionamewhatvaluebytesidbytestdtdlabelforbytesbyteslabeltdtrtrtdstylewidth20pxinputtyperadionamewhatvaluelistsidliststdtdlabelforlistslistslabeltdtrtabletdtdstylewidth20pxinputtypecheckboxnamestartidstartvalueyescheckedcheckedtdtdstyletextalignleftlabelforstartstartwithlorembripsumdolorsitametlabeltdtrtrtdtdtdstyletextalignleftinputtypesubmitnamegenerateidgeneratevaluegenerateloremipsumtdtrtableformdivdivhrdivclassboxedtightimgsrcimagesadvertpngwidth100altadvertisedivhrdivclassboxedstylecolorff0000strongtranslationsstrongcanyouhelptranslatethissiteintoaforeignlanguagepleaseemailuswithdetailsifyoucanhelpdivhrdivclassboxedtherearenowasetofmockbannersavailableahrefbannersclasslnkhereainthreecoloursandinarangeofstandardbannersizesbrahrefbannersimgsrcimagesbannersblack_234x60gifwidth234height60altbannersaahrefbannersimgsrcimagesbannersgrey_234x60gifwidth234height60altbannersaahrefbannersimgsrcimagesbannerswhite_234x60gifwidth234height60altbannersadivhrdivclassboxedstrongdonatestrongifyouusethissiteregularlyandwouldliketohelpkeepthesiteontheinternetpleaseconsiderdonatingasmallsumtohelppayforthehostingandbandwidthbillthereisnominimumdonationanysumisappreciatedclickatarget_blankhrefdonateclasslnkhereatodonateusingpaypalthankyouforyoursupportdivhrdivclassboxedidpackagesatarget_blankrelnofollowhrefhttpschromegooglecomextensionsdetailjkkggolejkaoanbjnmkakgjcdcnpfkgichromeaatarget_blankrelnofollowhrefhttpsaddonsmozillaorgenusfirefoxaddondummylipsumfirefoxaddonaatarget_blankrelnofollowhrefhttpsgithubcomtraviskaufmannodelipsumnodejsaatarget_blankrelnofollowhrefhttpftpktugorkrtexarchivehelpcatalogueentrieslipsumhtmltexpackageaatarget_blankrelnofollowhrefhttpcodegooglecomppypsumpythoninterfaceaatarget_blankrelnofollowhrefhttpgtklipsumsourceforgenetgtklipsumaatarget_blankrelnofollowhrefhttpgithubcomgsavagelorem_ipsumtreemasterrailsaatarget_blankrelnofollowhrefhttpsgithubcomcerkitloremipsumnetaatarget_blankrelnofollowhrefhttpgroovyconsoleappspotcomscript64002groovyaatarget_blankrelnofollowhrefhttpwwwlayerherocomloremipsumgeneratoradobepluginadivhrdividtranslationh3thestandardloremipsumpassageusedsincethe1500sh3ploremipsumdolorsitametconsecteturadipiscingelitseddoeiusmodtemporincididuntutlaboreetdoloremagnaaliquautenimadminimveniamquisnostrudexercitationullamcolaborisnisiutaliquipexeacommodoconsequatduisauteiruredolorinreprehenderitinvoluptatevelitessecillumdoloreeufugiatnullapariaturexcepteursintoccaecatcupidatatnonproidentsuntinculpaquiofficiadeseruntmollitanimidestlaborumph3section11032ofdefinibusbonorumetmalorumwrittenbyciceroin45bch3psedutperspiciatisundeomnisistenatuserrorsitvoluptatemaccusantiumdoloremquelaudantiumtotamremaperiameaqueipsaquaeabilloinventoreveritatisetquasiarchitectobeataevitaedictasuntexplicabonemoenimipsamvoluptatemquiavoluptassitaspernaturautoditautfugitsedquiaconsequunturmagnidoloreseosquirationevoluptatemsequinesciuntnequeporroquisquamestquidoloremipsumquiadolorsitametconsecteturadipiscivelitsedquianonnumquameiusmoditemporainciduntutlaboreetdoloremagnamaliquamquaeratvoluptatemutenimadminimaveniamquisnostrumexercitationemullamcorporissuscipitlaboriosamnisiutaliquidexeacommodiconsequaturquisautemveleumiurereprehenderitquiineavoluptatevelitessequamnihilmolestiaeconsequaturvelillumquidoloremeumfugiatquovoluptasnullapariaturph31914translationbyhrackhamh3pbutimustexplaintoyouhowallthismistakenideaofdenouncingpleasureandpraisingpainwasbornandiwillgiveyouacompleteaccountofthesystemandexpoundtheactualteachingsofthegreatexplorerofthetruththemasterbuilderofhumanhappinessnoonerejectsdislikesoravoidspleasureitselfbecauseitispleasurebutbecausethosewhodonotknowhowtopursuepleasurerationallyencounterconsequencesthatareextremelypainfulnoragainisthereanyonewholovesorpursuesordesirestoobtainpainofitselfbecauseitispainbutbecauseoccasionallycircumstancesoccurinwhichtoilandpaincanprocurehimsomegreatpleasuretotakeatrivialexamplewhichofuseverundertakeslaboriousphysicalexerciseexcepttoobtainsomeadvantagefromitbutwhohasanyrighttofindfaultwithamanwhochoosestoenjoyapleasurethathasnoannoyingconsequencesoronewhoavoidsapainthatproducesnoresultantpleasureph3section11033ofdefinibusbonorumetmalorumwrittenbyciceroin45bch3patveroeosetaccusamusetiustoodiodignissimosducimusquiblanditiispraesentiumvoluptatumdelenitiatquecorruptiquosdoloresetquasmolestiasexcepturisintoccaecaticupiditatenonprovidentsimiliquesuntinculpaquiofficiadeseruntmollitiaanimiidestlaborumetdolorumfugaetharumquidemrerumfacilisestetexpeditadistinctionamliberotemporecumsolutanobisesteligendioptiocumquenihilimpeditquominusidquodmaximeplaceatfacerepossimusomnisvoluptasassumendaestomnisdolorrepellendustemporibusautemquibusdametautofficiisdebitisautrerumnecessitatibussaepeevenietutetvoluptatesrepudiandaesintetmolestiaenonrecusandaeitaqueearumrerumhicteneturasapientedelectusutautreiciendisvoluptatibusmaioresaliasconsequaturautperferendisdoloribusasperioresrepellatph31914translationbyhrackhamh3pontheotherhandwedenouncewithrighteousindignationanddislikemenwhoaresobeguiledanddemoralizedbythecharmsofpleasureofthemomentsoblindedbydesirethattheycannotforeseethepainandtroublethatareboundtoensueandequalblamebelongstothosewhofailintheirdutythroughweaknessofwillwhichisthesameassayingthroughshrinkingfromtoilandpainthesecasesareperfectlysimpleandeasytodistinguishinafreehourwhenourpowerofchoiceisuntrammelledandwhennothingpreventsourbeingabletodowhatwelikebesteverypleasureistobewelcomedandeverypainavoidedbutincertaincircumstancesandowingtotheclaimsofdutyortheobligationsofbusinessitwillfrequentlyoccurthatpleasureshavetoberepudiatedandannoyancesacceptedthewisemanthereforealwaysholdsinthesematterstothisprincipleofselectionherejectspleasurestosecureothergreaterpleasuresorelseheendurespainstoavoidworsepainspdivdividbannerldividdivgptad14745377621222scripttypetextjavascriptgoogletagcmdpushfunctiongoogletagdisplaydivgptad14745377621222scriptdivdivdividbannerrdividdivgptad14745377621223scripttypetextjavascriptgoogletagcmdpushfunctiongoogletagdisplaydivgptad14745377621223scriptdivdivdivhrdivclassboxedastyletextdecorationnonehref1099710510811611158104101108112641081051121151171094699111109104101108112641081051121151171094699111109abrastyletextdecorationnonetarget_blankhrefprivacypdfprivacypolicyadivdivdivclassbannerdividdivgptad14561483161981scripttypetextjavascriptgoogletagcmdpushfunctiongoogletagdisplaydivgptad14561483161981scriptdivdivdivgeneratedin0014secondsbodyhtml']\n", + "[[1, 0, 0], [0, 1, 0], [0, 0, 1]]\n", + "{'bag_of_words': ['doctypehtmlifie8htmlclassieie8ltie9endififie9htmlclassieie9endififgteie9iehtmlendifheadmetanamecsrftokencontentywezkhdwaz2mhvtxtvdmpx8fjrbshm6rkq6fxpoe1b7be08ryu7duj3zzkzbmen38lnubysnguaehcqvwbu0glinkhrefplusgooglecom110399277954088556485relpublisherlinkhrefhttpswwwcoursereportcomschoolsironhackrelcanonicaltitleironhackreviewscoursereporttitlelinkrelstylesheetmediaallhrefhttpscoursereportproductionherokuappcomglobalsslfastlynetassetsbs_application2cfe4f1bb97ebbc1bd4fb734d851ab26csslinkrelstylesheetmediaallhrefhttpscoursereportproductionherokuappcomglobalsslfastlynetassetspagespecificschools_show3aca16603f6c41cf77b882baac389298cssscriptsrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetsapplication97e43e4dd7351ce897ee40f2003f85e5jsscriptscriptsrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetsheader_scripts1272387b23dc58490e6c20be1c15de53jsscriptscriptsrcusetypekitnetgqs4iacjsscriptscriptsrcwwwgstaticcomchartsloaderjsscriptscripttrytypekitloadcatchescriptifltie9scriptsrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetsapplicationieca5de91f657224405fe23d9d509a85edjsscriptendiflinkrelappletouchicontypeimagepnghrefhttpscoursereportproductionherokuappcomglobalsslfastlynetassetsappletouchicon57x57precomposed66c7a975616a2eca967795cf265b337apnglinkrelappletouchicontypeimagepnghrefhttpscoursereportproductionherokuappcomglobalsslfastlynetassetsappletouchicon72x72precomposedc34da9bf9a1cd0f34899640dfe4c1c61pngsizes72x72linkrelappletouchicontypeimagepnghrefhttpscoursereportproductionherokuappcomglobalsslfastlynetassetsappletouchicon114x114precomposedb8e8c4c1ff2adddb6978bec0265a75ecpngsizes114x114linkrelappletouchicontypeimagepnghrefhttpscoursereportproductionherokuappcomglobalsslfastlynetassetsappletouchicon144x144precomposeda1658624352b61eb99c13d767260533cpngsizes144x144html5shimandrespondjsie8supportofhtml5elementsandmediaquerieswarningrespondjsdoesntworkifyouviewthepageviafileifltie9javascript_include_tagossmaxcdncomlibshtml5shiv370html5shivjsjavascript_include_tagossmaxcdncomlibsrespondjs142respondminjsendiflinkrelnexthrefschoolsironhackpage2headbodydataspyscrolldatatargettocstylepositionrelativeheadernavclassnavbarnavbardefaultrolenavigationdivclasscontaineridnavcontaineritemscopeitemtypehttpschemaorgorganizationdivclassnavbarheaderbuttonclassnavbartogglecollapseddatatargetnavbarcollapsedatatogglecollapsetypebuttonspanclasssronlytogglenavigationspanspanclassiconbarspanspanclassiconbarspanspanclassiconbarspanbuttonaclassnavbarbrandlogosmallhrefhttpswwwcoursereportcomitempropurlimgaltcoursereporttitlecoursereportitemproplogosrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetslogosmalla04da9639b878f3d36becf065d607e0epngadivdivclasscollapsenavbarcollapseidnavbarcollapseulclassnavnavbarnavliclasstoplevelnavidschoolsaclassmpgbheaderhrefschoolsbrowseschoolsaulclasstracksliclasstrackidmenu_full_stackahreftrackswebdevelopmentbootcampfullstackwebdevelopmentaliliclasstrackidmenu_mobileahreftracksappdevelopmentbootcampmobiledevelopmentaliliclasstrackidmenu_front_endahreftracksfrontenddeveloperbootcampsfrontendwebdevelopmentaliliclasstrackidmenu_data_scienceahreftracksdatasciencebootcampdatasciencealiliclasstrackidmenu_ux_designahreftracksuxuidesignbootcampsuxdesignaliliclasstrackidmenu_digital_marketingahreftracksmarketingbootcampdigitalmarketingaliliclasstrackidmenu_menu_product_managementahreftracksproductmanagerbootcampproductmanagementaliliclasstrackidmenu_menu_securityahreftrackscybersecuritybootcampsecurityaliliclasstrackidmenu_menu_otherahreftracksothercodingbootcampsotheraliulliliclasstoplevelnavidblogaclassmpgbheaderhrefblogblogaliliclasstoplevelnavidresourcesaclassmpgbheaderhrefresourcesadviceaulclasstracksliclasstrackidmenu_ultimate_guideahrefcodingbootcampultimateguideultimateguidechoosingaschoolaliliclasstrackidmenu_best_bootcampsahrefbestcodingbootcampsbestcodingbootcampsaliliclasstrackidmenu_data_scienceahrefblogdatasciencebootcampsthecompleteguidebestindatasciencealiliclasstrackidmenu_ui_uxahrefbloguiuxdesignbootcampsthecompleteguidebestinuiuxdesignaliliclasstrackidmenu_cyber_securityahrefblogultimateguidetosecuritybootcampsbestincybersecurityaliulliliclasstoplevelnavidwriteareviewaclassmpgbheaderhrefwriteareviewwriteareviewaliliclasstoplevelnavidloginaclassmpgbheaderhrefloginsigninaliuldivdivnavheadersectionclassmainitemscopeitemtypehttpschemaorglocalbusinessdivclasscontainerdivclassrowdivclasscolxs12visiblexsvisiblesmidmobileheaderahrefschoolsironhackdivclassschoolimagetextcenterimgaltironhacklogotitleironhacklogosrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4017s300logoironhackbluepngdivadivclassaltheaderh1itempropnameironhackh1pclassdetailsspanclasslocationspanclassiconlocationspanamsterdambarcelonaberlinmadridmexicocitymiamiparissaopaulospanpdivdivdivdivclassrowdivclassnavigablecolmd8idmaincontentdivclasshiddenschoolslugironhackdivdivclassmainheaderhideonmobileh1classresizeheaderironhackh1divclassaggregateratingdivclassshowratingspclassratingsspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starpclassratingnumberitempropaggregateratingitemscopeitemtypehttpschemaorgaggregateratingavgratingspanclassratingvalueitempropratingvalue489spanspanspanspanitempropreviewcount596spanspanreviewsspanppdivdivdivdivclassnavwrapperdivclassschoolnavulclassnavnavpillsnavjustifiedhiddenxsidschoolsectionsroletablistliclassactivedatadeeplinktargetaboutdatatoggletabidabout_tabahrefaboutaboutalilidatadeeplinktargetcoursesdatatoggletabidcourses_tabahrefcoursescoursesalilidatadeeplinktargetreviewsdatatoggletabidreviews_tabahrefreviewsreviewsalilidatadeeplinktargetnewsdatatoggletabidnews_tabahrefnewsnewsaliuldivdivdivdataformcontactdataschoolironhackidcontactmobilebuttonclassbuttonbtnspanimgsrchttpss3amazonawscomcourse_report_productionmisc_imgsmailsvgtitlecontactschoolspancontactalexwilliamsfromironhackbuttondivdivclasstabcontentpanelgroupdivclasspanelwrapperdatadeeplinkpathaboutdatatababout_tabidaboutdivclasspanelpaneldefaultpanelcontentdivclasspanelheadingcollapsedvisiblexsdatadeeplinktargetaboutdatatargetaboutcollapsedatatogglecollapseidaboutcollapseheadingh4classpaneltitleabouth4divdivclasspanelcollapsecollapseinidaboutcollapsedivclasspanelbodyh2classhiddenxsabouth2sectionclassaboutdivclassexpandablepironhackisa9weekfulltimeand24weekparttimewebdevelopmentanduxuidesignbootcampinmiamifloridamadridandbarcelonaspainparisfrancemexicocitymexicoandberlingermanyironhackusesacustomizedapproachtoeducationbyallowingstudentstoshapetheirexperiencebasedonpersonalgoalstheadmissionsprocessincludessubmittingawrittenapplicationapersonalinterviewandthenatechnicalinterviewstudentswhograduatefromthewebdevelopmentbootcampwillbeskilledintechnologieslikejavascripthtml5andcss3theuxuiprogramcoversdesignthinkingphotoshopsketchbalsamiqinvisionandjavascriptppthroughouteachironhackprogramstudentswillgethelpnavigatingcareerdevelopmentthroughinterviewprepenhancingdigitalbrandpresenceandnetworkingopportunitiesstudentswillhaveachancetodelveintothetechcommunitywithironhackeventsworkshopsandmeetupswithmorethan1000graduatesironhackhasanextensiveglobalnetworkofalumniandpartnercompaniesgraduatesofironhackwillbewellpositionedtofindajobasawebdeveloperoruxuidesignerupongraduationasallstudentshaveaccesstocareerservicestopreparethemforthejobsearchandfacilitatinginterviewsintheircityslocaltechecosystempdivdivclassdividerdivh4recentironhackreviewsrating489h4ulclassunstyledrecentreviewslidivclassrowdivclasscolxs3ratingsspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs9paclassmobilereviewdatadeeplinkpathreviewsreview16341datadeeplinktargetreview_16341fromnursetodesignerintwomonthsapdivdivlilidivclassrowdivclasscolxs3ratingsspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs9paclassmobilereviewdatadeeplinkpathreviewsreview16340datadeeplinktargetreview_16340100recomendableapdivdivlilidivclassrowdivclasscolxs3ratingsspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs9paclassmobilereviewdatadeeplinkpathreviewsreview16338datadeeplinktargetreview_16338funexperienceandgreatjobafterapdivdivliulaclassreadmorelinkmobilereviewdatadeeplinktargetreviewsdatatoggletabhrefreviewsreadall596reviewsforironhackreadadivclassdividerdivh4recentironhacknewsh4ulclassunstyledliahrefblogparttimecodingbootcampswebinarwebinarchoosingaparttimecodingbootcampaliliahrefblogdafnebecameadeveloperinbarcelonaafterironhackhowdafnebecameadeveloperinbarcelonaafterironhackaliliahrefbloghowtolandauxuijobinspainhowtolandauxuidesignjobinspainaliulaclassreadmorelinkmobilenewsdatadeeplinktargetnewshrefnewsreadall23articlesaboutironhackasectiondivdivdivdivdivclasspanelwrapperdatadeeplinkpathcoursesdatatabcourses_tabidcoursesdivclasspanelpaneldefaultpanelcontentdivclasspanelheadingcollapsedvisiblexsdatadeeplinktargetcoursesdatatargetcoursescollapsedatatogglecollapseidcoursescollapseheadingh4classpaneltitlecoursesh4divdivclasspanelcollapsecollapseinidcoursescollapsedivclasspanelbodyh2classhiddenxscoursesh2ulclasscoursecardliheaderh3dataanalyticsbootcampfulltimeh3spanclassbtnbtndefaultbtnapplysmallatarget_blankhrefhttpswwwironhackcomencoursesdataanalyticsbootcampapplyaspanheaderdivclasscontentdivclassdetailsspanclassiconeyetitlefocusspanahrefsubjectsmysqlmysqlaahrefsubjectsdatasciencedatascienceaahrefsubjectsgitgitaahrefsubjectsrraahrefsubjectspythonpythonaahrefsubjectsmachinelearningmachinelearningaahrefsubjectsdatastructuresdatastructuresabrspanclasstypespanclassiconusertitlecoursetypespaninpersonspandivdldtstartdatedtddspanclassiconcalendarspannonescheduleddddtcostdtddnadddtclasssizedtddnadddtlocationdtddspanmadridspandddldivclassexpandablethiscourseenablesstudentstobecomeafullfledgeddataanalystin9weeksstudentswilldeveloppracticalskillsusefulinthedataindustryrampuppreworkandlearnintermediatetopicsofdataanalyticsusingpandasanddataengineeringtocreateadataapplicationusingrealdatasetsyou39llalsolearntousepythonandbusinessintelligencethroughthebootcampyouwilllearnbydoingprojectscombiningdataanalyticsandprogrammingironhack39sdataanalyticsbootcampismeanttohelpyousecureaspotinthedataindustryhoweverthemostimportantskillthatstudentswilltakeawayfromthiscourseistheabilitytolearntechnologyisfastmovingandeverchangingdivdivdetailssummaryfinancingsummarydldtdepositdtdd750dddldetailsdetailssummarygettinginsummarydldtminimumskillleveldtddbasicprogrammingknowledgedddtprepworkdtdd4050hoursofonlinecontentthatyou39llhavetocompleteinordertoreachtherequiredlevelatthenextmoduledddtplacementtestdtddyesdddtinterviewdtddyesdddldetailsliulscripttypeapplicationldjsoncontexthttpschemaorgtypecoursenamedataanalyticsbootcampfulltimedescriptionthiscourseenablesstudentstobecomeafullfledgeddataanalystin9weeksstudentswilldeveloppracticalskillsusefulinthedataindustryrampuppreworkandlearnintermediatetopicsofdataanalyticsusingpandasanddataengineeringtocreateadataapplicationusingrealdatasetsyou39llalsolearntousepythonandbusinessintelligencethroughthebootcampyouwilllearnbydoingprojectscombiningdataanalyticsandprogrammingironhack39sdataanalyticsbootcampismeanttohelpyousecureaspotinthedataindustryhoweverthemostimportantskillthatstudentswilltakeawayfromthiscourseistheabilitytolearntechnologyisfastmovingandeverchangingprovidertypelocalbusinessnameironhacksameashttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagescriptulclasscoursecardliheaderh3uxuidesignbootcampfulltimeh3spanclassbtnbtndefaultbtnapplysmallatarget_blankhrefhttpswwwironhackcomencoursesuxuidesignbootcamplearnuxdesignapplyapplyaspanheaderdivclasscontentdivclassdetailsspanclassiconeyetitlefocusspanahrefsubjectshtmlhtmlaahrefsubjectsuserexperiencedesignuserexperiencedesignaahrefsubjectscsscssabrspanclasstypespanclassiconusertitlecoursetypespaninpersonspanspanclasstypespanclassiconclocktitlecommitmentspanfulltimespanspanclasshoursweekspanclasshoursweeknumber50spanspanhoursweekspanspanspanclasstypespanclassiconcalendartitledurationspan9weeksspandivdldtstartdatedtddspanclassiconcalendarspanjanuary72019dddtcostdtddspanspanspan6500spandddtclasssizedtdd16dddtlocationdtddspanmiamimadridbarcelonaparismexicocityberlinspandddldivclassexpandablethis8weekimmersivecourseiscateredtobeginnerswithnopreviousdesignortechnicalexperiencestudentswillbetaughtthefundamentalsofusercentereddesignandlearntovalidateideasthroughuserresearchrapidprototypingampheuristicevaluationthecoursewillendwithacapstoneprojectwherestudentswilltakeanewproductideafromvalidationtolaunchbytheendofthecoursestudentswillbereadytostartanewcareerasauxdesignerfreelanceorturbochargetheircurrentprofessionaltrajectorydivdivdetailssummaryfinancingsummarydldtdepositdtddnadddldetailsdetailssummarygettinginsummarydldtminimumskillleveldtddnonedddtprepworkdtddthepreworkisa40hoursselfguidedcontentthatwillhelpyoutounderstandbasicuxuidesignconceptsanditwillmakeyoudesignyourfirstworksinsketchandflintodddtplacementtestdtddyesdddtinterviewdtddyesdddldetailsliulscripttypeapplicationldjsoncontexthttpschemaorgtypecoursenameuxuidesignbootcampfulltimedescriptionthis8weekimmersivecourseiscateredtobeginnerswithnopreviousdesignortechnicalexperiencestudentswillbetaughtthefundamentalsofusercentereddesignandlearntovalidateideasthroughuserresearchrapidprototypingampheuristicevaluationthecoursewillendwithacapstoneprojectwherestudentswilltakeanewproductideafromvalidationtolaunchbytheendofthecoursestudentswillbereadytostartanewcareerasauxdesignerfreelanceorturbochargetheircurrentprofessionaltrajectoryprovidertypelocalbusinessnameironhacksameashttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagescriptulclasscoursecardliheaderh3uxuidesignbootcampparttimeh3spanclassbtnbtndefaultbtnapplysmallatarget_blankhrefhttpswwwironhackcomencoursesuxuidesignparttimeapplyaspanheaderdivclasscontentdivclassdetailsspanclassiconeyetitlefocusspanahrefsubjectsdesigndesignaahrefsubjectsproductmanagementproductmanagementaahrefsubjectsuserexperiencedesignuserexperiencedesignaahrefsubjectscsscssabrspanclasstypespanclassiconusertitlecoursetypespaninpersonspanspanclasstypespanclassiconclocktitlecommitmentspanparttimespanspanclasshoursweekspanclasshoursweeknumber16spanspanhoursweekspanspanspanclasstypespanclassiconcalendartitledurationspan26weeksspandivdldtstartdatedtddspanclassiconcalendarspannovember132018dddtcostdtddspanspanspan7500spandddtclasssizedtdd20dddtlocationdtddspanmiamimadridbarcelonamexicocityberlinspandddldivclassexpandabletheuxuidesignparttimecoursemeetstuesdaysthursdaysandsaturdayswithadditionalonlinecourseworkoveraperiodof6monthsstudentswillbetaughtthefundamentalsofusercentereddesignandlearntovalidateideasthroughuserresearchrapidprototypingampheuristicevaluationthecoursewillendwithacapstoneprojectwherestudentswilltakeanewproductideafromvalidationtolaunchbytheendofthecoursestudentswillbereadytostartanewcareerasauxdesignerfreelanceorturbochargetheircurrentprofessionaltrajectorydivdivdetailssummaryfinancingsummarydldtdepositdtdd750or9000mxndddtfinancingdtddfinancingoptionsavailablewithcompetitiveinterestratesskillsfundclimbcreditdddldetailsdetailssummarygettinginsummarydldtminimumskillleveldtddbasicprogrammingskillsbasicalgorithmsandnotionsofobjectorientedprogrammingdddtprepworkdtdd4050hoursofonlinecontentthatyou39llhavetocompleteinordertoreachtherequiredlevelwhenthecoursebeginsdddtplacementtestdtddyesdddtinterviewdtddyesdddldetailsliulscripttypeapplicationldjsoncontexthttpschemaorgtypecoursenameuxuidesignbootcampparttimedescriptiontheuxuidesignparttimecoursemeetstuesdaysthursdaysandsaturdayswithadditionalonlinecourseworkoveraperiodof6monthsstudentswillbetaughtthefundamentalsofusercentereddesignandlearntovalidateideasthroughuserresearchrapidprototypingampheuristicevaluationthecoursewillendwithacapstoneprojectwherestudentswilltakeanewproductideafromvalidationtolaunchbytheendofthecoursestudentswillbereadytostartanewcareerasauxdesignerfreelanceorturbochargetheircurrentprofessionaltrajectoryprovidertypelocalbusinessnameironhacksameashttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagescriptulclasscoursecardliheaderh3webdevelopmentbootcampfulltimeh3spanclassbtnbtndefaultbtnapplysmallatarget_blankhrefhttpswwwironhackcomencourseswebdevelopmentbootcampapplyaspanheaderdivclasscontentdivclassdetailsspanclasstypespanclassiconusertitlecoursetypespaninpersonspandivdldtstartdatedtddspanclassiconcalendarspanoctober292018dddtcostdtddnadddtclasssizedtddnadddtlocationdtddspanamsterdammiamimadridbarcelonaparismexicocityberlinspandddldivclassexpandablethiscourseenablesstudentstodesignandbuildfullstackjavascriptwebapplicationsstudentswilllearnthefundamentalsofprogrammingwithabigemphasisonbattletestedpatternsandbestpracticesbytheendofthecoursestudentswillhavetheabilitytoevaluateaproblemandselecttheoptimalsolutionusingthelanguageframeworkbestsuitedforaprojectsscopeinadditiontotechnicalskillsthecoursewilltrainstudentsinhowtothinklikeaprogrammerstudentswilllearnhowtodeconstructcomplexproblemsandbreakthemintosmallermoduleshoweverthemostimportantskillthatstudentswilltakeawayfromthiscourseistheabilitytolearntechnologyisfastmovingandeverchangingagoodprogrammerhasageneralunderstandingofthevariousprogramminglanguagesandwhentousethemagreatprogrammerunderstandsthefundamentalstructureandpossessestheabilitytolearnanynewlanguagewhenrequireddivdivdetailssummaryfinancingsummarydldtdepositdtdd1000dddtfinancingdtddmonthlyinstalmentsavailablefor122436monthsquotandadddtscholarshipdtdd1000scholarshipforwomendddldetailsdetailssummarygettinginsummarydldtminimumskillleveldtddbasicprogrammingknowledgedddtprepworkdtdd4050hoursofonlinecontentthatyou39llhavetocompleteinordertoreachtherequiredlevelatthenextmoduledddtplacementtestdtddyesdddtinterviewdtddyesdddldetailsdetailssummarymorestartdatessummarydivclasscontentdivclassstartdatespanclassiconcalendarspanspancontent20181029october292018spanspanmexicocityspandivdivclassstartdatespanclassiconcalendarspanspancontent20190114january142019spanspanmexicocityspandivdivclassstartdatespanclassiconcalendarspanspancontent20190325march252019spanspanmexicocityspandivdivclassstartdatespanclassiconcalendarspanspancontent20190107january72019spanspanbarcelonaspanspanapplybyjanuary12019spandivdivdetailsliulscripttypeapplicationldjsoncontexthttpschemaorgtypecoursenamewebdevelopmentbootcampfulltimedescriptionthiscourseenablesstudentstodesignandbuildfullstackjavascriptwebapplicationsstudentswilllearnthefundamentalsofprogrammingwithabigemphasisonbattletestedpatternsandbestpracticesbytheendofthecoursestudentswillhavetheabilitytoevaluateaproblemandselecttheoptimalsolutionusingthelanguageframeworkbestsuitedforaprojectsscopeinadditiontotechnicalskillsthecoursewilltrainstudentsinhowtothinklikeaprogrammerstudentswilllearnhowtodeconstructcomplexproblemsandbreakthemintosmallermoduleshoweverthemostimportantskillthatstudentswilltakeawayfromthiscourseistheabilitytolearntechnologyisfastmovingandeverchangingagoodprogrammerhasageneralunderstandingofthevariousprogramminglanguagesandwhentousethemagreatprogrammerunderstandsthefundamentalstructureandpossessestheabilitytolearnanynewlanguagewhenrequiredprovidertypelocalbusinessnameironhacksameashttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagescriptulclasscoursecardliheaderh3webdevelopmentbootcampparttimeh3spanclassbtnbtndefaultbtnapplysmallatarget_blankhrefhttpswwwironhackcomescursoswebdevelopmentparttimeaplicarapplyaspanheaderdivclasscontentdivclassdetailsspanclassiconeyetitlefocusspanahrefsubjectsangularjsbootcampangularjsaahrefsubjectsmongodbmongodbaahrefsubjectshtmlhtmlaahrefsubjectsjavascriptjavascriptaahrefsubjectsexpressjsexpressjsaahrefsubjectsnodejsnodejsaahrefsubjectsfrontendfrontendabrspanclasstypespanclassiconusertitlecoursetypespaninpersonspanspanclasstypespanclassiconclocktitlecommitmentspanfulltimespanspanclasshoursweekspanclasshoursweeknumber13spanspanhoursweekspanspanspanclasstypespanclassiconcalendartitledurationspan24weeksspandivdldtstartdatedtddspanclassiconcalendarspanjanuary152019dddtcostdtddspanspanspan12000spandddtclasssizedtddnadddtlocationdtddspanmiamimadridbarcelonaparismexicocityberlinspandddldivclassexpandablethiscourseenablesstudentstodesignandbuildfullstackjavascriptwebapplicationsstudentswilllearnthefundamentalsofprogrammingwithabigemphasisonbattletestedpatternsandbestpracticesbytheendofthecoursestudentswillhavetheabilitytoevaluateaproblemandselecttheoptimalsolutionusingthelanguageframeworkbestsuitedforaprojectsscopeinadditiontotechnicalskillsthecoursewilltrainstudentsinhowtothinklikeaprogrammerstudentswilllearnhowtodeconstructcomplexproblemsandbreakthemintosmallermoduleshoweverthemostimportantskillthatstudentswilltakeawayfromthiscourseistheabilitytolearntechnologyisfastmovingandeverchangingagoodprogrammerhasageneralunderstandingofthevariousprogramminglanguagesandwhentousethemagreatprogrammerunderstandsthefundamentalstructureandpossessestheabilitytolearnanynewlanguagewhenrequireddivdivdetailssummaryfinancingsummarydldtdepositdtdd1000dddldetailsdetailssummarygettinginsummarydldtminimumskillleveldtddbasicprogrammingknowledgedddtprepworkdtdd4050hoursofonlinecontentthatyou39llhavetocompleteinordertoreachtherequiredlevelatthenextmoduledddtplacementtestdtddyesdddtinterviewdtddyesdddldetailsliulscripttypeapplicationldjsoncontexthttpschemaorgtypecoursenamewebdevelopmentbootcampparttimedescriptionthiscourseenablesstudentstodesignandbuildfullstackjavascriptwebapplicationsstudentswilllearnthefundamentalsofprogrammingwithabigemphasisonbattletestedpatternsandbestpracticesbytheendofthecoursestudentswillhavetheabilitytoevaluateaproblemandselecttheoptimalsolutionusingthelanguageframeworkbestsuitedforaprojectsscopeinadditiontotechnicalskillsthecoursewilltrainstudentsinhowtothinklikeaprogrammerstudentswilllearnhowtodeconstructcomplexproblemsandbreakthemintosmallermoduleshoweverthemostimportantskillthatstudentswilltakeawayfromthiscourseistheabilitytolearntechnologyisfastmovingandeverchangingagoodprogrammerhasageneralunderstandingofthevariousprogramminglanguagesandwhentousethemagreatprogrammerunderstandsthefundamentalstructureandpossessestheabilitytolearnanynewlanguagewhenrequiredprovidertypelocalbusinessnameironhacksameashttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagescriptdivdivdivdivdivclasspanelwrapperdatadeeplinkpathreviewsdatatabreviews_tabidreviewsdivclasspanelpaneldefaultpanelcontentdivclasspanelheadingcollapsedvisiblexsdatadeeplinktargetreviewsdatatargetreviewscollapsedatatogglecollapseidreviewscollapseheadingh4classpaneltitlereviewsh4divdivclasspanelcollapsecollapseinidreviewscollapsedivclasspanelbodyh2classhiddenxsironhackreviewsh2sectionclassreviewsdivclassrowfilterdropdowndivclasscolsm3aariacontrolsreviewformcontainerariaexpandedfalseclassbtnbtndefaultbtnwriteareviewdatadeeplinkpathreviewswriteareviewdatadeeplinktargetbtnwriteareviewdatatargetreviewformcontainerdatatogglecollapseidbtnwriteareviewwriteareviewadivdivclasscolsm5dropdowntextcenterdivpclassreviewlength596reviewssortedbypbuttonclassbtnsorterbtndatatoggledropdowntypebuttondefaultsortspanclasscaretspanbuttonulclasssorteduldropdownmenusortfiltersliadatasorttypedefaultclassactivesorthrefschoolsironhackdefaultsortaliliadatasorttyperecentclasshrefschoolsironhackmostrecentaliliadatasorttypehelpfulclasshrefschoolsironhackmosthelpfulaliuldivdivdivclasscolsm4dropdowndivclasspagenumberhidden1divdivpfilteredbypbuttonclassbtnfilterbtndatatoggledropdowntypebuttonallreviewsspanclasscaretspanbuttonulclassfiltereduldropdownmenureviewsfilterdataschoolironhackliclassallreviewsadatafiltertypedefaultclassactivehrefschoolsironhackallreviewsaliliadatafiltertypeanonymoushrefschoolsironhackanonymousaliliadatafiltertypeverifiedhrefschoolsironhackverifiedaliliclasscategorycampusesliliadatafiltertypecampusdatafiltervalmadridhrefschoolsironhackmadridaliliadatafiltertypecampusdatafiltervalmadridhrefschoolsironhackmadridaliliadatafiltertypecampusdatafiltervalmiamihrefschoolsironhackmiamialiliadatafiltertypecampusdatafiltervalmexicocityhrefschoolsironhackmexicocityaliliadatafiltertypecampusdatafiltervalmiamihrefschoolsironhackmiamialiliadatafiltertypecampusdatafiltervalbarcelonahrefschoolsironhackbarcelonaaliliadatafiltertypecampusdatafiltervalberlinhrefschoolsironhackberlinaliliadatafiltertypecampusdatafiltervalparishrefschoolsironhackparisaliliclasscategorycoursesliliadatafiltertypecoursedatafiltervalwebdevelopmentbootcampfulltimehrefschoolsironhackwebdevelopmentbootcampfulltimealiliadatafiltertypecoursedatafiltervaluxuidesignbootcampfulltimehrefschoolsironhackuxuidesignbootcampfulltimealiliadatafiltertypecoursedatafiltervalwebdevelopmentbootcampparttimehrefschoolsironhackwebdevelopmentbootcampparttimealiuldivdivdivdivclassrowdivclasscolxs12divclassreviewformcontainercollapsedivclassreviewguidelineshackboxpreviewguidelinespullionlyapplicantsstudentsandgraduatesarepermittedtoleavereviewsoncoursereportlilipostclearvaluableandhonestinformationthatwillbeusefulandinformativetofuturecodingbootcampersthinkaboutwhatyourbootcampexcelledatandwhatmighthavebeenbetterlilibenicetoothersdontattackothersliliusegoodgrammarandcheckyourspellinglilidontpostreviewsonbehalfofotherstudentsorimpersonateanypersonorfalselystateorotherwisemisrepresentyouraffiliationwithapersonorentitylilidontspamorpostfakereviewsintendedtoboostorlowerratingslilidontpostorlinktocontentthatissexuallyexplicitlilidontpostorlinktocontentthatisabusiveorhatefulorthreatensorharassesotherslilipleasedonotsubmitduplicateormultiplereviewsthesewillbedeletedahrefmailtohellocoursereportcomemailmoderatorsatorevisearevieworclickthelinkintheemailyoureceivewhensubmittingareviewlilipleasenotethatwereservetherighttoreviewandremovecommentarythatviolatesourpoliciesliuldivxclassreviewformdivclassrevieweremailcheckstrongyoumustlogintosubmitareviewstrongpahrefloginredirect_pathhttps3a2f2fwwwcoursereportcom2fschools2fironhack232freviews2fwriteareviewclickhereanbsptologinorsignupandcontinuepdivdivclasscrformformclassreviewformdataparsleyvalidatedataparsleyexcludeddisableddisabledidnew_reviewactionreviewsacceptcharsetutf8dataremotetruemethodpostinputnameutf8typehiddenvaluex2713inputtypehiddennameutm_sourceidutm_sourceinputtypehiddennameutm_mediumidutm_mediuminputtypehiddennameutm_termidutm_terminputtypehiddennameutm_contentidutm_contentinputtypehiddennameutm_campaignidutm_campaigninputvalue84typehiddennamereviewschool_ididreview_school_iddivclasshackwarningpheythereasof11116spanclassschoolnamespanisnowhackreactorifyougraduatedfromspanclassschoolnamespanpriortooctober2016pleaseleaveyourreviewforspanclassschoolnamespanotherwisepleaseleaveyourreviewforahrefschoolshackreactorhackreactorapdivh5titleh5divclassformgrouplabelclasssronlyforreview_titletitlelabelinputclassformcontrolrequiredrequireddataparsleyrequiredmessagetitleisrequiredtypetextnamereviewtitleidreview_titledivh5descriptionh5divclassformgrouplabelclasssronlyforreview_bodydescriptionlabeltextarearows10classformcontrolparsleyerrordataparsleyrequiredtruedataparsleyrequiredmessagepleasewriteashortreviewtohelpfuturebootcampapplicantsnamereviewbodyidreview_bodytextareadivh5ratingh5divclassformgroupdivclassratingsdivclassrowdivclasscolxs7colsm4overallexperiencedivinputstyledisplaynonerequiredrequireddataparsleytriggerchangedataparsleyerrorscontainerrating_errorsdataparsleyrequiredmessageoverallexperienceratingisrequiredtypenumbernamereviewoverall_experience_ratingidreview_overall_experience_ratingdivclasscolxs5colsm2ratingtextrightidoverall_experience_ratingspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspandivdivclasscolxs7colsm3curriculumdivinputstyledisplaynonerequiredrequireddataparselytriggerchangedataparsleyerrorscontainerrating_errorsdataparsleyrequiredmessagecurriulumratingisrequiredtypenumbernamereviewcourse_curriculum_ratingidreview_course_curriculum_ratingdivclasscolxs5colsm3ratingtextrightidcourse_curriculum_ratingspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspandivdivdivclassrowdivclasscolxs7colsm4instructorsdivinputstyledisplaynonerequiredrequireddataparselytriggerchangedataparsleyerrorscontainerrating_errorsdataparsleyrequiredmessageinstructorsratingisrequiredtypenumbernamereviewcourse_instructors_ratingidreview_course_instructors_ratingdivclasscolxs5colsm2ratingtextrightidcourse_instructors_ratingspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspandivdivclasscolxs7colsm3jobassistjobassistancedivinputstyledisplaynonerequiredrequireddataparselytriggerchangedataparsleyerrorscontainerrating_errorsdataparsleyrequiredmessagejobassistanceratingisrequiredtypenumbernamereviewschool_job_assistance_ratingidreview_school_job_assistance_ratingdivclasscolxs5colsm3ratingtextrightjobassistratingidschool_job_assistance_ratingspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspanspanclassiconempty_starspandivdivclasspullrightspanclassnotapplicableinputtyperadiovaluetruenamereviewjob_assist_not_applicableidreview_job_assist_not_applicable_truelabelforjob_assist_not_applicable_notapplicablenotapplicablelabelspandivdivdivdivclassrowdivclasscolxs12dividrating_errorsdivdivdivdivh5schooldetailsh5divclassrowdivclassformgroupcolsm6labelclasssronlyforreview_campuscampuslabelselectclassformcontroldatadynamicselectabletargetreview_course_iddataparsleyerrorscontainerschool_errorsdatadynamicselectableurldynamic_selectcampus_idcoursesdatatargetplaceholderselectcoursedataallowothertruenamereviewcampus_ididreview_campus_idoptionvalueselectcampusoptionoptionvalue108madridoptionoptionvalue197miamioptionoptionvalue107miamioptionoptionvalue779madridoptionoptionvalue780barcelonaoptionoptionvalue843parisoptionoptionvalue913mexicocityoptionoptionvalue995berlinoptionoptionvalue1089amsterdamoptionoptionvalue1090saopaulooptionoptionvalueotherotheroptionselectdivdivclassformgroupcolsm6labelclasssronlyforreview_coursecourselabelselectclassformcontroldataparsleyerrorscontainerschool_errorsdataallowothertruenamereviewcourse_ididreview_course_idoptionvalueselectcourseoptionselectdivdivdivclassformgrouplabelclasssronlyforreview_reviewer_typeschoolaffiliationlabelselectclassformcontroldataparsleyerrorscontainerschool_errorsnamereviewreviewer_typeidreview_reviewer_typeoptionvalueschoolaffiliationoptionoptionvaluestudentstudentoptionoptionvaluegraduategraduateoptionoptionvalueapplicantapplicantoptionselectdivdivclassrowidgraduation_date_dropdownslabelclasssronlyforreview_graduation_dategraduationmonthlabelinputtypehiddenidreview_graduation_date_3inamereviewgraduation_date3ivalue1selectidreview_graduation_date_2inamereviewgraduation_date2iclassformcontroldataparsleyerrorscontainerschool_errorsoptionvaluegraduationmonthoptionoptionvalue1januaryoptionoptionvalue2februaryoptionoptionvalue3marchoptionoptionvalue4apriloptionoptionvalue5mayoptionoptionvalue6juneoptionoptionvalue7julyoptionoptionvalue8augustoptionoptionvalue9septemberoptionoptionvalue10octoberoptionoptionvalue11novemberoptionoptionvalue12decemberoptionselectselectidreview_graduation_date_1inamereviewgraduation_date1iclassformcontroldataparsleyerrorscontainerschool_errorsoptionvaluegraduationyearoptionoptionvalue20052005optionoptionvalue20062006optionoptionvalue20072007optionoptionvalue20082008optionoptionvalue20092009optionoptionvalue20102010optionoptionvalue20112011optionoptionvalue20122012optionoptionvalue20132013optionoptionvalue20142014optionoptionvalue20152015optionoptionvalue20162016optionoptionvalue20172017optionoptionvalue20182018optionoptionvalue20192019optionoptionvalue20202020optionoptionvalue20212021optionoptionvalue20222022optionoptionvalue20232023optionselectdivdivclassrowdivclassformgroupcolsm6review_campus_otherstyledisplaynonelabelclasssronlyforreview_campus_otherotherlabelinputclassformcontrolplaceholderothercampusdataparsleyerrorscontainerschool_errorstypetextnamereviewcampus_otheridreview_campus_otherdivdivclassformgroupcolsm6review_course_otherstyledisplaynonelabelclasssronlyforreview_course_otherotherlabelinputclassformcontrolplaceholderothercoursedataparsleyerrorscontainerschool_errorstypetextnamereviewcourse_otheridreview_course_otherdivdivdivclassrowdivclasscolxs12dividschool_errorsdivdivdivh5aboutyouh5divclassformgroupcolsm6labelclasssronlyforreview_reviewer_namenamelabelinputclassformcontrolplaceholdernamedataparsleyerrorscontainerabout_errorsdataparsleytriggerchangerequiredrequireddataparsleyrequiredmessagenameisrequiredbutwillbekeptanonymousifboxischeckedtypetextnamereviewreviewer_nameidreview_reviewer_namespanclassreview_anoninputnamereviewreviewer_anonymoustypehiddenvalue0inputtypecheckboxvalue1namereviewreviewer_anonymousidreview_reviewer_anonymouslabelforreview_reviewer_anonymousreviewanonymouslylabelspanpclasssmalltextnonanonymousverifiedreviewsarealwaysmorevaluableandtrustworthytofuturebootcampersanonymousreviewswillbeshowntoreaderslastpdivdivclassformgroupcolsm6labelclasssronlyforreview_reviewer_job_titlereviewerjobtitlelabelinputclassformcontrolplaceholderjobtitleoptionaldataparsleyerrorscontainerabout_errorstypetextnamereviewreviewer_job_titleidreview_reviewer_job_titledivdivclassrowdivdivclassrowdivclasscolxs12dividabout_errorsdivdivdivdivclassformgroupdivclassrowdivclasscolxs12divclassrevieweremailcheckstrongyoumustlogintosubmitareviewstrongpahrefloginredirect_pathhttps3a2f2fwwwcoursereportcom2fschools2fironhack232freviews2fwriteareviewclickhereanbsptologinorsignupandcontinuepdivinputtypesubmitnamecommitvaluesubmitclassbtnbtndefaultbtnlgpullrightreviewsubmitreviewlogindivdivdivformdivxdivdivdivdivclassrowdivclasscolxs12reviewcontainerbrdivdivclassreviewdatacampusmadridironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16341datadeeplinktargetreview_16341datareviewid16341hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16341reviewsreview16341idreview_16341fromnursetodesignerintwomonthsabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltmarialuisauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqfwswrrtugbhaprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptau4trwyta5rrmekqqqfnrakckmprxqqr6zbpk_dfn8divspanclassreviewernamemarialuisaspanspanuxuidesignerspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominmarialuisapedauyeverifiedvialinkedinaspandivdivclassratingsspanclasshiddenfromnursetodesignerintwomonthsspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepppspaniwantedtoturnmylifearoundbecauseialwayslikeddesignbutmaybeoutoffearididnotdoitbeforeuntililuckilygotintoironhackmylifehaschangedintwomonthsitsmethodologyandwayofteachingmakesyougofrom0to100inarecordtimeirecommenditwithoutanydoubtspanppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16341dataremotetruedatamethodposthrefreviews16341votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20from20nurse20to20designer20in20two20months207c20id3a2016341flagasinappropriateapdivdivdivdivdivclassreviewdatacampusdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16340datadeeplinktargetreview_16340datareviewid16340hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16340reviewsreview16340idreview_16340100recomendableabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltnicolaealexeuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqhtdojuxozttgprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptszskngag0gyyqxooagfkuyfw3anpdnpjw4boixzxvtedivspanclassreviewernamenicolaealexespanspanspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxsspanspanclassreviewernameahrefhttpwwwlinkedincominnicolaealexeverifiedvialinkedinaspandivdivclassratingsspanclasshidden100recomendablespandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepiamaseniorstudentofcomputerengineeringdegreebutiwasfeelinglikesomethingwasmissinginmyacademicprogramihadnocontactwiththecurrenttechnologiesbrduetothiswheniheardaboutironhackiknewthatwaswhatineededtocompletemyeducationandiwascompletelyrightppfromdayonetheatmospherewasamazingtheleadteacherwasfundamentaltomylearningexperiencebecauseofhisamazingskillsbutthemostkeyelementsoftheironhackexperiencewasthetastheyarealumnithatsupportsyouduringyourbootcampppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16340dataremotetruedatamethodposthrefreviews16340votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c201002520recomendable2121207c20id3a2016340flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16338datadeeplinktargetreview_16338datareviewid16338hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16338reviewsreview16338idreview_16338funexperienceandgreatjobafterabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltgabrielcebrinlucasuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsavatars1githubusercontentcomu36677458v4divspanclassreviewernamegabrielcebrinlucasspanspanspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpsgithubcomkunryverifiedviagithubaspandivdivclassratingsspanclasshiddenfunexperienceandgreatjobafterspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepicametoironhacktolookforajobiknewilovedprogrammingbecauseistudiedengineeringandhadlearntprogrammingbymyselfbutneverwebdevelopmentiwantedtolearnin9weekssomwthingiwouldtakemonthslearningbymyselfppitwasareallyfunexperienceandigotagreatjobafterppirecomendironhackppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16338dataremotetruedatamethodposthrefreviews16338votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20fun20experience20and20great20job20after207c20id3a2016338flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16335datadeeplinktargetreview_16335datareviewid16335hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16335reviewsreview16335idreview_16335fromteachertodeveloperabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltjacobcasadoprezuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqeaprrzi28isqprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptyl6q7ppc5_ductoz9xqfps2p77l_imvr_qpii5zpdidivspanclassreviewernamejacobcasadoprezspanspanjuniorfullstackdeveloperspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominjacobcasadoverifiedvialinkedinaspandivdivclassratingsspanclasshiddenfromteachertodeveloperspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepwheniheardaboutironhackonseptember2017ihadnoideathatitgoingtobemyschoolandmyfutureiwasmusicteacherandialwaysthoughthatmylifewaslinkingwiththeeducationbutmylifechangeinablinkofaneyeandidecidedtolookforanewchanceinaworldwithmoreprofessionalopportunitiesandforthisreasonistudiedatironhackbrihadnotechnologybackgroundbutihadabigdesiretoimproveandtobeagooddeveloperbrduringthebootcamplittlebylittleiwasgrewandwasabletoovercomechallengesineverthoughtiwouldallofthiswaspossiblewiththeenormoussupportofteacherassistantsmycollegesandfriendswithoutthemthisbootcamphadbeenverydifficultppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16335dataremotetruedatamethodposthrefreviews16335votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20from20teacher20to20developer207c20id3a2016335flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16334datadeeplinktargetreview_16334datareviewid16334hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16334reviewsreview16334idreview_16334newwayoflearningabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltesperanzauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4d03aqgkf5xzyf9eaprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptfyprbwzon2x9kyh8qp5wmbxej1gxkvjh4ouydqk_m3mdivspanclassreviewernameesperanzaspanspanjuniorfullstackdeveloperspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominesperanzaamayaverifiedvialinkedinaspandivdivclassratingsspanclasshiddennewwayoflearningspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepthisbootcamphasbeenatotalchangeoflifeformeatotallynewwayoflearningnewpossibilitiesnewwayofthinkingnewdisciplinesitsabigchallengebutiwouldabsolutelyrepeatitthequalityofthisteachingisuncompareablebrihadnocodingexperienceiworkedinbiomedicalresearchiwasjustlookingalittleapproachtocodingifoundatotallynewstyleoflifeppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16334dataremotetruedatamethodposthrefreviews16334votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20new20way20of20learning207c20id3a2016334flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16333datadeeplinktargetreview_16333datareviewid16333hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16333reviewsreview16333idreview_16333ironhackdoesn39tteachyoutocodeitteachesyoutobeadeveloperabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltrubenuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4d03aqfbea1tkoodgprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptm5khvu8u8dhve0kdy_ps5wbz1fdrph2n9zbt3tdp5mdivspanclassreviewernamerubenspanspanjuniorfullstackdeveloperspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominrubenarmendarizverifiedvialinkedinaspandivdivclassratingsspanclasshiddenironhackdoesn39tteachyoutocodeitteachesyoutobeadeveloperspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepihadnocodingexperienceihadstudiedpsychologyandworkedasatechnicianassistantthebootcampwasveryintenseandveryenrichingbrmylearningcurvewasverticleupwardsistartedfrom0andnowimamazedofwhatiknowppironhacksimulatesperfectlythereallyworkingenvironmentofaprogrammeryouworkinginteamswiththerealtoolscompaniesuseyouresolveproblemsandreallyitslikeavirtualprofesionalatmospherebrwhenwevisitedtuentiabigspanishcompanyiwasamazedthatiunderstoodwhattheyweretalkingtomeabouticouldseemyselfworkingthereasaprogrammerbrironhackdoesntteachyoutocodeitteachesyoutobeadeveloperppironhackhelpsyoudiscoverifyoureallywanttoworkasadeveloperornotandafterthebootcampicandefinetlysayiwillworkasacoderppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16333dataremotetruedatamethodposthrefreviews16333votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20ironhack20doesn27t20teach20you20to20code2c20it20teaches20you20to20be20a20developer207c20id3a2016333flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16332datadeeplinktargetreview_16332datareviewid16332hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16332reviewsreview16332idreview_16332aboutmyexperinceabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltpablotabaodaortizuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqfrwvtzz9vtiaprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptl1zw6ienmebscbcvwfwpj9li3hiz62voiy0bor4qfzmdivspanclassreviewernamepablotabaodaortizspanspanjuniorfullstackdeveloperspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominpablotaboada04254316bverifiedvialinkedinaspandivdivclassratingsspanclasshiddenaboutmyexperincespandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepiwanttotalkaboutmylast9weeksicametoironhackwithoutanybackgroundandaftercompletingthebootcampifeelreallyimpressedofhowmuchilearntthesupportandfacilitiesareamazingandalsotheleveloftheteachersmyfullyrecommendationironhacktoeveryonenotonlyprofessionalsthatarelookingforrenewtheirskillsbutalsotopeopletryingtofindnewchallengesppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16332dataremotetruedatamethodposthrefreviews16332votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20about20my20experince207c20id3a2016332flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16331datadeeplinktargetreview_16331datareviewid16331hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16331reviewsreview16331idreview_16331webdevabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltricardoalonzouserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4d03aqfik4zkpmlezaprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptttjn_xwha0tl9kpcrhetmgd8u4j2javyojiddzde3tsdivspanclassreviewernamericardoalonzospanspanwebdeveloperspanspanstudentspanspanclasshiddenxsspanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominalonzoricardoverifiedvialinkedinaspandivdivclassratingsspanclasshiddenwebdevspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepironhackitsperfectifyouwanttostartacareerinwebdevelopmentitopenssomanydoorsasaprofessionalitstrullyimpresivewhatyoucanlearninashortperiodoftimeppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16331dataremotetruedatamethodposthrefreviews16331votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20web20dev207c20id3a2016331flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16330datadeeplinktargetreview_16330datareviewid16330hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16330reviewsreview16330idreview_16330anawesomewaytokickstartyourdevelopercarreerabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltjhonscarzouserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5103aqeqztty60r3zaprofiledisplayphotoshrink_100_1000e1545868800ampvbetaampt6ly760vnykzcrmbcvrszlub1dvz3gxqgkfp5ocaw7mdivspanclassreviewernamejhonscarzospanspanspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominjhonscarzoverifiedvialinkedinaspandivdivclassratingsspanclasshiddenanawesomewaytokickstartyourdevelopercarreerspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivdivclassbodydivclassexpandablepatironhacktheirgoalistoteacheveryonefromthebasicsandthecoreconceptsofprogrammingandbuildupfromtheretoprovideyouaverywellroundededucationandincentivizeyoutokeeplearningonyourownppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16330dataremotetruedatamethodposthrefreviews16330votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20an20awesome20way20to20kickstart20your20developer20carreer21207c20id3a2016330flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16329datadeeplinktargetreview_16329datareviewid16329hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16329reviewsreview16329idreview_16329reallycoolbootcampabrdivclassreviewdate10252018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltsarauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqh1a9lrqrrjawprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptvxf6lkkwu1tcqultrae47hxgs6ljbcidrpsvd1i8oudivspanclassreviewernamesaraspanspanfullstackwebdeveloperspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominsaracurielverifiedvialinkedinaspandivdivclassratingsspanclasshiddenreallycoolbootcampspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepihavebeenalwaysmotivatedtolearnnewthingsandthankstoironhackiintegratedallmypreviousknowledgeinapowerfulwaycreating3differentprojectsandenjoyingeverythingabouttheexperiencepeoplehereareamazingandalwaysdisposedtohelpyouduringtheprocessbr100recommendableppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16329dataremotetruedatamethodposthrefreviews16329votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20really20cool20bootcamp21207c20id3a2016329flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16282datadeeplinktargetreview_16282datareviewid16282hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16282reviewsreview16282idreview_16282changeyourlifeinjust2monthsabrdivclassreviewdate10222018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltyagovegauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4d03aqhuojooprtmqprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptiptv1p7pcjrmpu2syig1fbhjdfvcxnzo_ng_laltlcdivspanclassreviewernameyagovegaspanspanfullstackdeveloperspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominyagovegaverifiedvialinkedinaspandivdivclassratingsspanclasshiddenchangeyourlifeinjust2monthsspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepitshardtoputinafewwordwhatihaveexperiencedin4monthsoffullcommitmenttoironhackswebdevelopmentanduxuibootcampsppivemetamazingpeopleivelearnedfromamazingpeopleandimgladicouldaswellhelpamazingpeopleppnomatterwhereyoucomefromorifyouhaventreadasinglelineofcodeinyourlifeaftertwomonthsyouareadifferentpersonimsogladimadethisdecisionitswortheverypennyppfromhtmltoangular5reactarollercoasterofemotionsandalotofhardworkicansaytodaythatimofficiallyafullstackdeveloperworkingforagreatcompanyinareallycoolprojectandthatwouldntbepossiblewithoutironhackppifyouarejustbrowsingforpossibleeducationaloptionsjuststopandtrustandjoinalltheironhackersaroundtheworldthatareconnectedandhelpingeachothereverydayppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16282dataremotetruedatamethodposthrefreviews16282votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20change20your20life20in20just20220months207c20id3a2016282flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16276datadeeplinktargetreview_16276datareviewid16276hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16276reviewsreview16276idreview_16276anincredibleexperienceabrdivclassreviewdate10222018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltdiegomndezpeouserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqhsxmvcrdirqqprofiledisplayphotoshrink_100_1000e1545868800ampvbetaamptbd_0rdi82jyeticnsxbxl9mzu01ynbm1sqlqrb3isdgdivspanclassreviewernamediegomndezpeospanspanspanspanstudentspanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincomindiegomendezpec3b1overifiedvialinkedinaspandivdivclassratingsspanclasshiddenanincredibleexperiencespandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepcomingfromuniversityironhackhasexceededallmyexpectationsitseverythingiwaslookingforbecauseironhackgavemeeverythingtobepreparedforajobinprogrammingppteacherassistantsaregreatandeveryonefrommybootcampwasawesomewelearntfromeachotheralotppirecommendironhacktoeveryonenotonlytotechenthusiastbutalsotopeoplewhoarelookingtochangecareerorlookingtoboostitppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16276dataremotetruedatamethodposthrefreviews16276votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20an20incredible20experience21207c20id3a2016276flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16275datadeeplinktargetreview_16275datareviewid16275hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16275reviewsreview16275idreview_16275howtochangeyourliveinonly9weeksabrdivclassreviewdate10222018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltteodiazuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4d03aqfz0kjtldo9pgprofiledisplayphotoshrink_100_1000e1545868800ampvbetaampttqcf0vxr6theusvc822ffkiuvpclusssr_geq9opj9udivspanclassreviewernameteodiazspanspanspanspanstudentspanspanclasshiddenxsspanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominteodiazverifiedvialinkedinaspandivdivclassratingsspanclasshiddenhowtochangeyourliveinonly9weeksspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepironhackwasthewaytochangemylifeandtobeabletolearninatotallydifferentwaythanusualtheymakeyoufeelthatyoubelongtoabigfamilyandallyourcolleaguesaretheretohelpyouafterfinishingthebootcampirealizedeverythingihadlearnedandthatiwasreadytoenteracompanywiththeguaranteethatiwoulddowellppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16275dataremotetruedatamethodposthrefreviews16275votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20how20to20change20your20live20in20only20920weeks207c20id3a2016275flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacourseuxuidesignbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16248datadeeplinktargetreview_16248datareviewid16248hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16248reviewsreview16248idreview_16248besteducationalexperienceeverabrdivclassreviewdate10202018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltronaldricardouserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqexcvlptm0ecwprofiledisplayphotoshrink_100_1000e1545264000ampvbetaampt7ioz6g8kcywmstzy3uczzuatswmhhkfyoa4ln_obpu4divspanclassreviewernameronaldricardospanspanspanspangraduatespanspanclasshiddenxscourseuxuidesignbootcampfulltimespanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincominronaldricardoverifiedvialinkedinaspandivdivclassratingsspanclasshiddenbesteducationalexperienceeverspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepandyesiwenttoatraditional4yearuniversityppiwenttolearnuxuiandendeduplearningsomuchmoreisawhowanorganizationthatcaresaboutitsemployeesandclientsisrundontjustaskthestudenthowmuchtheylikeattendingironhackasktheemployeeshowmuchtheylikeworkinghereyoucantellthateveryoneishappyandincludedthatisonlypossibleifthecultureiswellestablishedfromtoptobottomtheyhaveweeklysurveyswhichaimatgatheringfeedbackregularlythatshowstheycareaboutbeingthehighlyregardedbootcampthattheyareppthestartalexisverypersonalbleandhelpfulguidingtheprocessfromapplicationtofinancialaidprocessingjessicaisalsoinstrumentalinguidingthenewlyregisteredsothattheystartoffthecourseontherightfoottheymaketasavailablesothatyouhaveanyquestionsansweredbeforethecoursebeginsthepreworkcanbeafreestandingcoursedavidfastandkarenlumareverystronginstructorsthatreallycareaboutyourprogressasauxuidesignerthenwhenitsalldoneyouknowthatyouarepartofanewcommunitysocontinuingyourlearningjourneyisalmostunavoidablepptoppingitoffisdanielbritowhoismaniacalinhisdrivetohelpgradsfindthenecessaryemploymentresourcesnoonewhoisseriousshouldexpectanyonetofindyouajobbutreallyyouhavetogooutofyourwayinordertofailppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16248dataremotetruedatamethodposthrefreviews16248votesthisreviewishelpfulspanclasshelpfulcount1spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20best20educational20experience20ever207c20id3a2016248flagasinappropriateapdivdivdivdivdivclassreviewdatacampusdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16199datadeeplinktargetreview_16199datareviewid16199hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16199reviewsreview16199idreview_16199auniqueoportunityabrdivclassreviewdate10182018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltmontserratmonroyuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqe8kv0gzohmqaprofiledisplayphotoshrink_100_1000e1545264000ampvbetaamptdz8ssbztddzi2ts0gmokah4i51ywngxpf7zzk3eyvkdivspanclassreviewernamemontserratmonroyspanspanspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxsspanspanclassreviewernameahrefhttpwwwlinkedincominmonroylc3b3pezbmverifiedvialinkedinaspandivdivclassratingsspanclasshiddenauniqueoportunityspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepduringmysearchtostartmytriptolearnaboutthevirtualareaironhackwasthebestoptioninwhichtheytaughtmemyskillsandabilitiestocreatematerializeandsolveproblemsthroughacoordinatedeffortwithteacherswhothroughouttheprocessareaccompanyingyouandsharingyourachievementsppwithoutadoubtthebestjourneyihavelivedandfromwhichihavelearnedalotduringthesesixmonthsgeneratingagratitudeandrespectforthosewhoaccompaniedduringmystudyandthosepeoplewhowithasmileandtheirkindwordshelpedintheprocessesadministrativeppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16199dataremotetruedatamethodposthrefreviews16199votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20a20unique20oportunity207c20id3a2016199flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursewebdevelopmentbootcampparttimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16183datadeeplinktargetreview_16183datareviewid16183hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16183reviewsreview16183idreview_16183greatdecisionabrdivclassreviewdate10182018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltmariafernandaquezadauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsavatars2githubusercontentcomu35006493v4divspanclassreviewernamemariafernandaquezadaspanspanstudentspanspanspanspanclasshiddenxscoursewebdevelopmentbootcampparttimespanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpsgithubcommafeq03verifiedviagithubaspandivdivclassratingsspanclasshiddengreatdecisionspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepbeforedecidingonsigninguptoironhackiresearchedandvisitedotherbootcampsironhackscurriculumattractedmethemostbecausetheyteachyouthelatesttechnologiesforwebdevelopmentppthestaffwasveryhelpfulcommunicativeandknowledgeabletheclassroomenvironmentwasofhighqualityeveryonewasveryrespectfulandeagertolearnppmyoverallexperiencewasgreatandhighlyvaluableitalreadyhasimpactedmycareeranddecisiontocontinuelearningandgrowinginthisindustryppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16183dataremotetruedatamethodposthrefreviews16183votesthisreviewishelpfulspanclasshelpfulcount2spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20great20decision207c20id3a2016183flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmexicocityironhackdatacoursewebdevelopmentbootcampparttimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16160datadeeplinktargetreview_16160datareviewid16160hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16160reviewsreview16160idreview_16160myfavoriteexperiencetillnowabrdivclassreviewdate10172018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltsalemmuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqhvl6y_jryi4gprofiledisplayphotoshrink_100_1000e1545264000ampvbetaamptmvrgzyc9d36js0oab0ozura79phsirrplt620oikz1qdivspanclassreviewernamesalemmspanspanspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampparttimespanspanclasshiddenxscampusmexicocityspanspanclassreviewernameahrefhttpwwwlinkedincominsalvadoremmanueljuc3a1rezgranados13604a117verifiedvialinkedinaspandivdivclassratingsspanclasshiddenmyfavoriteexperiencetillnowspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandableponeofthemostamazingexperiencesofallbeingpartofagreatcommunityaroundtheworldandbeingwrappedbytheirsenseofcommunityandvaluesitsnotjustthelearningparttheyreallymakeyoufeellikepartofitanditsworldwidejustamazingppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16160dataremotetruedatamethodposthrefreviews16160votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20my20favorite20experience20till20now207c20id3a2016160flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16149datadeeplinktargetreview_16149datareviewid16149hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16149reviewsreview16149idreview_16149bestdecisioneverabrdivclassreviewdate10172018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltjulieturbinauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqfglxipjr8ijwprofiledisplayphotoshrink_100_1000e1545264000ampvbetaampthyxxnaigicxavvk3ibssew1py7qdt3gwucrnszsfgkidivspanclassreviewernamejulieturbinaspanspanstudentspanspanstudentspanspanclasshiddenxsspanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincominjulieturbinaverifiedvialinkedinaspandivdivclassratingsspanclasshiddenbestdecisioneverspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivdivclassbodydivclassexpandablepspaniresearchedwellandconsideredmyoptionscarefullybeforedecidingtotakethewebdevcourseatironhackitwasarollercoasterrideandinowregretnotdoingitsoonerspanppspanthecoursewaschallengingbutwiththeguidanceandencouragementreadilyavailableitbecameaprocessthatgavemeanincrediblesenseofaccomplishmentihadthesupportthatwasessentialandtheencouragementthatineededtoseeitthroughspanppspanironhackopenedanewdoorformespanppspantodayicanhonestlysaythatimadethebestdecisiontotakeawellstructuredcourseandmostimportantlytotakethecourseatironhackspanppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16149dataremotetruedatamethodposthrefreviews16149votesthisreviewishelpfulspanclasshelpfulcount2spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20best20decision20ever21207c20id3a2016149flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16143datadeeplinktargetreview_16143datareviewid16143hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16143reviewsreview16143idreview_16143bestcourseeverabrdivclassreviewdate10162018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltpablorezolauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4d03aqfepicebdodqwprofiledisplayphotoshrink_100_1000e1545264000ampvbetaampt878evt_vk0pnksbgfrqso1g66_9sskfaey8axejlqy0divspanclassreviewernamepablorezolaspanspanspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominpablorezolaverifiedvialinkedinaspandivdivclassratingsspanclasshiddenbestcourseeverspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepirecentlycompletedthefulltimewebdevelopmentcourseandihighlyrecommendittoanyonelookingtoexpandtheirskillsthiscoursehaschangedmylifestyletoabetteroneihadneverthoughtaboutallthethingsacomputerisabletodoandtheonlyrealuseigavetothembeforethisfantasticexperiencewereschoolprojectsatlawschoolppatthebeginningofthecourseiwaswarnedjusthowhardandintensethiscoursewouldbemyclosestfriendsandrelativesalsoencouragedmetodothisandshowedmethehugeimportanceoflearningtechnologiesandhowthiswouldhelpmegetajobbecausewearecurrentlylivinginaworldwhichalmosteveryoneworkwithacomputerppiamimpressedabouteverythingilearnedtherenotonlycodingihadtolivetogetherwithmyclassmateseverydayaskingforhelpinthegoodtimesandbadtimesimademanyfriendswhichistillkeepintouchwiththemironhackisabigcommunitytobepartofitdefinetelyiamreallypleasedwithironhackineverysingleaspectofthecoursepptasspendtheirtimeintensivelytostudentsnomatterhowlongitwilltakepptechnologieslearnedarecompletelyupdatedtofirmsrequisitesmeanstackppsocialeventsandspeechesenrichourknowledgeandappetitetolearnmorethingsppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16143dataremotetruedatamethodposthrefreviews16143votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20best20course20ever21207c20id3a2016143flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16131datadeeplinktargetreview_16131datareviewid16131hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16131reviewsreview16131idreview_16131bestexperienceeverabrdivclassreviewdate10162018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltjoshuamatosuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqegrlwnfajumaprofiledisplayphotoshrink_100_1000e1545264000ampvbetaampt7pa6hqinwgh9zo2a4fwsio7ovg3hvd9us4touc8dicdivspanclassreviewernamejoshuamatosspanspanspanspanspanspanclasshiddenxsspanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincominjoshuamatos1verifiedvialinkedinaspandivdivclassratingsspanclasshiddenbestexperienceeverspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepmyonlyregretisnotdoingthissoonertheniwishedididthisbootcamphasshiftedmylifetoamorepositivesideandihavelearnedsomuchinsuchasmallamountoftimeexcitedtoseewhatthefutureholdsformeaftergainingtheknowledgeofgreatdevelopersppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16131dataremotetruedatamethodposthrefreviews16131votesthisreviewishelpfulspanclasshelpfulcount2spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20best20experience20ever21207c20id3a2016131flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16118datadeeplinktargetreview_16118datareviewid16118hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16118reviewsreview16118idreview_16118mostcurrentcontentyoucanlearnaboutfullstackwebdevabrdivclassreviewdate10162018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltjonathanharrisuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqgsvxeyi7bovgprofiledisplayphotoshrink_100_1000e1545264000ampvbetaamptx4nk5sf7zlxospu3pppqxyz2tahuq_iyoecrnasmyzadivspanclassreviewernamejonathanharrisspanspanspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincominyonatanharrisverifiedvialinkedinaspandivdivclassratingsspanclasshiddenmostcurrentcontentyoucanlearnaboutfullstackwebdevspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepiwassearchingforalongtimefortherightschoolandthenifoundironhacktheyalwaysstayuptodateandiamveryhappyichosethisschooliwasveryworriedformanyreasonsbeforeistartedwillitbetohardwillitbetoeasywillwelearnenoughwillimanagetokeepupnowthatiamaftergraduationandicansayiamveryhappywithmychoiceallthesequestionswereansweredinthebestcasescenarioformetheteacherswerereallyawesomeiwasaskingmanyquestionsconstantlyduringtheclassandtheyansweredallofthemwithgreatpatienceireallyfeltigotthemostoutofthetimeicouldpossiblygetitwasnteasyitwassuperhardactuallybuttheypushedmetomylimitwithoutbreakingmeandifeelilearnedthemaximumicouldinthisamountoftimeandilearnedalotiamveryhappyichosethisbootcampppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16118dataremotetruedatamethodposthrefreviews16118votesthisreviewishelpfulspanclasshelpfulcount2spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20most20current20content20you20can20learn20about20full20stack20web20dev207c20id3a2016118flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursewebdevelopmentbootcampfulltimedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview16117datadeeplinktargetreview_16117datareviewid16117hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review16117reviewsreview16117idreview_16117kitchenstocomputersabrdivclassreviewdate10162018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgalteranushauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqfof7aaornb_aprofiledisplayphotoshrink_100_1000e1545264000ampvbetaamptqhr8x9u8_21lete57pjspk857h2e4msisk6jqkflrzgdivspanclassreviewernameeranushaspanspanspanspangraduatespanspanclasshiddenxscoursewebdevelopmentbootcampfulltimespanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincomineranushaverifiedvialinkedinaspandivdivclassratingsspanclasshiddenkitchenstocomputersspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepatthebeginningofthecourseiwaswarnedjusthowhardandintensethiscoursewouldbefortheseeminglyshort9weeksthatiwasenrolledilearnedanovelsworthofinformationbutwhatsomeofthebestthingsilearnedwereaboutmyselfthiscoursehelpedmetoseeareasofmyselfthatineededtoimproveonasapersonandaprofessionaltheteachersandassitantswerefantasticandwerereadytohelpthiscoursereallyhelpsyoutodevelopaspecialrelationshipwithyourfellowclassmatesseeingaseveryoneisgoingthroughthesameintensedevelopmentinlifeifeelmoreconfidentaboutenteringthisprofessioncomingfromabackgroundinhospitalitywith0experiencethanieverthoughtiwouldppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid16117dataremotetruedatamethodposthrefreviews16117votesthisreviewishelpfulspanclasshelpfulcount2spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20kitchens20to20computers207c20id3a2016117flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmadridironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview15838datadeeplinktargetreview_15838datareviewid15838hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review15838reviewsreview15838idreview_15838verygooddecisionabrdivclassreviewdate9282018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltvctorgabrielpeguerogarcauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec5603aqeddlnkhdrecwprofiledisplayphotoshrink_100_1000e1543449600ampvbetaampt86mx9w5pirjucixnjpxsy8048ywiagnfhrp_wq5qgdivspanclassreviewernamevctorgabrielpeguerogarcaspanspancofounderofleemurappspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxscampusmadridspanspanclassreviewernameahrefhttpwwwlinkedincominvictorgabrielpegueroverifiedvialinkedinaspandivdivclassratingsspanclasshiddenverygooddecisionspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepthankstotheuxuibootcampfromironhackihaveimprovedalotasadesigneriapproachedtheworldofappsafewyearsagoandistarteddesigningiloveddesigningandtheironhackexperiencehasbeenaveryimportantqualitativeimprovementformeppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid15838dataremotetruedatamethodposthrefreviews15838votesthisreviewishelpfulspanclasshelpfulcount0spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20very20good20decision207c20id3a2015838flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview15837datadeeplinktargetreview_15837datareviewid15837hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review15837reviewsreview15837idreview_15837ironhackexperiencefulltimewebdevabrdivclassreviewdate9282018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltjosearjonauserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqhr_gdkooskxwprofiledisplayphotoshrink_100_1000e1543449600ampvbetaamptbz49dlovqzgfx8oobuqannst9tubvu_vmzvxeh6xe9wdivspanclassreviewernamejosearjonaspanspanfullstackdeveloperspanspangraduatespanspanclasshiddenxsspanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincominjosedarjonaverifiedvialinkedinaspandivdivclassratingsspanclasshiddenironhackexperiencefulltimewebdevspandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconempty_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandabledivdivdivdivdivpstrongaboutmestrongppiworkedinitanddidsomecodingbutnothingpastbasicjavascriptitpeakedmyinterestsoibeganlearningonmyownbytakingcoursesonlineirealizedineededtogoaboutlearninginadifferentwayiresearchedcoursesbootcampsandranintoironhackanddecidedtodiveinandtakeitsfulltimewebdevcourseaftercomingacrossgreatreviewsratingsppstrongexpectationsandcourserundownstrongppbereadytolearnbecauseyouregoingtolearnalotitsafulltime95pmeverydayfor9weeksnotincludingtheafterhoursyouwanttoputinaswellitsnojokesojustpreparetofullyinvestthenext9weeksintoironhackyoulearnfor2weeksandthenimmediatelyaresentofftocreateaprojectwithinaweekrepeatagain2moretimesafterthatcomeinpreparedtolearntakeinallthematerialandbewillingtoputintheworkppspanstronghelpduringcourseworkcurriculumtasandteacherstrongspanpptheinstructorforourcohortnickwasveryknowledgeabletheonlydownsidewasthatitwashisfirsttimeteachingthecoursesoitfeltlikehewasalsolearningaswewerealltryingtolearnsomethingtoobesidesthathewasmostdefinitelyagreatinstructorandwithouthisproficiencyonthesubjectiwouldnothavelearnedasmuchasididasfortheteachingassistantsallthreeofthemwereamazingsandramarcosiantheywereallveryfamiliarwiththecourseworksincetheywereallironhackgraduatesaswellitwasextremelyhelpfulhavingdedicatedtaswhowereformerstudentshelpingusbecausetheyknowthestrugglesotheystrongwantstrongtohelptheresmorethanenoughhelptogoaroundjustmakesuretostrongaskstrongforitwhenyouneeditandyouwontfallbehindppthecourseworkdefinitelyneededsometweakingonsomedaysourinstructornickpushedasidewhathefeltwaswrongandobsoleteandtaughtitthebestwayhecouldanditdefinitelyworkedoutduringthecoursethiswasoneofmytopissuesthecurriculumforsureneededanupdatebutfromwhatihaveseenaftermytimetheretheyareoralreadyhavetakenthestepsnecessarytodosowhichmeanstheytakeyourfeedbackseriouslyandwontbrushyourinputasideppstrongrestofironhackstaffstrongppsincethefirstdayiappliedandevennowthestaffatironhackhasntmissedabeattheyhavebeenhelpfulandthereformewithanyquestionsihadtheyhaveanideaastowhattheywanttodowiththecourseandtheydefinitelymakesurethatyoureceivethebestexperiencepossibleitdoesntmatterwhoyoutrytocontacttheownerdowntothetastheyallrespondhappilyandmakeyoufeellikeoneofthemppstronghiringfairprepstrongppfromthefirstweekatironhackyoubecomewellacquaintedwithamannamedbritotakehisadviceseriouslyifyourgoalisgettingajobhewalksyouthroughallthenecessarystepstoprepareyousuchasbuildingyourresumecreatingyourlinkedinandletsyouknowaboutnetworkingeventstoattendheconstantlybringsinpeopletogivespeechestoyouweeklybritoisagreatsourceforhelpandinformationsomakesureyouareconstantlycheckinginwithhimalongwithallthisprepworkyouarealsocreatingyourportfolioduringthecourseyoucreate3projectsonyourownorinasmallgroupwhichshowcaseeverythingyouvelearnedinthecoursefrombeginningtoendandisthefirststeptothebuildingofyourportfolioppstronghiringfaireventstrongppattheendofthecoursebritoarrangescompaniestocometoironhackandsitdownwithyouforinterviewsthisisavaluableintroductionforyourfirstinterviewseventuallyyouwillbeoffdoinginterviewsonyourownandthishiringfairisagreatwaytoevaluatewhatyoudidanddidntdosothatultimatelyyoubecomemoreandmorecomfortableduringthemstillthatdoesntmeanyoushouldnttaketheseinterviewsatthehiringfairseriouslydefinitelycomepreparedtonailthemduringtheeventpeoplestrongdostronggethiredoutofthesethisiswhatyouprepareforandithelpstoprepareforfutureinterviewsppstrongpostironhackexperiencestrongppafterironhackfindingajobifthatiswhatyouarethereforisthenextbattlebritoistherewithyoueverystepofthewayheholdsplacementshelpmeetingsatironhackeveryotherweekandisalwaysavailableforanyquestionsyouhaveheguidesyouandremindsyouthatyoumuststrongkeepcodingstrongandstrongkeepapplyingstrongifyouslackoffonthosetwostepsthejobhuntinstantlybecomesmuchhardertakeyourlinkedinnetworkingandresumeseriouslydolittleprojectsonyourownafterthecohortandmakesureyourjavascriptknowledgeisfreshbydoingcodingchallengesonhackerrankcodewarsbecausetheywillhelpwiththetechnicalinterviewsppididnotgethiredimmediatelyafterironhackiappliedtoaround300jobsandonlygotabouttwohandfulsofphoneinterviewsandinpersoninterviewsigothired3andahalfmonthsafterineverstoppedcodingineverstoppedapplyingandialwayskeptintouchwithbritothisprocessinitselfcouldfeelmorestressfulthanthebootcampbutdonotquitppstrongconclusionstrongppyesyoulearnalotatironhackandaregivengreatguidancebutnotheywillnothandyouajobyougeteverythingyouneedfromthemandnowitsuptoyoutoputintheworkandlandittheyaretherewithyoueverystepofthewayiwould100doitagainiputmylifeonholdinvestedinmyselfpushedthroughandchangedmycareerintosomethingifeltwouldbemorefulfillingsofarithasntdisappointedonebitnotonlydoyoulearnalotatironhackbutyoumaketonsoffriendsandbecomepartoftheirgreatcommunitypdivdivspanifyouhaveanyquestionsfeelfreetomessagemeonlinkedinandiwillgladlyanswerthemforyouspandivdivdivdivdivdivdivdivdivdivdivpclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid15837dataremotetruedatamethodposthrefreviews15837votesthisreviewishelpfulspanclasshelpfulcount4spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20ironhack20experience2020full20time20web20dev207c20id3a2015837flagasinappropriateapdivdivdivdivdivclassreviewdatacampusmiamiironhackdatacoursedivclassverifieddivclassreviewschoolhiddenspanironhackspanahrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageadivdivclassreviewtitleaclasstitlereviewurldatadeeplinkpathreviewsreview15757datadeeplinktargetreview_15757datareviewid15757hrefhttpswwwcoursereportcomschoolsironhackrelnofollowampshared_review15757reviewsreview15757idreview_15757awesomelearningexperienceabrdivclassreviewdate9232018divdivdivclassreviewerdetailsdivclasscolxs1reviewimagetextcenterimgaltalexanderteodormaziluuserphotoclassusernav__imgonerrorifthissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39thissrc39httpss3amazonawscomcourse_report_productionmisc_imgsdefault_userpng39srchttpsmedialicdncomdmsimagec4e03aqeuue2gds42wwprofiledisplayphotoshrink_100_1000e1543449600ampvbetaamptmi4sex_czdgkec3dqgvm9wqiyopwwgvk7rwu19fbagdivspanclassreviewernamealexanderteodormaziluspanspanspanspanspanspanclasshiddenxsspanspanclasshiddenxscampusmiamispanspanclassreviewernameahrefhttpwwwlinkedincominalexmaziluverifiedvialinkedinaspandivdivclassratingsspanclasshiddenawesomelearningexperiencespandivclassrowdivclasscolxs7colsm4overallexperiencedivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3curriculumdivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivclassrowdivclasscolxs7colsm4instructorsdivdivclasscolxs5colsm2textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivclasscolxs7colsm3jobassistancedivdivclasscolxs5colsm3textrightspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_starspanclassiconfull_stardivdivdivdivclassbodydivclassexpandablepirecentlycompletedtheparttimewebdevelopmentcourseandihighlyrecommendittoanyonelookingtoexpandtheirskillsortechnologicalknowledgebaseihadanallaroundwonderfullearningexperienceyoudontneedtohavemuchcomputerknowledgegoingintoitbecauseeachclasshasmultipleteachingassistantswhowillbetheretohelpifyoufallbehindorarestrugglingtokeepupmyclasshad3exceptionaltasmanuelcolbyandadrianwhoconstantlywereabletoprovideassistancewheniranintotroublehadbugsorjustgotlosttheywerealwaysnicepatientandwillingtogotheextramilejusttomakesureireallyunderstooddeeplywhatwewerelearningincludingcominginextraearlyontheweekendsandspendingoneononetimewithmeinfrontofthewhiteboardtogoovereachaspectofwhatwewerelearningindetailiwasreallyimpressedwithandgratefulforeachofthembrbriwasalsoveryimpressedwiththeprofessoralanheisanextremelyknowledgeablepersonwithanaturalaptitudeforteachingalwayspatientcourteousandwelcomingofquestionsfeedbackandtakingtimetoaskusifweallunderstoodorwererunningintoanyproblemswhatreallyimpressedmemostaboutalanishowhewouldtakealittlebitoftimeatthestartofeachclasstogobeyondthecurriculumandtochallengeuswithcomputersciencecodingchallengestoprepareustothinklikecomputerscientistsandgetusreadyforthetypesofquestionswewouldlikelyseeinacodinginterviewandexplainthedifferentwaystoapproachtheproblemsandhowtothinkaboutthemintermsoftimecomplexityormemorymanagementitwaswellbeyondwhatiexpectedfromawebdevelopmentcourseandifoundtheselessonsparticularlyrewardingalanhasaknackforbreakingdowncomplexandabstractconceptsintodigestiblebitsandgettingtheclasscomfortableenoughtotryandcollectivelyattemptasolutionprotipalwaysvolunteertotryandsolvetheproblemshepresentsinoticedthestudentsbraveenoughtoattempttheseproblemsretainedinformationbetterandwalkedawaywithamoresolidunderstandingifhegivesyouthemarkergetupthereandgiveityourbesteffortgohomeandresearchtheconceptsfurtherjustdoitgetawhiteboardforyourhouseandwriteimportantconceptsobjectivesgoalsandproblemexamplesfromclassthiswillforceyourbraintoreconcilethisnewinformationonadailybasisyouwillalmostcertainlyseethesetypesofcodingchallengesinjobinterviewsandtheyreabstractandfrustratingifyouarenotpreparedbrbraftergraduationyoullbecounseledbybritoyourcareercounselorwhoisalsoaverycooldowntoearthandknowledgeablepersonhehassomerealwisdomtoshareabouttheinterviewingprocesshowtoconstructyourresumeandspecificallytellsyoutoreachouttohimbeforeacceptinganyjoboffersiamreallyimpressedwithhisinsightandwillingnesstobesupportivehelpfulandmakesureyoulandagoodstartingjobwellaftergraduationbrbrlookingbackiamextremelythankfultoironhackandhumbledtohavehadtheopportunitytostudywithsuchanawesomeclasseveryonefrommyclassmatestotheteacherstotheteachersassistantstothecareercounselorhaveallbeenanabsolutepleasuretodealwithbrbralsoiwasblownawaybytheuxuistudentswethewebdevclassgotachancetoworkwiththeminthehackathonwhichwasatotallyawesomeexperienceandtheywereveryimpressiveilegitimatelywishicouldgotaketheirclassaswellbecausetheyabsolutelyblewmymindwiththeirsystematicmethodologycreativityandorganizedthoughtprocessestheywereamazingilovedworkingwiththembrbrsotowrapitupiwholeheartedlyrecommendedironhackswebdevelopmentcourse110activelyparticipateaskquestionsbeengagedhelpclassmateskeepapositiveattitudeandthisbootcampwillbealifechangingeventforyouasithasbeenformebrppclassreviewbodyaclasshelpfulbtnbtninversevoteloginrelnofollowdatarequestid15757dataremotetruedatamethodposthrefreviews15757votesthisreviewishelpfulspanclasshelpfulcount2spanappclassinappropriatepullrightahrefmailtolizcoursereportcomsubjectflagged3a20ironhack207c20awesome20learning20experience21207c20id3a2015757flagasinappropriateapdivdivdivdivdivdivdivsectiondividpaginatornavclasspaginationspanclasspagecurrent1spanspanclasspageaclassparamifydataremotetruehrefschoolsironhackpage2reviews2aspanspanclasspageaclassparamifydataremotetruehrefschoolsironhackpage3reviews3aspanspanclasspageaclassparamifydataremotetruehrefschoolsironhackpage4reviews4aspanspanclasspageaclassparamifydataremotetruehrefschoolsironhackpage5reviews5aspanspanclasspagegaphellipspanspanclassnextaclassparamifydataremotetruehrefschoolsironhackpage2reviewsnextrsaquoaspanspanclasslastadataremotetruehrefschoolsironhackpage24reviewslastraquoaspannavdivdivdivdivdivdivclasspanelwrapperdatadeeplinkpathnewsdatatabnews_tabidnewsdivclasspanelpaneldefaultpanelcontentdivclasspanelheadingcollapsedvisiblexsdatadeeplinktargetnewsdatatargetnewscollapsedatatogglecollapseidnewscollapseheadingh4classpaneltitlenewsh4divdivclasspanelcollapsecollapseinidnewscollapsedivclasspanelbodyh2classhiddenxsnewsh2sectionh4ourlatestonironhackh4ulidpostsliclasspostdatadeeplinkpathnewsparttimecodingbootcampswebinardatadeeplinktargetpost_1059idpost_1059h2ahrefblogparttimecodingbootcampswebinarwebinarchoosingaparttimecodingbootcampah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan962018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsnewyorkcodedesignacademynewyorkcodedesignacademyaaclassbtnbtninversehrefschoolsfullstackacademyfullstackacademyappstrongdidyouwanttoswitchcareersintotechbutnotsureifyoucanquityourjobandlearntocodeatafulltimestrongstrongbootcampstrongstronginthishourlongwebinarwetalkedwithapanelofparttimestrongstrongbootcampstrongstrongalumnifromfullstackacademyironhackandnewyorkcodedesignacademytohearhowtheybalancedothercommitmentswithlearningtocodeplustheyansweredtonsofaudiencequestionsrewatchitherestrongppiframeheight507srchttpswwwyoutubecomembednv6apa8vthawidth902iframepahrefblogparttimecodingbootcampswebinarcontinuereadingrarraliliclasspostdatadeeplinkpathnewsdafnebecameadeveloperinbarcelonaafterironhackdatadeeplinktargetpost_1056idpost_1056h2ahrefschoolsironhacknewsdafnebecameadeveloperinbarcelonaafterironhackhowdafnebecameadeveloperinbarcelonaafterironhackah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan8132018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4685s1200dafnedeveloperinbarcelonaafterironhackpngppstrongafterlivingallovertheworldanddippinghertoesingraphicdesignfinanceandentrepreneurshipdafneolcawaslookingforacareerwhereshewouldalwayskeeplearningsheeventuallytriedafreecodingcourseloveditanddecidedtoenrollinahrefhttpswwwironhackcomencourseswebdevelopmentbootcamputm_mediumsponsoredcontentamputm_sourcecoursereportamputm_campaignwebdevbootcampbcnamputm_contentalumnispotlightrelfollowtarget_blankironhackswebdevelopmentbootcampainbarcelonaspaintaughtinenglishdafnetellsushowlearningtocodewasbothverydifficultandverysatisfyinghowsupportiveahrefhttpswwwcoursereportcomschoolsironhackrelfollowironhackawasandstillisforhercareerandhowmuchsheisenjoyingbeingafrontenddeveloperinhernewjobatstrongstrongeverisstrongstrongaeuropeanconsultingfirmstrongppstrongqampastrongppstrongwhatsyourcareerandeducationbackgroundhowdidyourpathleadtoabootcampstrongppmycareerpathhasbeenverydiversesofarimoriginallyfromaustriaandididabachelorsdegreeinmultimediainlondonandhonoluluwiththeaimofworkingingraphicdesignandvideoproductionbutifoundthejobopportunitieswerenotthekindofjobsiimaginedthemtobethenididanmbainviennaandsandiegotoincreasemycareeroptionsandendedupinfinanceinbarcelonappafterthreeyearsigotboredwithfinanceandwantedtofigureoutwhattodowithmylifeihadalwaysbeeninterestedintechnologyandworkedforawhileonafamilybusinessfocusedontheinternetofthingsienjoyedresearchingtechnologiesphilosophicalaspectsofthebusinessandlookingatthedirectioninwhichtheworldisheadingppieventuallycameacrossfreecodecampandenjoyeditalotmyfriendswhoworkinwebdevelopmenttoldmeifibecameawebdeveloperiwouldbelearningfortherestofmylifeatfirstthatsoundedintimidatingbutitmademerealizethatsexactlywhatiwanttodowithmylifeitsawaytomakesureiwontgetboredicankeeplearningandgettingbetteratwhatidoitgoeshandinhandwithmypersonalitybecauseilovetolearnanddonewthingsithinkthatswhywebdevelopmentistherightchoiceformeppstrongyouvestrongstrongtraveledstrongstrongalotwhatmadeyouchooseironhackinbarcelonaratherthananotherbootcampinstrongstrongadifferentstrongstrongcitygoingbacktocollegeorteachingyourselfstrongppiconsideredteachingmyselfbutgoingtouniversitywasntanoptionitwasbetweenteachingmyselfandgoingtothebootcampasabeginnerthebestwaytochangecareerswastogofullonandbearoundprofessionalstheteachersatironhackareverytalentedandareprofessionalswhohavebeeninthefieldforalongtimeppimovedtobarcelonathreeyearsagoandfellinlovewiththecitysoitwascleartomethatiwantedtodoabootcamphereitalkedtopeopleaboutthebesttechnologiesandlanguagestolearnandeveryoneconfirmedthatironhackhadthebestfullstackjavascriptcurriculumbarcelonahasagoodtechatmosphereandagrowingstartupsceneideventuallyliketohavetheflexibilitytoworkremotelyandithinkthatbarcelonawillallowthatppalsothecourseididwastaughtinenglishinbarcelonaironhackoffersonefulltimecohortinenglishandonefulltimecohortandoneparttimecohortinspanishppstrongwhatwastheironhackapplicationandinterviewprocesslikeforyoustrongppthefirstpartwasapersonalityinterviewtoseeifyourereallygenuinelyinterestedindoingthecourseandpursuingacareerinwebdevelopmentafterpassingthatfirstinterviewiwasgivensomeverybasiccodingexercisesafterthoseexercisesihadatechnicalinterviewwithateacherassistantwhichipassedbeforegettingacceptedintoironhackppstrongwhatwasthelearningexperiencelikeatironhackwhatwastheteachingstylestrongppihavetobehonestitwasveryverytoughformethiswasthefirsttimeihaddoneacourseinwebdevelopmentironhackwassplitintothreemodulesfirstwehadthebasicfrontendmodulewhichwasprettydoablethesecondmodulewasbackendwhichformewasverydifficultthenthefinalmodulewasbackendwiththeangularframeworkwhichwasalsodemandingppthehourswereveryintenseofficiallythehoursare9amto6pmlikeafulltimejobbutidontremembermanydayswhenweactuallyfinishedat6ifyoureatironhackthenitsinyourbestinteresttogetasmuchoutoftheprogramasyoucanpptheteachingwasalsoquiteintenseim30nowsoihadbeenoutofschoolformanyyearsandgoingbacktolectureswasalotmoredemandingthanithoughtitwouldbebutasintenseasitwasitwasalsoverysatisfyingyourcharacterreallyshowswhenyourelearningwebdevelopmentyouhavetodealwithdailyfrustrationsandalotofchallengesbutovercomingthosechallengesisreallyrewardingppstrongwhatwasyourcohortlikestrongppironhackwasoneofthemostdiverseexperiencesiveeverhadsomeofmyclassmateswere18andhadcomestraightoutofhighschoolandtheoldestguywasinhislate40stheaveragepersonwassomebodywhohaddecidedtochangetheircareerppwewereveryinternationaltherewerearound22studentsinmyclassfourofthosestudentswerespanishandtherestofthemwerefromallovertheworldincludingeuropeansandlatinamericansppstrongwhatwasyourfavoriteprojectthatyoubuiltatironhackstrongppmyfavoriteprojectwasmyfirstprojecticreatedagameofblackjackwithfrontendjavascriptsinceitwasmyfirstprojectifeltlikeihadaccomplishedsomethingthatineverinmylifethoughticouldhaveaccomplishedofcoursewegothelpfromtheteachersbutitsquiteimpressivetoseewhatyouyourselfarecapableofdoingbeforewestartedtheprojectiwascluelessihonestlyhadnoideawhatiwasgoingtodohowiwasgoingtodoitandididntbelieveicoulddoitbutaftercompletingtheprojectitwasreallyimpressivetoseewhaticouldgetmyselftodoppstronghowdidironhackprepareyouforjobhuntingstrongppwheniwasresearchingbootcampsitwasreallyimportantformetobeabletolandajobassoonaspossibleandironhackprettymuchguaranteesthatalmostallalumniwhowanttofindworkwillfindworkinthefieldrightafterbootcampwehadahiringdaywheremorethan20recruitersfromtechcompaniescametothecampustoseeourworkitwasaquickinterviewwhereweshowthemourprojecttheyaskquestionstheygettoknowusandwegettoknowthecompaniesppsoniamycareersadviserwasalwaysgettingintouchwithcompaniesandgettingmyinputaboutwhatidliketodoontopofthatithoughtitwasamazingthatafterilandedajobandneededsomeguidanceoneofthetasstillgavemeadviceandinputevennowifeellikeicangobacktoironhackandgetsupportanytimeineedititrynottomilkitbuttheyarejustsohelpfulandsocaringppstrongsoyouvebeenworkingatstrongstrongeverisstrongstrongfor7monthsnowcongratshowdidyoufindthejobstrongppeverisdidcometoironhackforthehiringdaybutididntgetachancetotalktothembecausethereweresomanycompaniestheresothenextdayicontactedthemandtoldthemihadmissedthembutiwantedtogettoknowthemiwasquiteactiveaboutreachingouttocompaniestheyrepliedimmediatelyiwentintotheofficethatsamedayforaninterviewwithintwoweekstheycalledmeinforasecondinterviewandshortlyafterthatireceivedanofferiwasexhaustedaftergraduatingfromironhacksoitookamonthoffovertheholidaysbutaboutamonthintomyjobsearchiwasworkingateverisppstrongcanyoutellmeabouteverisandwhatyouworkontherestrongppahrefhttpswwweveriscomglobalenrelfollowtarget_blankeverisaisaconsultancysoweworkonprojectswithdifferentclientsimajuniorfrontenddeveloperandiworkwithangularandtypescriptitsapurelyfrontendjobwhichiswhatiwantedppimonmysecondprojectsinceistartedateveristhefirstprojectwasawebapptohelporganizationsapplyforgovernmentalloansitwasaverysmallglobalteamtwopeopleinbarcelonatwopeopleinzaragozaspainandtheprojectmanagerwasbasedinbrusselsbelgiumformycurrentprojecttherearefourofusandwereallbasedinbarcelonaexceptfortheprojectmanagerwhoisbasedinzaragozappitsahugecompanyithinkthereareabout3000peopleinbarcelonaandtheyhavebranchesaroundtheworldthecompanyisverydiverseandtheteamsareverydiverseaswelltheyhaveanemphasisonhiringverygenderbalancedteamswhichisniceeverisisdefinitelymoregenderbalancedthanothercompaniesppstrongareyouusingthetechnologiesandprogramminglanguagesateveristhatyoulearnedatironhackstrongppimworkinginangularwhichisaframeworkwecoveredinthethirdmoduleofironhacktherearealwaysnewthingstolearninangularbecauseangularisquitecomplexandalwaysevolvingsoihaventlearnedanynewlanguagesorframeworksbutihadtolearnmoreaboutangularonthejobppironhackprovideduswiththetoolstobeabletoteachourselvesnewtechnologiesmoreeasilyinthefutureiwillinevitablyneedtolearnmorelanguagesandframeworksbutnowihavetherighttoolstobeabletoteachmyselfalotmoreeasilythanbeforethebootcampppstrongsinceyoujoinedeverishowdoyoufeelyouvegrownasafrontenddeveloperstrongppin6monthsifeellikeivebecomealotmoreindependentandimlessafraidoftouchingthecodeinadditionivedevelopedapassionforproblemsasweirdasthatsoundsienjoyrunningintoproblemsbecauseienjoysolvingthemitsveryfulfillinghonestlyithinkironhackisthebestdecisionivemadeinmylifeintermsofacademiaandcareerdevelopmentihaventregretteditonceppstronghowhasyourbackgroundingraphicdesignfinanceandentrepreneurshipbeenusefulinyournewjobasafrontenddeveloperstrongppgraphicdesignisverymuchabouttrendsanditsbeenalongtimesinceistudieditwhiletherearesomeaspectsofdesignthatstillapplyalothaschangedateveriswhenwegetanewprojectalotofthedesignisgivenbytheclientmyjobismoreaboutimplementingthelogicandfunctionsratherthanthedesignitselfppmyexperienceworkinginfinancehasdefinitelybeenusefulateverishavingexperienceinahugecorporationdefinitelyhelpsyouworkwithotherpeopleandclientsinaprofessionalenvironmentppstrongwhatsbeenthebiggestchallengeorroadblockinyourjourneytobecomingafrontenddeveloperstrongppsometimesyoucangetstuckonaproblemforareallylongtimeandyoustarthavingtodealwithyourownfrustrationsthemoreyougetfrustratedthemoreyoublockyourbrainandthelessyoucanreallythinklogicallythatsachallengethativehadtolearntodealwithandimreallylearninghowtobecalmandpatientiwasntapatientpersonbeforeandimnowreallyseeingtheresultsofpatienceppstrongitsoundslikeironhackhasstayedinvolvedinyourcareerhaveyoukeptintouchwithotheralumnistrongppiwasjustatironhacklastweekactuallyandimgoingagainsoonalotofpeoplefrommycohorthaveleftbutivegottentoknowpeoplefromthecohortsbeforeandaftermineandwevebecomequitetightitsaverystrongcommunitywheneverironhackhostseventsiprioritizethemitsaverygoodatmosphereandagreatnetworkandeverytimeigothereifeellikeimathomeppstrongwhatadvicedoyouhaveforpeoplemakingacareerchangethroughacodingbootcampstrongppjustdoitmybestadviceistostaycalmandbeawarethatyouregoingtoreachyourmentallimitsyouregoingtohaveahardtimebutitsreallyworthitanditsveryrewardingtherearegoingtobetimeswhenyoullwanttofeelverystupiddontifyoucanbeamasterofyouremotionsthenyouhaveagoodpathaheadppstrongfindoutmoreandreadahrefhttpswwwcoursereportcomschoolsironhackrelfollowironhackreviewsaoncoursereportcheckouttheahrefhttpswwwironhackcomencourseswebdevelopmentbootcamputm_mediumsponsoredcontentamputm_sourcecoursereportamputm_campaignwebdevbootcampbcnamputm_contentalumnispotlightrelfollowtarget_blankironhackawebsitestrongpdivclassauthorbiobootstraph4abouttheauthorh4imgclassimgroundedpullleftsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files1586s300imogencrispeheadshotjpgalthttpscourse_report_productions3amazonawscomrichrich_filesrich_files1586s300imogencrispeheadshotjpglogoppimogenisawriterandcontentproducerwhonbsploveswritingabouttechnologyandeducationnbspherbackgroundisinjournalismwritingfornewspapersandnewswebsitesshegrewupinenglanddubaiandnewzealandandnowlivesinbrooklynnyppdivliliclasspostdatadeeplinkpathnewshowtolandauxuijobinspaindatadeeplinktargetpost_1016idpost_1016h2ahrefbloghowtolandauxuijobinspainhowtolandauxuidesignjobinspainah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan5212018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappahrefhttpswwwcoursereportcomschoolsironhacknewshowtolandauxuijobinspainrelfollowtarget_blankimgaltsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4561originalhowtolandauxuidesignjobspainironhackpngappstrongdemandforuxanduidesignersisnotjustlimitedtosiliconvalleycompaniesallovertheworldarerealizingtheimportanceofsoliduxdesigncitieslikebarcelonaknownforitsarchitecturaldesignarebecomingdigitaldesignhubssofadalponteteachesuxuidesignatahrefhttpswwwcoursereportcomschoolsironhackrelfollowtarget_blankironhackastrongstrongbootcampstrongstronginbarcelonaandhasseenthedemandforuxuidesignersincreaseoverthelast18monthsandasahrefhttpswwwironhackcomencoursesuxuidesignbootcamplearnuxdesignutm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blankironhackasoutcomesmanagerjoanacahnermakessureironhackstudentsaresupportedinfindingtherightcareerpathaftergraduatingtheytelluswhythedesignmarketishotinspainrightnowwhatsortofbackgroundandskillsuxuidesignersneedandtipsforfindingauxuidesignjobstrongpahrefbloghowtolandauxuijobinspaincontinuereadingrarraliliclasspostdatadeeplinkpathnewscampusspotlightironhackberlindatadeeplinktargetpost_983idpost_983h2ahrefschoolsironhacknewscampusspotlightironhackberlincampusspotlightironhackberlinah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan3122018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappahrefhttpswwwcoursereportcomschoolsironhacknewscampusspotlightironhackberlinrelfollowtarget_blankimgaltcampusspotlightironhackberlinsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4430s1200ironhackberlincampusspotlightpngappstrongberlinisprovingtobeanincredibletechecosystemwithcampusesinmiamimadridparismexicoandbarcelonaahrefhttpswwwcoursereportcomschoolsironhackrelfollowtarget_blankironhackaislaunchingtheirwebdevelopmentstrongstrongbootcampstrongstronginberlingermanyin2018totakeadvantageofthegrowingtechscenewespokewithahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blankironhackasemeaexpansionleadalvarorojasabouttheberlincampusataweworkspacehowironhackisrecruitinglotsoflocalhiringpartnersandwhatsortofjobsironhackgraduatescanexpecttogetinberlinplusasanironhackgradhimselfalvarogivesadviceonwheretostartasanewcoderstrongph3strongqampastrongh3pstrongwhatsyourbackgroundandhowdidyougetinvolvedwithironhackstrongppmybackgroundisinstrategyconsultingistudiedbusinessinlondonandtheniworkedinstrategicconsultingfortechstartupsinspainandcaliforniaiworkedfortheembassyofspaininlosangelesforalittlewhileandthenilaunchedmyownventurethereppimactuallyanironhackgraduateworkinginthetechindustryihadalwaysbeeninterestedinlearninghowtocodesoididsomeresearchonlineandifoundironhackigraduatedfromironhackaroundayearandahalfagoppifellinlovewiththecompanysmissionandthecommunitytheywerecreatingyouhearsomereallyincrediblestorieswhenyoureworkingwithpeoplefromsuchdiversebackgroundsaftergraduatingikeptintouchwithahrefhttpswwwlinkedincomingonzalomanriquerelfollowtarget_blankgonzalomanriqueaoneofthecofounderssowhentheydecidedtoexpandineuropehecontactedmeabouttheemeaeuropemiddleeasternandafricaexpansionleadpositionitwasanobrainerformeppstrongdidyouattendironhacktobecomeadeveloperordidyoujustwanttopickupcodingskillsstrongppiwantedtopickupcodingskillsithinkeverybodyinthefutureshouldbecomeliterateinsomekindofcodinglanguageevenifyourenotplanningonworkingasadevelopermostjobsinthefuturewillrequireabasicknowledgeofprogrammingandiwantedtostayaheadofthecurveifyouworkintechunderstandinghowsoftwareisbuiltisamustregardlessofyourpositioneventuallymachineswilldominatetheworldandyoullhavetospeaktheirlanguageppstrongyouhavethisuniqueperspectiveofactuallybeingastudentbeforeworkingasstaffatironhackstrongppabsolutelyitseasierformetoexplainthebenefitsbehindironhackbecauseivelivedthroughthewholeexperienceitsreallygreatwhenwedoeventsandprospectivestudentsaskmeaboutironhackthefirstthingitellthemislookimanalumiwentthroughthewholeexperienceicantellyoueverythingyouneedtoknowandeverythingyoullgothroughitwasdefinitelyoneofthemostchallengingandrewardingtimesinmylifeppstrongtellusaboutyourroleatironhackstrongppthefirststepwhenistartedwasworkingwiththecofoundersandthevpofopsampexpansionalexberrichetomakeastrategyplanforeuropewehadvariouscitiesinmindanddecidedtotakeastructuredapproachandrankthemaccordingtofactorsweknowtobedeterminantsforsuccesswefinallydecidedberlinwasclearlythenextstepforusppafterdecidingonacityimovetheretoseteverythinguptherearetwomainareasimresponsibleforthefirstisoperationsamphrsettingupthelegalentityforironhacksnewcampussecuringfinancingforourstudentsetcandgettingtogetheradreamteamtorunthecampusppthesecondkeyareaismarketingwetailorourstrategytoeachmarketitsallaboutunderstandingthedifferentcustomersegmentsandbuildingbrandawarenessoncepeopleunderstandourvaluepropositiontheyrealwaysconvincedwefocusstronglyonpartneringupwithcoolcompaniesliken26ormoberriesanddoingfreeworkshopsandeventsforprospectivestudentsitsallaboutgettingpeopleexcitedaboutlearningnewdigitalskillsppourfirstcohortinberlinlaunchesmay212018ppstrongwhatstoodoutaboutberlingermanywhyisthiscityagreatplaceforironhacktohaveacampusstrongppironhackalreadyhascampusesineuropemadridbarcelonaandparissowewanttocontinuetobepresentinthestrongesttechecosystemsandberlinisprovingtobeanincredibletechecosystemberlinishometothesinglelargestsoftwaremarketineuropethatsaroundaquarteroftheeuropeanmarketbyvaluewhichisprettycrazytherearearound2000to2500activetechstartupshereincludingsomereallydisruptivecompaniesthetechecosystemisboomingandthecityhastheabilitytoattractandretaintalentedpeoplelikenootherplacepeopleareflockingtoberlinbecausetheylikelivinghereandtheresplentyofjobopportunitiesppalsotheitjobsmarketingermanyhasagrowingdigitalskillsgaptherearealotofnewstartupsthatdemanddevelopersanddesignersalongwithtraditionaloldercompanieswhoaregoingthroughadigitalizationprocessahrefhttpswwwmckinseydefiles131007_pm_berlin_builds_businessespdfrelfollowtarget_blankmckinseyreleasedastudyasayingtherewouldbe100000digitaljobsinberlinby2020sothatwasbigdatapointforusppstrongsincestudentscangotouniversityforfreeinberlinwhywouldtheywanttopaytogotoironhackstrongppcompaniesaredemandingmorepeoplewithdigitalskillsandfouryearuniversitiesjustcantcatertothatmarketironhackbelievesuniversitiesregardlessofwhethertheyareprivateorpublicarefailingtoadapttothedigitalrevolutiontheuniversityapproachhasntchangedin100yearsandgettingajobinthisdayandagerequiresadifferentupdatedapproachppironhackprovideshighimpactcondensededucationalexperienceswithoneobjectiveinmindgettingstudentsfromzerotojobreadyinthreemonthsbecauseofthiswebelievetherewillalwaysbeagapinthemarketwherewecanprovidevalueregardlessweareworkinghardtomakeiteasierforstudentstohaveaccesstoourprogramsbyprovidingfinancingoptionsthroughbothprivateandpublicchannelsppstrongwhatwillmakeironhackstandoutamongstthecompetitioninberlinstrongppwearelaserfocusedononeobjectiveenablingstudentstosecureajobwithinthreemonthsaftergraduationppsohowdoweachievethatwellfirstwemakeourstudentsemployableweconstantlyupdateourcurriculumtoensureweteachthelatesttechnologiesthatemployersactuallydemandandwehireprofessionalinstructorswithrealworldexperiencetoteachthemweprovidecareerguidanceandsupportthroughoutthewholeprogramandstudentsarepreparedfortechnicalinterviewsbehavioralinterviewsetcwebelieveinlearningbydoingsostudentscomeoutwiththreeprojectstoshowtotheworldoncetheyvegraduatedppwealsofocusongivingourstudentsaccesstothoseopportunitiesbysecuringhiringpartnersandorganizingacareerweekwherestudentsgettomeetprospectiveemployersattheendofeachcohortppstrongwhattypesofapplicantsareyoulookingtoenrollintheberlincampusstrongppwerelookingforcareerchangerstherearesomanytalentedpeopleinberlinwhohavemovedherelookingforopportunitiesironhackgivesyouthepossibilitytospecializeandlandajobinthreemonthswecatertoanyonewhorealizestheimportanceoflearningnewdigitalskillsandhasapassiontolearnppstronghowmanystudentsdoesironhackplantoaccommodateattheberlincampusstrongppweregoingtohavethreecohortsin2018thefirstonestartsinmaythesecondoneinjulyandthethirdoneinoctoberforthefirstcohortwerelookingatabout20studentswedontliketohavecohortsmuchbiggerthanthatbecausewewanttoguaranteequalitymovingforwardwewilllooktogrowourteamandnumberofcohortsalwaysensuringstudentshavethebestpossibleexperienceppstronghowdoyousourcenewinstructorswhatwillbetheinstructorstudentratiostrongppwehirerealprofessionalswhohaveworkedinthetechindustryourleadinstructorforberlinwasworkingattheironhackpariscampusastheleadinstructorforayearandhewantedtomovetoberlinhesoneofthosepeoplewhohasbeencodinghiswholelifehestartedhisowncompanyandhesworkedintheindustryasaleaddeveloperhehasaveryimpressivebackgroundandhealreadyknowstheironhackbootcampandourcoursesothatsalwaysaplusppatironhackaleadinstructorleadsthewholeprogramandthenwehaveteachingassistantswhoarealsocodingprofessionalsforeveryeightstudentstoprovidesupportandguidestudentsthroughthecourseforexampleinthefirstcohortifwehave20studentswewouldhaveoneleadinstructorandtwoorthreeteachingassistantshavinggonethroughthebootcampmyselfifeeltheteachingassistantsplayanincrediblyimportantrolebecausetheyprovidevaluableassistancethroughoutthewholebootcampppstrongwillthecurriculumatironhackberlinbethesameasotherironhackcampusesstrongppironhackscurrentcurriculumisdividedintothreemodulesfrontendhtmlcssampjavascriptbackendmeanstackandmicroserviceswithangular2apiswearealwayslookingtomakeourcurriculumbetterwewereteachingrubyonrailsbutwedecidedtomoveontoalsosomethingialwaystellprospectivestudentsisthatyoulearnhowtolearnigraduatedfromtherubyonrailscourseandwasabletolearnnodejsonmyownjustthenextmonthppwereincontactwithalotofstartupssowemakesureourcurriculumisexactlywhatemployersneedanddemandwemakeapointtokeepthecurriculumconsistentacrossallcampusesthisallowsustohaveafeedbackloopateverycampusandensureconsistentqualitysowerestickingwiththesamecurriculumineverycampusfornowbutalwayslookingtoiterateandmakeitbetterppstrongtellusabouttheberlincampuswhatistheclassroomlikestrongppaswithmostofournewcampuseswellbelocatedataweworkcoworkingspaceanewbuildingcalledatriumtowerrightonpotsdamerplatzthespaceitselfisabigroomwhichholdsaround40studentswhenwevisitedthespaceaboutamonthandahalfagowefellinlovewiththefacilitiesthecampusisaccessiblefromanywhereintownbecauseofitscentrallocationandithasanincredibleterraceatthetopppwhenyouregoingtobelearningforthreemonthsinanincrediblyintenseprogrambeinginanicespacewithamenitiescoffeesnacksreallyniceviewsissomethingreallyimportantppstrongwhataresomeexamplesofthetypesofjobsyouenvisionyourberlingraduateslandingafterstrongstrongbootcampstrongstrongstrongppwehaveaverystrongreputationworldwidewithaglobalcommunityofalumniandpartnersforexamplewejustsignedupn26amobilebanktobeourhiringpartnerwereintalkswithseveralberlincompaniestosignthemupashiringpartnerstooattheendofeachnineweekcourseweprepareprospectiveemployerstomeetwiththestudentslikeisaidwereveryfocusedoncareerchangersandensuringourstudentsgetajobwithinthreemonthsaftergraduationppinthepastwevehadcompanieslikegoogletwittervisarocketinternetandmagicleaphireironhackgraduatessoinberlinwerelookingforthesameprofilesthoseareglobalcompanieswealreadyhavepartnershipswithsoourstudentsalreadyhaveaccesstothatpoolofemployersthenlocallywearelookingforthemostdisruptivecompaniesthatarereadytohireentryleveljuniordevelopersppstrongdoyouenvisionberlingradsstayinginberlinisyourfocustogetpeoplehiredinthecitywheretheystudiedstrongppwehaveabigfocusonhavingaglobalcommunitysowereallyliketheideathatourstudentscanaccessallthecommunitiesinallourcitiesforexampleirecentlypassedontheresumesoftwograduatesfromthemadriduxuicoursetoberlinbasedn26itsuptoeachgraduatetodecidewhichcitytoworkinppalotofpeoplewanttostayintheirhomecityandothersdontsowecatertobothwetrytogiveopportunitiestogoabroadandoptionstoworkinthelocalmarketppstrongwhatwouldyourecommendacompletebeginnerdotolearnmoreaboutthetechsceneinberlinstrongppiwouldrecommendgoingtoasmanymeetupsandeventsasyoucanialwaystellpeoplethatyouneverknowwhatopportunitiescouldariseifyouputyourselfoutthereandstarttalkingtopeopleweactuallyjustwroteablogpostaboutahrefhttpsmediumcomironhackhowtolandatechjobinberlinbb391a96a2c0relfollowtarget_blankhowtolandthetechjobinberlinaandonepieceofadviceistominglejustnetworkppthenofcourseiwouldrecommendgoingtotheironhackmeetupsthereareabunchofworkshopsinberlinandourinformalnetworkishugeahrefhttpswwwmeetupcomironhackberlinrelfollowtarget_blankweredoingonefreeworkshopeveryweekaandwelldosomebiggereventsaswellppstrongwhatadvicedoyouhaveforsomeonewhosthinkingaboutattendingacodingstrongstrongbootcampstrongstronginberlinandconsideringironhackstrongppformmyexperienceasanalumithinkitsallabouttheattitudewhenyougointoacodingbootcamptheresalwaysthisfeelingwhereyourealittlebitscaredbecauseitissomethingreallydemandingpeoplehaveanaturaltendencytoberesistanttolearnsomethingsotechnicalbutjuststartcodingitsnotasdifficultasitmayseemandhavingtherightguidanceiskeywereactuallylaunchingacoolchallengeinberlinahrefhttpberlincodingchallengecomrelfollowtarget_blankafreeonlinecourseatoencouragepeopletogettheirfeetwetwithcodingppalotmorepeoplethanwebelievehavetheaptitudeforitandactuallybecomereallygoodprogrammersyoujusthavetotakealeapoffaithandcommittothreemonthsofveryintenseworkwehavea90placementrateandwhilewedohavearigorousadmissionsprocessthemajorityofourstudentsgethiredirecommendpeopletojustgoforiticanguaranteethatifyouhavetherightattitudeyoullsucceedppstrongfindoutmoreaboutahrefhttpswwwcoursereportcomschoolsironhackrelfollowtarget_blankironhackabyreadingcoursereportreviewscheckoutahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blanktheironhackwebsiteastrongpdivclassauthorbiobootstraph4abouttheauthorh4imgclassimgroundedpullleftsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpgalthttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpglogopplaurenisacommunicationsandoperationsstrategistwholovestohelpothersfindtheirideaofsuccesssheispassionateabouttechonologyeducationcareerdevelopmentstartupsandtheartsherbackgroundincludescareeryouthdevelopmentpublicaffairsnbspandphilanthropynbspsheisfromrichmondvaandnowcurrentlyresidesinlosangelescappdivliliclasspostdatadeeplinkpathnewsjanuary2018codingbootcampnewspodcastdatadeeplinktargetpost_966idpost_966h2ahrefblogjanuary2018codingbootcampnewspodcastjanuary2018codingbootcampnewspodcastah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan1312018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsrevaturerevatureaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolselewaeducationelewaeducationaaclassbtnbtninversehrefschoolsholbertonschoolholbertonschoolaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolsblocblocaaclassbtnbtninversehrefschoolseditbootcampeditaaclassbtnbtninversehrefschoolsandelaandelaaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsgalvanizegalvanizeaaclassbtnbtninversehrefschoolscodingdojocodingdojoaaclassbtnbtninversehrefschoolsthinkfulthinkfulaaclassbtnbtninversehrefschoolsredacademyredacademyaaclassbtnbtninversehrefschoolsorigincodeacademyorigincodeacademyaaclassbtnbtninversehrefschoolshackbrightacademyhackbrightacademyaaclassbtnbtninversehrefschoolscodercampscodercampsaaclassbtnbtninversehrefschoolsmuktekacademymuktekacademyappiframeheight300srchttpswsoundcloudcomplayerurlhttps3aapisoundcloudcomtracks392107080ampcolor23ff5500ampauto_playfalseamphide_relatedfalseampshow_commentstrueampshow_usertrueampshow_repostsfalseampshow_teasertrueampvisualtruewidth100iframeppstrongwelcometothefirstnewsroundupof2018werealreadyhavingabusy2018wepublishedourlatestoutcomesanddemographicsreportandwereseeingapromisingfocusondiversityintechinjanuarywesawasignificantfundraisingannouncementfromanonlinebootcampwesawjournalistsexploringwhyemployersshouldhirebootcampandapprenticeshipgraduateswereadaboutcommunitycollegesversusbootcampsandhowbootcampsarehelpingtogrowtechecosystemspluswelltalkaboutthenewestcampusesandschoolsonthesceneandourfavoriteblogpostsreadbeloworahrefhttpssoundcloudcomcoursereportepisode23january2018codingbootcampnewsrounduprelfollowtarget_blanklistentothepodcastastrongbrpahrefblogjanuary2018codingbootcampnewspodcastcontinuereadingrarraliliclasspostdatadeeplinkpathnewscampusspotlightironhackmexicocitydatadeeplinktargetpost_945idpost_945h2ahrefschoolsironhacknewscampusspotlightironhackmexicocitycampusspotlightironhackmexicocityah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan1242017spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappahrefhttpswwwcoursereportcomschoolsironhacknewscampusspotlightironhackmexicocityrelfollowtarget_blankimgaltironhackcampusmexicocitysrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4129s1200ironhackcampusmexicocitypngappstrongglobaltechschoolironhackislaunchinganewcampusinmexicocityonjanuary152018wespokewithahrefhttpswwwcoursereportcomschoolsironhackrelfollowtarget_blankironhackasvpofoperationsampexpansionalexandreberrichetolearnaboutthemexicocitytechecosystemandwhythereisagrowingdemandfordevelopersintheareathisschoolusesfeedbackfromtheircampusesaroundtheworldtocontinuallyimprovethecurriculumdiscoverhowahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagerelfollowtarget_blankironhackacanconnectyoutoa1000networkofalumnihelpyouwithjobplacementandgetsometipsforyourapplicationstrongppspanstylefontsize16pxstrongqampastrongspanppstrongwhatsyourbackgroundwhatdrewyoutowanttoworkwithironhackstrongppafterstartingmycareerinprivateequityijoinedjumiaarocketinternetcompanyalsocalledtheafricanamazoniwasheadofoperationsinnorthafricaandthenmanagingdirectoroftunisiaigotintouchwitharielandgonzalothefoundersofironhackandwasreallyinspiredbytheirvisionalsosinceiactuallyattendedacodingbootcampmyselfiwasexcitedtocomeandworkinthisindustryisawthegreatpotentialthebootcampmodelhadineuropeandalsolatinamericaiwaskeentohaveanimpactonpeopleslivessoiwassuperreceptivetoourconversationandworkingwithironhackitwasagreatfitppstrongasthevpofexpansioncanyoudescribeyourrolestrongppasvpofexpansioniworkwiththefounderstocreateastrategyanddecidewhichmarketsmakesenseforustoopeninnexttheniminvolvedwiththeoperationspreparationwhereiactuallylaunchthenewmarketspptherearethreemainareastoconsiderwhenlaunchinginanewmarketthefirstishumanresourceswewanttobuildanawesometeamincludingageneralmanagerweweresuperexcitedtofindagreatgmforourmexicocampusmarketingandbrandawarenessisnumbertwowhenyourelaunchinginanewmarketyouwanttoincreasethebrandawarenessandconvinceyourfirststudentsofthebenefitsofthenewcampusitcanbedifficultinanewmarketbecausewearestartingfromscratchsowehavetoleveragetheuseofmarketingchannelssuchaspublicrelationseventsandpartnershipstointegrateourselvesintothelocalecosystemthethirdareaislegalmakingsurethelegaladministrationiscompletedifyousucceedinthosethreeareasyouarereadytoopeninanymarketppstrongwhatstoodoutaboutmexicocitywhydidironhackchoosetoopenacampustherestrongppweareoneoftheleadersinthecodingbootcampindustrygloballyandwevebeenthinkingaboutopeninginlatinamericaforquitesometimelatinamericaisagreatmarketbecausethereissomuchdemandfortechskillsbutthereisalimitednumberofestablishedbootcampsintheareain2019itisestimatedtherewillbeadeficitof150000itjobsinmexicosowecanhaveagreatimpactonthatwewanttotrainthenewgenerationoftechnologyprofessionalstojointheindustrynotmanyifanybootcampshavecampusesintheuseuropeandinlatinamericasolatinamericawasveryattractivetousppmexicocitywasthepreferredchoicebecauseithasaboomingtechecosystemitsoneofthelargestmarketsforstartupsmexicocityistheentryformanytechcompaniesmovingtolatinamericafacebookamazonandsoonsomanytechmultinationalsaremovingintheecosystemisnotjustboomingitsalsomaturingsignificantlywellasthereareplentyofvcsacceleratorsandcompanybuildersppfinallyitsaprettyfriendlyenvironmentforinternettechnologyandcomputerscienceitsabigmarkettopenetratebutitslessdifficultthansomeothermarketsbecausetherearenoglobalcompetitorsthereareobviouslysomelocalcompetitorswhomwerespectalotbutwearegoingtogivethemexicocityecosystemaccesstoironhacksglobalcommunitywhichisalreadypresentinmiamiparisbarcelonaandmadridwethinkbuildingtieswithinthosemarketswillexcitestudentslearninginmexicocityppstrongthereareonlyafewstrongstrongbootcampsstrongstronginmexicocityhowwillironhackstandoutonceotherstrongstrongbootcampsstrongstrongstarttopopupstrongppironhackwillstandoutbecauseweareglobalwehavealreadylearnedsomuchaboutrunningabootcampbecauseeachmarketweoperateinhasdifferentstandardsanddifferentchallengessobybringingthisexperienceintothemarketweareraisingthecodingbootcampstandardsformexicocityironhackhasgraduated1000studentssowehavealargecommunitywehavealumniworkingforamazongoogleandibmwhichisabigpluswehavegreatreviewsoncoursereportandwehavegreatstudentsatisfactionforourcurriculumoverthefouryearswehavebeenoperatingwehavecontinuedtoimproveourteachingmethodsppstrongwhatistheironhackmexicocitycampuslikestrongppourofficesareattheweworkinsurgentescoworkingspaceanditsamazingtoworkalongsidedifferentmexicocitystartupsandseehowdynamicthespaceisitssuperexcitingwereinthecolonianapoleswhichislikeadistrictofstartupsatweworkwetakeuptworoomsof20x30feeteachwhichholdbetween15to20studentswewillstartwithoneclassandtheneventuallyhavetwoclassesrollingatthesametimeoneuxuidesigncourseandonewebdevelopmentcourseppourobjectiveatironhackisnotquantitativeitsmorequalitativesowearenotgoingtoacceptstudentsiftheydonthavetherequiredtechnicallevelweareselectivewithstudentsandwedontaccepteveryoneppstrongcouldyoudescribetheironhackapplicationprocessisitthesameacrosscampusesstrongppyeswehavetwointerviewsonepersonalinterviewandonetechnicalinterviewyoucanmakeitthroughthetechnicalinterviewevenifyoudonthavetonsofknowledgebutyoumustbeahardworkerifyouprepareyourcaseyoucanmakeitinbutwewanttobeselectiveppbeforethebootcampstartswealsohavepreworkandtheobjectiveistohaveeveryoneatthesameknowledgelevelwhenwestartthecoursepeoplearespendingalotoftimeandmoneytoreallyimprovesothecoursesareveryintensiveforthatreasonppstrongironhackteachesuxuidesignandwebdevelopmentwillyoubeteachingthesamecurriculuminmexicocitystrongppwecollectfeedbackineachmarketandwitheachpieceoffeedbackwereceiveweimproveourcurriculumlittlebylittlewetrustandusethesamecurriculumineverymarketyoucantscaleefficientlyifyouhaveeachmarketdoingdifferentclassesthefeedbackloopsinallthedifferentmarketsallowustohavethebestqualityprogramidontthinkwecouldhavethebestqualityifwemadetoomanyspecificitiesforthevariouscitiesppstronghowmanyinstructorswillyouhaveatthemexicocitycampusstrongppthenumberofinstructorswillgrowasthenumberofstudentsandthenumberofclassesincreaseforinstanceatthepariscampusfourmonthsafterlaunchingwehadseventeachersitwillbethesameformexicosowellstartwithoneinstructorandthenafterafewmonthssevenandafteroneyearmaybe10weregoingtoseehowfastitgrowsppstrongsinceironhackisaglobalstrongstrongbootcampstrongstronghowdoyouhelpwiththejobsearchandplacementwhatsortofjobsdoyouexpectgraduatestogetstrongppwearetryingtobuildpartnershipswithliniotipandmanymexicanstartupswherewecanplaceourstudentscompanieswillbeinvitedtohiringweekattheendofthebootcamptoseewhattypeoftalentweproducewellstartbytargetingcompaniesinmexicocityandthenwellexpandandmakepartnershipswithcompaniesinguadalajaraandmonterreyasasecondstepppmostofourgraduatesbecomejuniordeveloperswehavelessentrepreneursandmorejuniordevelopersironhackfocusesoncareerchangersandtryingtohelpthemtoachievetheirambitionssothatswhywearesofocusedonplacementwithironweekandaplacementmanagerineachmarketppstrongisitprettynormalforgraduatestostayinthecitywheretheystudiedstrongppweareseeinggraduatesstayinthecitywheretheystudiedunlesstheyrecomingfromabroadwehaveafewinternationalstudentsandcurrentlymostofthemgotothebarcelonaandpariscampuseswedontknowaboutmexicocitygraduatesyetbutmostofourapplicationssofararefrommexicowithsomeinternationalapplicantsaswellppstrongifsomeoneisabeginnerandthinkingaboutattendingacodingbootcampinmexicocitylikeironhackdoyouhaveanymeetuporeventsuggestionsstrongppyesironhackisdoingahrefhttpswwwmeetupcomesironhackmexicoevents245056900utm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blankahugefulldayeventatweworkondecember9thaanyonecanattendanditsfreethisisagreatopportunitytolearnabouttechdiscoverthemexicocityecosystemanddecideifyouwanttoapplytoironhackppstrongwhatadvicedoyouhaveforpeoplethinkingaboutattendingacodingbootcamplikeironhackstrongppthefirstthingisitsanamazingcommitmentandifyouareapplyingforgoodreasonsandhavethetechnicalabilityyouwillbeacceptedandgetthebestexperienceitsaonceinalifetimeexperiencetospendnineweekschangingyourcareeryouwilllearnsomuchmeetnewcompaniesandgethiredifyouwanttolearnmoreahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagerelfollowtarget_blankgototheironhackwebsiteadownloadtheapplicationguideandcometosomeeventswehaveameetupgroupandfacebookpageyoucanreadplentyofreviewsoftheschooloncoursereportifyouaresureofyourmotivationsyouareahardworkerandyourecommittedimsureyouwillbeacceptedppstrongdoyouhaveanyadditionalcommentsabouttheironhacksnewmexicocitycampusstrongppweareveryexcitedabouthavinganamazingteamatweworkinmexicocityweareatthecenterofthestartupecosystemsoithinkitwillbeanamazingexperienceforourstudentsppstrongreadahrefhttpswwwcoursereportcomschoolsironhackrelfollowtarget_blankironhackreviewsaoncoursereportandcheckouttheahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagerelfollowtarget_blankironhackwebsiteastrongpdivclassauthorbiobootstraph4abouttheauthorh4imgclassimgroundedpullleftsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpgalthttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpglogopplaurenisacommunicationsandoperationsstrategistwholovestohelpothersfindtheirideaofsuccesssheispassionateabouttechonologyeducationcareerdevelopmentstartupsandtheartsherbackgroundincludescareeryouthdevelopmentpublicaffairsnbspandphilanthropynbspsheisfromrichmondvaandnowcurrentlyresidesinlosangelescappdivliliclasspostdatadeeplinkpathnewsmeetourreviewsweepstakeswinnerluisnagelofironhackdatadeeplinktargetpost_892idpost_892h2ahrefschoolsironhacknewsmeetourreviewsweepstakeswinnerluisnagelofironhackmeetourreviewsweepstakeswinnerluisnagelofironhackah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan892017spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappahrefhttpswwwcoursereportcomschoolsironhacknewsmeetourreviewsweepstakeswinnerluisnagelofironhackrelfollowimgaltironhacksweepstakeswinnerluisnagelsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files3764s1200ironhacksweepstakeswinnerluisnagelpngappstrongthankstostrongstrongbootcampstrongstronggraduateswhoenteredoursweepstakescompetitiontowina500amazongiftcardbyleavingaverifiedreviewoftheirstrongstrongbootcampstrongstrongexperienceoncoursereportthistimeourluckywinnerwasluiswhograduatedfromironhackinmadridthisaprilwecaughtupwithhimtofindoutabitabouthiscodingstrongstrongbootcampstrongstrongexperienceandwhyhedecidedtoattendironhackstrongppstrongwanttobeournextreviewssweepstakeswinnerahrefhttpswwwcoursereportcomwriteareviewrelfollowtarget_blankwriteaverifiedreviewofyourcodingastrongahrefhttpswwwcoursereportcomwriteareviewrelfollowtarget_blankstrongbootcampstrongaahrefhttpswwwcoursereportcomwriteareviewrelfollowtarget_blankstrongexperienceherestrongaph3strongmeetluisstrongh3pstrongwhatwereyouuptobeforeironhackstrongppbeforedoingtheironhacksuxuibootcampihadalongcareerworkingasamarketingandadvertisingdesignerppstrongwhatsyourjobtitletodaystrongppimauxuidesigneratdevialabauxuiandsoftwaredevelopmentconsultingagencymainlyfocusedonstartupsandbasedinmadridwhatmakesdevialabspecialisthatwelauncheveryprojectlikeitwereourownandalsoworkreallyclosewiththeentrepreneurppstrongwhatsyouradvicetosomeoneconsideringironhackoranothercodingstrongstrongbootcampstrongstrongstrongppmyadvicetoanyoneconsideringironhackisdoititisagreatopportunityyouarebringingyourselfitmaybehardsometimesbutyouwillneverregretitppbeforestartingfreeyourmindandyouragendaandbereadyforagreatimmersiveexperienceyouwillgrowasmuchasyourewillingtoandyouwillnotonlylearnbutyouwillalsoexperiencewhatyourjobisgoingtobeandalsoyouwillmeetamazingprofessionalsnetworkingisoneofthebestopportunitiesofferedbyabootcamplikeironhackppstrongcongratsahrefhttpswwwtwittercomluisnagelrelfollowluisatolearnmoreahrefhttpswwwcoursereportcomschoolsthinkfulreviewsrelfollowtarget_blankreadironhackreviewsaoncoursereportorahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpagerelfollowtarget_blankvisittheironhackwebsiteastrongppstrongwanttobeournextreviewssweepstakeswinnerahrefhttpswwwcoursereportcomwriteareviewrelfollowtarget_blankleaveaverifiedreviewofyourcodingbootcampexperiencehereastrongpppdivclassauthorbiobootstraph4abouttheauthorh4imgclassimgroundedpullleftsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpgalthttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpglogopplaurenisacommunicationsandoperationsstrategistwholovestohelpothersfindtheirideaofsuccesssheispassionateabouttechonologyeducationcareerdevelopmentstartupsandtheartsherbackgroundincludescareeryouthdevelopmentpublicaffairsnbspandphilanthropynbspsheisfromrichmondvaandnowcurrentlyresidesinlosangelescappdivliliclasspostdatadeeplinkpathnewsjuly2017codingbootcampnewspodcastdatadeeplinktargetpost_888idpost_888h2ahrefblogjuly2017codingbootcampnewspodcastjuly2017codingbootcampnewsrounduppodcastah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan812017spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsgeorgiatechbootcampsgeorgiatechbootcampsaaclassbtnbtninversehrefschoolstheironyardtheironyardaaclassbtnbtninversehrefschoolsdevbootcampdevbootcampaaclassbtnbtninversehrefschoolsupacademyupacademyaaclassbtnbtninversehrefschoolsuscviterbidataanalyticsbootcampuscviterbidataanalyticsbootcampaaclassbtnbtninversehrefschoolscovalencecovalenceaaclassbtnbtninversehrefschoolsdeltavcodeschooldeltavcodeschoolaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolssoutherncareersinstitutesoutherncareersinstituteaaclassbtnbtninversehrefschoolslaunchacademylaunchacademyaaclassbtnbtninversehrefschoolssefactorysefactoryaaclassbtnbtninversehrefschoolswethinkcode_wethinkcode_aaclassbtnbtninversehrefschoolsdevtreeacademydevtreeacademyaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsunitfactoryunitfactoryaaclassbtnbtninversehrefschoolstk2academytk2academyaaclassbtnbtninversehrefschoolsmetismetisaaclassbtnbtninversehrefschoolscodeplatooncodeplatoonaaclassbtnbtninversehrefschoolscodeupcodeupaaclassbtnbtninversehrefschoolscodingdojocodingdojoaaclassbtnbtninversehrefschoolsuniversityofrichmondbootcampsuniversityofrichmondbootcampsaaclassbtnbtninversehrefschoolsthinkfulthinkfulaaclassbtnbtninversehrefschoolsuniversityofminnesotabootcampsuniversityofminnesotabootcampsaaclassbtnbtninversehrefschoolshackbrightacademyhackbrightacademyaaclassbtnbtninversehrefschoolsfullstackacademyfullstackacademyaaclassbtnbtninversehrefschoolsuniversityofmiamibootcampsuniversityofmiamibootcampsappiframeheight100srchttpswsoundcloudcomplayerurlhttps3aapisoundcloudcomtracks335711318ampauto_playfalseamphide_relatedfalseampshow_commentstrueampshow_usertrueampshow_repostsfalseampvisualtruewidth100iframeppstrongneedasummaryofnewsaboutcodingbootcampsfromjuly2017coursereporthasjustwhatyouneedweveputtogetherthemostimportantnewsanddevelopmentsinthisblogpostandpodcastinjulywereadabouttheclosureoftwomajorcodingbootcampswedivedintoanumberofnewindustryreportsweheardsomestudentsuccessstorieswereadaboutnewinvestmentsinbootcampsandwewereexcitedtohearaboutmorediversityinitiativesplusweroundupallthenewcampusesandnewcodingbootcampsaroundtheworldstrongpahrefblogjuly2017codingbootcampnewspodcastcontinuereadingrarraliliclasspostdatadeeplinkpathnewscampusspotlightironhackparisdatadeeplinktargetpost_857idpost_857h2ahrefschoolsironhacknewscampusspotlightironhackpariscampusspotlightironhackparisah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan5262017spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltcampusspotlightironhackparissrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files3440s1200campusspotlightironhackparispngppstrongahrefhttpswwwcoursereportcomschoolsironhackrelfollowtarget_blankironhackaisaglobalwebdevelopmentstrongstrongbootcampstrongstrongwithlocationsinmadridmiamibarcelonaandnowpariswespokewithahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blankironhackasgeneralmanagerforfrancefranoisstrongstrongfillettestrongstrongtolearnmoreabouttheirnewpariscampuslaunchingjune26thfranceisthesecondlargesttechecosystemineuropelearnwhyironhackchosetoexpandtotheareareadhowthestrongstrongbootcampstrongstrongwillstandoutfromtherestandseewhatresourcesareavailabletobecomeasuccessfulstrongstrongbootcampstrongstronggradinparisstrongppstrongfirstasthefrancegeneralmanagertellmehowyouvebeeninvolvedwiththenewironhackcampusstrongppsureasageneralmanagerihavebeeninvolvedinallthedimensionsrelatedtothenewcampusfindinganamazingplaceforourstudentsrecruitingateamofaplayerssettingupthedocsandprocessesandsoonihavebeenworkingwithalexourheadofinternationalexpansionwhohasbeentremendouslyhelpfulwehaveworkedsuperhardoverthelastfewweekstomakesurethatourpariscampuswillbeonthesamestandardsastheothersppstrongwhatsyourbackgroundandhowdidyougetinvolvedwithstrongstrongbootcampsstrongstrongwhatdrewyoutowanttoworkwithironhackstrongppiwascomingbackfromsanfranciscowhereiwasworkingasvpofstrategyandbusinessdevelopmentforahrefhttpswwwcodingamecomstartutm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blankcodingameaoneofmyvcfriendstoldmethatarielandgonzalothecofounderswerelookingforsomeonetolaunchironhackinfranceimetthetwoofthemandimmediatelyembracedtheirvisionandgotimpressedbytheirabilitytoexecutefastandwelligotsuperexcitedbytheprojectandtheteamsoacoupleofdayslateriwasinmiamitoworkonthestrategyandthelaunchplanforfranceitsbeen3monthsnowandhonestlyiveneverbeenhappiertowakeupinthemorningandstartanewdayppstrongironhackislaunchingtheirpariscampusonjune26thwhyisparisagreatplaceforacodingstrongstrongbootcampstrongstrongcouldyouexplainironhacksmotivationtoexpandtherestrongppintermsoffundingfranceisnowthe2ndlargesttechecosystemineuroperightafterenglandoverthelast5yearsithasgrownexponentiallyandisnowoneofthekeytechhubsintheworldtakeahrefhttpsstationfcorelfollowtarget_blankstationfaforinstancethankstoxaviernielcofounderoffreepariswillnowhavethebiggestincubatorintheworldthatgrowthhasfueledanincreasingdemandfornewskillsinthetecheconomyandthetalentshortageisnotfilledbythetraditionaleducationplayerstheresanamazingopportunityforustoexpandhereandwelldoeverythingwecantoreachourtargetsppstrongthereareafewothercodingstrongstrongbootcampsstrongstronginpariswhatwillmakeironhackstandoutamongstthecompetitionstrongppseveralinitiativesandplayershaveappearedoverthelastcoupleofyearswhichshowsyouhowdynamicthemarketisithink3elementswillsetironhackapartfromthecompetitionfirstourcoursesarefocusedonthelatesttechnologiesforexamplefullstackjavascriptforwebdevelopmentandweconstantlyiteratetoimproveboththecontentandtheacademicexperiencethenwededicatealargeshareofthecourse6070tohandsonreallifeapplicationsstudentsworkonrealprojectssubmittedbypartnersorbythemselvesiftheywanttocreatetheirstartupbusinesslastwehelpwiththeplacementofourstudentsiftheyrelookingforajobcoachingfortechnicalandbehavioralinterviewsconnectionstocompaniesstartupseventsetcwehaveanaverageplacementrateof90after3monthsacrossourcampusesppstrongletsdiscussthepariscampuswhatistheclassroomlikewhatneighborhoodisitinstrongppthecampusislocatedinthenewspaceopenedbyweworkitislocatedinthe9tharrondissementneartheparisoperaitisaccessiblevia3metrolines8buslines2bikesharingstationsand2carsharingstationsitwillbeopen247forourstudentspptheplaceisabsolutelymagnificentbothintermsofdesignandcommunitystudentswillenjoyalargeclassroomclosetothepatioandmeetingworkingroomstocompletetheirprojectsandassignmentsppstrongwhatwebdevelopmentanduxuidesigntracksorlanguagesareyouteachingatthiscampusandwhyaretheonesyouvechosenparticularlypopularorrelevantinparisstrongppthecorecurriculumisthesameacrossthedifferentcampusestomakesurestudentshavethesameacademicexperienceandthatwehaveastrongexpertiseinourareathenwetailorthementorstheeventsandtheprojectstothelocalspecificitiesofthestudentsandoftheecosystemsoforwebdevelopmentwellbefocusingonfullstackjavascriptbutwellbeintegratingeventsandmentorsaroundframeworksreallypopularhereexreactormeteorandindustriesthataretherisingtrendsexonlinemediaandentertainmentppstronghowmanyinstructorsandormentorswillyouhaveinparisstrongppwellhavealeadinstructorwhoisaprofessionaldeveloperandhighlyinvolvedintheopensourcecommunityhehasseveralyearsofexperienceinstartupsanditservicesagencieshellbeassistedbyatawhoisabitmorejuniorbutpassionateabouteducationandteachingstudentspluswellhaveanetworkof1520mentorstohelpandcoachstudentsforcodingaswellasformanagementmentorswillbechosenbasedontheprojectsofthestudentsalsothestudentsofthefirstwebdevelopmentsessionwillbesponsoredbyflorianjourdaflorianwasthe1stengineeratboxandscaledtheirdevteamfrom2to300peoplehespent8yearsinthesiliconvalleyandisnowchiefproductofficeratbayesimpactanngofundedbygooglethatusesmachinelearningtosolvesocialproblemslikeunemploymentppstronghowmanystudentsdoyouusuallyhaveinacohorthowmanycanyouaccommodatestrongppforthatfirstcohortweplantohave20studentsmaximumbecausewewanttomakesureweprovidethebestexperiencethatwillensureastrongmonitoringofstudentsaswellasaperfectoperationalexecutiononoursideforthenextcohortswellincreasethenumberofstudentsbutwewontgoabove30andwellrecruit1or2moretastokeepthesamequalityppstrongwhatkindofhourswillstudentsneedtoputintobesuccessfulstrongppstudentsoftenaskthatquestionanditsalwayshardtoanswereverythingdependsontheirlearningcurveonaveragestudentsworkbetween50to70hoursaweekmainlyonprojectsandassignmentsbutwerefullytransparentonthisyoucantlearnrealhardskillsandgetajobin3monthswithoutfullydedicatingyourselfwemakesurethattheatmosphereisasgoodasitcanbesothatstudentswontseetimepassingbyppstronghowisyourcampussimilarordifferenttotheotherironhackcampusesstrongppithinkthatourcampusisprettysimilartomiamiswearelocatedinanamazingcoworkingspaceinaveryniceneighborhoodandwithlotsofstartupsaroundthemaindifferencewouldbeourrooftoponthe8thfloorofthebuildingwhereweregularlyorganizeeventsandlunchesppstronghowareyouapproachingjobplacementinanewcitydoesironhackhaveanemployernetworkalreadystrongppjobplacementisoneoftheelementswetailortothelocalrealitiesandneedswehavealreadypartneredwith20techcompaniessuchasdrivyworldleaderinpeertopeercarrentaljumiatheequivalentofamazoninafricaandmiddleeaststootieeuropeleaderinpeertopeerserviceskimaventuresvcfundofxaviernielwith400portfoliocompaniesetcusuallytheyarelargestartupsfromseriesatoseriesdlookingtohirewebdevelopersasagmitwillbepartofmyjobtosupportandhelpstudentsaccomplishtheirprofessionalprojectswithouremployerpartnersppstrongwhattypesofcompaniesarehiringdevelopersinparisandwhytypesofcompaniesdoyouexpecttohirefromironhackspariscampusstrongppithinkthereare3typesofcompaniesthatcouldhirewebdeveloperswhograduatedfromironhackcorporationsintelecommediatechnologystartupsfromseriesatoseriesdanditservicescompaniesthedemandisreallyintenseforthelasttwooptionsastheyrelookingforpeoplemasteringthelatesttechnologiesinhighvolumesbasedontheenthusiasmtheyveexpressedwhentalkingwithironhackweknowtheyllbegreatrecruitingpartnersppstrongwhatsortofjobshaveyouseengraduatesgetatotherironhackcampusesandwhatdoyouexpectforironhackparisgraduatesdotheyusuallystayinthecityaftergraduationstrongppbasedonthemetricsofothercampusesusually5060ofpeoplejoinastartupasanemployeeajuniorwebdeveloperprojectmanagerorgrowthhacker2030createtheirownstartupafterthecoursewhile2030becomefreelancersusuallyinwebdevelopmentandworkonaremotebasiswellhaveagoodshareofstudentswhoarenotfromfranceoriginallysowethinksomeofthemmightleaveparisafterthecoursebutwellhelpthemfindtherightopportunityabroadandwellkeepconstantinteractionwiththosestudentsppstrongwhatmeetupsorresourceswouldyourecommendforacompletebeginnerinpariswhowantstogetstartedstrongppfrancehassomegreatplayersinthefieldifyouwanttogetanintrotojavascriptiwouldrecommendyouvisitopenclassroomscodecademyorcodecombatthenintermsofmeetupsthefamilyandnumaaretwoacceleratorswithoutstandingweeklyeventssomeofthemarerelatedtoonespecificcodingtopicandtheyreusuallyapprehendedatabeginnerlevelppstronganyfinalthoughtsthatyoudlikeourreaderstoknowaboutironhackparisstrongppwewanttobuildsomethingthatisnothinglikewhatexistsinparisin3monthsyoullbeoperationalinwebdevelopmentyoullmeetawesomepeoplestudentsmentorsentrepreneursandyoullaccomplishyourprofessionalprojectsendusanemailtoknowmoreatahrefmailtoparisironhackcomsubjectim20interested20in20ironhack20parisrelfollowparisironhackcomawehaveafewseatsleftforthesessionstartingonjune26thnextsessionwillstartonseptember4thifyouwanttoapplyjustsendusyourapplicationthroughthisahrefhttpswwwironhackcomenwebdevelopmentbootcampapplyrelfollowtarget_blanktypeformappstrongreadmoreahrefhttpswwwcoursereportcomschoolsironhackreviewsrelfollowtarget_blankironhackreviewsaandbesuretocheckouttheahrefhttpswwwironhackcomenutm_sourcecoursereportamputm_mediumblogpostrelfollowtarget_blankironhackwebsiteastrongpdivclassauthorbiobootstraph4abouttheauthorh4imgclassimgroundedpullleftsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpgalthttpscourse_report_productions3amazonawscomrichrich_filesrich_files4484s300laurenstewartheadshotjpglogopplaurenisacommunicationsandoperationsstrategistwholovestohelpothersfindtheirideaofsuccesssheispassionateabouttechonologyeducationcareerdevelopmentstartupsandtheartsherbackgroundincludescareeryouthdevelopmentpublicaffairsnbspandphilanthropynbspsheisfromrichmondvaandnowcurrentlyresidesinlosangelescappdivliliclasspostdatadeeplinkpathnewsepisode13april2017codingbootcampnewsrounduppodcastdatadeeplinktargetpost_841idpost_841h2ahrefblogepisode13april2017codingbootcampnewsrounduppodcastepisode13april2017codingbootcampnewsrounduppodcastah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan7222017spanppclassrelatedschoolsaclassbtnbtninversehrefschoolstheironyardtheironyardaaclassbtnbtninversehrefschoolsdevbootcampdevbootcampaaclassbtnbtninversehrefschoolsgreenfoxacademygreenfoxacademyaaclassbtnbtninversehrefschoolsrevaturerevatureaaclassbtnbtninversehrefschoolsgrandcircusgrandcircusaaclassbtnbtninversehrefschoolsacclaimeducationacclaimeducationaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolsplaycraftingplaycraftingaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsuniversityofarizonabootcampsuniversityofarizonabootcampsaaclassbtnbtninversehrefschoolsgalvanizegalvanizeaaclassbtnbtninversehrefschoolshackreactorhackreactoraaclassbtnbtninversehrefschoolstech901tech901aaclassbtnbtninversehrefschoolsbigskycodeacademybigskycodeacademyaaclassbtnbtninversehrefschoolscodingdojocodingdojoaaclassbtnbtninversehrefschoolsumassamherstcodingbootcampumassamherstcodingbootcampaaclassbtnbtninversehrefschoolsaustincommunitycollegecontinuingeducationaustincommunitycollegecontinuingeducationaaclassbtnbtninversehrefschoolscodechrysaliscodechrysalisaaclassbtnbtninversehrefschoolsdeepdivecodersdeepdivecodingaaclassbtnbtninversehrefschoolsunhcodingbootcampunhcodingbootcampaaclassbtnbtninversehrefschoolsqueenstechacademyqueenstechacademyaaclassbtnbtninversehrefschoolscoderacademycoderacademyaaclassbtnbtninversehrefschoolszipcodewilmingtonzipcodewilmingtonaaclassbtnbtninversehrefschoolsdevacademydevacademyaaclassbtnbtninversehrefschoolscodecodeappiframeheight450srchttpswsoundcloudcomplayerurlhttps3aapisoundcloudcomtracks320348426ampauto_playfalseamphide_relatedfalseampshow_commentstrueampshow_usertrueampshow_repostsfalseampvisualtruewidth100iframeppstrongmissedoutoncodingbootcampnewsinaprilneverfearcoursereportisherewevecollectedeverythinginthishandyblogpostandpodcastthismonthwereadaboutwhyoutcomesreportingisusefulforstudentshowanumberofschoolsareworkingtoboosttheirdiversitywithscholarshipsweheardaboutstudentexperiencesatbootcampplusweaddedabunchofinterestingnewschoolstothecoursereportschooldirectoryreadbeloworlistentoourlatestcodingbootcampnewsrounduppodcaststrongpahrefblogepisode13april2017codingbootcampnewsrounduppodcastcontinuereadingrarraliliclasspostdatadeeplinkpathnewsyour2017learntocodenewyearsresolutiondatadeeplinktargetpost_771idpost_771h2ahrefblogyour2017learntocodenewyearsresolutionyour2017learntocodenewyearsresolutionah2pclassdetailsspanclassauthorspanclassiconuserspanlaurenstewartspanspanclassdatespanclassiconcalendarspan12302016spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsdevbootcampdevbootcampaaclassbtnbtninversehrefschoolscodesmithcodesmithaaclassbtnbtninversehrefschoolsvschoolvschoolaaclassbtnbtninversehrefschoolslevellevelaaclassbtnbtninversehrefschoolsdavincicodersdavincicodersaaclassbtnbtninversehrefschoolsgracehopperprogramgracehopperprogramaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolsclaimacademyclaimacademyaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolswecancodeitwecancodeitaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsmetismetisaaclassbtnbtninversehrefschoolsbovacademybovacademyaaclassbtnbtninversehrefschoolshackreactorhackreactoraaclassbtnbtninversehrefschoolsdesignlabdesignlabaaclassbtnbtninversehrefschoolstheappacademynltheappacademynlaaclassbtnbtninversehrefschoolstechelevatortechelevatoraaclassbtnbtninversehrefschoolsthinkfulthinkfulaaclassbtnbtninversehrefschoolslearningfuzelearningfuzeaaclassbtnbtninversehrefschoolsredacademyredacademyaaclassbtnbtninversehrefschoolsgrowthxacademygrowthxacademyaaclassbtnbtninversehrefschoolsstartupinstitutestartupinstituteaaclassbtnbtninversehrefschoolswyncodewyncodeaaclassbtnbtninversehrefschoolsfullstackacademyfullstackacademyaaclassbtnbtninversehrefschoolsturntotechturntotechaaclassbtnbtninversehrefschoolscodingtemplecodingtempleappimgaltnewyearsresolution2017learntocodesrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files3600s1200newyearsresolution2017learntocodev2pngppstrongitsthattimeagainatimetoreflectontheyearthatiscomingtoanendandatimetoplanforwhatthenewyearhasinstorewhileitmaybeeasytobeatyourselfupaboutcertainunmetgoalsonethingisforsureyoumadeitthroughanotheryearandwebetyouaccomplishedmorethanyouthinkmaybeyoufinishedyourfirstcodecademystrongstrongclassstrongstrongmadea30daygithubcommitstreakormaybeyoueventookastrongstrongbootcampstrongstrongprepcoursesoletscheerstothatbutiflearningtocodeisstillatthetopofyourresolutionslistthentakingtheplungeintoacodingstrongstrongbootcampstrongstrongmaybethebestwaytoofficiallycrossitoffwevecompiledalistofstellarschoolsofferingemfulltimeememparttimeemandemonlineemcourseswithstartdatesatthetopoftheyearfiveofthesestrongstrongbootcampsstrongstrongevenhavescholarshipmoneyreadytodishouttoaspiringcoderslikeyoustrongpahrefblogyour2017learntocodenewyearsresolutioncontinuereadingrarraliliclasspostdatadeeplinkpathnewsdecember2016codingbootcampnewsroundupdatadeeplinktargetpost_770idpost_770h2ahrefblogdecember2016codingbootcampnewsroundupdecember2016codingbootcampnewsroundupah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan12292016spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsdevbootcampdevbootcampaaclassbtnbtninversehrefschoolscodinghousecodinghouseaaclassbtnbtninversehrefschoolsrevaturerevatureaaclassbtnbtninversehrefschoolsfounderscodersfoundersampcodersaaclassbtnbtninversehrefschoolsasidatascienceasidatascienceaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolslabsiotlabsiotaaclassbtnbtninversehrefschoolsopencloudacademyopencloudacademyaaclassbtnbtninversehrefschoolshackeryouhackeryouaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolselevenfiftyacademyelevenfiftyacademyaaclassbtnbtninversehrefschools42school42aaclassbtnbtninversehrefschoolsthefirehoseprojectthefirehoseprojectaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolssoftwareguildsoftwareguildaaclassbtnbtninversehrefschoolsgalvanizegalvanizeaaclassbtnbtninversehrefschoolshackreactorhackreactoraaclassbtnbtninversehrefschoolscodingnomadscodingnomadsaaclassbtnbtninversehrefschoolsupscaleacademyupscaleacademyaaclassbtnbtninversehrefschoolscodingdojocodingdojoaaclassbtnbtninversehrefschoolsthinkfulthinkfulaaclassbtnbtninversehrefschoolsnycdatascienceacademynycdatascienceacademyaaclassbtnbtninversehrefschoolscodingacademybyepitechcodingacademybyepitechaaclassbtnbtninversehrefschoolsorigincodeacademyorigincodeacademyaaclassbtnbtninversehrefschoolskeepcodingkeepcodingaaclassbtnbtninversehrefschoolsfullstackacademyfullstackacademyaaclassbtnbtninversehrefschoolsucirvinebootcampsucirvinebootcampsappimgaltcodingbootcampnewsroundupdecember2016srchttpscourse_report_productions3amazonawscomrichrich_filesrich_files3601s1200codingbootcampnewsroundupdecember2016v2pngppstrongwelcometoourlastmonthlycodingbootcampnewsroundupof2016eachmonthwelookatallthehappeningsfromthecodingbootcampworldfromnewbootcampstofundraisingannouncementstointerestingtrendsweretalkingaboutintheofficethisdecemberweheardaboutabootcampscholarshipfromuberemployerswhoarehappilyhiringbootcampgradsinvestmentsfromnewyorkstateandatokyobasedstaffingfirmdiversityintechandasusualnewcodingschoolscoursesandcampusesstrongpahrefblogdecember2016codingbootcampnewsroundupcontinuereadingrarraliliclasspostdatadeeplinkpathnewsinstructorspotlightjacquelinepastoreofironhackdatadeeplinktargetpost_709idpost_709h2ahrefschoolsironhacknewsinstructorspotlightjacquelinepastoreofironhackinstructorspotlightjacquelinepastoreofironhackah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan10122016spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltjacquelinepastoreironhackinstructorspotlightsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files2486s1200jacquelinepastoreironhackinstructorspotlightpngppstrongmiamicodingbootcampahrefhttpswwwcoursereportcomschoolsironhackrelfollowironhackarecentlylaunchedanintensivecourseinuxuidesignwherestudentslearneverythingtheyneedtoknowaboutuserresearchrapidprototypingusertestingandfrontendwebdevelopmenttolandtheirfirstjobinuxdesignwesatdownwithinstructoranduxsuperstarjacquelinepastoreontheirfirstdayofclasstofindoutwhatmakesagreatuxuidesignerthinklisteningskillsempathyandcommunicationhowtheschoolproducesuserexperienceunicornsbyincorporatinghtmlbootstrapskillsintothecurriculumandtheteachingstylethatfuturestudentscanexpectatahrefhttpswwwironhackcomenrelfollowtarget_blankironhackmiamiastrongph3strongqampastrongh3pstronghowdidyoubecomeasuccessfuluxdesignerdidyougetadegreeinuxdesignstrongppimacareerchangermybackgroundwasfirstinfilmandcreativewritingandiworkedinthefilmindustryinmiamibeforeiendedupinbostontempingasaprojectmanagerforaventurecapitalcompanywithanincubatorfocusedonharvardandmitstartupsilearnedfromreallysmartpeopleaboutcomputerssoftwaregraphicdesignandprojectmanagementandibmhadtheirlotusnotesusabilitylabsnextdoorsoigottoparticipateasausabilitytesteriwentbacktogradschoolatbentleyuniversityformymastersinhumanfactorsininformationdesignandhadamagicalcareerdoingethnographyanduserresearchatmicrosoftstaplesadidasandreebokanduxdesignforfidelityinvestmentsstaplesthefederalreservejpmorganchasehamprblocknovartispharmaceuticalsandzumbafitnesspptwoyearsagoimovedbacktomiamiandstartedmyownproductahrefhttpuxgofercomwhatisgoferrelfollowtarget_blankuxgoferawhichisauxresearchtoolppstrongafterspendingyearslearninguserexperienceandevengettingamastersdegreewhydoyoubelieveinthebootcampmodelasaneffectivewaytolearnuxdesignstrongppiwentthroughmygradprogramveryquicklyinoneyearsoibelievethatyoucanlearnthismaterialveryquicklyandthencontinuelearningonthejobthatsexactlywhyivehadasuccessfulcareerbyspecificallygoingafterdifferentverticalstechnologiesandplatformsifihadntusedsomethingbeforeiwantedtotryitibelievethatyoucanlearnthefundamentalsquicklyandthenrefinethemthroughoutyourcareerppstrongwhatmadeyouexcitedtoworkatironhackinparticularwhatstandsoutaboutironhacktoyouasaprofessionaluxdesignerstrongppitwasthepeopleiwasreferredtoironhackbysomeoneiverespectedintheindustryforyearsandtheywererightthepeoplerunningironhackarewhatconvincedmetoworkonthisuxbootcampppstrongdidyouhaveteachingexperiencepriortoteachingatthebootcampwhatisdifferentaboutteachingatacodingbootcampstrongppiteachnowattheuniversityofmiamiatconferencesandbootcampsatironhackmypersonalteachingstyleistolectureverylittleandfocusonhandsonworkitsimportanttoknowthefoundationsandprinciplesandsciencebehindwhatwedobutattheendofthedayyouhavetodeliversowespendthemajorityofourdaysdoingactivitieswhichmeansrunningsurveysdoinginterviewsrunningusabilitytestsdesigningproductsithinkitssoimportantforstudentstocreatetheirportfoliopiecesthroughoutthebootcampinsteadofjusthavingoneportfolioprojectattheendofthecourseforsomeonebreakingintotheuxcommunitytheportfolioishowstudentsdemonstratetheirknowledgeandhowtheyapproachprojectsppimgaltironhackmiamiclassroomstudentssrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files2489s1200ironhack20classroomjpgppstrongthisisironhacksfirstforayintouxuidesigncoursestellusaboutthecurriculumstrongppmarcelopaivaandicreatedtheironhackcurriculumbasedonwhatwewouldhavewantedtolearninabootcampifweweretojustgetstartedinthisfieldwefollowtheuserandproductdevelopmentlifecyclestomakesurethatourstudentshavealltheskillstheyneedtobeusefulrightnowinthecurrentmarketplaceppwestartwithstronguserresearchstronghowtotalktoyourtargetmarketthemethodologybehindthatresearchwhattodowiththatdatadeliverablesandturningthatdataintoconceptdesignppwemoveintostronginformationarchitectureandinteractiondesignstrongwithlowfidelityallthewayintohighfidelityandmicrointeractionmodelsweuseinvisionsketchandprincipalasthetoolsforthatpieceofthecurriculumthenwemoveintostrongvisualstrongstrongdesignstrongformobileandwebbecausetheyaretwodifferentbeastsppthenwemoveintostrongfrontenddevelopmentstrongwherestudentslearnhowtoimplementthedesignstheyrecreatingthisiswhattheindustryislookingforrightnowtheunicornsthatcandothehtmlandbootstraptoimplementtheirowndesignsthatwillmakeironhackstudentsreallyeffectiveandmarketableppfinallywemoveintostrongindividualprojectsstrongironhackstudentsarebuildingportfoliopiecesfromdayonebuttowardstheendofthecoursetheyworkonmorespecificprojectsandbreakoutsforadditionaltopicsthatwehaventcoveredyetppimsosuperexcitedaboutthisbootcampandithinkitsreallyvaluableppstrongisthepushfordesignerstolearntocodethebiggesttrendstrongstronginstrongstrongtheuxuifieldrightnowstrongppitdependsonwhereourgraduateschoosetoworkaspartofasmallerteamauxdesignerwillhavetobemoreofageneralistandneedtodoresearchdesignanddevelopmentiftheyreworkingforalargerorganizationtheycanspecializeinaparticularfieldwithinuxlikeethnographyormobiledesignordesignthinkingasawholeithinkcareersintheuxcommunityarebecomingbothbroaderandmorespecializedtheuxcommunityisbothcomingtogetherandbreakingintonichesppstronghowmanyinstructorsstrongstrongtasstrongstrongandormentorsdoyouhaveisthereanidealstudentteacherratiostrongppthestudentteacherratiofortheuxuicourseis101manyoftherequiredactivitiesaretackledingroupsamongthestudentsingroupsof3or4astheprincipalinstructorileadandteachthemainflowofthecourseandwehavesubjectmatterexpertsandmentorscomeintoteachsectionsofthecurriculumthataremorespecializedegdesignthinkingfrontenddevelopmentetcppstrongcanyoutellusalittlebitabouttheidealstudentforironhacksuxuidesignbootcampwhatsyourclasslikerightnowandhowdotheuxstudentsdifferfromthecodingbootcampstudentsstrongpptheidealstudentfortheuxuidesignbootcampissomeonewhopossessesstrongcommunicationskillscanuseempathytojumpintootherpeoplesshoesandhasapassionforuserexperiencethecurrentclassisawonderfulmixofmanyprofessionalbackgroundsforexamplesomeprofilesincludeaformermarketingmanagerforsonymusicaresearchdirectorfromthenonprofitspaceandanmbagradlookingtousetheirpreviousbusinessprocessskillstocrackintotheuxsectorppimgaltironhackstudentsgroupoutsideironhacklogomiamisrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files2488s1200ux20group20picjpgppstrongthisisafulltimebootcampbuthowmanyhoursaweekdoyouexpectyourstudentstocommittoironhackmiamistrongppinadditiontothedailyscheduleof9amto6pmweexpectstudentstospendapproximately20hoursoutsideofclasstimetoworkonassignmentsandprojectssoabout65hoursweekppstronginauxbootcampisthestylelargelyprojectbasedcanyougiveusanexamplestrongppyesstudentswillworkon2projectsduringthefirst6weeksoneindividualprojectandonegroupprojecttheseprojectsareasumoftheindividualunitswecoveronaweekbyweekbasisthecapstoneofthecourseisa2weekfinalprojectthateachstudentcompletesindividuallyastheygothroughtheentireuserandproductdevelopmentlifecyclestheresultattheendofthecourseisthateachstudenthas3prototypesthattheycanuseasportfoliopiecesmovingforwardppstrongwhatsthegoalforastudentthatgraduatesfromironhackintermsofcareerandabilityforexamplewilltheybepreparedforajunioruxuiroleaseniorrolestrongppthegoalofthiscourseistoprovidestudentstheskillstocarryoutauxuidesignprocessfrombeginningtoendinmultiplecircumstanceswithvaryinggoalsasaresultstudentswillbepreparedforjuniorandentrylevelrolesinuxuifieldsdependingonwhichpartofthatprocessmostintereststhemppstrongforourreaderswhoarebeginnerswhatresourcesormeetupsdoyourecommendforaspiringbootcampersinmiamistrongppweholdopenhousesandfreeintroductoryworkshopstocodinganddesignmonthlywhichcanbefoundontheahrefhttpwwwmeetupcomlearntocodeinmiamirelfollowtarget_blankironhackmeetuppageaourfriendsatahrefhttpswwwmeetupcomixdamiamirelfollowtarget_blankixdaaalsooffersomecoolworkshopsonmeetupppwealsoreallylovethefreeahrefhttpshackdesignorgrelfollowtarget_blankhackdesignacoursewhichisafantasticresourceforsomeonewhowantstodelvemoreintothisworldppstrongisthereanythingelsethatyouwanttomakesureourreadersknowaboutironhacksnewuxuidesignbootcampstrongppifyouhaveanymorequestionsaboutthecoursecodingorironhackingeneralpleaseemailusatadmissionsmiaironhackcomwedbehappytohelpyoufigureoutwhatnextstepsmightworkbestforyourprofileandindividualgoalsppstrongtolearnmorecheckoutahrefhttpswwwcoursereportcomschoolsironhackrelfollowironhackreviewsaoncoursereportorvisittheahrefhttpswwwironhackcomenuxuidesignbootcamplearnuxdesignrelfollowtarget_blankironhackuxuidesignbootcampawebsiteformorestrongpdivclassauthorbiobootstraph4abouttheauthorh4imgclassimgroundedpullleftsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files1527s300lizpicjpgalthttpscourse_report_productions3amazonawscomrichrich_filesrich_files1527s300lizpicjpglogopplizisthenbspcofounderofnbspahrefhttpwebinarscoursereportcomcsdegreevscodingbootcampclknhttpcoursereportcomrelnofollowcoursereportathemostcompletenbspresourceforstudentsconsideringacodingbootcampshelovesbreakfasttacosandspendingtimegettingtoknowbootcampalumniandfoundersallovertheworldcheckoutlizampcoursereportonahrefhttptwittercomcoursereportrelnofollowtwitteraahrefhttpswwwquoracomprofilelizegglestonrelnofollowquoraaandahrefhttpswwwyoutubecomchannelucb9w1ftkcrikx3w7c8elegvideosrelnofollowyoutubeanbspppdivliliclasspostdatadeeplinkpathnewslearntocodein2016atasummercodingbootcampdatadeeplinktargetpost_582idpost_582h2ahrefbloglearntocodein2016atasummercodingbootcamplearntocodein2016atasummercodingbootcampah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan7242016spanppclassrelatedschoolsaclassbtnbtninversehrefschoolslogitacademylogitacademyaaclassbtnbtninversehrefschoolslevellevelaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsmetismetisaaclassbtnbtninversehrefschoolsnycdatascienceacademynycdatascienceacademyaaclassbtnbtninversehrefschoolsnewyorkcodedesignacademynewyorkcodedesignacademyaaclassbtnbtninversehrefschoolsmakeschoolmakeschoolaaclassbtnbtninversehrefschoolswyncodewyncodeaaclassbtnbtninversehrefschoolstechtalentsouthtechtalentsouthaaclassbtnbtninversehrefschoolsfullstackacademyfullstackacademyaaclassbtnbtninversehrefschoolscodefellowscodefellowsappstrongahrefhttpswwwcoursereportcombloglearnatthese9summercodingprogramsrelfollowseeourmostrecentrecommendationsforsummercodingastrongstrongahrefhttpswwwcoursereportcombloglearnatthese9summercodingprogramsrelfollowbootcampsastrongstrongahrefhttpswwwcoursereportcombloglearnatthese9summercodingprogramsrelfollowhereastrongppstrongifyoureacollegestudentanincomingfreshmanorateacherwithasummerbreakyouhavetonsofsummercodingbootcampoptionsaswellasseveralcodeschoolsthatcontinuetheirnormalofferingsinthesummermonthsstrongpahrefbloglearntocodein2016atasummercodingbootcampcontinuereadingrarraliliclasspostdatadeeplinkpathnews5techcitiesyoushouldconsiderforyourcodingbootcampdatadeeplinktargetpost_542idpost_542h2ahrefblog5techcitiesyoushouldconsiderforyourcodingbootcamp5techcitiesyoushouldconsiderforyourcodingbootcampah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan2182016spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolstechelevatortechelevatoraaclassbtnbtninversehrefschoolswyncodewyncodeaaclassbtnbtninversehrefschoolszipcodewilmingtonzipcodewilmingtonappstrongwevepickedfivecitieswhichareupandcominginthetechsceneandhaveagreatrangeofcodingbootcampoptionswhenyouthinkofcodingbootcampsyoumightfirstthinkofcitieslikeahrefhttpswwwcoursereportcomcitiessanfranciscorelfollowsanfranciscoaahrefhttpswwwcoursereportcomcitiesnewyorkcityrelfollownewyorkaahrefhttpswwwcoursereportcomcitieschicagorelfollowchicagoaahrefhttpswwwcoursereportcomcitiesseattlerelfollowseattleaandahrefhttpswwwcoursereportcomcitiesaustinrelfollowaustinabutthosearentyouronlyoptionstherearenowbootcampsinalmost100citiesacrosstheusstrongbrpppahrefblog5techcitiesyoushouldconsiderforyourcodingbootcampcontinuereadingrarraliliclasspostdatadeeplinkpathnewscodingbootcampcostcomparisonfullstackimmersivesdatadeeplinktargetpost_537idpost_537h2ahrefblogcodingbootcampcostcomparisonfullstackimmersivescodingbootcampcostcomparisonfullstackimmersivesah2pclassdetailsspanclassauthorspanclassiconuserspanimogencrispespanspanclassdatespanclassiconcalendarspan10172018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolscodesmithcodesmithaaclassbtnbtninversehrefschoolsvschoolvschoolaaclassbtnbtninversehrefschoolsdevmountaindevmountainaaclassbtnbtninversehrefschoolsgrandcircusgrandcircusaaclassbtnbtninversehrefschoolsredwoodcodeacademyredwoodcodeacademyaaclassbtnbtninversehrefschoolsgracehopperprogramgracehopperprogramaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolsclaimacademyclaimacademyaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolslaunchacademylaunchacademyaaclassbtnbtninversehrefschoolsrefactorurefactoruaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolssoftwareguildsoftwareguildaaclassbtnbtninversehrefschoolsappacademyappacademyaaclassbtnbtninversehrefschoolshackreactorhackreactoraaclassbtnbtninversehrefschoolsrithmschoolrithmschoolaaclassbtnbtninversehrefschoolscodingdojocodingdojoaaclassbtnbtninversehrefschoolsdevpointlabsdevpointlabsaaclassbtnbtninversehrefschoolsmakersquaremakersquareaaclassbtnbtninversehrefschoolsdigitalcraftsdigitalcraftsaaclassbtnbtninversehrefschoolsnewyorkcodedesignacademynewyorkcodedesignacademyaaclassbtnbtninversehrefschoolslearnacademylearnacademyaaclassbtnbtninversehrefschoolsbottegabottegaaaclassbtnbtninversehrefschoolswyncodewyncodeaaclassbtnbtninversehrefschoolshackbrightacademyhackbrightacademyaaclassbtnbtninversehrefschoolscodecraftschoolcodecraftschoolaaclassbtnbtninversehrefschoolsfullstackacademyfullstackacademyaaclassbtnbtninversehrefschoolscodefellowscodefellowsaaclassbtnbtninversehrefschoolsturingturingaaclassbtnbtninversehrefschoolscodingtemplecodingtempleappstronghowmuchdocodingbootcampscostfromstudentslookingforahrefhttpswwwcoursereportcomblogbestfreebootcampoptionsrelfollowfreecodingastrongahrefhttpswwwcoursereportcomblogbestfreebootcampoptionsrelfollowstrongbootcampsstrongastrongtothosewonderingifan18000strongstrongbootcampstrongstrongisworthitweunderstandthatcostisimportanttofuturestrongstrongbootcampersstrongstrongwhileahrefhttpswwwcoursereportcomreports2018codingbootcampmarketsizeresearchrelfollowtarget_blanktheaveragefulltimeprogrammingaahrefhttpswwwcoursereportcomreports2018codingbootcampmarketsizeresearchrelfollowtarget_blankbootcampaahrefhttpswwwcoursereportcomreports2018codingbootcampmarketsizeresearchrelfollowtarget_blankintheuscosts11906astrongstrongahrefhttpswwwcoursereportcomreports2018codingbootcampmarketsizeresearchrelfollowtarget_blankastrongstrongbootcampstrongstrongtuitioncanrangefrom9000to21000andsomecodingbootcampshavedeferredtuitionsohowdoyoudecideahrefhttpswwwcoursereportcomresourcescalculatecodingbootcamproirelfollowwhattobudgetforaherewebreakdownthecostsofcodingstrongstrongbootcampsfromaroundtheusastrongstrongstrongppthisisacostcomparisonoffullstackfrontendandbackendinpersononsiteimmersivebootcampsthatarenineweeksorlongerandmanyofthemalsoincludeextraremotepreworkstudywehavechosencourseswhichwethinkarecomparableincoursecontenttheyallteachhtmlcssandjavascriptplusbackendlanguagesorframeworkssuchasrubyonrailspythonangularandnodejsallschoolslistedherehaveatleastonecampusintheusatofindoutmoreabouteachbootcamporreadreviewsclickonthelinksbelowtoseetheirdetailedcoursereportpagespahrefblogcodingbootcampcostcomparisonfullstackimmersivescontinuereadingrarraliliclasspostdatadeeplinkpathnewscodingbootcampinterviewquestionsironhackdatadeeplinktargetpost_436idpost_436h2ahrefschoolsironhacknewscodingbootcampinterviewquestionsironhackcrackingthecodeschoolinterviewironhackmiamiah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan922015spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltcrackingthecodinginterviewwithironhacksrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files884s1200codingbootcampinterviewironhackpngppstrongironhackisanimmersiveiosandwebdevelopmentbootcampthatstartedinspainandhasnowexpandedtomiamiwithahiringnetworkandahrefhttpswwwcoursereportcomschoolsironhacknewsstudentspotlightmartafondaironhackrelfollowhappyalumniaironhackisagreatfloridabootcampoptionbutwhatexactlydoesittaketogetintoironhackwecaughtupwiththeironhackteamtolearneverythingemyouemneedtoknowabouttheironhackapplicationandinterviewprocessincludinghowlongitwilltaketheircurrentacceptancerateandasneakpeekatthequestionsyoullhearintheinterviewstrongph3strongtheapplicationstrongh3pstronghowlongdoestheironhackapplicationtypicallytakestrongpptheironhackapplicationprocessfallsinto3stagesthewrittenapplicationfirstinterviewandsecondtechnicalinterviewandtakesonaverage1015daystocompleteinentiretyppstrongwhatgoesintothewrittenapplicationdoesironhackrequireavideosubmissionstrongppthewrittenapplicationisachanceforstudentstogiveaquicksummaryoftheirbackgroundandmotivationsforwantingtoattenditstheiropportunitytotellusaboutthemselvesinanutshellandpeaktheadmissioncommitteesinterestppstrongwhattypesofbackgroundshavesuccessfulironhackstudentshaddoeseveryonecomefromatechnicalbackgroundstrongppweareimpressedandinspiredbythediversityofstudentsthatironhackattractswevehadformerflightattendantsworldtravellingyoginisandcsgradsfromivyleaguesallattendironhackwevebeenamazedathowcodingissodemocraticandattractsallsortsofpeopleregardlessofeducationalbackgroundorpedigreethosewhotendtoperformthebestatironhackarethosewhohavecommittedtodoingsonotnecessarilythosewithatechnicalbackgroundppimgaltironhackstudenttypingsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files893s1200ironhackpre132jpgph3strongtheinterviewstrongh3pstrongcanyougiveusasamplequestionfromthefirstinterviewstrongppwhatmotivatesyouonadaytodaybasisandwhatdoyoulovetodoppstrongcanyougiveusasamplequestionfromthetechnicalinterviewstrongppwhathappenswhenyouputafunctioninsidealoopppstrongwhatareafewresourcesthatyousuggestapplicantsusetoreallyacethetechnicalinterviewstrongppwhenanapplicantisinthemidstofourprocessweactuallysendthemmaterialsspecificallytoprepareforthetechnicalinterviewandsetofficehourswithourteachingassistantssotheycangetsomeoneononetimetoaddressspecificquestionsapartfromthatiftheyalreadyhavesomeexperienceprogrammingahrefhttpsautotelicumgithubiosmoothcoffeescriptliteratejsintrohtmlrelfollowtarget_blankhttpsautotelicumgithubiosmoothcoffeescriptliteratejsintrohtmlawerecommendthisresourceforcompletebeginnersjavascriptforcatsahrefhttpjsforcatscomrelfollowtarget_blankhttpjsforcatscomappstronghowdoyouevaluateanapplicantsfuturepotentialwhatqualitiesareyoulookingforstrongppironhacksapplicationprocessrevealsalotofqualitiesinpotentialcandidatesbecauseitisabitlongerthanmostcodingschoolstheadvantageofthisisitallowsustoseehowcandidatesandapplicantsrespondtolearningmaterialinashortamountoftimeandhowdedicatedtheyaretotheirgoalsiftheycantevencompletetheinterviewprocessitsanindicatorthattheymightnothavethepassionordrivetogetthrough8weeksofacodingbootcampwelookforcuriositypassionanddrivedriveisprobablythemostimportantqualitytosucceedatironhackppimgaltstudentsdoingyogairohacksrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files892s1200ironhackpre090jpgppstrongisthereatechnicalcodingchallengeintheironhackapplicationstrongppyesppstronghowlongshouldittakeisthereatimelimitstrongppwegiveourstudentsexactly7daystoprepareforthetechnicalinterviewafterthe1stinterviewandprovidethematerialstheyneedtoprepforitthetechnicalinterviewisledbyoneofourmiamiinstructorsandconsistsofacodingchallengethattheapplicanthas30minutestosolveppstrongcananapplicantcompletethecodingchallengeinanyprogramminglanguagestrongpptheapplicantcancompletethechallengeinwhateverprogramminglanguagetheyfeelmostcomfortableinaslongasthatlanguagecansolveabreadthofproblemsthatmeansthatsomethinglikecssisoutph3stronggettingacceptedstrongh3pstrongwhatisthecurrentacceptancerateatironhackstrongppasofnowourcurrentacceptancerateis20235tobeexactppstrongarestudentsacceptedonarollingbasisstrongppyesspotsfillupquicklysothesoonertheapplicantgetsstartedthebetterppstrongdoesironhackmiamihavealotofinternationalstudentssinceyourrootsareinspaindointernationalstudentsgetstudentvisastouristvisastodotheprogramstrongppyeswehavemorethan25countriesrepresentedinourbootcampsgloballyegthailandpakistangermanyfrancebraziletcthemajorityofourstudentswhotraveltomiamifromabroaduseatouristvisatovisittheusandattendourprogramwelovethemeltingpotofmiamicombinedwithironhacksreputationgloballyitsreallyafunplacetolearnandstudyppimgaltstudentsatroundtablecodingsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files894s1200ironhackpre249jpgppstrongwanttolearnmoreaboutironhackcheckoutahrefhttpwwwironhackcomrelfollowtarget_blanktheirwebsiteastrongppstronghavequestionsabouttheironhackapplicationthatwerentansweredinthisarticleletusknowinthecommentsstrongpliliclasspostdatadeeplinkpathnews9bestcodingbootcampsinthesouthdatadeeplinktargetpost_335idpost_335h2ahrefblog9bestcodingbootcampsinthesouth14bestcodingbootcampsinthesouthah2pclassdetailsspanclassauthorspanclassiconuserspanharryhantelspanspanclassdatespanclassiconcalendarspan462015spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsdevmountaindevmountainaaclassbtnbtninversehrefschoolsgeneralassemblygeneralassemblyaaclassbtnbtninversehrefschoolsnashvillesoftwareschoolnashvillesoftwareschoolaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsaustincodingacademyaustincodingacademyaaclassbtnbtninversehrefschoolscodeupcodeupaaclassbtnbtninversehrefschoolscodecampcharlestoncodecampcharlestonaaclassbtnbtninversehrefschoolscodingdojocodingdojoaaclassbtnbtninversehrefschoolsmakersquaremakersquareaaclassbtnbtninversehrefschoolscoderfoundrycoderfoundryaaclassbtnbtninversehrefschoolswyncodewyncodeaaclassbtnbtninversehrefschoolstechtalentsouthtechtalentsouthaaclassbtnbtninversehrefschoolscodercampscodercampsappemupdatedapril2018emppstrongslideacrosstheroofofthegeneralleewereheadingsouthofthemasondixontocheckoutthebestcodingbootcampsinthesouthernunitedstatestherearesomefantasticcodeschoolsfromthecarolinastogeorgiaandallthewaytotexasandwerecoveringthemalltalkaboutsouthernhospitalitystrongpahrefblog9bestcodingbootcampsinthesouthcontinuereadingrarraliliclasspostdatadeeplinkpathnewsstudentspotlightgorkamaganaironhackdatadeeplinktargetpost_191idpost_191h2ahrefschoolsironhacknewsstudentspotlightgorkamaganaironhackstudentspotlightgorkamaganaironhackah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan1012014spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltgorkaironhackstudentspotlightsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files343s1200gorka20ironhack20student20spotlightpngppstronginthisstudentspotlightwetalktoahrefhttpcoursereportcomschoolsironhackrelfollowtarget_blankironhackagraduategorkamaganaabouthisexperienceatthebootcampbasedinspainreadontolearnabouthisapplicationprocesstheprojecthecreatedduringthecourseandhowironhackhelpedhimnailajobasaniosdeveloperatrushmorefmstrongppppstrongwhatwereyoudoingbeforeyoustartedatironhackstrongppiwasafreelancerforayearfocusedonwebfrontenddevelopmentiworkedatanagencybeforealsoforayearintermsofeducationididntstudyanythingrelatedtocomputersciencebeforeironhackppppstrongdidyouhaveatechnicalbackgroundbeforeyouappliedstrongppivebeendevelopingsinceiwas14andallthatiknowisselftaughtandnotinanyconcreteplatformbuthavingprojectsofmyownwheretheneedoflearningmoreeverytimedrovemetogetthemdoneppppstrongwhydidyouchooseironhackdidyouapplytoanyotherbootcampsstrongppichoseironhackbasicallybecauseittookverygoodadvantageofgoogleadwordssoicouldnotavoidreachingitswebsiteandgettinginterestedonittheyofferedmeameritscholarshipsoifinallymadethedecisionihaveneverappliedtoanythinglikeironhackppppstrongwhatwastheapplicationprocesslikestrongpptheapplicationprocesswasgoodtheinterviewsweremoreofculturefitandtheywerenotmuchseparatedintimewitheachothersoittooklessthanamonthtohaveitallapprovedppppstrongwhatwasyourcohortlikedidyoufinddiversityinagegenderetcstrongppitwasquitegoodformetherewascleardiversityinagebutnotingenderatallaswewerejustmenaboutthelevelitwasnotasfairisitshouldvebeenbutingeneraltheclasswasabletofollowthecoursesprocessppppstrongwhowereyourinstructorswhatwastheteachingstylelikeandhowdiditworkwithyourlearningstylestrongppthereweremanyinstructorssotryingtogivefeedbackaboutallofthemwouldbeendlesstheteachingstylewasagileaskingforfeedbackcontinuouslyandadaptingthecoursetoitsoitmadetheexperiencereallyenrichingiveneverhadateachingstylelikethisbeforeanditreallyfitwithmeppppstrongdidyoueverexperienceburnouthowdidyoupushthroughitstrongppididnotreallyexperienceburnoutbuttherewasaweekwhenwelearnedaboutusingcoredatathatigotreallytiredbecauseitwasboringtomeitwastheuglysideofiosdevelopmentbuttheprofessorwassogoodthatigotitallandlearnedalotthose5daysppppstrongcanyoutellusaboutatimewhenyouwerechallengedintheclasshowdidyousucceedstrongbrformethechallengewasnotinaconcretesituationbutinfollowingthecoursesspeeditwasthefirsttimeformetoneedtolearnsofastandsomuchppppstrongtellusaboutaprojectyoureproudofthatyoumadeduringironhackstrongppimcurrentlyworkingonanappwhichistheoneistartedatironhackasthefinalprojectbutididnthavetimeenoughtofinishitsoimstilldevelopingitincollaborationwithmypartnerwhoisagraphicdesignerandtheonewhodesignedtheappiwillprovidelinksassoonasitisreleaseditiscalledsnapreminderstaytunedppppstrongwhatareyouuptotodaywhereareyouworkingandwhatdoesyourjobentailstrongppimworkingatrushmorefmasaleadiosdeveloperbuildingthenewapplicationwellbereleasingsoonimcurrentlytheonlyiosdeveloperbutillleadtheteamwhenitgrowsigotthisjobbecausetheycontactedmedirectlyppppstrongdidyoufeellikeironhackpreparedyoutogetajobintherealworldstrongppittotallypreparedmeforarealworldjobitwasworththemoneyformeidontregretatallppppstronghaveyoucontinuedyoureducationafteryougraduatedstrongppnotformallybutikeeplearningeverydayandtryingtoenrichmyselfppppstrongwanttolearnmoreaboutironhackcheckouttheirahrefhttpswwwcoursereportcomschoolsironhackrelfollowschoolpageaoncoursereportortheirahrefhttpwwwironhackcomenrelfollowtarget_blankwebsitehereastrongpliliclasspostdatadeeplinkpathnewsexclusivecoursereportbootcampscholarshipsdatadeeplinktargetpost_148idpost_148h2ahrefblogexclusivecoursereportbootcampscholarshipsexclusivecoursereportbootcampscholarshipsah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan222018spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsmakersacademymakersacademyaaclassbtnbtninversehrefschoolsdevmountaindevmountainaaclassbtnbtninversehrefschoolsrutgersbootcampsrutgersbootcampsaaclassbtnbtninversehrefschoolsflatironschoolflatironschoolaaclassbtnbtninversehrefschoolsstarterleaguestarterleagueaaclassbtnbtninversehrefschoolsblocblocaaclassbtnbtninversehrefschoolsironhackironhackaaclassbtnbtninversehrefschoolsmetismetisaaclassbtnbtninversehrefschoolsdigitalprofessionalinstitutedigitalprofessionalinstituteaaclassbtnbtninversehrefschools10xorgil10xorgilaaclassbtnbtninversehrefschoolsvikingcodeschoolvikingcodeschoolaaclassbtnbtninversehrefschoolsvikingcodeschoolvikingcodeschoolaaclassbtnbtninversehrefschoolsguildofsoftwarearchitectsguildofsoftwarearchitectsaaclassbtnbtninversehrefschoolsdevpointlabsdevpointlabsaaclassbtnbtninversehrefschoolsthinkfulthinkfulaaclassbtnbtninversehrefschoolslearningfuzelearningfuzeaaclassbtnbtninversehrefschoolsdigitalcraftsdigitalcraftsaaclassbtnbtninversehrefschoolsnycdatascienceacademynycdatascienceacademyaaclassbtnbtninversehrefschoolsnewyorkcodedesignacademynewyorkcodedesignacademyaaclassbtnbtninversehrefschoolsorigincodeacademyorigincodeacademyaaclassbtnbtninversehrefschoolsbyteacademybyteacademyaaclassbtnbtninversehrefschoolsdevleaguedevleagueaaclassbtnbtninversehrefschoolssabiosabioaaclassbtnbtninversehrefschoolscodefellowscodefellowsaaclassbtnbtninversehrefschoolsturntotechturntotechaaclassbtnbtninversehrefschoolsdevcodecampdevcodecampaaclassbtnbtninversehrefschoolslighthouselabslighthouselabsaaclassbtnbtninversehrefschoolscodingtemplecodingtempleappstronglookingforcodingbootcampexclusivescholarshipsdiscountsandpromocodescoursereporthasexclusivediscountstothetopprogrammingbootcampsstrongppstrongquestionsemailahrefmailtoscholarshipscoursereportcomrelfollowtarget_blankscholarshipscoursereportcomastrongpahrefblogexclusivecoursereportbootcampscholarshipscontinuereadingrarraliliclasspostdatadeeplinkpathnewsstudentspotlightjaimemunozironhackdatadeeplinktargetpost_129idpost_129h2ahrefschoolsironhacknewsstudentspotlightjaimemunozironhackstudentspotlightjaimemunozironhackah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan7182014spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltjaimeironhackstudentspotlightsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files248s1200jaime20ironhack20student20spotlightpngppstrongafterworkingatanitcompanymanagingprogrammersjaimemunozdecidedthathewantedtolearncodingskillssoheenrolledinahrefhttpcoursereportcomschoolsironhackrelfollowtarget_blankironhackaacodingbootcampinmadridwithlocationsinmiamiandbarcelonajaimetellsuswhyhechoseironhackthetechnicalemandemsoftskillshelearnedinhiscourseandthementorswhohavehelpedhimalongthewaystrongppppstrongwhatwereyouuptobeforedecidingtoenrollinironhackdidyouhaveatechnicalbackgroundbeforeapplyingstrongppbeforebeingaprogrammeriwasprojectmanagerinabigitcompanyihiredprogrammersandmanagedtheirworkaftersometimeibegantobemoreandmoreinterestedintheworkthoseprogrammersweredoingsomuchthatidecidedtoquitmyjobandlearntocodeididamastersdegreeof400hoursinciceaitschoolinmadridwiththegreatlucktohaveanamazingteachercalledahrefhttptwittercomdevtasrelfollowtarget_blankdevtasinghailearnedmuchmorethanjustcodingfromhimheshowedmehowtofacetheproblemfindthebettersolutionandhowtosucceedonititwasapersonalrevelationandsincethismomentiknewthatiwantedtobeaprogrammerppafterthedegreeistartedtoworkinadigitaladvertisingcompanycalledthefactweworkedfortraditionalofflineadvertisingcompaniestheyneededdigitaldevelopmentforhisclientsiimprovedmyphpandjavascriptskillsthereduringalmost2yearsbutihadthefeelingiwasntimprovingfasterenoughitriedtolookforsomethingnewtostimulatemyselfandbegantoteachcodinginaitacademyfrommadridcalledtrazosbutineededachangetokeeppushingmyskillsthatswhyiturnedtoironhackppppstrongwasironhacktheonlybootcampyouappliedtowhataboutironhackconvincedyoutogotherethelanguagestheytaughtinstructorspriceetcstrongppironhackwasmyfirstandlastchoicehonestlyididntknewmanybootcampsbutthemainreasonweretheinstructorsandthegreatprofessionalstheytalkedverygoodaboutthecoursemanyofthecodersiadmirelikeahrefhttpstwittercomkeyvanakbaryrelfollowtarget_blankkeyvanakbaryaorahrefhttptwittercomcarlosblerelfollowtarget_blankcarlosblawereinvolvedandinterestedonthebootcampthiswasenoughtomakethechoiceppppstrongcanyoutalkaboutatimewhenyougotstuckintheclassandhowyoupushedthroughstrongppfortunatelyididnotgotstuckalotinclassbutwhenididnotunderstoodsomethingiaskedformoreexplanationsandireceiveditimmediatelyandsolvedtheproblemppppstrongwhatwereyourclassmatesandinstructorslikestrongpptheywereallamazingiguessiwasveryveryveryluckyonthatpointbecauseallmyclassmateswereamazingnotonlybecausetheywerefriendlytheyreallywerebutbecausetheywereskilledandinterestedtopushlikeiwasbritsamazingwhenyousharesuchexperiencewithpeopletheythinkandlikethesamethinkslikeyoubecauseitpushedthelevelveryhighbrtheinstructorswerealsogreatveryfriendlyandopentodiscussortrywhateverweaskedforithinktheycantimaginehowthankfuliambutnotonlywiththeteachersorstudentsalsowithironhacksstafftheydideverythingpossibletomakeusreceivewhatweneededppppstrongtellusaboutyourfinalprojectwhatdoesitdowhattechnologiesdidyouusehowlongdidittakeetcstrongppformyfinalprojectiusedrubyonrailspostgresqlhtmlcssandjavascripttodevelopaonlinemedicalappointmentsapplicationittookaweektohavesomethingworkingandabletobeshowninthedemodayppppstrongwhatareyouworkingonnowdoyouhaveajobasadeveloperwhatdoesitentailstrongppimworkingnowinmarketgoocomawebsitemarketingandseoonlinedoityourselftoolasfullstackdeveloperiusephpmysqlhtml5lessphinxphpactiverecordjavascriptandothertechnologieseverydaybutthekeyisthatimnotonlyadeveloperthereimalsoinvolvedintheproductmanagementcollaboratingeverydayindecisionsabouttheproducthislookandfeelhisbehaviorandthebusinessitselfppppstrongwouldyouhavebeenabletolearnwhatyounowknowwithoutironhackstrongppmaybeicouldbeabletolearnthetechnicalpartbutthereisnowaytolearnitin2monthswithoutabootcampitsjusttoomuchinformationtohandleitalonebesidesthereismuchmorethanthetechnicalknowledgethatyoureceiveinironhackyoualsogetalotofcontactsfriendsexperienceknowhowandthemostimportantthingaperspectiveofwhatyoudontknowyetppppstrongwanttolearnmoreaboutironhackcheckouttheirahrefhttpswwwcoursereportcomschoolsironhackrelfollowschoolpageaoncoursereportorahrefhttpwwwironhackcomenrelfollowtarget_blanktheirwebsitehereawanttocatchupwithjaimereadahrefhttpjaimemmpcomrelfollowtarget_blankhisblogaorfollowhimonahrefhttptwittercomjaime_mmpe2808brelfollowtarget_blanktwitterastrongbrpliliclasspostdatadeeplinkpathnewsstudentspotlightmartafondaironhackdatadeeplinktargetpost_127idpost_127h2ahrefschoolsironhacknewsstudentspotlightmartafondaironhackstudentspotlightmartafondaironhackah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan7162014spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltmartaironhackstudentspotlightsrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files244s1200marta20ironhack20student20spotlightpngppstrongmartafondaneededtoimproveherwebdevelopmentskillsinordertocompeteforjobsatherdreamcompaniessosheenrolledinahrefhttpcoursereportcomschoolsironhackrelfollowtarget_blankironhackaan8weekintensiveprogrammingcoursefordevelopersandentrepreneurswetalktomartaabouthowshesucceededintheclassandgotajobasafrontendengineeratfloqqcomstrongppstrongwhatwereyouuptobeforedecidingtoenrollinironhackdidyouhaveatechnicalbackgroundbeforeapplyingstrongppwhenidecidedtoenrollinironhackihadjustfinishedmydegreesinsoftwareengineeringandbusinessadministrationwhenifinishedmystudiesirealizedthatmybackgroundinmobileandwebdevelopmentwasnotenoughsoiwaslookingforanopportunityinacompanythatwouldbetonmebrimaverymotivatedpersonandinfactiinterviewedwithcompanieslikegoogleandibmbutididnothaveenoughexperienceitwasaroundthattimethatifoundironhackbootcampandidecidedtotryitppihadtechnicalbackgroundasasoftwareengineerbutmostofmyexperienceprogrammingwasbasedonlanguagessuchcjavaorsqlineededtoimprovemyskillsinordertobecomeabetterdeveloperppppstrongwasironhacktheonlybootcampyouappliedtowhataboutironhackconvincedyoutogotherestrongppthiswastheonlybootcampiappliedtoandthemainreasonwasthattheywerelookingforpeoplelikememotivatedpeoplewhohadthedrivetobecomeagreatprofessionalandwereonlylackingtheopportunitytoshowtheirpotentialtheytrainpeopleinmodernlanguageslikerubybrthiswasnotonlyanawesomeopportunitytolearnrailsbutalsotobeinanenvironmentthatisdifficulttofindinotherplacesiwaslearningfromtheverybestprofessionalsandfromanincrediblytalentedgroupofstudentsppppstrongcanyoutalkaboutatimewhenyougotstuckintheclassandhowyoupushedthroughstrongppironhackisanintensivebootcampyoumustbesurethatyouareabletopushthroughanyproblemyouhaveandmyclassmateswereanimportantpointtoleanonononeofmyveryfirstdaysatironhackiwashavingtroubleunderstandingoneoftheconceptsthatwewerecoveringanditwasthroughteamworkwithmyotherclassmatesthatwewereallabletounderstanditppmyclassmateswereasmotivatedasmesoitwaseasytofindpeopletocontinueprogrammingonweekendsoraftertheclassitwasgreatformeppppstrongwhatwereyourclassmatesandinstructorslikestrongppinthisbootcampiwassurroundedbytheverybestprofessionalsfromalloverthecountrysoicanonlysaythatitwasapleasuretoconverttheirknowledgeintominebeingabletosharethisexperiencewithmyclassmateswasawesomeificouldhavetheopportunitytodoanotherironhackbootcampitwouldbeamazingtheyarethefastesttwomonthsiveeverlivedppppstrongtellusaboutyourfinalprojectwhatdoesitdowhattechnologiesdidyouusehowlongdidittakeetcstrongppwellmyfinalprojectwasaboutatravelapplicationwiththiswebapplicationyouwereabletosaveorganizeandshareallyourtripinformationthisprojectwasdevelopedintwoweeksandinordertoachieveallthefeaturesthatiwantedtoincludeonitiusedrailsasiwantedtodemonstrateallthethingsthatihadlearnedinironhackidecidedtoincluderesponsivewebdesignusingcss3andjavascriptjqueryandhtml5functionalitieslikegeolocalizationorwebstoragetoimprovetheuserexperienceppattheendofthosetwoweeksihadahugefrontendprojectwhichwasmorethanideverexpectedthankstomyhardworkandeffortsinthisprojectiwasoneofthefinalistsinthehackshowtheironhackfinalshowwherethefinalistscanshowwhattheyhavemadeintwoweeksandicouldshowmyprojecttomorethanahundredpeopleppppstrongwhatareyouworkingonnowdoyouhaveajobasadeveloperwhatdoesitentailstrongppthankstothehackshowtwodaysaftertheendofironhackiwasworkingatfloqqcomthebiggestonlineeducationmarketplaceinspanishallovertheworldnowadaysimfrontenddeveloperandproductmanageratfloqqcomandimworkingdoingwhatilovetodobrironhackgavemetheopportunitythatothercompaniesdidntgivemeihadnoexperienceandnobodywantedtohiremeandnowimstilllearningandimprovingmyskillsinthebestplaceicouldeverfindppppstrongwouldyouhavebeenabletolearnwhatyounowknowwithoutironhackstrongppitwouldbeimpossibletolearnwhativelearnedinironhackintwomonthsonmyownbutitsnotonlyaboutthedevelopmentskillsthativeimprovedinthosetwomonthsitsalsoaboutthepersonalskillsthativebeenabletodevelopandtheopportunitytomeetthebestitprofessionalsfromallaroundspainironhackwasjusta180experiencethatchangedmywholelifeandthatallowedmetodowhatibelieveiwasborntodoppppstrongwanttolearnmoreaboutironhackcheckouttheirahrefhttpcoursereportcomschoolsironhackrelfollowtarget_blankschoolpageaoncoursereportortheirahrefhttpwwwironhackcomenrelfollowtarget_blankwebsitehereastrongpliliclasspostdatadeeplinkpathnewsfounderspotlightarielquinonesofironhackdatadeeplinktargetpost_64idpost_64h2ahrefschoolsironhacknewsfounderspotlightarielquinonesofironhackfounderspotlightarielquinonesofironhackah2pclassdetailsspanclassauthorspanclassiconuserspanlizegglestonspanspanclassdatespanclassiconcalendarspan4212014spanppclassrelatedschoolsaclassbtnbtninversehrefschoolsironhackironhackappimgaltfounderspotlightarielquinonesironhacksrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files148s1200founder20spotlight20ironhackpngppstrongahrefhttpcoursereportcomschoolsironhackrelfollowtarget_blankironhackaisan8weekcodingbootcampwithcampusesinmadridbarcelonaandsoonmiamiwetalkedwithcofounderarielquinonesabouttheirrailscurriculumhowtheyattractamericanstudentstostudyabroadinspainandwhatsetsironhackapartstrongppppstrongtellusabouthowironhackstartedstrongppicomefromafinancebackgroundimoriginallyfrompuertoricobutspent5yearsinnewyorkmycofoundergonzalocomesfromtheconstructionindustryhesacivilengineerandhebuiltallsortsofmajorinfrastructureprojectsineuropehavingsaidthaticomefromahouseholdofeducatorsbothofmyparentswereteacherswheniwasgrowingupandmyfatheractuallystartedaprivateuniversityinpuertorico20yearsagothatstartedwith15studentsandnowtheyhave6campusesandover10000studentsenrolledppithinkeducationwasalwaysapartofmydnaandiwantedtodosomethingaftercompletingmyeducationimetgonzaloduringourmbawewerebothatwhartonhealsowantedtodosomethingineducationineuropeandpossiblyinedtechaswellduringthose2yearsofthembawewereiteratingideasconstantlyandithinkhadthesameissuethatmostnontechnicalfoundershaveintheuswhichishavingbrilliantideasbutonceyougettothepointwhereyouneedtoexecutethemandproduceanmvpyourenotabletodoititsincrediblychallengingtofindacofounderanditsincrediblychallengingfromacostandalsofromanoperationalperspectivetooutsourcethedevelopmentppgonzaloanditooka2daycourseatwhartonwheretheytaughtustodoverybasicrailseventhoughwedidntacquiretheskillsnecessarytobuildourmvpwewereexcitedaboutthepossibilityofteachingbothtechnicalandnontechnicalpeopletheseskillsthroughahighlyintensiveandcompressedtimeperiodafterthatexperiencewestartedlookingatthebootcampmodelatthatpointtheearlieroneswerestartingtogetalittlebitoftractionwethoughtitwouldbeinterestingtodothissomewhereabroadiddonealotofbusinessinlatinamericasoihadsometiestotheregiongonzalomypartnerisspanishsoourfirstbetwasspainppppstrongwouldyousaythatironhackismoregearedtowardsmakersortechnicalcofoundersasopposedtopeoplewhowanttogetajobatanestablishedcompanyasajuniordeveloperstrongppwevehadbothprofileswevebeenselectiveinthepeopleweadmitfromatechnicalbackgroundwevebeenhesitantsofartosaygofromtotalnewbietoprofessionalwebdeveloperinxweeksourapproachisappealingtofolksthataremaybealreadyinclosetouchwithtechnologyandcodedevelopersthatwanttoprofessionalizetheirskillsandtakethemtothenextlevelorpeoplethatareverysmartanalyticalandarelookingforahardcoreexperiencethatwillallowthemtolearnfromthesetypesofpeopleppppstrongwhenwasthefirstcohortstrongppthefirstcohortwasinoctoberof2013eachcourseis8weekslongppppstrongwhatwasthebiggestlessonthatyoulearnedafterrunningyourfirstcohortstrongpponethingwelearnedisthatthe8weeksjustflybywhenyouplanforpeopletobecoding10to12hoursadaythatseemslikealotbuteverydaygoesbysoquicklypptheotherthingwelearnedwasthatnomatterhowmuchyoufiltertomakesureyoudonthavedisparatelevelspriortoarrivingpeoplejustlearndifferentlyatdifferentvelocitieswithdifferentlearningstylessowithinthestructureof8weeksweneededdifferentexercisesandflexibilitytogivepeoplethechancetolearnrightattheirownpacewhileensuringthateveryoneslearningfundamentalsppppstrongdoyouhavestudentsdopreworkbeforetheygettoironhackstrongppyeahtheydo100hoursofpreworkppppstrongwhatcitiesareyouliveinnowstrongppwereliveinmadridandbarcelonaandwerelaunchinginmiamiinseptemberppppstrongcouldyoutellusaboutthetechscenesinthelocationsthatyoureliveinmadridandbarcelonastrongpppeoplelovetocometospainandstudyabroaditsacountrythathasalottoofferfromthelifestyleperspectiveyouknowyouhavegreatfoodthepartiesstudyabroadinspainhasbeenanintegralpartofspanishsocietyformanyyearswithinthetraditionalhighereducationarenainourcaseweretryingtopositionspaininasimilarfashioninthefirstcohortswetrainedalotofpeoplefromspainbutgoingforwardwewanttomakeitattractiveforforeignerstocomeoverandenjoyeverythingthatspainhastoofferandatthesametimelearnhowtocodeppbarcelonaisveryexcitingbecauseyouhavepeoplefromallovertheworldthatarelaunchingstartupsthereobviouslywithintheeutheresalotofmobilityifyoureaeuropeanunioncitizenyoucangoanywherewithoutanysortofvisarequirementsandithinkalotofnortherneuropeansandpeoplefromgermanyforinstancelovebarcelonaforweatherreasonsthegreatbeachesthelifestylesoalotofthemarecomingovertobarcelonatolaunchtheirownventureshereinbarcelonathetechecosystemisthrivinganditsveryinternationaltheresalotofmobilestartupsthataregettingtractionoverthereppmadridisstillverymuchacosmopolitancityandwereseeingalotoftractioninthestartupspaceitsobviouslyanemergingecosystemnowherenearsiliconvalleybutwereseeingearlystagecompaniesgeteitheracquiredorgoforsubstantialroundsoffinancinghereinmadridwhichisultimatelyadriverforourtypeofbusinesscompaniesneedfundingtoemployengineersandwereseeingthatcapitalflowtoearlystageprojectsppppstrongdoyougetinterestfrompeopleintheusstrongppyesrightnowweregettingalotofinterestfrompeopleallovertheworldincludingtheusiinterviewedafewcandidatesfromthenortheastwehaveanotherstudentfromcaliforniawhosenrollinginourjunecourseppppstrongisitpossibleforsomeonefromtheustocompleteironhackandthenworkinspainorintheeustrongppyesitsdefinitelypossibleitsnotaschallengingassomeonefromeuropetogototheusforsuretheresstillcoststhattheemployerhastoincurbutithasnowherenearthecostsandalltheredtapethatyouhavetodealwithintheusppppstronghasironhackraisedanymoneystrongppnorightnowwerebootstrappedandwewanttokeepitthatwayaslongaspossibleppppstrongsotelluswhatprogramminglanguagesstudentsaremasteringatironhacktellusabouttheteachingstylestrongppwehavetwocoursesthatareliverightnowwebandmobileppthewebcourseisan8weekcourseidsayonaveragestudentsarewithusinouroffices1012hoursadaywecoverhtmlcssandjavascriptonthefrontendandthenonthebackweworkwithrubyonrailsandteachalittlebitofsinatraaswellthefirst6weekswereteachingthosecoretechnologiesandthelast2weeksstudentsareworkingontheirownprojectfromscratchtheculminationoftheprogramisademodaywheretheypresenttheirprojectstothecommunitydevelopersstartupcofoundersthattypeofaudienceppidsay90ofourcontentispracticalwerebigbelieversintheflippedclassroommodelsowewanttomakesurethatwereducetheamountoftheorytimetotheextentpossiblewegetthemalltheresourcesvideosandexercisestocompleteathomepriortoarrivingherewhiletheyreherewegivethemhomeworkandassignmentsfortheweekendsowecanreducethattheorytimeppthetechnologydemandsinspainareveryfragmenteditsnotlikesanfranciscowhereyoucanproduceagazillionrubyonrailsgradseveryyearandtheyllbehiredbyrailsstartupsherewereseeingsomedemandforrailsstartupsbutalsopythonphpetcppppstrongdoyouexpectthataftercompletingyourcourseagraduatewouldbeabletolearnpythonorphpontheirownstrongppahundredpercentandwereseeingthateventhoughlovethetechnologiesweworkwithwerenotobsessedwiththemeithertoustheyreaninstrumenttoteachgooddevelopmentpracticesithinkonethingthatdifferentiatesusfrombootcampsisourfocusandobsessionwithgoodcodingpracticeswereobsessedwithtestingcleancodeandgooddesignpatternswevedoneourjobifthestudentgetagoodbackgroundintechnologybutmoreimportantlytakeawaythosegoodcodingpracticesthattheyapplytowhateverlanguageorframeworktheyuseppppstrongisthemobileclassstructuredthesamewaystrongppsameformatexactsamestructureslightlyhigherrequirementstobeacceptedinordertobeacceptedintothemobilecourseyoualreadyhavetoprogramwithanotherobjectorientedlanguageourfirstcourseisfocusedoniosdevelopmentppppstrongdoyouthinkyoulleverdoanandroidcoursestrongppwellprobablydoandroidinthenearfutureppppstronghowmanystudentsdoyouhaveineachcohortstrongpprightnowwevecappedat20wecanprobablygoabitmorethanthatbutwedontwanttodomorethanthatppppstronghowmanyinstructorsdoyouhaveperclassstrongppwealwaysliketohavearatioofatleast6studentsperteachersowhenwehave15studentswehaveonemainprofessorandtwoteachingassistantsourviewisthatifweregoingtoteachyouonetechnologywewanttomakesurethatthepersonthatisinstructingyouisthebestmostcapablepersonandishighlyspecializedinthatlanguageppppstronghowhaveyoufoundinstructorsstrongppwewenttothebestcompanieshereinspainandotherpartsofeuropeandbasicallyfoundthebestpeopletheretheyworkparttimeforusitsverydifferenttohavesomeonewhosfulltimebootcampprofessorversussomeonewhoisadeveloperandisteachingatabootcampfor2weeksppandalsofromarecruitingperspectivealotofourstudentshavebeenhiredbytheirteachersalsoourstudentshaveanetworkthatgoesbeyondtheirpeersandtheironhackstafftheyhaveanetworkthatconnectstoallthesecompaniesthattheseprofessorsarecomingfromppppstrongyousaidthatpotentialstudentsshouldhavesomevestedinterestinprogrammingandshouldhavesomebackgroundandbeabletoprovethattheycanreallyhandlethematerialwhatstheapplicationprocessstrongppwehavea3stepapplicationprocessthefirstpartisawrittenformthatwescreenandthenwedotwo30minuteskypeinterviewsthefirst30minuteskypeinterviewistogetasenseofwhoyouarewhyyouwanttodothisandgetasenseofisyoufitwithinourcultureandifyouhavethatintrinsicmotivationtomakethemostoutofthe400hoursthatyouhavehereppwesaylistenyouregoingtobecodingmondaythroughfriday10hoursadayandthenyouregoingtohaveworkeverydayonsaturdaysundaywhenitellthemthatwewantsomeonewhobeamsenergyandpositivityiftheymakeitthroughthatinterviewwehaveasecondroundwhichisbasicallytoassesstechnicalskillsweveactuallyacceptedabunchofpeoplethathaveneverprogrammedbeforebutwewanttomakesurethatyouhavethemotivationandtheanalyticalskillsettobeabletocatchuppriortoarrivingtoourcampppinsomecaseswehavepeoplethatwethinkareverysmartandincrediblymotivatedbuthavenevercodedintheirliveshaveneverevenworkedwithhtmlweadmitthemsubjecttoanothervaluationpostthatsecondinterviewsowellgetthemtocomplete60hoursofpreworkandthenseewheretheyareppppstronghowdoesironhackprepareyourgraduatestofindjobsstrongppthedemodayisagreatwaytoshowcaseourtalenttoouremployersandyouhaveallsortsofemployerstherefromthefoundingstagewheretheyhaventraisedanymoneyorarestillpreproducttotechemployerswhohavetechnicalteamsandmorethan3040employeesppontopofthecorecurriculumwehavespeakerslikeemployerscomeinduringthe8weekstopresenttheirproductsandalsoitservesasanopportunityforthemtogetintouchwiththeirstudentsandidentifypotentialhiringleadsppwealsobringinleadinghrpeoplefromsomeofourtoptechemployersheretoofferworkshopsonhowtosetupyourcvhowtooptimizeyourlinkedinprofileseoandallthesethingsandwecoachthemonhowtoconductaninterviewrightnowwevehadtheluxuryofbeingsmallsowereallveryinvolvedintheprocessppppstrongarethosecompaniespayingafeetogetintothedemodayoraretheypayingarecruitingfeeoncetheyvehiredsomeonestrongpprightnowwerenotchargingemployerswerefocusedonplacing100ofourgraduatesandgivingaccesstogreatcompanieseventhosethatwouldntbeinterestedinpayingarecruitingfeeppppstronghaveyoubeensuccessfulinplacingyourgraduatesstrongppwerestartingtoplaceasecondcohortbutinourfirstcohortweplacednearly100percentofourgraduatesithinkinthefirstcohortweplaced60ofthepeople3weekafterthefirstcourseandthentherestoverthenext2monthsppppstrongistheaccreditationbuzzthatshappeningincaliforniaanywhereonyourradardoyougetanypressurefromthegovernmentinspainorareyouthinkingaboutgoingthroughtheaccreditationprocesswhenyouexpandtomiamistrongppweredefinitelygoingtopayattentiontothisinmiamiwereallforitifithelpsthestudentaslongasitdoesntinterferewiththemodelanddoesntlimittheabilityoftheseinstitutionstooffereducationthatsagileandthatcanadapttothetimesandthetechnologiesppppstrongareyouplanningonexpandingbeyondmiamianytimesoonstrongppithinkforthenextyearorevenbeyondthatweregoingtofocusonmiamiandspainhoweverweregoingtousemiamiandspainashubsforotherregionsweregettingalotofinterestfromlatinamericanstudentstocometospainsoforthosewhowouldrathercometomiamibecauseitscloserwecanofferthataswellppppstrongtofindoutmoreaboutironhackcheckouttheirahrefhttpcoursereportcomschoolsironhackrelfollowtarget_blankschoolpageaoncoursereportorahrefhttpwwwironhackcomenrelfollowtarget_blanktheirwebsiteastrongpliulsectiondivdivdivdivdivdivdivclasscolmd4idsidebardivclasshiddenxshiddensmidschoolheaderahrefschoolsironhackdivclassvanityimageimgaltironhacklogotitleironhacklogosrchttpscourse_report_productions3amazonawscomrichrich_filesrich_files4017s200logoironhackbluepngdivadivclassaltheaderh1ironhackh1pclassdetailsspanclasslocationspanclassiconlocationspanamsterdambarcelonaberlinmadridmexicocitymiamiparissaopaulospanpdivdivdivdataformcontactdataschoolironhackidcontactbuttonclassbuttonbtnspanimgsrchttpss3amazonawscomcourse_report_productionmisc_imgsmailsvgtitlecontactschoolspancontactalexwilliamsfromironhackbuttondivdivclasspanelgroupidaccordiondivclasspanelpanelsidepaneldefaultidschooldetailsdivclasspanelheadingvisiblexsdatadeeplinktargetmoreinfodatatargetschoolinfocollapsedatatogglecollapseidschoolinfocollapseheadingh4classpaneltitleschoolinfoh4divh4classhiddenxstextcenterschoolinfoh4divclasspanelcollapsecollapseinidschoolinfocollapsedivclasspanelbodypaneldivclassflexfavoritetextcenterbuttonclassbtnbtninversefavlogindatarequestid84dataschoolid84savenbspspanclassglyphiconglyphiconheartemptyspanbuttondivulclassschoolinfoliclassurltextcenterdesktoponlyspanclassiconearthspanaitempropurltarget_blankhrefhttpwwwironhackcomenutm_sourcecoursereportamputm_mediumschoolpageironhackwebsitealiliclassemailtextcenterdesktoponlyspanclassiconmailspanaitempropemailhrefmailtohiironhackcomhiironhackcomaliliclassschooltrackstextleftspanclassiconbookspanahreftracksfrontenddeveloperbootcampsfrontendwebdevelopmentabrahreftrackswebdevelopmentcoursesfullstackwebdevelopmentabrahreftracksuxuidesignbootcampsuxdesignabrliliclasslocationtextleftspanclassiconlocationspanahrefcitiesamsterdamamsterdamabrahrefcitiesbarcelonabarcelonaabrahrefcitiesberlinberlinabrahrefcitiesmadridmadridabrahrefcitiesmexicocitymexicocityabrahrefcitiesmiamicodingbootcampsmiamiabrahrefcitiesparisparisabrahrefcitiessaopaulosaopauloabrliululliclassurltextcenteraclassnodecorationhrefhttpswwwfacebookcomtheironhackutm_sourcecoursereportamputm_mediumschoolpagespanclassiconfacebook2largeiconspanaaclassnodecorationhrefhttpstwittercomironhackutm_sourcecoursereportamputm_mediumschoolpagespanclassicontwitterlargeiconspanaaclassnodecorationhrefhttpswwwlinkedincomcompanyironhackutm_sourcecoursereportamputm_mediumschoolpagespanclassiconlinkedinlargeiconspanaaclassnodecorationhrefhttpsgithubcomtheironhackutm_sourcecoursereportamputm_mediumschoolpagespanclassicongithublargeiconspanaaclassnodecorationhrefhttpswwwquoracomtopicironhackutm_sourcecoursereportamputm_mediumschoolpagespanclassiconquoralargeiconspanaliuldivdivdivdivclasspanelpanelsidepaneldefaultidmoreinfodivclasspanelheadingvisiblexsdatadeeplinktargetmoreinfodatatargetmoreinfocollapsedatatogglecollapseidmoreinfocollapseheadingh4classpaneltitlemoreinformationh4divh4classhiddenxstextcentermoreinformationh4divclasspanelcollapsecollapseinidmoreinfocollapsedivclasspanelbodypanelh5spanclassglyphiconglyphiconremovecircleredspannbspguaranteesjobh5h5spanclassglyphiconglyphiconremovecircleredspannbspacceptsgibillh5h5spanclassglyphiconglyphiconokcirclegreenspannbspjobassistanceh5h5licensingh5plicensedbythefloridadeptofeducationph5spanclassglyphiconglyphiconremovecircleredspannbsphousingh5h5spanclassglyphiconglyphiconokcirclegreenspanahrefenterpriseofferscorporatetrainingah5divdivclasspanelpanelsideidcoursereportdivclasspanelheadingahrefbestcodingbootcampsdivclassbestbootcampcontainerimgclasssrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetsbest_bootcamp_course_report_white4a07db772ccb9aee4fa0f3ad6a6b9a23pngalthttpscoursereportproductionherokuappcomglobalsslfastlynetassetsbest_bootcamp_course_report_white4a07db772ccb9aee4fa0f3ad6a6b9a23pnglogoimgclasssrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetsbest_bootcamp_badge_course_report_green_20187fa206d8283713de4d0c00391f0109d7pngalthttpscoursereportproductionherokuappcomglobalsslfastlynetassetsbest_bootcamp_badge_course_report_green_20187fa206d8283713de4d0c00391f0109d7pnglogodivbrdivclassbannercontainerimgclassbannersrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetsestablished_school_badgeebe0a3f352bb36a13f02710919cda647pngalthttpscoursereportproductionherokuappcomglobalsslfastlynetassetsestablished_school_badgeebe0a3f352bb36a13f02710919cda647pnglogoimgclassbannersrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetslarge_alumni_network_badge848ae03429d96b6db30c413d38dad62apngalthttpscoursereportproductionherokuappcomglobalsslfastlynetassetslarge_alumni_network_badge848ae03429d96b6db30c413d38dad62apnglogoimgclassbannersrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetstop_rated_badge2a537914dae4979722e66430ef0756bdpngalthttpscoursereportproductionherokuappcomglobalsslfastlynetassetstop_rated_badge2a537914dae4979722e66430ef0756bdpnglogodivadivdivdivdivdivdivclasssidebarapplymoduleaclassgagetmatchedmpgetmatcheddatacityhrefgetmatchedspanclasstopnotsurewhatyourebrlookingforspanspanclassbottomwellmatchyouspanadivdivdivdivsectiondivclasscontactoverlaydivclassmodalcontainerdivclassmodalheaderh4starttheconversationh4pcompletethisformtoconnectwithironhackpdivformactioncontactclasscontactformcontactformvalidatedataschoolironhackidmpcontactformmethodpostinputtypehiddennameauthenticity_tokenidauthenticity_tokenvalueabw0cnplttay8fpejyrzu8qt6ndnpuxge1vyl2xjz2mocitetxsmgzavt6tydakzu0dovdcwz98meoe9ginputtypehiddennameschool_emailidschool_emailvaluehiironhackcominputtypehiddennameschool_ididschool_idvalue84inputtypehiddennameschool_contact_nameidschool_contact_namevaluealexwilliamsinputtypehiddennameschool_contact_emailidschool_contact_emailvaluealexwilliamsironhackcominputidschool_namenameschoolstyledisplaynonetypetextvalueironhackdivclassfieldcolmd12divclassbricklabelmynamelabelinputidnamenameuser_nametypetextdivdivclassbricklabelmyemaillabelinputclasscontactformidcontactemailnameuser_emailtypeemaildividresultdivdivdivclassbricklabelmyphonenumberoptionallabelinputclasscontactformidcontactphonenamephonetypeteldivdivdivclassfieldmidfieldcolmd12divclassbricktextrightlabelimmostinterestedinlabeldivdivclassbrickselectnamecontact_campus_ididcontact_campus_iddatadynamicselectabletargetcontact_course_iddatadynamicselectableurldynamic_selectcontact_campus_idcoursesdatatargetplaceholderselectcourseoptionvalueselectcampusoptionoptionvalue1089amsterdamoptionoptionvalue780barcelonaoptionoptionvalue995berlinoptionoptionvalue779madridoptionoptionvalue913mexicocityoptionoptionvalue107miamioptionoptionvalue843parisoptionoptionvalue1090saopaulooptionselectdivdivclassbrickselectnamecontact_course_ididcontact_course_idselectdivdividschool_errorsdivdivdivclassfieldcolmd12labelanyotherinformationyoudliketosharewithalexwilliamsfromironhacklabeltextareaclasscontactformidmessagenamemessageplaceholderoptionaltypetextboxtextareabrdivdivclassfieldinputclassbtnbuttoncontactformvalidatetypesubmitvaluegetintouchpclassh6bysubmittingiacknowledgethatmyinformationwillbesharedwithironhackpdivformaidclosecontactbtnclasscloserhrefspanclassiconcrossspanadivdivclassmodallowerdivdivclasssuccessmessagespanclassiconcheckaltspanh2thanksh2divdivscriptsrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetspagespecificintltelinputc585d5ec48fb4f7dbb37d0c2c31e7d17jsscriptdivclassopeninstructionsdivdivclassinstructionsoverlaydivclassmodalcontainerdivclassmodalheaderloginguestmodalheaderdivclasstextcenterdivclassloginerrorsdivdivclassloginsuccessdivdivdivclassrowno_bordercolmd12divdivclasspreconfirmationcontainerclasstextcenterh2classtextcenterrevpubtitleh2divclassrevpubpdivpclasstextcenterrevanonpph4classtextcenterrevpubh4verifyviah4divclasstextcenterrevpubconfirmemailbuttondatareviewdataurlidverifyreviewbuttonclassbtnbtndefaultonclickjavascriptemailverifyemailbuttonbuttonclassbtnbtndefaultonclickjavascriptopenverify3939linkedinbuttonbuttonclassbtnbtndefaultonclickjavascriptopenverify3939githubbuttondivpclasstextcentersubscriptbyclickingverifyvialinkedingithubyouagreetoletcoursereportstoreyourpublicprofiledetailsppclasstextcenterthankssomuchfortakingthetimetoshareyourexperiencewiththecoursereportcommunitypcontainerdivdivclassconfirmedviaemaildivclassreviewinstructionscontainerclasstextcenterh2greath2pwejustsentaspeciallinktoyouremailgoclickthatlinktopublishthisreviewph4classrevconfirmlinkonceyouveconfirmedyourpostyoucanviewyourlivereviewh4pthankssomuchfortakingthetimetoshareyourexperiencewiththecoursereportcommunitypcontainerdivdivdivclasscolmd12textcenterbottombufferahrefschoolsbuttonclassbtnbtndefaultbrowseschoolsbuttonadivdivdivdivscriptvarnewwindowfunctionopenverifyprovider_urlvarscreenxtypeofwindowscreenxundefinedwindowscreenxwindowscreenleftscreenytypeofwindowscreenyundefinedwindowscreenywindowscreentopouterwidthtypeofwindowouterwidthundefinedwindowouterwidthdocumentbodyclientwidthouterheighttypeofwindowouterheightundefinedwindowouterheightdocumentbodyclientheight22leftparseintscreenxouterwidth800210topparseintscreenyouterheight8002510featureswidth800height800leftlefttoptopreviewverifyreviewdatareviewtostringparamsreview_idreviewurlprovider_urlparamsbodycsscursorprogressnewwindowwindowopenurlloginfeaturesifwindowfocusnewwindowfocusreturnfalsefunctionemailverifyprovider_urlreviewverifyreviewdatareviewtostringurlverifyreviewdataurltostringpostsendconfirmationreviewreviewurlurlsuccessfunctiondatapreconfirmationhideconfirmedviaemailshowbottombuffershowscriptdivclassduplicateinstructionsoverlaydivclassmodalcontainerdivclassmodalheaderloginguestmodalheaderdivclassreviewinstructionscontainerclasstextcenterh2classduprevtitleh2hrpifyouwouldliketoreviseordeleteareviewpleaseemailahrefmailtohellocoursereportcomcoursereportmoderatorsapcontainerdivdivclasscolmd12textcenterbottombufferbuttonclassbtnbtndefaultidloginconfirmbacktoreviewbuttondivaidinstructionsclosehrefspanclassiconcrossspanadivdivdivscriptclose_instructions_modalfunctioninstructionsoverlayfadeout250duplicateinstructionsoverlayfadeout250returnfalseinstructionsconfirminstructionscloseonclickclose_instructions_modalscriptdivclassconfirmscholarshipoverlaydivclassmodalcontainerdivclassmodalheaderconfirmscholarshipmodalheaderdivclasstextcenterdivclassloginerrorsdivdivclassloginsuccessdivdivcontainerclasstextcenterh2successh2pph4classrevconfirmlinkanemailwiththesedetailshasbeensenttoironhackh4containerdivclasscolmd12textcenterbuttonclassbtnbtndefaultonclickjavascriptviewscholarshipsviewmyscholarshipsbuttondivdivaonclickjavascriptclosethismodalidscholarshipclosehrefspanclassiconcrossspanadivdivscriptvarnewwindowfunctionclosethismodalconfirmscholarshipoverlayfadeout500bodycssoverflowscrollfunctionviewscholarshipswindowlocationhrefresearchcenterscholarshipsscriptdivclassconfirmscholarshipappliedoverlaydivclassmodalcontainerdivclassmodalheaderconfirmscholarshipmodalheaderdivclasstextcenterdivclassloginerrorsdivdivclassloginsuccessdivdivcontainerclasstextcenterh2hangonh2pph4classrevconfirmlinkyouvealreadyappliedtothisscholarshipwithironhackh4containerdivclasscolmd12textcenterbuttonclassbtnbtndefaultonclickjavascriptclosethismodalclosebuttondivdivaonclickjavascriptclosethismodalidscholarshipclosehrefspanclassiconcrossspanadivdivscriptvarnewwindowfunctionclosethismodalconfirmscholarshipoverlayfadeout500bodycssoverflowscrollscriptdivclasserrorsoverlaydivclassmodalcontainerdivclassmodalheaderloginguestmodalheaderdivclasstextcenterh3classlogtitlewhoah3psomethingmusthavegoneterriblywrongfixthefollowingandtryagainpdivclassloginerrorsdivdivclassloginsuccessdivdivdivaidsubmiterrorclosehrefspanclassiconcrossspanadivdivdivclassshareoverlaydivclassmodalcontainerdivclassshareheaderh2sharethisreviewh2divdivclasssharebodypclasssharereviewtitlepinputclassshareableurlidshareinputreadonlybuttonclassbtnbtnreversesharebuttonspanclassglyphiconglyphiconsharenbspspancopytoclipboardbuttondivaidshareclosehrefspanclassiconcrossspanadivdivdivclassmatchpopupdivclassmodalcontainerdivclassmodalheadersectionclassfindbootcampwrapperdivclasscontainerdivclassonethirdfbwdescriptionpclassh1dataaossliderightdataaosduration400findthebrbestbrbootcampbrforyoupdivdivclasstwothirdsdivclasshalfpclassh2dataaossliderightdataaosduration800telluswhatyouresearchingforandwellmatchyouwithourhighestratedschoolspdivdivclasshalfaclassacceptlinkgagetmatcheddataoriginmodalhrefgetmatchedoriginmodalbuttonclassbtnbtnmatchgetmatchedbuttonadivdivdivsectiondivaidmatchclosebtnhrefspanclassiconcrossspanadivclasssuccessmessagespanclassiconcheckaltspanh2thanksh2divdivdivdivclassemailfootersectionclassemailfootercontainersectionclassheadercontainerdivclassimageboximgaltguidetopayingforbootcampssrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetspaying_for_bootcamp_ipad_mincb6dec01480a37f8f37dbdc1c919ae6cpngdivdivclassheaderboxh2getourfreeultimateguidetopayingforacodingbootcamph2divsectionsectionclassemailsubmissionboxformidoptinparsleyvalidateclassflexcolumnleftactionmodal_saveacceptcharsetutf8dataremotetruemethodpostinputnameutf8typehiddenvaluex2713inputtypeemailnameemailidemailplaceholderemailaddressrequiredrequiredsectionclassflexrowselectnamemailing_list_categoryidmailingcategoryinputoptionvalueiamoptionoptionvalueresearchingcodingbootcampsresearchingcodingbootcampsoptionoptionvaluecurrentstudentalumcurrentstudentalumoptionoptionvalueindustryprofessionalindustryprofessionaloptionoptionvalueotherotheroptionselectinputtypehiddennameutm_sourceidutm_sourceinputtypehiddennameutm_mediumidutm_mediuminputtypehiddennameutm_termidutm_terminputtypehiddennameutm_contentidutm_contentinputtypehiddennameutm_campaignidutm_campaigninputtypesubmitnamecommitvaluesignmeupclassbuttonbuttonbluesectiondivclassemailerrorlookslikeyourealreadyonourmailinglistifyourenotshootusannbspahrefmailtohellocoursereportcomemailadivdivclasssuccessgreatwevesignedyouupdivdivclassformnotesplusyoullbethefirsttoknowaboutcodingbootcampnewsandyouremailissafewithusdivformsectionsectiondivfooterdivclasscontainerlargerfooterdivclassrowdivclasscolsm3h4coursereporth4ulliidhomeahrefhomealiliidschoolsahrefschoolsschoolsaliliidblogahrefblogblogaliliidresourcesahrefresourcesadvicealiliidwriteareviewahrefwriteareviewwriteareviewaliliidaboutahrefaboutaboutaliliidconnectahrefconnectconnectwithusaliuldivdivclasscolsm3h4legalh4ulliahreftermsofservicetermsofservicealiliahrefprivacypolicyprivacypolicyaliulh4followush4ulclasscontactlinksliahreftwittercomcoursereporttarget_blankspanclassicontwitterspanaahrefwwwfacebookcomcoursereporttarget_blankspanclassiconfacebookspanaaahrefplusgooglecom110399277954088556485relpublishertarget_blankspanclassicongoogleplusspanaahrefmailtohellocoursereportcomspanclassiconmailspanaliuldivdivclasscolsm3h4researchh4ulliahrefcodingbootcampultimateguideultimateguidetochoosingacodingbootcampaliliahrefbestcodingbootcampsbestcodingbootcampsof2017aliliahrefreports2017codingbootcampmarketsizeresearch2017codingbootcampmarketsizereportaliliahrefreportscodingbootcampjobplacement20172017codingbootcampoutcomesdemographicsstudyaliuldivdivclasscolsm3aclasslogosmallpullrighthrefimgaltcoursereporttitlecoursereportsrchttpscoursereportproductionherokuappcomglobalsslfastlynetassetslogosmalla04da9639b878f3d36becf065d607e0epngadivdivdivdivclasscontainermobilefooterdivclassrowdivclasscolxs6h4coursereporth4ulliidhomeahrefhomealiliidschoolsahrefschoolsschoolsaliliidblogahrefblogblogaliliidresourcesahrefresourcesadvicealiliidwriteareviewahrefwriteareviewwriteareviewaliliidaboutahrefaboutaboutaliliidconnectahrefconnectconnectwithusaliuldivdivclasscolxs6h4legalh4ulliahreftermsofservicetermsofservicealiliahrefprivacypolicyprivacypolicyaliulh4followush4ulclasscontactlinksliahreftwittercomcoursereporttarget_blankspanclassicontwitterspanaahrefwwwfacebookcomcoursereporttarget_blankspanclassiconfacebookspanaaahrefplusgooglecom110399277954088556485relpublishertarget_blankspanclassicongoogleplusspanaahrefmailtohellocoursereportcomspanclassiconmailspanaliulh4ahrefreportsresearchah4divdivdivfooterdivclassloginoverlaydivclassmodalcontainerdivclassmodalheaderloginmodalheaderdivclasstextcenterdivclassloginerrorsdivdivclassloginsuccessdivdivdivclassrowno_bordercolmd12divclasscolmd6textcenterh3classlogtitleloginh3divclassloginrevealidlog_informclassnew_useridnew_useractionloginacceptcharsetutf8dataremotetruemethodpostinputnameutf8typehiddenvaluex2713divclassfieldtextcenterinputplaceholderemailtypeemailvaluenameuseremailiduser_emaildivdivclassfieldtextcenterinputplaceholderpasswordtypepasswordnameuserpasswordiduser_passworddivdivclassfieldlinktextcenterahrefresetpasswordforgotpasswordadivdivclasstextcenterpclasstextcenterno__marginorpdivclasstextcenterinlinemediaaclasssocialmedialoginvaluefacebookdataauthfacebookhrefusersauthfacebookimgclasssociallogosrchttpss3amazonawscomcourse_report_productionmisc_imgsfbflogo__blue_29pngalthttpss3amazonawscomcourse_report_productionmisc_imgsfbflogo__blue_29pnglogoadivdivclasstextcenterinlinemediaaclasssocialmedialoginvaluetwitterdataauthtwitterhrefusersauthtwitterimgclasssociallogosrchttpss3amazonawscomcourse_report_productionmisc_imgstwitter_logo_white_on_bluepngalthttpss3amazonawscomcourse_report_productionmisc_imgstwitter_logo_white_on_bluepnglogoadivdivclasstextcenterinlinemediaaclasssocialmedialoginvaluegoogledataauthgooglehrefusersauthgoogle_oauth2imgclasssociallogosrchttpss3amazonawscomcourse_report_productionmisc_imgs1473366122_newgooglefaviconpngalthttpss3amazonawscomcourse_report_productionmisc_imgs1473366122_newgooglefaviconpnglogoadivdivdivclassactionstextcentersubmitlogintrayinputtypesubmitnamecommitvalueloginclassbtnbtndefaultdivformdivdivclasssignuprevealidsign_upformclassnew_useridnew_useractionsignupacceptcharsetutf8dataremotetruemethodpostinputnameutf8typehiddenvaluex2713divclassfieldtextcenterinputplaceholderemailtypeemailvaluenameuseremailiduser_emaildivdivclassfieldtextcenterinputplaceholderpasswordtypepasswordnameuserpasswordiduser_passworddivdivclasstextcenterpclasstextcenterno__marginorpdivclasstextcenterinlinemediaaclasssocialmedialoginvaluefacebookdataauthfacebookhrefusersauthfacebookimgclasssociallogosrchttpss3amazonawscomcourse_report_productionmisc_imgsfbflogo__blue_29pngalthttpss3amazonawscomcourse_report_productionmisc_imgsfbflogo__blue_29pnglogoadivdivclasstextcenterinlinemediaaclasssocialmedialoginvaluetwitterdataauthtwitterhrefusersauthtwitterimgclasssociallogosrchttpss3amazonawscomcourse_report_productionmisc_imgstwitter_logo_white_on_bluepngalthttpss3amazonawscomcourse_report_productionmisc_imgstwitter_logo_white_on_bluepnglogoadivdivclasstextcenterinlinemediaaclasssocialmedialoginvaluegoogledataauthgooglehrefusersauthgoogle_oauth2imgclasssociallogosrchttpss3amazonawscomcourse_report_productionmisc_imgs1473366122_newgooglefaviconpngalthttpss3amazonawscomcourse_report_productionmisc_imgs1473366122_newgooglefaviconpnglogoadivdivdivclassactionstextcentersubmitlogintrayinputtypesubmitnamecommitvaluesignupclassbtnbtndefaultdivformdivdivdivclasscolmd6textcenterleftborderpclasslogintextlogintoclaimtrackandfollowuponyourscholarshipplusyoucantrackyourbootcampreviewscomparebootcampsandsaveyourfavoriteschoolspdivclassformtraydivclasstextcenterloginrevealpnewtocoursereportpbuttonclassbtnbtndefaultidclose_log_insignupbuttondivdivclasstextcenterdisplaynonesignuprevealpalreadyhaveanaccountpbuttonclassbtnbtndefaultidclose_sign_uploginbuttondivdivdivdivdivspanclassiconcrossidloginclosespandivdivdivclassdisplaynoneidcurrentuseremailcurrent_useremaildivbodyhtml', 'doctypehtmlhtmlclassclientnojslangendirltrheadmetacharsetutf8titledataanalysiswikipediatitleheadbodyclassmediawikiltrsitedirltrmwhideemptyeltns0nssubjectpagedata_analysisrootpagedata_analysisskinvectoractionviewdividmwpagebaseclassnoprintdivdividmwheadbaseclassnoprintdivdividcontentclassmwbodyrolemainaidtopadividsitenoticeclassmwbodycontentcentralnoticedivdivclassmwindicatorsmwbodycontentdivh1idfirstheadingclassfirstheadinglangendataanalysish1dividbodycontentclassmwbodycontentdividsitesubclassnoprintfromwikipediathefreeencyclopediadivdividcontentsubdivdividjumptonavdivaclassmwjumplinkhrefmwheadjumptonavigationaaclassmwjumplinkhrefpsearchjumptosearchadividmwcontenttextlangendirltrclassmwcontentltrdivclassmwparseroutputtableclassverticalnavboxnowraplinksplainliststylefloatrightclearrightwidth220emmargin0010em10embackgroundf9f9f9border1pxsolidaaapadding02emborderspacing04em0textaligncenterlineheight14emfontsize88tbodytrtdstylepaddingtop04emlineheight12empartofaseriesonahrefwikistatisticstitlestatisticsstatisticsatdtrtrthstylepadding02em04em02empaddingtop0fontsize145lineheight12emahrefwikidata_visualizationtitledatavisualizationdatavisualizationathtrtrtdstylepadding001em04emdivclassnavframestylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftbackgroundddffddmajordimensionsdivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterulliahrefwikiexploratory_data_analysistitleexploratorydataanalysisexploratorydataanalysisa160822632ahrefwikiinformation_designtitleinformationdesigninformationdesignaliliahrefwikiinteractive_data_visualizationtitleinteractivedatavisualizationinteractivedatavisualizationaliliahrefwikidescriptive_statisticstitledescriptivestatisticsdescriptivestatisticsa160822632ahrefwikistatistical_inferencetitlestatisticalinferenceinferentialstatisticsaliliahrefwikistatistical_graphicstitlestatisticalgraphicsstatisticalgraphicsa160822632ahrefwikiplot_graphicstitleplotgraphicsplotaliliaclassmwselflinkselflinkdataanalysisa160822632ahrefwikiinfographictitleinfographicinfographicaliliahrefwikidata_sciencetitledatasciencedatasciencealiuldivdivtdtrtrtdstylepadding001em04emdivclassnavframestylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftbackgroundddffddimportantfiguresdivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterulliahrefwikitamara_munznertitletamaramunznertamaramunznera160822632ahrefwikiben_shneidermantitlebenshneidermanbenshneidermana160822632ahrefwikijohn_w_tukeyclassmwredirecttitlejohnwtukeyjohnwtukeya160822632ahrefwikiedward_tuftetitleedwardtufteedwardtuftea160822632ahrefwikifernanda_vic3a9gastitlefernandavigasfernandavigasa160822632ahrefwikihadley_wickhamtitlehadleywickhamhadleywickhamaliuldivdivtdtrtrtdstylepadding001em04emdivclassnavframestylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftbackgroundddffddinformationgraphictypesdivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterulliahrefwikiline_charttitlelinechartlinecharta160822632ahrefwikibar_charttitlebarchartbarchartaliliahrefwikihistogramtitlehistogramhistograma160822632ahrefwikiscatterplotclassmwredirecttitlescatterplotscatterplotaliliahrefwikiboxplotclassmwredirecttitleboxplotboxplota160822632ahrefwikipareto_charttitleparetochartparetochartaliliahrefwikipie_charttitlepiechartpiecharta160822632ahrefwikiarea_charttitleareachartareachartaliliahrefwikicontrol_charttitlecontrolchartcontrolcharta160822632ahrefwikirun_charttitlerunchartrunchartaliliahrefwikistemandleaf_displaytitlestemandleafdisplaystemandleafdisplaya160822632ahrefwikicartogramtitlecartogramcartogramaliliahrefwikismall_multipletitlesmallmultiplesmallmultiplea160822632ahrefwikisparklinetitlesparklinesparklinealiliahrefwikitable_informationtitletableinformationtablealiuldivdivtdtrtrtdstylepadding001em04emdivclassnavframestylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftbackgroundddffddrelatedtopicsdivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterulliahrefwikidatatitledatadataa160822632ahrefwikiinformationtitleinformationinformationaliliahrefwikibig_datatitlebigdatabigdataa160822632ahrefwikidatabasetitledatabasedatabasealiliahrefwikichartjunktitlechartjunkchartjunka160822632ahrefwikivisual_perceptiontitlevisualperceptionvisualperceptionaliliahrefwikiregression_analysistitleregressionanalysisregressionanalysisa160822632ahrefwikistatistical_modeltitlestatisticalmodelstatisticalmodelaliliahrefwikimisleading_graphtitlemisleadinggraphmisleadinggraphaliuldivdivtdtrtrtdstyletextalignrightfontsize115paddingtop06emdivclassplainlinkshlistnavbarminiulliclassnvviewahrefwikitemplatedata_visualizationtitletemplatedatavisualizationabbrtitleviewthistemplatevabbraliliclassnvtalkahrefwindexphptitletemplate_talkdata_visualizationampactioneditampredlink1classnewtitletemplatetalkdatavisualizationpagedoesnotexistabbrtitlediscussthistemplatetabbraliliclassnveditaclassexternaltexthrefenwikipediaorgwindexphptitletemplatedata_visualizationampactioneditabbrtitleeditthistemplateeabbraliuldivtdtrtbodytabletableclassverticalnavboxnowraplinksstylefloatrightclearrightwidth220emmargin0010em10embackgroundf9f9f9border1pxsolidaaapadding02emborderspacing04em0textaligncenterlineheight14emfontsize88tbodytrthstylepadding02em04em02emfontsize145lineheight12emahrefwikicomputational_physicstitlecomputationalphysicscomputationalphysicsathtrtrtdstylepadding02em004emahrefwikifilerayleightaylor_instabilityjpgclassimageimgaltrayleightaylorinstabilityjpgsrcuploadwikimediaorgwikipediacommonsthumb554rayleightaylor_instabilityjpg220pxrayleightaylor_instabilityjpgwidth220height220srcsetuploadwikimediaorgwikipediacommonsthumb554rayleightaylor_instabilityjpg330pxrayleightaylor_instabilityjpg15xuploadwikimediaorgwikipediacommonsthumb554rayleightaylor_instabilityjpg440pxrayleightaylor_instabilityjpg2xdatafilewidth500datafileheight500atdtrtrtdstylepadding001em04empahrefwikinumerical_analysistitlenumericalanalysisnumericalanalysisa160b183b32ahrefwikicomputer_simulationtitlecomputersimulationsimulationabrpaclassmwselflinkselflinkdataanalysisa160b183b32ahrefwikiscientific_visualizationtitlescientificvisualizationvisualizationatdtrtrtdstylepadding001em04emdivclassnavframecollapsedstylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftahrefwikipotentialtitlepotentialpotentialsadivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterahrefwikimorselongrange_potentialtitlemorselongrangepotentialmorselongrangepotentiala160b183b32ahrefwikilennardjones_potentialtitlelennardjonespotentiallennardjonespotentiala160b183b32ahrefwikiyukawa_potentialtitleyukawapotentialyukawapotentiala160b183b32ahrefwikimorse_potentialtitlemorsepotentialmorsepotentialadivdivtdtrtrtdstylepadding001em04emdivclassnavframecollapsedstylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftahrefwikicomputational_fluid_dynamicstitlecomputationalfluiddynamicsfluiddynamicsadivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterahrefwikifinite_difference_methodtitlefinitedifferencemethodfinitedifferencea160b183b32ahrefwikifinite_volume_methodtitlefinitevolumemethodfinitevolumeabrpahrefwikifinite_element_methodtitlefiniteelementmethodfiniteelementa160b183b32ahrefwikiboundary_element_methodtitleboundaryelementmethodboundaryelementabrahrefwikilattice_boltzmann_methodstitlelatticeboltzmannmethodslatticeboltzmanna160b183b32ahrefwikiriemann_solvertitleriemannsolverriemannsolverabrahrefwikidissipative_particle_dynamicstitledissipativeparticledynamicsdissipativeparticledynamicsabrahrefwikismoothedparticle_hydrodynamicstitlesmoothedparticlehydrodynamicssmoothedparticlehydrodynamicsabrpahrefwikiturbulence_modelingtitleturbulencemodelingturbulencemodelsadivdivtdtrtrtdstylepadding001em04emdivclassnavframecollapsedstylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftahrefwikimonte_carlo_methodtitlemontecarlomethodmontecarlomethodsadivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterahrefwikimonte_carlo_integrationtitlemontecarlointegrationintegrationa160b183b32ahrefwikigibbs_samplingtitlegibbssamplinggibbssamplinga160b183b32ahrefwikimetropolise28093hastings_algorithmtitlemetropolishastingsalgorithmmetropolisalgorithmadivdivtdtrtrtdstylepadding001em04emdivclassnavframecollapsedstylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftparticledivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterahrefwikinbody_simulationtitlenbodysimulationnbodya160b183b32ahrefwikiparticleincelltitleparticleincellparticleincellabrahrefwikimolecular_dynamicstitlemoleculardynamicsmoleculardynamicsadivdivtdtrtrtdstylepadding001em04emdivclassnavframecollapsedstylebordernonepadding0divclassnavheadstylefontsize105backgroundtransparenttextalignleftscientistsdivdivclassnavcontentstylefontsize105padding02em004emtextaligncenterahrefwikisergei_k_godunovtitlesergeikgodunovgodunova160b183b32ahrefwikistanislaw_ulamtitlestanislawulamulama160b183b32ahrefwikijohn_von_neumanntitlejohnvonneumannvonneumanna160b183b32ahrefwikiboris_galerkintitleborisgalerkingalerkina160b183b32ahrefwikiedward_norton_lorenztitleedwardnortonlorenzlorenza160b183b32ahrefwikikenneth_g_wilsontitlekennethgwilsonwilsonadivdivtdtrtrtdstyletextalignrightfontsize115paddingtop06emdivclassplainlinkshlistnavbarminiulliclassnvviewahrefwikitemplatecomputational_physicstitletemplatecomputationalphysicsabbrtitleviewthistemplatevabbraliliclassnvtalkahrefwikitemplate_talkcomputational_physicstitletemplatetalkcomputationalphysicsabbrtitlediscussthistemplatetabbraliliclassnveditaclassexternaltexthrefenwikipediaorgwindexphptitletemplatecomputational_physicsampactioneditabbrtitleeditthistemplateeabbraliuldivtdtrtbodytablepbdataanalysisbisaprocessofinspectingahrefwikidata_cleansingtitledatacleansingcleansingaahrefwikidata_transformationtitledatatransformationtransformingaandahrefwikidata_modelingtitledatamodelingmodelingaahrefwikidatatitledatadataawiththegoalofdiscoveringusefulinformationinformingconclusionsandsupportingdecisionmakingdataanalysishasmultiplefacetsandapproachesencompassingdiversetechniquesunderavarietyofnameswhilebeingusedindifferentbusinessscienceandsocialsciencedomainsppahrefwikidata_miningtitledataminingdataminingaisaparticulardataanalysistechniquethatfocusesonmodelingandknowledgediscoveryforpredictiveratherthanpurelydescriptivepurposeswhileahrefwikibusiness_intelligencetitlebusinessintelligencebusinessintelligenceacoversdataanalysisthatreliesheavilyonaggregationfocusingmainlyonbusinessinformationsupidcite_ref1classreferenceahrefcite_note191193asupinstatisticalapplicationsdataanalysiscanbedividedintoahrefwikidescriptive_statisticstitledescriptivestatisticsdescriptivestatisticsaahrefwikiexploratory_data_analysistitleexploratorydataanalysisexploratorydataanalysisaedaandahrefwikistatistical_hypothesis_testingtitlestatisticalhypothesistestingconfirmatorydataanalysisacdaedafocusesondiscoveringnewfeaturesinthedatawhilecdafocusesonconfirmingorfalsifyingexistingahrefwikihypothesesclassmwredirecttitlehypotheseshypothesesaahrefwikipredictive_analyticstitlepredictiveanalyticspredictiveanalyticsafocusesonapplicationofstatisticalmodelsforpredictiveforecastingorclassificationwhileahrefwikitext_analyticsclassmwredirecttitletextanalyticstextanalyticsaappliesstatisticallinguisticandstructuraltechniquestoextractandclassifyinformationfromtextualsourcesaspeciesofahrefwikiunstructured_datatitleunstructureddataunstructureddataaalloftheabovearevarietiesofdataanalysisppahrefwikidata_integrationtitledataintegrationdataintegrationaisaprecursortodataanalysissupclassnoprintinlinetemplatestylemarginleft01emwhitespacenowrap91iahrefwikiwikipediamanual_of_stylewords_to_watchunsupported_attributionstitlewikipediamanualofstylewordstowatchspantitlethematerialnearthistagmayuseweaselwordsortoovagueattributionmarch2018accordingtowhomspanai93supanddataanalysisiscloselylinkedsupclassnoprintinlinetemplatestylewhitespacenowrap91iahrefwikiwikipediaplease_clarifytitlewikipediapleaseclarifyspantitlepleaseclarifythefollowingstatementorstatementswithagoodexplanationfromareliablesourcemarch2018howspanai93suptoahrefwikidata_visualizationtitledatavisualizationdatavisualizationaanddatadisseminationthetermidataanalysisiissometimesusedasasynonymfordatamodelingpdividtocclasstocinputtypecheckboxrolebuttonidtoctogglecheckboxclasstoctogglecheckboxstyledisplaynonedivclasstoctitlelangendirltrh2contentsh2spanclasstoctogglespanlabelclasstoctogglelabelfortoctogglecheckboxlabelspandivulliclasstoclevel1tocsection1ahrefthe_process_of_data_analysisspanclasstocnumber1spanspanclasstoctexttheprocessofdataanalysisspanaulliclasstoclevel2tocsection2ahrefdata_requirementsspanclasstocnumber11spanspanclasstoctextdatarequirementsspanaliliclasstoclevel2tocsection3ahrefdata_collectionspanclasstocnumber12spanspanclasstoctextdatacollectionspanaliliclasstoclevel2tocsection4ahrefdata_processingspanclasstocnumber13spanspanclasstoctextdataprocessingspanaliliclasstoclevel2tocsection5ahrefdata_cleaningspanclasstocnumber14spanspanclasstoctextdatacleaningspanaliliclasstoclevel2tocsection6ahrefexploratory_data_analysisspanclasstocnumber15spanspanclasstoctextexploratorydataanalysisspanaliliclasstoclevel2tocsection7ahrefmodeling_and_algorithmsspanclasstocnumber16spanspanclasstoctextmodelingandalgorithmsspanaliliclasstoclevel2tocsection8ahrefdata_productspanclasstocnumber17spanspanclasstoctextdataproductspanaliliclasstoclevel2tocsection9ahrefcommunicationspanclasstocnumber18spanspanclasstoctextcommunicationspanaliulliliclasstoclevel1tocsection10ahrefquantitative_messagesspanclasstocnumber2spanspanclasstoctextquantitativemessagesspanaliliclasstoclevel1tocsection11ahreftechniques_for_analyzing_quantitative_dataspanclasstocnumber3spanspanclasstoctexttechniquesforanalyzingquantitativedataspanaliliclasstoclevel1tocsection12ahrefanalytical_activities_of_data_usersspanclasstocnumber4spanspanclasstoctextanalyticalactivitiesofdatausersspanaliliclasstoclevel1tocsection13ahrefbarriers_to_effective_analysisspanclasstocnumber5spanspanclasstoctextbarrierstoeffectiveanalysisspanaulliclasstoclevel2tocsection14ahrefconfusing_fact_and_opinionspanclasstocnumber51spanspanclasstoctextconfusingfactandopinionspanaliliclasstoclevel2tocsection15ahrefcognitive_biasesspanclasstocnumber52spanspanclasstoctextcognitivebiasesspanaliliclasstoclevel2tocsection16ahrefinnumeracyspanclasstocnumber53spanspanclasstoctextinnumeracyspanaliulliliclasstoclevel1tocsection17ahrefother_topicsspanclasstocnumber6spanspanclasstoctextothertopicsspanaulliclasstoclevel2tocsection18ahrefsmart_buildingsspanclasstocnumber61spanspanclasstoctextsmartbuildingsspanaliliclasstoclevel2tocsection19ahrefanalytics_and_business_intelligencespanclasstocnumber62spanspanclasstoctextanalyticsandbusinessintelligencespanaliliclasstoclevel2tocsection20ahrefeducationspanclasstocnumber63spanspanclasstoctexteducationspanaliulliliclasstoclevel1tocsection21ahrefpractitioner_notesspanclasstocnumber7spanspanclasstoctextpractitionernotesspanaulliclasstoclevel2tocsection22ahrefinitial_data_analysisspanclasstocnumber71spanspanclasstoctextinitialdataanalysisspanaulliclasstoclevel3tocsection23ahrefquality_of_dataspanclasstocnumber711spanspanclasstoctextqualityofdataspanaliliclasstoclevel3tocsection24ahrefquality_of_measurementsspanclasstocnumber712spanspanclasstoctextqualityofmeasurementsspanaliliclasstoclevel3tocsection25ahrefinitial_transformationsspanclasstocnumber713spanspanclasstoctextinitialtransformationsspanaliliclasstoclevel3tocsection26ahrefdid_the_implementation_of_the_study_fulfill_the_intentions_of_the_research_designspanclasstocnumber714spanspanclasstoctextdidtheimplementationofthestudyfulfilltheintentionsoftheresearchdesignspanaliliclasstoclevel3tocsection27ahrefcharacteristics_of_data_samplespanclasstocnumber715spanspanclasstoctextcharacteristicsofdatasamplespanaliliclasstoclevel3tocsection28ahreffinal_stage_of_the_initial_data_analysisspanclasstocnumber716spanspanclasstoctextfinalstageoftheinitialdataanalysisspanaliliclasstoclevel3tocsection29ahrefanalysisspanclasstocnumber717spanspanclasstoctextanalysisspanaliliclasstoclevel3tocsection30ahrefnonlinear_analysisspanclasstocnumber718spanspanclasstoctextnonlinearanalysisspanaliulliliclasstoclevel2tocsection31ahrefmain_data_analysisspanclasstocnumber72spanspanclasstoctextmaindataanalysisspanaulliclasstoclevel3tocsection32ahrefexploratory_and_confirmatory_approachesspanclasstocnumber721spanspanclasstoctextexploratoryandconfirmatoryapproachesspanaliliclasstoclevel3tocsection33ahrefstability_of_resultsspanclasstocnumber722spanspanclasstoctextstabilityofresultsspanaliliclasstoclevel3tocsection34ahrefstatistical_methodsspanclasstocnumber723spanspanclasstoctextstatisticalmethodsspanaliulliulliliclasstoclevel1tocsection35ahreffree_software_for_data_analysisspanclasstocnumber8spanspanclasstoctextfreesoftwarefordataanalysisspanaliliclasstoclevel1tocsection36ahrefinternational_data_analysis_contestsspanclasstocnumber9spanspanclasstoctextinternationaldataanalysiscontestsspanaliliclasstoclevel1tocsection37ahrefsee_alsospanclasstocnumber10spanspanclasstoctextseealsospanaliliclasstoclevel1tocsection38ahrefreferencesspanclasstocnumber11spanspanclasstoctextreferencesspanaulliclasstoclevel2tocsection39ahrefcitationsspanclasstocnumber111spanspanclasstoctextcitationsspanaliliclasstoclevel2tocsection40ahrefbibliographyspanclasstocnumber112spanspanclasstoctextbibliographyspanaliulliliclasstoclevel1tocsection41ahreffurther_readingspanclasstocnumber12spanspanclasstoctextfurtherreadingspanaliuldivh2spanclassmwheadlineidthe_process_of_data_analysistheprocessofdataanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection1titleeditsectiontheprocessofdataanalysiseditaspanclassmweditsectionbracketspanspanh2divclassthumbtrightdivclassthumbinnerstylewidth352pxahrefwikifiledata_visualization_process_v1pngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumbbbadata_visualization_process_v1png350pxdata_visualization_process_v1pngwidth350height263classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumbbbadata_visualization_process_v1png525pxdata_visualization_process_v1png15xuploadwikimediaorgwikipediacommonsthumbbbadata_visualization_process_v1png700pxdata_visualization_process_v1png2xdatafilewidth960datafileheight720adivclassthumbcaptiondivclassmagnifyahrefwikifiledata_visualization_process_v1pngclassinternaltitleenlargeadivdatascienceprocessflowchartfromdoingdatasciencecathyoneilandrachelschutt2013divdivdivpanalysisreferstobreakingawholeintoitsseparatecomponentsforindividualexaminationdataanalysisisaahrefwikiprocess_theorytitleprocesstheoryprocessaforobtainingrawdataandconvertingitintoinformationusefulfordecisionmakingbyusersdataiscollectedandanalyzedtoanswerquestionstesthypothesesordisprovetheoriessupidcite_refjudd_and_mcclelland_1989_20classreferenceahrefcite_notejudd_and_mcclelland_1989291293asupppstatisticianahrefwikijohn_tukeytitlejohntukeyjohntukeyadefineddataanalysisin1961asproceduresforanalyzingdatatechniquesforinterpretingtheresultsofsuchprocedureswaysofplanningthegatheringofdatatomakeitsanalysiseasiermorepreciseormoreaccurateandallthemachineryandresultsofmathematicalstatisticswhichapplytoanalyzingdatasupidcite_ref3classreferenceahrefcite_note391393asupppthereareseveralphasesthatcanbedistinguisheddescribedbelowthephasesareiterativeinthatfeedbackfromlaterphasesmayresultinadditionalworkinearlierphasessupidcite_refo39neil_and_schutt_2013_40classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupph3spanclassmwheadlineiddata_requirementsdatarequirementsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection2titleeditsectiondatarequirementseditaspanclassmweditsectionbracketspanspanh3pthedataisnecessaryasinputstotheanalysiswhichisspecifiedbasedupontherequirementsofthosedirectingtheanalysisorcustomerswhowillusethefinishedproductoftheanalysisthegeneraltypeofentityuponwhichthedatawillbecollectedisreferredtoasanexperimentalunitegapersonorpopulationofpeoplespecificvariablesregardingapopulationegageandincomemaybespecifiedandobtaineddatamaybenumericalorcategoricalieatextlabelfornumberssupidcite_refo39neil_and_schutt_2013_41classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupph3spanclassmwheadlineiddata_collectiondatacollectionspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection3titleeditsectiondatacollectioneditaspanclassmweditsectionbracketspanspanh3pdataiscollectedfromavarietyofsourcestherequirementsmaybecommunicatedbyanalyststocustodiansofthedatasuchasinformationtechnologypersonnelwithinanorganizationthedatamayalsobecollectedfromsensorsintheenvironmentsuchastrafficcamerassatellitesrecordingdevicesetcitmayalsobeobtainedthroughinterviewsdownloadsfromonlinesourcesorreadingdocumentationsupidcite_refo39neil_and_schutt_2013_42classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupph3spanclassmwheadlineiddata_processingdataprocessingspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection4titleeditsectiondataprocessingeditaspanclassmweditsectionbracketspanspanh3divclassthumbtrightdivclassthumbinnerstylewidth352pxahrefwikifilerelationship_of_data_information_and_intelligencepngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumbeeerelationship_of_data2c_information_and_intelligencepng350pxrelationship_of_data2c_information_and_intelligencepngwidth350height263classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumbeeerelationship_of_data2c_information_and_intelligencepng525pxrelationship_of_data2c_information_and_intelligencepng15xuploadwikimediaorgwikipediacommonsthumbeeerelationship_of_data2c_information_and_intelligencepng700pxrelationship_of_data2c_information_and_intelligencepng2xdatafilewidth960datafileheight720adivclassthumbcaptiondivclassmagnifyahrefwikifilerelationship_of_data_information_and_intelligencepngclassinternaltitleenlargeadivthephasesoftheahrefwikiintelligence_cycletitleintelligencecycleintelligencecycleausedtoconvertrawinformationintoactionableintelligenceorknowledgeareconceptuallysimilartothephasesindataanalysisdivdivdivpdatainitiallyobtainedmustbeprocessedororganisedforanalysisforinstancethesemayinvolveplacingdataintorowsandcolumnsinatableformatieahrefwikidata_modeltitledatamodelstructureddataaforfurtheranalysissuchaswithinaspreadsheetorstatisticalsoftwaresupidcite_refo39neil_and_schutt_2013_43classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupph3spanclassmwheadlineiddata_cleaningdatacleaningspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection5titleeditsectiondatacleaningeditaspanclassmweditsectionbracketspanspanh3ponceprocessedandorganisedthedatamaybeincompletecontainduplicatesorcontainerrorstheneedfordatacleaningwillarisefromproblemsinthewaythatdataisenteredandstoreddatacleaningistheprocessofpreventingandcorrectingtheseerrorscommontasksincluderecordmatchingidentifyinginaccuracyofdataoverallqualityofexistingdatasupidcite_ref5classreferenceahrefcite_note591593asupdeduplicationandcolumnsegmentationsupidcite_ref6classreferenceahrefcite_note691693asupsuchdataproblemscanalsobeidentifiedthroughavarietyofanalyticaltechniquesforexamplewithfinancialinformationthetotalsforparticularvariablesmaybecomparedagainstseparatelypublishednumbersbelievedtobereliablesupidcite_refkoomey1_70classreferenceahrefcite_notekoomey1791793asupunusualamountsaboveorbelowpredeterminedthresholdsmayalsobereviewedthereareseveraltypesofdatacleaningthatdependonthetypeofdatasuchasphonenumbersemailaddressesemployersetcquantitativedatamethodsforoutlierdetectioncanbeusedtogetridoflikelyincorrectlyentereddatatextualdataspellcheckerscanbeusedtolessentheamountofmistypedwordsbutitishardertotellifthewordsthemselvesarecorrectsupidcite_ref8classreferenceahrefcite_note891893asupph3spanclassmwheadlineidexploratory_data_analysisexploratorydataanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection6titleeditsectionexploratorydataanalysiseditaspanclassmweditsectionbracketspanspanh3poncethedataiscleaneditcanbeanalyzedanalystsmayapplyavarietyoftechniquesreferredtoasahrefwikiexploratory_data_analysistitleexploratorydataanalysisexploratorydataanalysisatobeginunderstandingthemessagescontainedinthedatasupidcite_ref9classreferenceahrefcite_note991993asupsupidcite_ref10classreferenceahrefcite_note10911093asuptheprocessofexplorationmayresultinadditionaldatacleaningoradditionalrequestsfordatasotheseactivitiesmaybeiterativeinnatureahrefwikidescriptive_statisticstitledescriptivestatisticsdescriptivestatisticsasuchastheaverageormedianmaybegeneratedtohelpunderstandthedataahrefwikidata_visualizationtitledatavisualizationdatavisualizationamayalsobeusedtoexaminethedataingraphicalformattoobtainadditionalinsightregardingthemessageswithinthedatasupidcite_refo39neil_and_schutt_2013_44classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupph3spanclassmwheadlineidmodeling_and_algorithmsmodelingandalgorithmsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection7titleeditsectionmodelingandalgorithmseditaspanclassmweditsectionbracketspanspanh3pmathematicalformulasormodelscalledahrefwikialgorithmsclassmwredirecttitlealgorithmsalgorithmsamaybeappliedtothedatatoidentifyrelationshipsamongthevariablessuchasahrefwikicorrelation_and_dependencetitlecorrelationanddependencecorrelationaorahrefwikicausalitytitlecausalitycausationaingeneraltermsmodelsmaybedevelopedtoevaluateaparticularvariableinthedatabasedonothervariablesinthedatawithsomeresidualerrordependingonmodelaccuracyiedatamodelerrorsupidcite_refjudd_and_mcclelland_1989_21classreferenceahrefcite_notejudd_and_mcclelland_1989291293asupppahrefwikiinferential_statisticsclassmwredirecttitleinferentialstatisticsinferentialstatisticsaincludestechniquestomeasurerelationshipsbetweenparticularvariablesforexampleahrefwikiregression_analysistitleregressionanalysisregressionanalysisamaybeusedtomodelwhetherachangeinadvertisingindependentvariablexexplainsthevariationinsalesdependentvariableyinmathematicaltermsysalesisafunctionofxadvertisingitmaybedescribedasyaxberrorwherethemodelisdesignedsuchthataandbminimizetheerrorwhenthemodelpredictsyforagivenrangeofvaluesofxanalystsmayattempttobuildmodelsthataredescriptiveofthedatatosimplifyanalysisandcommunicateresultssupidcite_refjudd_and_mcclelland_1989_22classreferenceahrefcite_notejudd_and_mcclelland_1989291293asupph3spanclassmwheadlineiddata_productdataproductspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection8titleeditsectiondataproducteditaspanclassmweditsectionbracketspanspanh3padataproductisacomputerapplicationthattakesdatainputsandgeneratesoutputsfeedingthembackintotheenvironmentitmaybebasedonamodeloralgorithmanexampleisanapplicationthatanalyzesdataaboutcustomerpurchasinghistoryandrecommendsotherpurchasesthecustomermightenjoysupidcite_refo39neil_and_schutt_2013_45classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupph3spanclassmwheadlineidcommunicationcommunicationspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection9titleeditsectioncommunicationeditaspanclassmweditsectionbracketspanspanh3divclassthumbtrightdivclassthumbinnerstylewidth252pxahrefwikifilesocial_network_analysis_visualizationpngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumb99bsocial_network_analysis_visualizationpng250pxsocial_network_analysis_visualizationpngwidth250height186classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumb99bsocial_network_analysis_visualizationpng375pxsocial_network_analysis_visualizationpng15xuploadwikimediaorgwikipediacommonsthumb99bsocial_network_analysis_visualizationpng500pxsocial_network_analysis_visualizationpng2xdatafilewidth1185datafileheight883adivclassthumbcaptiondivclassmagnifyahrefwikifilesocial_network_analysis_visualizationpngclassinternaltitleenlargeadivahrefwikidata_visualizationtitledatavisualizationdatavisualizationatounderstandtheresultsofadataanalysissupidcite_ref11classreferenceahrefcite_note11911193asupdivdivdivdivrolenoteclasshatnotenavigationnotsearchablemainarticleahrefwikidata_visualizationtitledatavisualizationdatavisualizationadivponcethedataisanalyzeditmaybereportedinmanyformatstotheusersoftheanalysistosupporttheirrequirementstheusersmayhavefeedbackwhichresultsinadditionalanalysisassuchmuchoftheanalyticalcycleisiterativesupidcite_refo39neil_and_schutt_2013_46classreferenceahrefcite_noteo39neil_and_schutt_2013491493asupppwhendetermininghowtocommunicatetheresultstheanalystmayconsiderahrefwikidata_visualizationtitledatavisualizationdatavisualizationatechniquestohelpclearlyandefficientlycommunicatethemessagetotheaudiencedatavisualizationusesahrefwikiinformation_displaysclassmwredirecttitleinformationdisplaysinformationdisplaysasuchastablesandchartstohelpcommunicatekeymessagescontainedinthedatatablesarehelpfultoauserwhomightlookupspecificnumberswhilechartsegbarchartsorlinechartsmayhelpexplainthequantitativemessagescontainedinthedataph2spanclassmwheadlineidquantitative_messagesquantitativemessagesspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection10titleeditsectionquantitativemessageseditaspanclassmweditsectionbracketspanspanh2divrolenoteclasshatnotenavigationnotsearchablemainarticleahrefwikidata_visualizationtitledatavisualizationdatavisualizationadivdivclassthumbtrightdivclassthumbinnerstylewidth252pxahrefwikifiletotal_revenues_and_outlays_as_percent_gdp_2013pngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumbffbtotal_revenues_and_outlays_as_percent_gdp_2013png250pxtotal_revenues_and_outlays_as_percent_gdp_2013pngwidth250height118classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumbffbtotal_revenues_and_outlays_as_percent_gdp_2013png375pxtotal_revenues_and_outlays_as_percent_gdp_2013png15xuploadwikimediaorgwikipediacommonsthumbffbtotal_revenues_and_outlays_as_percent_gdp_2013png500pxtotal_revenues_and_outlays_as_percent_gdp_2013png2xdatafilewidth1025datafileheight484adivclassthumbcaptiondivclassmagnifyahrefwikifiletotal_revenues_and_outlays_as_percent_gdp_2013pngclassinternaltitleenlargeadivatimeseriesillustratedwithalinechartdemonstratingtrendsinusfederalspendingandrevenueovertimedivdivdivdivclassthumbtrightdivclassthumbinnerstylewidth252pxahrefwikifileus_phillips_curve_2000_to_2013pngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumb77eus_phillips_curve_2000_to_2013png250pxus_phillips_curve_2000_to_2013pngwidth250height188classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumb77eus_phillips_curve_2000_to_2013png375pxus_phillips_curve_2000_to_2013png15xuploadwikimediaorgwikipediacommonsthumb77eus_phillips_curve_2000_to_2013png500pxus_phillips_curve_2000_to_2013png2xdatafilewidth960datafileheight720adivclassthumbcaptiondivclassmagnifyahrefwikifileus_phillips_curve_2000_to_2013pngclassinternaltitleenlargeadivascatterplotillustratingcorrelationbetweentwovariablesinflationandunemploymentmeasuredatpointsintimedivdivdivpstephenfewdescribedeighttypesofquantitativemessagesthatusersmayattempttounderstandorcommunicatefromasetofdataandtheassociatedgraphsusedtohelpcommunicatethemessagecustomersspecifyingrequirementsandanalystsperformingthedataanalysismayconsiderthesemessagesduringthecourseoftheprocesspollitimeseriesasinglevariableiscapturedoveraperiodoftimesuchastheunemploymentrateovera10yearperiodaahrefwikiline_charttitlelinechartlinechartamaybeusedtodemonstratethetrendlilirankingcategoricalsubdivisionsarerankedinascendingordescendingordersuchasarankingofsalesperformancetheimeasureibysalespersonstheicategoryiwitheachsalespersonaicategoricalsubdivisioniduringasingleperiodaahrefwikibar_charttitlebarchartbarchartamaybeusedtoshowthecomparisonacrossthesalespersonsliliparttowholecategoricalsubdivisionsaremeasuredasaratiotothewholeieapercentageoutof100aahrefwikipie_charttitlepiechartpiechartaorbarchartcanshowthecomparisonofratiossuchasthemarketsharerepresentedbycompetitorsinamarketlilideviationcategoricalsubdivisionsarecomparedagainstareferencesuchasacomparisonofactualvsbudgetexpensesforseveraldepartmentsofabusinessforagiventimeperiodabarchartcanshowcomparisonoftheactualversusthereferenceamountlilifrequencydistributionshowsthenumberofobservationsofaparticularvariableforgivenintervalsuchasthenumberofyearsinwhichthestockmarketreturnisbetweenintervalssuchas0101120etcaahrefwikihistogramtitlehistogramhistogramaatypeofbarchartmaybeusedforthisanalysislilicorrelationcomparisonbetweenobservationsrepresentedbytwovariablesxytodetermineiftheytendtomoveinthesameoroppositedirectionsforexampleplottingunemploymentxandinflationyforasampleofmonthsaahrefwikiscatter_plottitlescatterplotscatterplotaistypicallyusedforthismessagelilinominalcomparisoncomparingcategoricalsubdivisionsinnoparticularordersuchasthesalesvolumebyproductcodeabarchartmaybeusedforthiscomparisonliligeographicorgeospatialcomparisonofavariableacrossamaporlayoutsuchastheunemploymentratebystateorthenumberofpersonsonthevariousfloorsofabuildingaahrefwikicartogramtitlecartogramcartogramaisatypicalgraphicusedsupidcite_ref12classreferenceahrefcite_note12911293asupsupidcite_ref13classreferenceahrefcite_note13911393asupliolh2spanclassmwheadlineidtechniques_for_analyzing_quantitative_datatechniquesforanalyzingquantitativedataspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection11titleeditsectiontechniquesforanalyzingquantitativedataeditaspanclassmweditsectionbracketspanspanh2divrolenoteclasshatnotenavigationnotsearchableseealsoahrefwikiproblem_solvingtitleproblemsolvingproblemsolvingadivpauthorjonathankoomeyhasrecommendedaseriesofbestpracticesforunderstandingquantitativedatatheseincludepullicheckrawdataforanomaliespriortoperformingyouranalysislilireperformimportantcalculationssuchasverifyingcolumnsofdatathatareformuladrivenliliconfirmmaintotalsarethesumofsubtotalslilicheckrelationshipsbetweennumbersthatshouldberelatedinapredictablewaysuchasratiosovertimelilinormalizenumberstomakecomparisonseasiersuchasanalyzingamountsperpersonorrelativetogdporasanindexvaluerelativetoabaseyearlilibreakproblemsintocomponentpartsbyanalyzingfactorsthatledtotheresultssuchasahrefwikidupont_analysistitledupontanalysisdupontanalysisaofreturnonequitysupidcite_refkoomey1_71classreferenceahrefcite_notekoomey1791793asupliulpforthevariablesunderexaminationanalyststypicallyobtainahrefwikidescriptive_statisticstitledescriptivestatisticsdescriptivestatisticsaforthemsuchasthemeanaverageahrefwikimediantitlemedianmedianaandahrefwikistandard_deviationtitlestandarddeviationstandarddeviationatheymayalsoanalyzetheahrefwikiprobability_distributiontitleprobabilitydistributiondistributionaofthekeyvariablestoseehowtheindividualvaluesclusteraroundthemeanpdivclassthumbtrightdivclassthumbinnerstylewidth252pxahrefwikifileus_employment_statistics__march_2015pngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumbddbus_employment_statistics__march_2015png250pxus_employment_statistics__march_2015pngwidth250height163classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumbddbus_employment_statistics__march_2015png375pxus_employment_statistics__march_2015png15xuploadwikimediaorgwikipediacommonsthumbddbus_employment_statistics__march_2015png500pxus_employment_statistics__march_2015png2xdatafilewidth1200datafileheight783adivclassthumbcaptiondivclassmagnifyahrefwikifileus_employment_statistics__march_2015pngclassinternaltitleenlargeadivanillustrationoftheahrefwikimece_principletitlemeceprinciplemeceprincipleausedfordataanalysisdivdivdivptheconsultantsatahrefwikimckinsey_and_companyclassmwredirecttitlemckinseyandcompanymckinseyandcompanyanamedatechniqueforbreakingaquantitativeproblemdownintoitscomponentpartscalledtheahrefwikimece_principletitlemeceprinciplemeceprincipleaeachlayercanbebrokendownintoitscomponentseachofthesubcomponentsmustbeahrefwikimutually_exclusive_eventsclassmwredirecttitlemutuallyexclusiveeventsmutuallyexclusiveaofeachotherandahrefwikicollectively_exhaustive_eventstitlecollectivelyexhaustiveeventscollectivelyaadduptothelayerabovethemtherelationshipisreferredtoasmutuallyexclusiveandcollectivelyexhaustiveormeceforexampleprofitbydefinitioncanbebrokendownintototalrevenueandtotalcostinturntotalrevenuecanbeanalyzedbyitscomponentssuchasrevenueofdivisionsabandcwhicharemutuallyexclusiveofeachotherandshouldaddtothetotalrevenuecollectivelyexhaustiveppanalystsmayuserobuststatisticalmeasurementstosolvecertainanalyticalproblemsahrefwikihypothesis_testingclassmwredirecttitlehypothesistestinghypothesistestingaisusedwhenaparticularhypothesisaboutthetruestateofaffairsismadebytheanalystanddataisgatheredtodeterminewhetherthatstateofaffairsistrueorfalseforexamplethehypothesismightbethatunemploymenthasnoeffectoninflationwhichrelatestoaneconomicsconceptcalledtheahrefwikiphillips_curveclassmwredirecttitlephillipscurvephillipscurveahypothesistestinginvolvesconsideringthelikelihoodofahrefwikitype_i_and_type_ii_errorstitletypeiandtypeiierrorstypeiandtypeiierrorsawhichrelatetowhetherthedatasupportsacceptingorrejectingthehypothesisppahrefwikiregression_analysistitleregressionanalysisregressionanalysisamaybeusedwhentheanalystistryingtodeterminetheextenttowhichindependentvariablexaffectsdependentvariableyegtowhatextentdochangesintheunemploymentratexaffecttheinflationrateythisisanattempttomodelorfitanequationlineorcurvetothedatasuchthatyisafunctionofxpparelnofollowclassexternaltexthrefhttpswwwerimeurnlcentresnecessaryconditionanalysisnecessaryconditionanalysisancamaybeusedwhentheanalystistryingtodeterminetheextenttowhichindependentvariablexallowsvariableyegtowhatextentisacertainunemploymentratexnecessaryforacertaininflationrateywhereasmultipleregressionanalysisusesadditivelogicwhereeachxvariablecanproducetheoutcomeandthexscancompensateforeachothertheyaresufficientbutnotnecessarynecessaryconditionanalysisncausesnecessitylogicwhereoneormorexvariablesallowtheoutcometoexistbutmaynotproduceittheyarenecessarybutnotsufficienteachsinglenecessaryconditionmustbepresentandcompensationisnotpossibleph2spanclassmwheadlineidanalytical_activities_of_data_usersanalyticalactivitiesofdatausersspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection12titleeditsectionanalyticalactivitiesofdatauserseditaspanclassmweditsectionbracketspanspanh2pusersmayhaveparticulardatapointsofinterestwithinadatasetasopposedtogeneralmessagingoutlinedabovesuchlowleveluseranalyticactivitiesarepresentedinthefollowingtablethetaxonomycanalsobeorganizedbythreepolesofactivitiesretrievingvaluesfindingdatapointsandarrangingdatapointssupidcite_ref14classreferenceahrefcite_note14911493asupsupidcite_ref15classreferenceahrefcite_note15911593asupsupidcite_ref16classreferenceahrefcite_note16911693asupsupidcite_refcontaas_170classreferenceahrefcite_notecontaas17911793asupptableclasswikitableborder1tbodytrthaligncenterththwidth160taskththgeneralbrdescriptionththproformabrabstractththwidth35examplesthtrtrtdaligncenter1tdtdbretrievevaluebtdtdgivenasetofspecificcasesfindattributesofthosecasestdtdwhatarethevaluesofattributesxyzinthedatacasesabctdtdiwhatisthemileagepergallonofthefordmondeoipihowlongisthemoviegonewiththewindiptdtrtrtdaligncenter2tdtdbfilterbtdtdgivensomeconcreteconditionsonattributevaluesfinddatacasessatisfyingthoseconditionstdtdwhichdatacasessatisfyconditionsabctdtdiwhatkelloggscerealshavehighfiberipiwhatcomedieshavewonawardsippiwhichfundsunderperformedthesp500iptdtrtrtdaligncenter3tdtdbcomputederivedvaluebtdtdgivenasetofdatacasescomputeanaggregatenumericrepresentationofthosedatacasestdtdwhatisthevalueofaggregationfunctionfoveragivensetsofdatacasestdtdiwhatistheaveragecaloriecontentofpostcerealsipiwhatisthegrossincomeofallstorescombinedippihowmanymanufacturersofcarsarethereiptdtrtrtdaligncenter4tdtdbfindextremumbtdtdfinddatacasespossessinganextremevalueofanattributeoveritsrangewithinthedatasettdtdwhatarethetopbottomndatacaseswithrespecttoattributeatdtdiwhatisthecarwiththehighestmpgipiwhatdirectorfilmhaswonthemostawardsippiwhatmarvelstudiosfilmhasthemostrecentreleasedateiptdtrtrtdaligncenter5tdtdbsortbtdtdgivenasetofdatacasesrankthemaccordingtosomeordinalmetrictdtdwhatisthesortedorderofasetsofdatacasesaccordingtotheirvalueofattributeatdtdiorderthecarsbyweightipirankthecerealsbycaloriesiptdtrtrtdaligncenter6tdtdbdeterminerangebtdtdgivenasetofdatacasesandanattributeofinterestfindthespanofvalueswithinthesettdtdwhatistherangeofvaluesofattributeainasetsofdatacasestdtdiwhatistherangeoffilmlengthsipiwhatistherangeofcarhorsepowersippiwhatactressesareinthedatasetiptdtrtrtdaligncenter7tdtdbcharacterizedistributionbtdtdgivenasetofdatacasesandaquantitativeattributeofinterestcharacterizethedistributionofthatattributesvaluesoverthesettdtdwhatisthedistributionofvaluesofattributeainasetsofdatacasestdtdiwhatisthedistributionofcarbohydratesincerealsipiwhatistheagedistributionofshoppersiptdtrtrtdaligncenter8tdtdbfindanomaliesbtdtdidentifyanyanomalieswithinagivensetofdatacaseswithrespecttoagivenrelationshiporexpectationegstatisticaloutlierstdtdwhichdatacasesinasetsofdatacaseshaveunexpectedexceptionalvaluestdtdiarethereexceptionstotherelationshipbetweenhorsepowerandaccelerationipiarethereanyoutliersinproteiniptdtrtrtdaligncenter9tdtdbclusterbtdtdgivenasetofdatacasesfindclustersofsimilarattributevaluestdtdwhichdatacasesinasetsofdatacasesaresimilarinvalueforattributesxyztdtdiaretheregroupsofcerealswsimilarfatcaloriessugaripiisthereaclusteroftypicalfilmlengthsiptdtrtrtdaligncenter10tdtdbcorrelatebtdtdgivenasetofdatacasesandtwoattributesdetermineusefulrelationshipsbetweenthevaluesofthoseattributestdtdwhatisthecorrelationbetweenattributesxandyoveragivensetsofdatacasestdtdiisthereacorrelationbetweencarbohydratesandfatipiisthereacorrelationbetweencountryoforiginandmpgippidodifferentgendershaveapreferredpaymentmethodippiisthereatrendofincreasingfilmlengthovertheyearsiptdtrtrtdaligncenter11tdtdbahrefwikicontextualization_computer_sciencetitlecontextualizationcomputersciencecontextualizationasupidcite_refcontaas_171classreferenceahrefcite_notecontaas17911793asupbtdtdgivenasetofdatacasesfindcontextualrelevancyofthedatatotheuserstdtdwhichdatacasesinasetsofdatacasesarerelevanttothecurrentuserscontexttdtdiaretheregroupsofrestaurantsthathavefoodsbasedonmycurrentcaloricintakeitdtrtbodytableh2spanclassmwheadlineidbarriers_to_effective_analysisbarrierstoeffectiveanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection13titleeditsectionbarrierstoeffectiveanalysiseditaspanclassmweditsectionbracketspanspanh2pbarrierstoeffectiveanalysismayexistamongtheanalystsperformingthedataanalysisoramongtheaudiencedistinguishingfactfromopinioncognitivebiasesandinnumeracyareallchallengestosounddataanalysisph3spanclassmwheadlineidconfusing_fact_and_opinionconfusingfactandopinionspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection14titleeditsectionconfusingfactandopinioneditaspanclassmweditsectionbracketspanspanh3divclassquoteboxpullquotefloatrightstylewidth250px32styledatamwdeduplicatetemplatestylesr856303512mwparseroutputquoteboxbackgroundcolorf9f9f9border1pxsolidaaaboxsizingborderboxpadding10pxfontsize88mwparseroutputquoteboxfloatleftmargin05em14em08em0mwparseroutputquoteboxfloatrightmargin05em008em14emmwparseroutputquoteboxcenteredmargin05emauto08emautomwparseroutputquoteboxfloatleftpmwparseroutputquoteboxfloatrightpfontstyleinheritmwparseroutputquoteboxtitlebackgroundcolorf9f9f9textaligncenterfontsizelargerfontweightboldmwparseroutputquoteboxquotequotedbeforefontfamilytimesnewromanseriffontweightboldfontsizelargecolorgraycontentverticalalign45lineheight0mwparseroutputquoteboxquotequotedafterfontfamilytimesnewromanseriffontweightboldfontsizelargecolorgraycontentlineheight0mwparseroutputquoteboxleftalignedtextalignleftmwparseroutputquoteboxrightalignedtextalignrightmwparseroutputquoteboxcenteralignedtextaligncentermwparseroutputquoteboxcitedisplayblockfontstylenormalmediascreenandmaxwidth360pxmwparseroutputquoteboxminwidth100margin0008emimportantfloatnoneimportantstyledivclassquoteboxquoteleftalignedstyleyouareentitledtoyourownopinionbutyouarenotentitledtoyourownfactsdivpciteclassleftalignedstyleahrefwikidaniel_patrick_moynihantitledanielpatrickmoynihandanielpatrickmoynihanacitepdivpeffectiveanalysisrequiresobtainingrelevantahrefwikifacttitlefactfactsatoanswerquestionssupportaconclusionorformalahrefwikiopiniontitleopinionopinionaortestahrefwikihypothesesclassmwredirecttitlehypotheseshypothesesafactsbydefinitionareirrefutablemeaningthatanypersoninvolvedintheanalysisshouldbeabletoagreeuponthemforexampleinaugust2010theahrefwikicongressional_budget_officetitlecongressionalbudgetofficecongressionalbudgetofficeacboestimatedthatextendingtheahrefwikibush_tax_cutstitlebushtaxcutsbushtaxcutsaof2001and2003forthe20112020timeperiodwouldaddapproximately33trilliontothenationaldebtsupidcite_ref18classreferenceahrefcite_note18911893asupeveryoneshouldbeabletoagreethatindeedthisiswhatcboreportedtheycanallexaminethereportthismakesitafactwhetherpersonsagreeordisagreewiththecboistheirownopinionppasanotherexampletheauditorofapubliccompanymustarriveataformalopiniononwhetherfinancialstatementsofpubliclytradedcorporationsarefairlystatedinallmaterialrespectsthisrequiresextensiveanalysisoffactualdataandevidencetosupporttheiropinionwhenmakingtheleapfromfactstoopinionsthereisalwaysthepossibilitythattheopinionisahrefwikitype_i_and_type_ii_errorstitletypeiandtypeiierrorserroneousaph3spanclassmwheadlineidcognitive_biasescognitivebiasesspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection15titleeditsectioncognitivebiaseseditaspanclassmweditsectionbracketspanspanh3pthereareavarietyofahrefwikicognitive_biastitlecognitivebiascognitivebiasesathatcanadverselyaffectanalysisforexampleahrefwikiconfirmation_biastitleconfirmationbiasconfirmationbiasaisthetendencytosearchfororinterpretinformationinawaythatconfirmsonespreconceptionsinadditionindividualsmaydiscreditinformationthatdoesnotsupporttheirviewsppanalystsmaybetrainedspecificallytobeawareofthesebiasesandhowtoovercometheminhisbookipsychologyofintelligenceanalysisiretiredciaanalystahrefwikirichards_heuertitlerichardsheuerrichardsheuerawrotethatanalystsshouldclearlydelineatetheirassumptionsandchainsofinferenceandspecifythedegreeandsourceoftheuncertaintyinvolvedintheconclusionsheemphasizedprocedurestohelpsurfaceanddebatealternativepointsofviewsupidcite_refheuer1_190classreferenceahrefcite_noteheuer119911993asupph3spanclassmwheadlineidinnumeracyinnumeracyspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection16titleeditsectioninnumeracyeditaspanclassmweditsectionbracketspanspanh3peffectiveanalystsaregenerallyadeptwithavarietyofnumericaltechniqueshoweveraudiencesmaynothavesuchliteracywithnumbersorahrefwikinumeracytitlenumeracynumeracyatheyaresaidtobeinnumeratepersonscommunicatingthedatamayalsobeattemptingtomisleadormisinformdeliberatelyusingbadnumericaltechniquessupidcite_ref20classreferenceahrefcite_note20912093asupppforexamplewhetheranumberisrisingorfallingmaynotbethekeyfactormoreimportantmaybethenumberrelativetoanothernumbersuchasthesizeofgovernmentrevenueorspendingrelativetothesizeoftheeconomygdportheamountofcostrelativetorevenueincorporatefinancialstatementsthisnumericaltechniqueisreferredtoasnormalizationsupidcite_refkoomey1_72classreferenceahrefcite_notekoomey1791793asuporcommonsizingtherearemanysuchtechniquesemployedbyanalystswhetheradjustingforinflationiecomparingrealvsnominaldataorconsideringpopulationincreasesdemographicsetcanalystsapplyavarietyoftechniquestoaddressthevariousquantitativemessagesdescribedinthesectionaboveppanalystsmayalsoanalyzedataunderdifferentassumptionsorscenariosforexamplewhenanalystsperformahrefwikifinancial_statement_analysistitlefinancialstatementanalysisfinancialstatementanalysisatheywilloftenrecastthefinancialstatementsunderdifferentassumptionstohelparriveatanestimateoffuturecashflowwhichtheythendiscounttopresentvaluebasedonsomeinterestratetodeterminethevaluationofthecompanyoritsstocksimilarlythecboanalyzestheeffectsofvariouspolicyoptionsonthegovernmentsrevenueoutlaysanddeficitscreatingalternativefuturescenariosforkeymeasuresph2spanclassmwheadlineidother_topicsothertopicsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection17titleeditsectionothertopicseditaspanclassmweditsectionbracketspanspanh2h3spanclassmwheadlineidsmart_buildingssmartbuildingsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection18titleeditsectionsmartbuildingseditaspanclassmweditsectionbracketspanspanh3padataanalyticsapproachcanbeusedinordertopredictenergyconsumptioninbuildingssupidcite_reftowards_energy_efficiency_smart_buildings_models_based_on_intelligent_data_analytics_210classreferenceahrefcite_notetowards_energy_efficiency_smart_buildings_models_based_on_intelligent_data_analytics21912193asupthedifferentstepsofthedataanalysisprocessarecarriedoutinordertorealisesmartbuildingswherethebuildingmanagementandcontroloperationsincludingheatingventilationairconditioninglightingandsecurityarerealisedautomaticallybymimingtheneedsofthebuildingusersandoptimisingresourceslikeenergyandtimeph3spanclassmwheadlineidanalytics_and_business_intelligenceanalyticsandbusinessintelligencespanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection19titleeditsectionanalyticsandbusinessintelligenceeditaspanclassmweditsectionbracketspanspanh3divrolenoteclasshatnotenavigationnotsearchablemainarticleahrefwikianalyticstitleanalyticsanalyticsadivpanalyticsistheextensiveuseofdatastatisticalandquantitativeanalysisexplanatoryandpredictivemodelsandfactbasedmanagementtodrivedecisionsandactionsitisasubsetofahrefwikibusiness_intelligencetitlebusinessintelligencebusinessintelligenceawhichisasetoftechnologiesandprocessesthatusedatatounderstandandanalyzebusinessperformancesupidcite_refcompeting_on_analytics_2007_220classreferenceahrefcite_notecompeting_on_analytics_200722912293asupph3spanclassmwheadlineideducationeducationspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection20titleeditsectioneducationeditaspanclassmweditsectionbracketspanspanh3divclassthumbtrightdivclassthumbinnerstylewidth352pxahrefwikifileuseractivitiespngclassimageimgaltsrcuploadwikimediaorgwikipediacommonsthumb880useractivitiespng350pxuseractivitiespngwidth350height279classthumbimagesrcsetuploadwikimediaorgwikipediacommonsthumb880useractivitiespng525pxuseractivitiespng15xuploadwikimediaorgwikipediacommonsthumb880useractivitiespng700pxuseractivitiespng2xdatafilewidth710datafileheight566adivclassthumbcaptiondivclassmagnifyahrefwikifileuseractivitiespngclassinternaltitleenlargeadivanalyticactivitiesofdatavisualizationusersdivdivdivpinahrefwikieducationtitleeducationeducationamosteducatorshaveaccesstoaahrefwikidata_systemtitledatasystemdatasystemaforthepurposeofanalyzingstudentdatasupidcite_ref23classreferenceahrefcite_note23912393asupthesedatasystemspresentdatatoeducatorsinanahrefwikioverthecounter_datatitleoverthecounterdataoverthecounterdataaformatembeddinglabelssupplementaldocumentationandahelpsystemandmakingkeypackagedisplayandcontentdecisionstoimprovetheaccuracyofeducatorsdataanalysessupidcite_ref24classreferenceahrefcite_note24912493asupph2spanclassmwheadlineidpractitioner_notespractitionernotesspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection21titleeditsectionpractitionernoteseditaspanclassmweditsectionbracketspanspanh2pthissectioncontainsrathertechnicalexplanationsthatmayassistpractitionersbutarebeyondthetypicalscopeofawikipediaarticleph3spanclassmwheadlineidinitial_data_analysisinitialdataanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection22titleeditsectioninitialdataanalysiseditaspanclassmweditsectionbracketspanspanh3pthemostimportantdistinctionbetweentheinitialdataanalysisphaseandthemainanalysisphaseisthatduringinitialdataanalysisonerefrainsfromanyanalysisthatisaimedatansweringtheoriginalresearchquestiontheinitialdataanalysisphaseisguidedbythefollowingfourquestionssupidcite_reffootnoteadr2008a337_250classreferenceahrefcite_notefootnoteadr2008a33725912593asupph4spanclassmwheadlineidquality_of_dataqualityofdataspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection23titleeditsectionqualityofdataeditaspanclassmweditsectionbracketspanspanh4pthequalityofthedatashouldbecheckedasearlyaspossibledataqualitycanbeassessedinseveralwaysusingdifferenttypesofanalysisfrequencycountsdescriptivestatisticsmeanstandarddeviationmediannormalityskewnesskurtosisfrequencyhistogramsnvariablesarecomparedwithcodingschemesofvariablesexternaltothedatasetandpossiblycorrectedifcodingschemesarenotcomparablepullitestforahrefwikicommonmethod_variancetitlecommonmethodvariancecommonmethodvariancealiulpthechoiceofanalysestoassessthedataqualityduringtheinitialdataanalysisphasedependsontheanalysesthatwillbeconductedinthemainanalysisphasesupidcite_reffootnoteadr2008a338341_260classreferenceahrefcite_notefootnoteadr2008a33834126912693asupph4spanclassmwheadlineidquality_of_measurementsqualityofmeasurementsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection24titleeditsectionqualityofmeasurementseditaspanclassmweditsectionbracketspanspanh4pthequalityoftheahrefwikimeasuring_instrumenttitlemeasuringinstrumentmeasurementinstrumentsashouldonlybecheckedduringtheinitialdataanalysisphasewhenthisisnotthefocusorresearchquestionofthestudyoneshouldcheckwhetherstructureofmeasurementinstrumentscorrespondstostructurereportedintheliteraturepptherearetwowaystoassessmeasurementnoteonlyonewayseemstobelistedpullianalysisofhomogeneityahrefwikiinternal_consistencytitleinternalconsistencyinternalconsistencyawhichgivesanindicationoftheahrefwikireliability_statisticstitlereliabilitystatisticsreliabilityaofameasurementinstrumentduringthisanalysisoneinspectsthevariancesoftheitemsandthescalestheahrefwikicronbach27s_alphatitlecronbach39salphacronbachsaofthescalesandthechangeinthecronbachsalphawhenanitemwouldbedeletedfromascalesupidcite_reffootnoteadr2008a341342_270classreferenceahrefcite_notefootnoteadr2008a34134227912793asupliulh4spanclassmwheadlineidinitial_transformationsinitialtransformationsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection25titleeditsectioninitialtransformationseditaspanclassmweditsectionbracketspanspanh4pafterassessingthequalityofthedataandofthemeasurementsonemightdecidetoimputemissingdataortoperforminitialtransformationsofoneormorevariablesalthoughthiscanalsobedoneduringthemainanalysisphasesupidcite_reffootnoteadr2008a344_280classreferenceahrefcite_notefootnoteadr2008a34428912893asupbrpossibletransformationsofvariablesaresupidcite_ref29classreferenceahrefcite_note29912993asuppullisquareroottransformationifthedistributiondiffersmoderatelyfromnormallililogtransformationifthedistributiondifferssubstantiallyfromnormalliliinversetransformationifthedistributiondiffersseverelyfromnormallilimakecategoricalordinaldichotomousifthedistributiondiffersseverelyfromnormalandnotransformationshelpliulh4spaniddid_the_implementation_of_the_study_fulfill_the_intentions_of_the_research_design3fspanspanclassmwheadlineiddid_the_implementation_of_the_study_fulfill_the_intentions_of_the_research_designdidtheimplementationofthestudyfulfilltheintentionsoftheresearchdesignspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection26titleeditsectiondidtheimplementationofthestudyfulfilltheintentionsoftheresearchdesigneditaspanclassmweditsectionbracketspanspanh4poneshouldcheckthesuccessoftheahrefwikirandomizationtitlerandomizationrandomizationaprocedureforinstancebycheckingwhetherbackgroundandsubstantivevariablesareequallydistributedwithinandacrossgroupsbrifthestudydidnotneedorusearandomizationprocedureoneshouldcheckthesuccessofthenonrandomsamplingforinstancebycheckingwhetherallsubgroupsofthepopulationofinterestarerepresentedinsamplebrotherpossibledatadistortionsthatshouldbecheckedarepulliahrefwikidropout_electronicsclassmwredirecttitledropoutelectronicsdropoutathisshouldbeidentifiedduringtheinitialdataanalysisphaseliliitemahrefwikiresponse_rate_surveytitleresponseratesurveynonresponseawhetherthisisrandomornotshouldbeassessedduringtheinitialdataanalysisphaselilitreatmentqualityusingahrefwikimanipulation_checktitlemanipulationcheckmanipulationchecksasupidcite_reffootnoteadr2008a344345_300classreferenceahrefcite_notefootnoteadr2008a34434530913093asupliulh4spanclassmwheadlineidcharacteristics_of_data_samplecharacteristicsofdatasamplespanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection27titleeditsectioncharacteristicsofdatasampleeditaspanclassmweditsectionbracketspanspanh4pinanyreportorarticlethestructureofthesamplemustbeaccuratelydescribeditisespeciallyimportanttoexactlydeterminethestructureofthesampleandspecificallythesizeofthesubgroupswhensubgroupanalyseswillbeperformedduringthemainanalysisphasebrthecharacteristicsofthedatasamplecanbeassessedbylookingatpullibasicstatisticsofimportantvariablesliliscatterplotslilicorrelationsandassociationslilicrosstabulationssupidcite_reffootnoteadr2008a345_310classreferenceahrefcite_notefootnoteadr2008a34531913193asupliulh4spanclassmwheadlineidfinal_stage_of_the_initial_data_analysisfinalstageoftheinitialdataanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection28titleeditsectionfinalstageoftheinitialdataanalysiseditaspanclassmweditsectionbracketspanspanh4pduringthefinalstagethefindingsoftheinitialdataanalysisaredocumentedandnecessarypreferableandpossiblecorrectiveactionsaretakenbralsotheoriginalplanforthemaindataanalysescanandshouldbespecifiedinmoredetailorrewrittenbrinordertodothisseveraldecisionsaboutthemaindataanalysescanandshouldbemadepulliinthecaseofnonahrefwikinormal_distributiontitlenormaldistributionnormalsashouldoneahrefwikidata_transformation_statisticstitledatatransformationstatisticstransformavariablesmakevariablescategoricalordinaldichotomousadapttheanalysismethodliliinthecaseofahrefwikimissing_datatitlemissingdatamissingdataashouldoneneglectorimputethemissingdatawhichimputationtechniqueshouldbeusedliliinthecaseofahrefwikioutliertitleoutlieroutliersashouldoneuserobustanalysistechniquesliliincaseitemsdonotfitthescaleshouldoneadaptthemeasurementinstrumentbyomittingitemsorratherensurecomparabilitywithotherusesofthemeasurementinstrumentsliliinthecaseoftoosmallsubgroupsshouldonedropthehypothesisaboutintergroupdifferencesorusesmallsampletechniqueslikeexacttestsorahrefwikibootstrapping_statisticstitlebootstrappingstatisticsbootstrappingaliliincasetheahrefwikirandomizationtitlerandomizationrandomizationaprocedureseemstobedefectivecanandshouldonecalculateahrefwikipropensity_score_matchingtitlepropensityscorematchingpropensityscoresaandincludethemascovariatesinthemainanalysessupidcite_reffootnoteadr2008a345346_320classreferenceahrefcite_notefootnoteadr2008a34534632913293asupliulh4spanclassmwheadlineidanalysisanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection29titleeditsectionanalysiseditaspanclassmweditsectionbracketspanspanh4pseveralanalysescanbeusedduringtheinitialdataanalysisphasesupidcite_reffootnoteadr2008a346347_330classreferenceahrefcite_notefootnoteadr2008a34634733913393asuppulliunivariatestatisticssinglevariablelilibivariateassociationscorrelationsliligraphicaltechniquesscatterplotsliulpitisimportanttotakethemeasurementlevelsofthevariablesintoaccountfortheanalysesasspecialstatisticaltechniquesareavailableforeachlevelsupidcite_reffootnoteadr2008a349353_340classreferenceahrefcite_notefootnoteadr2008a34935334913493asuppullinominalandordinalvariablesullifrequencycountsnumbersandpercentagesliliassociationsullicircumambulationscrosstabulationslilihierarchicalloglinearanalysisrestrictedtoamaximumof8variableslililoglinearanalysistoidentifyrelevantimportantvariablesandpossibleconfoundersliulliliexacttestsorbootstrappingincasesubgroupsaresmalllilicomputationofnewvariablesliullilicontinuousvariablesullidistributionullistatisticsmsdvarianceskewnesskurtosislilistemandleafdisplaysliliboxplotsliulliulliulh4spanclassmwheadlineidnonlinear_analysisnonlinearanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection30titleeditsectionnonlinearanalysiseditaspanclassmweditsectionbracketspanspanh4pnonlinearanalysiswillbenecessarywhenthedataisrecordedfromaahrefwikinonlinear_systemtitlenonlinearsystemnonlinearsystemanonlinearsystemscanexhibitcomplexdynamiceffectsincludingahrefwikibifurcation_theorytitlebifurcationtheorybifurcationsaahrefwikichaos_theorytitlechaostheorychaosaahrefwikiharmonicsclassmwredirecttitleharmonicsharmonicsaandahrefwikisubharmonicsclassmwredirecttitlesubharmonicssubharmonicsathatcannotbeanalyzedusingsimplelinearmethodsnonlineardataanalysisiscloselyrelatedtoahrefwikinonlinear_system_identificationtitlenonlinearsystemidentificationnonlinearsystemidentificationasupidcite_refsab1_350classreferenceahrefcite_notesab135913593asupph3spanclassmwheadlineidmain_data_analysismaindataanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection31titleeditsectionmaindataanalysiseditaspanclassmweditsectionbracketspanspanh3pinthemainanalysisphaseanalysesaimedatansweringtheresearchquestionareperformedaswellasanyotherrelevantanalysisneededtowritethefirstdraftoftheresearchreportsupidcite_reffootnoteadr2008b363_360classreferenceahrefcite_notefootnoteadr2008b36336913693asupph4spanclassmwheadlineidexploratory_and_confirmatory_approachesexploratoryandconfirmatoryapproachesspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection32titleeditsectionexploratoryandconfirmatoryapproacheseditaspanclassmweditsectionbracketspanspanh4pinthemainanalysisphaseeitheranexploratoryorconfirmatoryapproachcanbeadoptedusuallytheapproachisdecidedbeforedataiscollectedinanexploratoryanalysisnoclearhypothesisisstatedbeforeanalysingthedataandthedataissearchedformodelsthatdescribethedatawellinaconfirmatoryanalysisclearhypothesesaboutthedataaretestedppahrefwikiexploratory_data_analysistitleexploratorydataanalysisexploratorydataanalysisashouldbeinterpretedcarefullywhentestingmultiplemodelsatoncethereisahighchanceonfindingatleastoneofthemtobesignificantbutthiscanbeduetoaahrefwikitype_1_errorclassmwredirecttitletype1errortype1erroraitisimportanttoalwaysadjustthesignificancelevelwhentestingmultiplemodelswithforexampleaahrefwikibonferroni_correctiontitlebonferronicorrectionbonferronicorrectionaalsooneshouldnotfollowupanexploratoryanalysiswithaconfirmatoryanalysisinthesamedatasetanexploratoryanalysisisusedtofindideasforatheorybutnottotestthattheoryaswellwhenamodelisfoundexploratoryinadatasetthenfollowingupthatanalysiswithaconfirmatoryanalysisinthesamedatasetcouldsimplymeanthattheresultsoftheconfirmatoryanalysisareduetothesameahrefwikitype_1_errorclassmwredirecttitletype1errortype1errorathatresultedintheexploratorymodelinthefirstplacetheconfirmatoryanalysisthereforewillnotbemoreinformativethantheoriginalexploratoryanalysissupidcite_reffootnoteadr2008b361362_370classreferenceahrefcite_notefootnoteadr2008b36136237913793asupph4spanclassmwheadlineidstability_of_resultsstabilityofresultsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection33titleeditsectionstabilityofresultseditaspanclassmweditsectionbracketspanspanh4pitisimportanttoobtainsomeindicationabouthowgeneralizabletheresultsaresupidcite_reffootnoteadr2008b361371_380classreferenceahrefcite_notefootnoteadr2008b36137138913893asupwhilethisishardtocheckonecanlookatthestabilityoftheresultsaretheresultsreliableandreproducibletherearetwomainwaysofdoingthispulliahrefwikicrossvalidation_statisticstitlecrossvalidationstatisticscrossvalidationabysplittingthedatainmultiplepartswecancheckifananalysislikeafittedmodelbasedononepartofthedatageneralizestoanotherpartofthedataaswellliliahrefwikisensitivity_analysistitlesensitivityanalysissensitivityanalysisaaproceduretostudythebehaviorofasystemormodelwhenglobalparametersaresystematicallyvariedonewaytodothisiswithbootstrappingliulh4spanclassmwheadlineidstatistical_methodsstatisticalmethodsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection34titleeditsectionstatisticalmethodseditaspanclassmweditsectionbracketspanspanh4pmanystatisticalmethodshavebeenusedforstatisticalanalysesaverybrieflistoffourofthemorepopularmethodsispulliahrefwikigeneral_linear_modeltitlegenerallinearmodelgenerallinearmodelaawidelyusedmodelonwhichvariousmethodsarebasedegahrefwikit_testclassmwredirecttitlettestttestaahrefwikianovaclassmwredirecttitleanovaanovaaahrefwikiancovaclassmwredirecttitleancovaancovaaahrefwikimanovaclassmwredirecttitlemanovamanovaausableforassessingtheeffectofseveralpredictorsononeormorecontinuousdependentvariablesliliahrefwikigeneralized_linear_modeltitlegeneralizedlinearmodelgeneralizedlinearmodelaanextensionofthegenerallinearmodelfordiscretedependentvariablesliliahrefwikistructural_equation_modellingclassmwredirecttitlestructuralequationmodellingstructuralequationmodellingausableforassessinglatentstructuresfrommeasuredmanifestvariablesliliahrefwikiitem_response_theorytitleitemresponsetheoryitemresponsetheoryamodelsformostlyassessingonelatentvariablefromseveralbinarymeasuredvariableseganexamliulh2spanclassmwheadlineidfree_software_for_data_analysisfreesoftwarefordataanalysisspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection35titleeditsectionfreesoftwarefordataanalysiseditaspanclassmweditsectionbracketspanspanh2ulliahrefwikidevinfotitledevinfodevinfoaadatabasesystemendorsedbytheahrefwikiunited_nations_development_grouptitleunitednationsdevelopmentgroupunitednationsdevelopmentgroupaformonitoringandanalyzinghumandevelopmentliliahrefwikielkititleelkielkiadataminingframeworkinjavawithdataminingorientedvisualizationfunctionsliliahrefwikiknimetitleknimeknimeathekonstanzinformationminerauserfriendlyandcomprehensivedataanalyticsframeworkliliahrefwikiorange_softwaretitleorangesoftwareorangeaavisualprogrammingtoolfeaturingahrefwikiinteractive_data_visualizationtitleinteractivedatavisualizationinteractiveaahrefwikidata_visualizationtitledatavisualizationdatavisualizationaandmethodsforstatisticaldataanalysisahrefwikidata_miningtitledataminingdataminingaandahrefwikimachine_learningtitlemachinelearningmachinelearningaliliarelnofollowclassexternaltexthrefhttpsfolkuionoohammerpastpastafreesoftwareforscientificdataanalysisliliahrefwikiphysics_analysis_workstationtitlephysicsanalysisworkstationpawafortrancdataanalysisframeworkdevelopedatahrefwikicerntitlecerncernaliliahrefwikir_programming_languagetitlerprogramminglanguageraaprogramminglanguageandsoftwareenvironmentforstatisticalcomputingandgraphicsliliahrefwikiroottitlerootrootacdataanalysisframeworkdevelopedatahrefwikicerntitlecerncernaliliahrefwikiscipytitlescipyscipyaandahrefwikipandas_softwaretitlepandassoftwarepandasapythonlibrariesfordataanalysisliulh2spanclassmwheadlineidinternational_data_analysis_contestsinternationaldataanalysiscontestsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection36titleeditsectioninternationaldataanalysiscontestseditaspanclassmweditsectionbracketspanspanh2pdifferentcompaniesororganizationsholdadataanalysisconteststoencourageresearchersutilizetheirdataortosolveaparticularquestionusingdataanalysisafewexamplesofwellknowninternationaldataanalysiscontestsareasfollowspullikagglecompetitionheldbyahrefwikikaggletitlekagglekaggleasupidcite_ref39classreferenceahrefcite_note39913993asupliliahrefwikiltpp_international_data_analysis_contestclassmwredirecttitleltppinternationaldataanalysiscontestltppdataanalysiscontestaheldbyahrefwikifhwaclassmwredirecttitlefhwafhwaaandahrefwikiasceclassmwredirecttitleasceasceasupidcite_refnehme_20160929_400classreferenceahrefcite_notenehme_2016092940914093asupsupidcite_ref41classreferenceahrefcite_note41914193asupliulh2spanclassmwheadlineidsee_alsoseealsospanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection37titleeditsectionseealsoeditaspanclassmweditsectionbracketspanspanh2divrolenavigationarialabelportalsclassnoprintportalplainlisttrightstylemargin05em005em1embordersolidaaa1pxulstyledisplaytableboxsizingborderboxpadding01emmaxwidth175pxbackgroundf9f9f9fontsize85lineheight110fontstyleitalicfontweightboldlistyledisplaytablerowspanstyledisplaytablecellpadding02emverticalalignmiddletextaligncenterahrefwikifilefisher_iris_versicolor_sepalwidthsvgclassimageimgalticonsrcuploadwikimediaorgwikipediacommonsthumb440fisher_iris_versicolor_sepalwidthsvg32pxfisher_iris_versicolor_sepalwidthsvgpngwidth32height22classnoviewersrcsetuploadwikimediaorgwikipediacommonsthumb440fisher_iris_versicolor_sepalwidthsvg48pxfisher_iris_versicolor_sepalwidthsvgpng15xuploadwikimediaorgwikipediacommonsthumb440fisher_iris_versicolor_sepalwidthsvg64pxfisher_iris_versicolor_sepalwidthsvgpng2xdatafilewidth822datafileheight567aspanspanstyledisplaytablecellpadding02em02em02em03emverticalalignmiddleahrefwikiportalstatisticstitleportalstatisticsstatisticsportalaspanliuldivdivclassdivcolcolumnscolumnwidthstylemozcolumnwidth20emwebkitcolumnwidth20emcolumnwidth20emulliahrefwikiactuarial_sciencetitleactuarialscienceactuarialsciencealiliahrefwikianalyticstitleanalyticsanalyticsaliliahrefwikibig_datatitlebigdatabigdataaliliahrefwikibusiness_intelligencetitlebusinessintelligencebusinessintelligencealiliahrefwikicensoring_statisticstitlecensoringstatisticscensoringstatisticsaliliahrefwikicomputational_physicstitlecomputationalphysicscomputationalphysicsaliliahrefwikidata_acquisitiontitledataacquisitiondataacquisitionaliliahrefwikidata_blendingtitledatablendingdatablendingaliliahrefwikidata_governancetitledatagovernancedatagovernancealiliahrefwikidata_miningtitledataminingdataminingaliliahrefwikidata_presentation_architectureclassmwredirecttitledatapresentationarchitecturedatapresentationarchitecturealiliahrefwikidata_sciencetitledatasciencedatasciencealiliahrefwikidigital_signal_processingtitledigitalsignalprocessingdigitalsignalprocessingaliliahrefwikidimension_reductionclassmwredirecttitledimensionreductiondimensionreductionaliliahrefwikiearly_case_assessmenttitleearlycaseassessmentearlycaseassessmentaliliahrefwikiexploratory_data_analysistitleexploratorydataanalysisexploratorydataanalysisaliliahrefwikifourier_analysistitlefourieranalysisfourieranalysisaliliahrefwikimachine_learningtitlemachinelearningmachinelearningaliliahrefwikimultilinear_principal_component_analysistitlemultilinearprincipalcomponentanalysismultilinearpcaaliliahrefwikimultilinear_subspace_learningtitlemultilinearsubspacelearningmultilinearsubspacelearningaliliahrefwikimultiway_data_analysistitlemultiwaydataanalysismultiwaydataanalysisaliliahrefwikinearest_neighbor_searchtitlenearestneighborsearchnearestneighborsearchaliliahrefwikinonlinear_system_identificationtitlenonlinearsystemidentificationnonlinearsystemidentificationaliliahrefwikipredictive_analyticstitlepredictiveanalyticspredictiveanalyticsaliliahrefwikiprincipal_component_analysistitleprincipalcomponentanalysisprincipalcomponentanalysisaliliahrefwikiqualitative_researchtitlequalitativeresearchqualitativeresearchaliliahrefwikiscientific_computingclassmwredirecttitlescientificcomputingscientificcomputingaliliahrefwikistructured_data_analysis_statisticstitlestructureddataanalysisstatisticsstructureddataanalysisstatisticsaliliahrefwikisystem_identificationtitlesystemidentificationsystemidentificationaliliahrefwikitest_methodtitletestmethodtestmethodaliliahrefwikitext_analyticsclassmwredirecttitletextanalyticstextanalyticsaliliahrefwikiunstructured_datatitleunstructureddataunstructureddataaliliahrefwikiwavelettitlewaveletwaveletaliuldivh2spanclassmwheadlineidreferencesreferencesspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection38titleeditsectionreferenceseditaspanclassmweditsectionbracketspanspanh2h3spanclassmwheadlineidcitationscitationsspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection39titleeditsectioncitationseditaspanclassmweditsectionbracketspanspanh3divclassrefliststyleliststyletypedecimaldivclassmwreferenceswrapmwreferencescolumnsolclassreferencesliidcite_note1spanclassmwcitebacklinkbahrefcite_ref1abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpswebarchiveorgweb20171018181046httpsspotlessdatacomblogexploringdataanalysisexploringdataanalysisaspanliliidcite_notejudd_and_mcclelland_19892spanclassmwcitebacklinkahrefcite_refjudd_and_mcclelland_1989_20supibabisupaahrefcite_refjudd_and_mcclelland_1989_21supibbbisupaahrefcite_refjudd_and_mcclelland_1989_22supibcbisupaspanspanclassreferencetextciteclasscitationbookjuddcharlesandmcclelandgary1989iahrefwikidata_analysisclassmwredirecttitledataanalysisdataanalysisaiharcourtbracejovanovichahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources0155167650titlespecialbooksources01551676500155167650acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenrebookamprftbtitledataanalysisamprftpubharcourtbracejovanovichamprftdate1989amprftisbn0155167650amprftaulastjudd2ccharlesandamprftaufirstmccleland2cgaryamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanstyledatamwdeduplicatetemplatestylesr861714446mwparseroutputcitecitationfontstyleinheritmwparseroutputqquotesmwparseroutputcodecs1codecolorinheritbackgroundinheritborderinheritpaddinginheritmwparseroutputcs1lockfreeabackgroundurluploadwikimediaorgwikipediacommonsthumb665lockgreensvg9pxlockgreensvgpngnorepeatbackgroundpositionright1emcentermwparseroutputcs1locklimitedamwparseroutputcs1lockregistrationabackgroundurluploadwikimediaorgwikipediacommonsthumbdd6lockgrayalt2svg9pxlockgrayalt2svgpngnorepeatbackgroundpositionright1emcentermwparseroutputcs1locksubscriptionabackgroundurluploadwikimediaorgwikipediacommonsthumbaaalockredalt2svg9pxlockredalt2svgpngnorepeatbackgroundpositionright1emcentermwparseroutputcs1subscriptionmwparseroutputcs1registrationcolor555mwparseroutputcs1subscriptionspanmwparseroutputcs1registrationspanborderbottom1pxdottedcursorhelpmwparseroutputcs1hiddenerrordisplaynonefontsize100mwparseroutputcs1visibleerrorfontsize100mwparseroutputcs1subscriptionmwparseroutputcs1registrationmwparseroutputcs1formatfontsize95mwparseroutputcs1kernleftmwparseroutputcs1kernwlleftpaddingleft02emmwparseroutputcs1kernrightmwparseroutputcs1kernwlrightpaddingright02emstylespanliliidcite_note3spanclassmwcitebacklinkbahrefcite_ref3abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpprojecteuclidorgdownloadpdf_1euclidaoms1177704711johntukeythefutureofdataanalysisjuly1961aspanliliidcite_noteo39neil_and_schutt_20134spanclassmwcitebacklinkahrefcite_refo39neil_and_schutt_2013_40supibabisupaahrefcite_refo39neil_and_schutt_2013_41supibbbisupaahrefcite_refo39neil_and_schutt_2013_42supibcbisupaahrefcite_refo39neil_and_schutt_2013_43supibdbisupaahrefcite_refo39neil_and_schutt_2013_44supibebisupaahrefcite_refo39neil_and_schutt_2013_45supibfbisupaahrefcite_refo39neil_and_schutt_2013_46supibgbisupaspanspanclassreferencetextciteclasscitationbookoneilcathyandschuttrachel2013iahrefwindexphptitledoing_data_scienceampactioneditampredlink1classnewtitledoingdatasciencepagedoesnotexistdoingdatascienceaioreillyahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources9781449358655titlespecialbooksources97814493586559781449358655acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenrebookamprftbtitledoingdatascienceamprftpubo27reillyamprftdate2013amprftisbn9781449358655amprftaulasto27neil2ccathyandamprftaufirstschutt2crachelamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note5spanclassmwcitebacklinkbahrefcite_ref5abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpswwwsuntecindiacomblogcleandataincrmthekeytogeneratesalesreadyleadsandboostyourrevenuepoolcleandataincrmthekeytogeneratesalesreadyleadsandboostyourrevenuepoolaretrieved29thjuly2016spanliliidcite_note6spanclassmwcitebacklinkbahrefcite_ref6abspanspanclassreferencetextciteclasscitationwebarelnofollowclassexternaltexthrefhttpresearchmicrosoftcomenusprojectsdatacleaningdatacleaningamicrosoftresearchspanclassreferenceaccessdateretrievedspanclassnowrap26octoberspan2013spancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenreunknownamprftbtitledatacleaningamprftpubmicrosoftresearchamprft_idhttp3a2f2fresearchmicrosoftcom2fenus2fprojects2fdatacleaning2famprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_notekoomey17spanclassmwcitebacklinkahrefcite_refkoomey1_70supibabisupaahrefcite_refkoomey1_71supibbbisupaahrefcite_refkoomey1_72supibcbisupaspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpwwwperceptualedgecomarticlesbeyequantitative_datapdfperceptualedgejonathankoomeybestpracticesforunderstandingquantitativedatafebruary142006aspanliliidcite_note8spanclassmwcitebacklinkbahrefcite_ref8abspanspanclassreferencetextciteclasscitationjournalhellersteinjoseph27february2008arelnofollowclassexternaltexthrefhttpdbcsberkeleyedujmhpaperscleaningunecepdfquantitativedatacleaningforlargedatabasesaspanclasscs1formatpdfspanieecscomputersciencedivisioni3spanclassreferenceaccessdateretrievedspanclassnowrap26octoberspan2013spancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3ajournalamprftgenrearticleamprftjtitleeecscomputersciencedivisionamprftatitlequantitativedatacleaningforlargedatabasesamprftpages3amprftdate20080227amprftaulasthellersteinamprftaufirstjosephamprft_idhttp3a2f2fdbcsberkeleyedu2fjmh2fpapers2fcleaningunecepdfamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note9spanclassmwcitebacklinkbahrefcite_ref9abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpwwwperceptualedgecomarticlesiethe_right_graphpdfstephenfewperceptualedgeselectingtherightgraphforyourmessageseptember2004aspanliliidcite_note10spanclassmwcitebacklinkbahrefcite_ref10abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpcllstanfordeduwillbcoursebehrens97pmpdfbehrensprinciplesandproceduresofexploratorydataanalysisamericanpsychologicalassociation1997aspanliliidcite_note11spanclassmwcitebacklinkbahrefcite_ref11abspanspanclassreferencetextciteclasscitationjournalgrandjeanmartin2014arelnofollowclassexternaltexthrefhttpwwwmartingrandjeanchwpcontentuploads201502grandjean2014connaissancereseaupdflaconnaissanceestunrseauaspanclasscs1formatpdfspanilescahiersdunumriqueib10b33754ahrefwikidigital_object_identifiertitledigitalobjectidentifierdoiaarelnofollowclassexternaltexthrefdoiorg1031662flcn1033754103166lcn1033754acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3ajournalamprftgenrearticleamprftjtitlelescahiersdunumc3a9riqueamprftatitlelaconnaissanceestunrc3a9seauamprftvolume10amprftissue3amprftpages3754amprftdate2014amprft_idinfo3adoi2f1031662flcn1033754amprftaulastgrandjeanamprftaufirstmartinamprft_idhttp3a2f2fwwwmartingrandjeanch2fwpcontent2fuploads2f20152f022fgrandjean2014connaissancereseaupdfamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note12spanclassmwcitebacklinkbahrefcite_ref12abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpwwwperceptualedgecomarticlesiethe_right_graphpdfstephenfewperceptualedgeselectingtherightgraphforyourmessage2004aspanliliidcite_note13spanclassmwcitebacklinkbahrefcite_ref13abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpwwwperceptualedgecomarticlesmiscgraph_selection_matrixpdfstephenfewperceptualedgegraphselectionmatrixaspanliliidcite_note14spanclassmwcitebacklinkbahrefcite_ref14abspanspanclassreferencetextrobertamarjameseaganandjohnstasko2005arelnofollowclassexternaltexthrefhttpwwwccgatechedustaskopapersinfovis05pdflowlevelcomponentsofanalyticactivityininformationvisualizationaspanliliidcite_note15spanclassmwcitebacklinkbahrefcite_ref15abspanspanclassreferencetextwilliamnewman1994arelnofollowclassexternaltexthrefhttpwwwmdnpresscomwmnpdfschi94proformas2pdfapreliminaryanalysisoftheproductsofhciresearchusingproformaabstractsaspanliliidcite_note16spanclassmwcitebacklinkbahrefcite_ref16abspanspanclassreferencetextmaryshaw2002arelnofollowclassexternaltexthrefhttpwwwcscmueducomposeftpshawfinetapspdfwhatmakesgoodresearchinsoftwareengineeringaspanliliidcite_notecontaas17spanclassmwcitebacklinkahrefcite_refcontaas_170supibabisupaahrefcite_refcontaas_171supibbbisupaspanspanclassreferencetextciteclasscitationwebarelnofollowclassexternaltexthrefhttpsscholarspacemanoahawaiieduhandle1012541879contaasanapproachtointernetscalecontextualisationfordevelopingefficientinternetofthingsapplicationsaischolarspaceihicss50spanclassreferenceaccessdateretrievedspanclassnowrapmay24span2017spancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3ajournalamprftgenreunknownamprftjtitlescholarspaceamprftatitlecontaas3aanapproachtointernetscalecontextualisationfordevelopingefficientinternetofthingsapplicationsamprft_idhttps3a2f2fscholarspacemanoahawaiiedu2fhandle2f101252f41879amprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note18spanclassmwcitebacklinkbahrefcite_ref18abspanspanclassreferencetextciteclasscitationwebarelnofollowclassexternaltexthrefhttpwwwcbogovpublication21670congressionalbudgetofficethebudgetandeconomicoutlookaugust2010table17onpage24aspanclasscs1formatpdfspanspanclassreferenceaccessdateretrievedspanclassnowrap20110331spanspancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenreunknownamprftbtitlecongressionalbudgetofficethebudgetandeconomicoutlookaugust2010table17onpage24amprft_idhttp3a2f2fwwwcbogov2fpublication2f21670amprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_noteheuer119spanclassmwcitebacklinkbahrefcite_refheuer1_190abspanspanclassreferencetextciteclasscitationwebarelnofollowclassexternaltexthrefhttpswwwciagovlibrarycenterforthestudyofintelligencecsipublicationsbooksandmonographspsychologyofintelligenceanalysisart3htmlintroductionaiciagovicitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3ajournalamprftgenreunknownamprftjtitleciagovamprftatitleintroductionamprft_idhttps3a2f2fwwwciagov2flibrary2fcenterforthestudyofintelligence2fcsipublications2fbooksandmonographs2fpsychologyofintelligenceanalysis2fart3htmlamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note20spanclassmwcitebacklinkbahrefcite_ref20abspanspanclassreferencetextarelnofollowclassexternaltexthrefhttpwwwbloombergviewcomarticles20141028badmaththatpassesforinsightbloombergbarryritholzbadmaththatpassesforinsightoctober282014aspanliliidcite_notetowards_energy_efficiency_smart_buildings_models_based_on_intelligent_data_analytics21spanclassmwcitebacklinkbahrefcite_reftowards_energy_efficiency_smart_buildings_models_based_on_intelligent_data_analytics_210abspanspanclassreferencetextciteclasscitationjournalgonzlezvidalauroramorenocanovictoria2016towardsenergyefficiencysmartbuildingsmodelsbasedonintelligentdataanalyticsiprocediacomputerscienceib83belsevier994999ahrefwikidigital_object_identifiertitledigitalobjectidentifierdoiaarelnofollowclassexternaltexthrefdoiorg1010162fjprocs201604213101016jprocs201604213acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3ajournalamprftgenrearticleamprftjtitleprocediacomputerscienceamprftatitletowardsenergyefficiencysmartbuildingsmodelsbasedonintelligentdataanalyticsamprftvolume83amprftissueelsevieramprftpages994999amprftdate2016amprft_idinfo3adoi2f1010162fjprocs201604213amprftaulastgonzc3a1lezvidalamprftaufirstauroraamprftaumorenocano2cvictoriaamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_notecompeting_on_analytics_200722spanclassmwcitebacklinkbahrefcite_refcompeting_on_analytics_2007_220abspanspanclassreferencetextciteclasscitationbookdavenportthomasandharrisjeanne2007iahrefwindexphptitlecompeting_on_analyticsampactioneditampredlink1classnewtitlecompetingonanalyticspagedoesnotexistcompetingonanalyticsaioreillyahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources9781422103326titlespecialbooksources97814221033269781422103326acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenrebookamprftbtitlecompetingonanalyticsamprftpubo27reillyamprftdate2007amprftisbn9781422103326amprftaulastdavenport2cthomasandamprftaufirstharris2cjeanneamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note23spanclassmwcitebacklinkbahrefcite_ref23abspanspanclassreferencetextaaronsd2009arelnofollowclassexternaltexthrefhttpsearchproquestcomdocview202710770accountid28180reportfindsstatesoncoursetobuildpupildatasystemsaieducationweek29i136spanliliidcite_note24spanclassmwcitebacklinkbahrefcite_ref24abspanspanclassreferencetextrankinj2013march28arelnofollowclassexternaltexthrefhttpssaselluminatecomsiteexternalrecordingplaybacklinktabledropinsid2008350ampsuidd4df60c7117d5a77fe3aed546909ed2howdatasystemsampreportscaneitherfightorpropagatethedataanalysiserrorepidemicandhoweducatorleaderscanhelpaipresentationconductedfromtechnologyinformationcenterforadministrativeleadershipticalschoolleadershipsummitispanliliidcite_notefootnoteadr2008a33725spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a337_250abspanspanclassreferencetextahrefciterefadr2008aadr2008aap160337spanliliidcite_notefootnoteadr2008a33834126spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a338341_260abspanspanclassreferencetextahrefciterefadr2008aadr2008aapp160338341spanliliidcite_notefootnoteadr2008a34134227spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a341342_270abspanspanclassreferencetextahrefciterefadr2008aadr2008aapp160341342spanliliidcite_notefootnoteadr2008a34428spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a344_280abspanspanclassreferencetextahrefciterefadr2008aadr2008aap160344spanliliidcite_note29spanclassmwcitebacklinkbahrefcite_ref29abspanspanclassreferencetexttabachnickampfidell2007p8788spanliliidcite_notefootnoteadr2008a34434530spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a344345_300abspanspanclassreferencetextahrefciterefadr2008aadr2008aapp160344345spanliliidcite_notefootnoteadr2008a34531spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a345_310abspanspanclassreferencetextahrefciterefadr2008aadr2008aap160345spanliliidcite_notefootnoteadr2008a34534632spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a345346_320abspanspanclassreferencetextahrefciterefadr2008aadr2008aapp160345346spanliliidcite_notefootnoteadr2008a34634733spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a346347_330abspanspanclassreferencetextahrefciterefadr2008aadr2008aapp160346347spanliliidcite_notefootnoteadr2008a34935334spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008a349353_340abspanspanclassreferencetextahrefciterefadr2008aadr2008aapp160349353spanliliidcite_notesab135spanclassmwcitebacklinkbahrefcite_refsab1_350abspanspanclassreferencetextbillingssanonlinearsystemidentificationnarmaxmethodsinthetimefrequencyandspatiotemporaldomainswiley2013spanliliidcite_notefootnoteadr2008b36336spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008b363_360abspanspanclassreferencetextahrefciterefadr2008badr2008bap160363spanliliidcite_notefootnoteadr2008b36136237spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008b361362_370abspanspanclassreferencetextahrefciterefadr2008badr2008bapp160361362spanliliidcite_notefootnoteadr2008b36137138spanclassmwcitebacklinkbahrefcite_reffootnoteadr2008b361371_380abspanspanclassreferencetextahrefciterefadr2008badr2008bapp160361371spanliliidcite_note39spanclassmwcitebacklinkbahrefcite_ref39abspanspanclassreferencetextciteclasscitationnewsarelnofollowclassexternaltexthrefhttpwwwsymmetrymagazineorgarticlejuly2014themachinelearningcommunitytakesonthehiggsthemachinelearningcommunitytakesonthehiggsaisymmetrymagazineijuly152014spanclassreferenceaccessdateretrievedspanclassnowrap14januaryspan2015spancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3ajournalamprftgenrearticleamprftjtitlesymmetrymagazineamprftatitlethemachinelearningcommunitytakesonthehiggsamprftdate20140715amprft_idhttp3a2f2fwwwsymmetrymagazineorg2farticle2fjuly20142fthemachinelearningcommunitytakesonthehiggs2famprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_notenehme_2016092940spanclassmwcitebacklinkbahrefcite_refnehme_20160929_400abspanspanclassreferencetextciteclasscitationwebnehmejeanseptember292016arelnofollowclassexternaltexthrefhttpswwwfhwadotgovresearchtfhrcprogramsinfrastructurepavementsltpp2016_2017_asce_ltpp_contest_guidelinescfmltppinternationaldataanalysiscontestafederalhighwayadministrationspanclassreferenceaccessdateretrievedspanclassnowrapoctober22span2017spancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenreunknownamprftbtitleltppinternationaldataanalysiscontestamprftpubfederalhighwayadministrationamprftdate20160929amprftaulastnehmeamprftaufirstjeanamprft_idhttps3a2f2fwwwfhwadotgov2fresearch2ftfhrc2fprograms2finfrastructure2fpavements2fltpp2f2016_2017_asce_ltpp_contest_guidelinescfmamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanliliidcite_note41spanclassmwcitebacklinkbahrefcite_ref41abspanspanclassreferencetextciteclasscitationwebarelnofollowclassexternaltexthrefhttpswwwfhwadotgovresearchtfhrcprogramsinfrastructurepavementsltppdatagovlongtermpavementperformanceltppamay262016spanclassreferenceaccessdateretrievedspanclassnowrapnovember10span2017spancitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenreunknownamprftbtitledatagov3alongtermpavementperformance28ltpp29amprftdate20160526amprft_idhttps3a2f2fwwwfhwadotgov2fresearch2ftfhrc2fprograms2finfrastructure2fpavements2fltpp2famprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446spanlioldivdivh3spanclassmwheadlineidbibliographybibliographyspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection40titleeditsectionbibliographyeditaspanclassmweditsectionbracketspanspanh3ulliciteidciterefadr2008aclasscitationbookahrefwikiherman_j_adc3a8rtitlehermanjadradrhermanja2008achapter14phasesandinitialstepsindataanalysisinadrhermanjahrefwikigideon_j_mellenberghtitlegideonjmellenberghmellenberghgideonjaahrefwikidavid_hand_statisticiantitledavidhandstatisticianhanddavidjaarelnofollowclassexternaltexthrefhttpwwwworldcatorgtitleadvisingonresearchmethodsaconsultantscompanionoclc905799857viewportiadvisingonresearchmethods160aconsultantscompanioniahuizennetherlandsjohannesvankesselpubpp160333356ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources9789079418015titlespecialbooksources97890794180159789079418015aahrefwikioclctitleoclcoclca160arelnofollowclassexternaltexthrefwwwworldcatorgoclc905799857905799857acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenrebookitemamprftatitlechapter143aphasesandinitialstepsindataanalysisamprftbtitleadvisingonresearchmethods3aaconsultant27scompanionamprftplacehuizen2cnetherlandsamprftpages333356amprftpubjohannesvankesselpubamprftdate2008amprft_idinfo3aoclcnum2f905799857amprftisbn9789079418015amprftaulastadc3a8ramprftaufirsthermanjamprft_idhttp3a2f2fwwwworldcatorg2ftitle2fadvisingonresearchmethodsaconsultantscompanion2foclc2f9057998572fviewportamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446liliciteidciterefadr2008bclasscitationbookahrefwikiherman_j_adc3a8rtitlehermanjadradrhermanja2008bchapter15themainanalysisphaseinadrhermanjahrefwikigideon_j_mellenberghtitlegideonjmellenberghmellenberghgideonjaahrefwikidavid_hand_statisticiantitledavidhandstatisticianhanddavidjaarelnofollowclassexternaltexthrefhttpwwwworldcatorgtitleadvisingonresearchmethodsaconsultantscompanionoclc905799857viewportiadvisingonresearchmethods160aconsultantscompanioniahuizennetherlandsjohannesvankesselpubpp160357386ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources9789079418015titlespecialbooksources97890794180159789079418015aahrefwikioclctitleoclcoclca160arelnofollowclassexternaltexthrefwwwworldcatorgoclc905799857905799857acitespantitlectx_verz39882004amprft_val_fmtinfo3aofi2ffmt3akev3amtx3abookamprftgenrebookitemamprftatitlechapter153athemainanalysisphaseamprftbtitleadvisingonresearchmethods3aaconsultant27scompanionamprftplacehuizen2cnetherlandsamprftpages357386amprftpubjohannesvankesselpubamprftdate2008amprft_idinfo3aoclcnum2f905799857amprftisbn9789079418015amprftaulastadc3a8ramprftaufirsthermanjamprft_idhttp3a2f2fwwwworldcatorg2ftitle2fadvisingonresearchmethodsaconsultantscompanion2foclc2f9057998572fviewportamprfr_idinfo3asid2fenwikipediaorg3adataanalysisclassz3988spanlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446lilitabachnickbgampfidellls2007chapter4cleaningupyouractscreeningdatapriortoanalysisinbgtabachnickamplsfidelledsusingmultivariatestatisticsfiftheditionpp16060116bostonpearsoneducationincallynandbaconliulh2spanclassmwheadlineidfurther_readingfurtherreadingspanspanclassmweditsectionspanclassmweditsectionbracketspanahrefwindexphptitledata_analysisampactioneditampsection41titleeditsectionfurtherreadingeditaspanclassmweditsectionbracketspanspanh2tablerolepresentationclassmboxsmallplainlinkssistersiteboxstylebackgroundcolorf9f9f9border1pxsolidaaacolor000tbodytrtdclassmboximageimgaltsrcuploadwikimediaorgwikipediacommonsthumb991wikiversitylogosvg40pxwikiversitylogosvgpngwidth40height32classnoviewersrcsetuploadwikimediaorgwikipediacommonsthumb991wikiversitylogosvg60pxwikiversitylogosvgpng15xuploadwikimediaorgwikipediacommonsthumb991wikiversitylogosvg80pxwikiversitylogosvgpng2xdatafilewidth1000datafileheight800tdtdclassmboxtextplainlistwikiversityhaslearningresourcesaboutibahrefhttpsenwikiversityorgwikispecialsearchdata_analysisclassextiwtitlevspecialsearchdataanalysisdataanalysisabitdtrtbodytableulliahrefwikiadc3a8r_hjclassmwredirecttitleadrhjadrhjaampahrefwikigideon_j_mellenberghtitlegideonjmellenberghmellenberghgjawithcontributionsbydjhand2008iadvisingonresearchmethodsaconsultantscompanionihuizenthenetherlandsjohannesvankesselpublishinglilichambersjohnmclevelandwilliamskleinerbeattukeypaula1983igraphicalmethodsfordataanalysisiwadsworthduxburypresslinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources053498052xtitlespecialbooksources053498052x053498052xalilifandangoarmando2008ipythondataanalysis2ndeditionipacktpublisherslilijuranjosephmgodfreyablanton1999ijuransqualityhandbook5theditioninewyorkmcgrawhilllinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources007034003xtitlespecialbooksources007034003x007034003xalililewisbeckmichaels1995idataanalysisanintroductionisagepublicationsinclinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources0803957726titlespecialbooksources08039577260803957726alilinistsematech2008arelnofollowclassexternaltexthrefhttpwwwitlnistgovdiv898handbookihandbookofstatisticalmethodsialilipyzdekt2003iqualityengineeringhandbookilinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources0824746147titlespecialbooksources08247461470824746147aliliahrefwikirichard_veryardtitlerichardveryardrichardveryarda1984ipragmaticdataanalysisioxford160blackwellscientificpublicationslinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources0632013117titlespecialbooksources06320131170632013117alilitabachnickbgfidellls2007iusingmultivariatestatistics5theditionibostonpearsoneducationincallynandbaconlinkrelmwdeduplicatedinlinestylehrefmwdatatemplatestylesr861714446ahrefwikiinternational_standard_book_numbertitleinternationalstandardbooknumberisbna160ahrefwikispecialbooksources9780205459384titlespecialbooksources97802054593849780205459384aliuldivrolenavigationclassnavboxarialabelledbyauthority_control_frameless_amp124texttop_amp12410px_amp124altedit_this_at_wikidata_amp124linkhttpsamp58wwwwikidataorgwikiq1988917amp124edit_this_at_wikidatastylepadding3pxtableclassnowraplinkshlistnavboxinnerstyleborderspacing0backgroundtransparentcolorinherittbodytrthidauthority_control_frameless_amp124texttop_amp12410px_amp124altedit_this_at_wikidata_amp124linkhttpsamp58wwwwikidataorgwikiq1988917amp124edit_this_at_wikidatascoperowclassnavboxgroupstylewidth1ahrefwikihelpauthority_controltitlehelpauthoritycontrolauthoritycontrolaahrefhttpswwwwikidataorgwikiq1988917titleeditthisatwikidataimgalteditthisatwikidatasrcuploadwikimediaorgwikipediacommonsthumb773blue_pencilsvg10pxblue_pencilsvgpngwidth10height10styleverticalaligntexttopsrcsetuploadwikimediaorgwikipediacommonsthumb773blue_pencilsvg15pxblue_pencilsvgpng15xuploadwikimediaorgwikipediacommonsthumb773blue_pencilsvg20pxblue_pencilsvgpng2xdatafilewidth600datafileheight600athtdclassnavboxlistnavboxoddstyletextalignleftborderleftwidth2pxborderleftstylesolidwidth100padding0pxdivstylepadding0em025emullispanclassnowrapahrefwikiintegrated_authority_filetitleintegratedauthorityfilegndaspanclassuidarelnofollowclassexternaltexthrefhttpsdnbinfognd4123037141230371aspanspanliuldivtdtrtbodytabledivdivrolenavigationclassnavboxarialabelledbydatastylepadding3pxtableclassnowraplinkscollapsibleautocollapsenavboxinnerstyleborderspacing0backgroundtransparentcolorinherittbodytrthscopecolclassnavboxtitlecolspan2divclassplainlinkshlistnavbarminiulliclassnvviewahrefwikitemplatedatatitletemplatedataabbrtitleviewthistemplatestylebackgroundnonetransparentbordernonemozboxshadownonewebkitboxshadownoneboxshadownonepadding0vabbraliliclassnvtalkahrefwikitemplate_talkdatatitletemplatetalkdataabbrtitlediscussthistemplatestylebackgroundnonetransparentbordernonemozboxshadownonewebkitboxshadownoneboxshadownonepadding0tabbraliliclassnveditaclassexternaltexthrefenwikipediaorgwindexphptitletemplatedataampactioneditabbrtitleeditthistemplatestylebackgroundnonetransparentbordernonemozboxshadownonewebkitboxshadownoneboxshadownonepadding0eabbraliuldivdividdatastylefontsize114margin04emahrefwikidata_computingtitledatacomputingdataadivthtrtrtdcolspan2classnavboxlistnavboxoddhliststylewidth100padding0pxdivstylepadding0em025emulliaclassmwselflinkselflinkanalysisaliliahrefwikidata_archaeologytitledataarchaeologyarchaeologyaliliahrefwikidata_cleansingtitledatacleansingcleansingaliliahrefwikidata_collectiontitledatacollectioncollectionaliliahrefwikidata_compressiontitledatacompressioncompressionaliliahrefwikidata_corruptiontitledatacorruptioncorruptionaliliahrefwikidata_curationtitledatacurationcurationaliliahrefwikidata_degradationtitledatadegradationdegradationaliliahrefwikidata_editingtitledataeditingeditingaliliahrefwikidata_farmingtitledatafarmingfarmingaliliahrefwikidata_format_managementtitledataformatmanagementformatmanagementaliliahrefwikidata_fusiontitledatafusionfusionaliliahrefwikidata_integrationtitledataintegrationintegrationaliliahrefwikidata_integritytitledataintegrityintegrityaliliahrefwikidata_librarytitledatalibrarylibraryaliliahrefwikidata_losstitledatalosslossaliliahrefwikidata_managementtitledatamanagementmanagementaliliahrefwikidata_migrationtitledatamigrationmigrationaliliahrefwikidata_miningtitledataminingminingaliliahrefwikidata_preprocessingtitledatapreprocessingpreprocessingaliliahrefwikidata_preservationtitledatapreservationpreservationaliliahrefwikiinformation_privacytitleinformationprivacyprotectionprivacyaliliahrefwikidata_recoverytitledatarecoveryrecoveryaliliahrefwikidata_reductiontitledatareductionreductionaliliahrefwikidata_retentiontitledataretentionretentionaliliahrefwikidata_qualitytitledataqualityqualityaliliahrefwikidata_sciencetitledatasciencesciencealiliahrefwikidata_scrapingtitledatascrapingscrapingaliliahrefwikidata_scrubbingtitledatascrubbingscrubbingaliliahrefwikidata_securitytitledatasecuritysecurityaliliahrefwikidata_stewardshipclassmwredirecttitledatastewardshipstewardshipaliliahrefwikidata_storagetitledatastoragestoragealiliahrefwikidata_validationtitledatavalidationvalidationaliliahrefwikidata_warehousetitledatawarehousewarehousealiliahrefwikidata_wranglingtitledatawranglingwranglingmungingaliuldivtdtrtbodytabledivnewpplimitreportparsedbymw1258cachedtime20181023205919cacheexpiry1900800dynamiccontentfalsecputimeusage0596secondsrealtimeusage0744secondspreprocessorvisitednodecount31771000000preprocessorgeneratednodecount01500000postexpandincludesize729952097152bytestemplateargumentsize28332097152byteshighestexpansiondepth1240expensiveparserfunctioncount5500unstriprecursiondepth120unstrippostexpandsize621355000000bytesnumberofwikibaseentitiesloaded3400luatimeusage023010000secondsluamemoryusage576mb50mbtransclusionexpansiontimereportmscallstemplate100005231141total31981673051templatereflist1744912485templatecite_book971508066templateisbn763399371templateaccording_to_whom734383943templatecite_journal698365241templateauthority_control673352172templatesidebar_with_collapsible_lists658344081templatefixspan582304591templatedata_visualizationsavedinparsercachewithkeyenwikipcacheidhash27209540canonicalandtimestamp20181023205918andrevisionid862584710divnoscriptimgsrcenwikipediaorgwikispecialcentralautologinstarttype1x1alttitlewidth1height1stylebordernonepositionabsolutenoscriptdivdivclassprintfooterretrievedfromadirltrhrefhttpsenwikipediaorgwindexphptitledata_analysisampoldid862584710httpsenwikipediaorgwindexphptitledata_analysisampoldid862584710adivdividcatlinksclasscatlinksdatamwinterfacedividmwnormalcatlinksclassmwnormalcatlinksahrefwikihelpcategorytitlehelpcategorycategoriesaulliahrefwikicategorydata_analysistitlecategorydataanalysisdataanalysisaliliahrefwikicategoryscientific_methodtitlecategoryscientificmethodscientificmethodaliliahrefwikicategoryparticle_physicstitlecategoryparticlephysicsparticlephysicsaliliahrefwikicategorycomputational_fields_of_studytitlecategorycomputationalfieldsofstudycomputationalfieldsofstudyaliuldivdividmwhiddencatlinksclassmwhiddencatlinksmwhiddencatshiddenhiddencategoriesulliahrefwikicategoryall_articles_with_specifically_marked_weaselworded_phrasestitlecategoryallarticleswithspecificallymarkedweaselwordedphrasesallarticleswithspecificallymarkedweaselwordedphrasesaliliahrefwikicategoryarticles_with_specifically_marked_weaselworded_phrases_from_march_2018titlecategoryarticleswithspecificallymarkedweaselwordedphrasesfrommarch2018articleswithspecificallymarkedweaselwordedphrasesfrommarch2018aliliahrefwikicategorywikipedia_articles_needing_clarification_from_march_2018titlecategorywikipediaarticlesneedingclarificationfrommarch2018wikipediaarticlesneedingclarificationfrommarch2018aliliahrefwikicategorywikipedia_articles_with_gnd_identifierstitlecategorywikipediaarticleswithgndidentifierswikipediaarticleswithgndidentifiersaliuldivdivdivclassvisualcleardivdivdivdividmwnavigationh2navigationmenuh2dividmwheaddividppersonalrolenavigationclassarialabelledbyppersonallabelh3idppersonallabelpersonaltoolsh3ulliidptanonuserpagenotloggedinliliidptanontalkahrefwikispecialmytalktitlediscussionabouteditsfromthisipaddressnaccesskeyntalkaliliidptanoncontribsahrefwikispecialmycontributionstitlealistofeditsmadefromthisipaddressyaccesskeyycontributionsaliliidptcreateaccountahrefwindexphptitlespecialcreateaccountampreturntodataanalysistitleyouareencouragedtocreateanaccountandloginhoweveritisnotmandatorycreateaccountaliliidptloginahrefwindexphptitlespecialuserloginampreturntodataanalysistitleyou039reencouragedtologinhoweverit039snotmandatoryoaccesskeyologinaliuldivdividleftnavigationdividpnamespacesrolenavigationclassvectortabsarialabelledbypnamespaceslabelh3idpnamespaceslabelnamespacesh3ulliidcanstabmainclassselectedspanahrefwikidata_analysistitleviewthecontentpagecaccesskeycarticleaspanliliidcatalkspanahrefwikitalkdata_analysisreldiscussiontitlediscussionaboutthecontentpagetaccesskeyttalkaspanliuldivdividpvariantsrolenavigationclassvectormenuemptyportletarialabelledbypvariantslabelinputtypecheckboxclassvectormenucheckboxarialabelledbypvariantslabelh3idpvariantslabelspanvariantsspanh3divclassmenuululdivdivdivdividrightnavigationdividpviewsrolenavigationclassvectortabsarialabelledbypviewslabelh3idpviewslabelviewsh3ulliidcaviewclasscollapsibleselectedspanahrefwikidata_analysisreadaspanliliidcaeditclasscollapsiblespanahrefwindexphptitledata_analysisampactionedittitleeditthispageeaccesskeyeeditaspanliliidcahistoryclasscollapsiblespanahrefwindexphptitledata_analysisampactionhistorytitlepastrevisionsofthispagehaccesskeyhviewhistoryaspanliuldivdividpcactionsrolenavigationclassvectormenuemptyportletarialabelledbypcactionslabelinputtypecheckboxclassvectormenucheckboxarialabelledbypcactionslabelh3idpcactionslabelspanmorespanh3divclassmenuululdivdivdividpsearchrolesearchh3labelforsearchinputsearchlabelh3formactionwindexphpidsearchformdividsimplesearchinputtypesearchnamesearchplaceholdersearchwikipediatitlesearchwikipediafaccesskeyfidsearchinputinputtypehiddenvaluespecialsearchnametitleinputtypesubmitnamefulltextvaluesearchtitlesearchwikipediaforthistextidmwsearchbuttonclasssearchbuttonmwfallbacksearchbuttoninputtypesubmitnamegovaluegotitlegotoapagewiththisexactnameifitexistsidsearchbuttonclasssearchbuttondivformdivdivdivdividmwpaneldividplogorolebanneraclassmwwikilogohrefwikimain_pagetitlevisitthemainpageadivdivclassportalrolenavigationidpnavigationarialabelledbypnavigationlabelh3idpnavigationlabelnavigationh3divclassbodyulliidnmainpagedescriptionahrefwikimain_pagetitlevisitthemainpagezaccesskeyzmainpagealiliidncontentsahrefwikiportalcontentstitleguidestobrowsingwikipediacontentsaliliidnfeaturedcontentahrefwikiportalfeatured_contenttitlefeaturedcontentthebestofwikipediafeaturedcontentaliliidncurrenteventsahrefwikiportalcurrent_eventstitlefindbackgroundinformationoncurrenteventscurrenteventsaliliidnrandompageahrefwikispecialrandomtitleloadarandomarticlexaccesskeyxrandomarticlealiliidnsitesupportahrefhttpsdonatewikimediaorgwikispecialfundraiserredirectorutm_sourcedonateamputm_mediumsidebaramputm_campaignc13_enwikipediaorgampuselangentitlesupportusdonatetowikipediaaliliidnshoplinkahrefshopwikimediaorgtitlevisitthewikipediastorewikipediastorealiuldivdivdivclassportalrolenavigationidpinteractionarialabelledbypinteractionlabelh3idpinteractionlabelinteractionh3divclassbodyulliidnhelpahrefwikihelpcontentstitleguidanceonhowtouseandeditwikipediahelpaliliidnaboutsiteahrefwikiwikipediaabouttitlefindoutaboutwikipediaaboutwikipediaaliliidnportalahrefwikiwikipediacommunity_portaltitleabouttheprojectwhatyoucandowheretofindthingscommunityportalaliliidnrecentchangesahrefwikispecialrecentchangestitlealistofrecentchangesinthewikiraccesskeyrrecentchangesaliliidncontactpageahrefenwikipediaorgwikiwikipediacontact_ustitlehowtocontactwikipediacontactpagealiuldivdivdivclassportalrolenavigationidptbarialabelledbyptblabelh3idptblabeltoolsh3divclassbodyulliidtwhatlinkshereahrefwikispecialwhatlinksheredata_analysistitlelistofallenglishwikipediapagescontaininglinkstothispagejaccesskeyjwhatlinksherealiliidtrecentchangeslinkedahrefwikispecialrecentchangeslinkeddata_analysisrelnofollowtitlerecentchangesinpageslinkedfromthispagekaccesskeykrelatedchangesaliliidtuploadahrefwikiwikipediafile_upload_wizardtitleuploadfilesuaccesskeyuuploadfilealiliidtspecialpagesahrefwikispecialspecialpagestitlealistofallspecialpagesqaccesskeyqspecialpagesaliliidtpermalinkahrefwindexphptitledata_analysisampoldid862584710titlepermanentlinktothisrevisionofthepagepermanentlinkaliliidtinfoahrefwindexphptitledata_analysisampactioninfotitlemoreinformationaboutthispagepageinformationaliliidtwikibaseahrefhttpswwwwikidataorgwikispecialentitypageq1988917titlelinktoconnecteddatarepositoryitemgaccesskeygwikidataitemaliliidtciteahrefwindexphptitlespecialcitethispageamppagedata_analysisampid862584710titleinformationonhowtocitethispagecitethispagealiuldivdivdivclassportalrolenavigationidpcollprint_exportarialabelledbypcollprint_exportlabelh3idpcollprint_exportlabelprintexporth3divclassbodyulliidcollcreate_a_bookahrefwindexphptitlespecialbookampbookcmdbook_creatoramprefererdataanalysiscreateabookaliliidcolldownloadasrdf2latexahrefwindexphptitlespecialelectronpdfamppagedataanalysisampactionshowdownloadscreendownloadaspdfaliliidtprintahrefwindexphptitledata_analysisampprintableyestitleprintableversionofthispagepaccesskeypprintableversionaliuldivdivdivclassportalrolenavigationidpwikibaseotherprojectsarialabelledbypwikibaseotherprojectslabelh3idpwikibaseotherprojectslabelinotherprojectsh3divclassbodyulliclasswbotherprojectlinkwbotherprojectcommonsahrefhttpscommonswikimediaorgwikicategorydata_analysishreflangenwikimediacommonsaliuldivdivdivclassportalrolenavigationidplangarialabelledbyplanglabelh3idplanglabellanguagesh3divclassbodyulliclassinterlanguagelinkinterwikiarahrefhttpsarwikipediaorgwikid8aad8add984d98ad984_d8a8d98ad8a7d986d8a7d8aatitlearabiclangarhreflangarclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikideahrefhttpsdewikipediaorgwikidatenanalysetitledatenanalysegermanlangdehreflangdeclassinterlanguagelinktargetdeutschaliliclassinterlanguagelinkinterwikietahrefhttpsetwikipediaorgwikiandmeanalc3bcc3bcstitleandmeanalsestonianlangethreflangetclassinterlanguagelinktargeteestialiliclassinterlanguagelinkinterwikiesahrefhttpseswikipediaorgwikianc3a1lisis_de_datostitleanlisisdedatosspanishlangeshreflangesclassinterlanguagelinktargetespaolaliliclassinterlanguagelinkinterwikieoahrefhttpseowikipediaorgwikidatuma_analitikotitledatumaanalitikoesperantolangeohreflangeoclassinterlanguagelinktargetesperantoaliliclassinterlanguagelinkinterwikifaahrefhttpsfawikipediaorgwikid8aad8add984db8cd984_d8afd8a7d8afd987e2808cd987d8a7titlepersianlangfahreflangfaclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikifrbadgeq17437798badgegoodarticletitlegoodarticleahrefhttpsfrwikipediaorgwikianalyse_des_donnc3a9estitleanalysedesdonnesfrenchlangfrhreflangfrclassinterlanguagelinktargetfranaisaliliclassinterlanguagelinkinterwikihiahrefhttpshiwikipediaorgwikie0a4a1e0a587e0a49fe0a4be_e0a4b5e0a4bfe0a4b6e0a58de0a4b2e0a587e0a4b7e0a4a3titlehindilanghihreflanghiclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikiitahrefhttpsitwikipediaorgwikianalisi_dei_datititleanalisideidatiitalianlangithreflangitclassinterlanguagelinktargetitalianoaliliclassinterlanguagelinkinterwikiheahrefhttpshewikipediaorgwikid7a0d799d7aad795d797_d79ed799d793d7a2titlehebrewlanghehreflangheclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikiknahrefhttpsknwikipediaorgwikie0b2aee0b2bee0b2b9e0b2bfe0b2a4e0b2bf_e0b2b5e0b2bfe0b2b6e0b38de0b2b2e0b387e0b2b7e0b2a3e0b386titlekannadalangknhreflangknclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikihuahrefhttpshuwikipediaorgwikiadatelemzc3a9stitleadatelemzshungarianlanghuhreflanghuclassinterlanguagelinktargetmagyaraliliclassinterlanguagelinkinterwikiplahrefhttpsplwikipediaorgwikianaliza_danychtitleanalizadanychpolishlangplhreflangplclassinterlanguagelinktargetpolskialiliclassinterlanguagelinkinterwikiptahrefhttpsptwikipediaorgwikianc3a1lise_de_dadostitleanlisededadosportugueselangpthreflangptclassinterlanguagelinktargetportugusaliliclassinterlanguagelinkinterwikiruahrefhttpsruwikipediaorgwikid090d0bdd0b0d0bbd0b8d0b7_d0b4d0b0d0bdd0bdd18bd185titlerussianlangruhreflangruclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikisiahrefhttpssiwikipediaorgwikie0b6afe0b6ade0b78ae0b6ad_e0b780e0b792e0b781e0b78ae0b6bde0b79ae0b782e0b6abe0b6batitlesinhalalangsihreflangsiclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikickbahrefhttpsckbwikipediaorgwikid8b4db8cdaa9d8a7d8b1db8cdb8c_d8afd8b1d8a7d988db95titlecentralkurdishlangckbhreflangckbclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikifiahrefhttpsfiwikipediaorgwikidataanalyysititledataanalyysifinnishlangfihreflangficlassinterlanguagelinktargetsuomialiliclassinterlanguagelinkinterwikitaahrefhttpstawikipediaorgwikie0aea4e0aeb0e0aeb5e0af81_e0aeaae0ae95e0af81e0aeaae0af8de0aeaae0aebee0aeafe0af8de0aeb5e0af81titletamillangtahreflangtaclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikiukahrefhttpsukwikipediaorgwikid090d0bdd0b0d0bbd196d0b7_d0b4d0b0d0bdd0b8d185titleukrainianlangukhreflangukclassinterlanguagelinktargetaliliclassinterlanguagelinkinterwikizhahrefhttpszhwikipediaorgwikie695b0e68daee58886e69e90titlechineselangzhhreflangzhclassinterlanguagelinktargetaliuldivclassafterportletafterportletlangspanclasswblanglinkseditwblanglinkslinkahrefhttpswwwwikidataorgwikispecialentitypageq1988917sitelinkswikipediatitleeditinterlanguagelinksclasswbceditpageeditlinksaspandivdivdivdivdivdividfooterrolecontentinfoulidfooterinfoliidfooterinfolastmodthispagewaslasteditedon5october2018at0950spanclassanonymousshowutcspanliliidfooterinfocopyrighttextisavailableunderthearellicensehrefenwikipediaorgwikiwikipediatext_of_creative_commons_attributionsharealike_30_unported_licensecreativecommonsattributionsharealikelicenseaarellicensehrefcreativecommonsorglicensesbysa30styledisplaynoneaadditionaltermsmayapplybyusingthissiteyouagreetotheahreffoundationwikimediaorgwikiterms_of_usetermsofuseaandahreffoundationwikimediaorgwikiprivacy_policyprivacypolicyawikipediaisaregisteredtrademarkoftheahrefwwwwikimediafoundationorgwikimediafoundationincaanonprofitorganizationliululidfooterplacesliidfooterplacesprivacyahrefhttpsfoundationwikimediaorgwikiprivacy_policyclassextiwtitlewmfprivacypolicyprivacypolicyaliliidfooterplacesaboutahrefwikiwikipediaabouttitlewikipediaaboutaboutwikipediaaliliidfooterplacesdisclaimerahrefwikiwikipediageneral_disclaimertitlewikipediageneraldisclaimerdisclaimersaliliidfooterplacescontactahrefenwikipediaorgwikiwikipediacontact_uscontactwikipediaaliliidfooterplacesdevelopersahrefhttpswwwmediawikiorgwikispecialmylanguagehow_to_contributedevelopersaliliidfooterplacescookiestatementahrefhttpsfoundationwikimediaorgwikicookie_statementcookiestatementaliliidfooterplacesmobileviewahrefenmwikipediaorgwindexphptitledata_analysisampmobileactiontoggle_view_mobileclassnoprintstopmobileredirecttogglemobileviewaliululidfootericonsclassnoprintliidfootercopyrighticoahrefhttpswikimediafoundationorgimgsrcstaticimageswikimediabuttonpngsrcsetstaticimageswikimediabutton15xpng15xstaticimageswikimediabutton2xpng2xwidth88height31altwikimediafoundationaliliidfooterpoweredbyicoahrefwwwmediawikiorgimgsrcstaticimagespoweredby_mediawiki_88x31pngaltpoweredbymediawikisrcsetstaticimagespoweredby_mediawiki_132x47png15xstaticimagespoweredby_mediawiki_176x62png2xwidth88height31aliuldivstyleclearbothdivdivbodyhtml', 'doctypehtmlhtmllangenheadtitleloremipsumallthefactslipsumgeneratortitlemetanamekeywordscontentloremipsumlipsumloremipsumtextgenerategeneratorfactsinformationwhatwhywheredummytexttypesettingprintingdefinibusbonorumetmalorumdefinibusbonorumetmalorumextremesofgoodandevilcicerolatingarbledscrambledloremipsumdolorsitametdolorsitametconsecteturadipiscingelitsedeiusmodtemporincididuntmetanamedescriptioncontentreferencesiteaboutloremipsumgivinginformationonitsoriginsaswellasarandomlipsumgeneratormetanameviewportcontentwidthdevicewidthinitialscale10metahttpequivcontenttypecontenttexthtmlcharsetutf8scripttypetextjavascriptsrcstaticampservicesclientsstreamamplipsumjsscriptlinkrelicontypeimagexiconhreffaviconicolinkrelstylesheettypetextcsshrefcss020617cssheadbodydividouterdivclassbannerdividdivgptad14561483161980scripttypetextjavascriptgoogletagcmdpushfunctiongoogletagdisplaydivgptad14561483161980scriptdivdivdividinnerdividlanguagesaclasshyhrefhttphylipsumcom1344137713971381140813811398aaclasssqhrefhttpsqlipsumcomshqipaspanclassltrdirltraclassxxhrefhttparlipsumcomimgsrcimagesargifwidth18height12alt82351575160415931585157616101577aaclassxxhrefhttparlipsumcom82351575160415931585157616101577aspannbspnbspaclassbghrefhttpbglipsumcom104110981083107510721088108910821080aaclasscahrefhttpcalipsumcomcatalagraveaaclasscnhrefhttpcnlipsumcom20013259913161620307aaclasshrhrefhttphrlipsumcomhrvatskiaaclasscshrefhttpcslipsumcom268eskyaaclassdahrefhttpdalipsumcomdanskaaclassnlhrefhttpnllipsumcomnederlandsaaclassenzzhrefhttpwwwlipsumcomenglishaaclassethrefhttpetlipsumcomeestiaaclassphhrefhttpphlipsumcomfilipinoaaclassfihrefhttpfilipsumcomsuomiaaclassfrhrefhttpfrlipsumcomfranccedilaisaaclasskahrefhttpkalipsumcom4325430443204311432343144312aaclassdehrefhttpdelipsumcomdeutschaaclasselhrefhttpellipsumcom917955955951957953954940aspanclassltrdirltraclassxxhrefhttphelipsumcomimgsrcimageshegifwidth18height12alt823515061489151214971514aaclassxxhrefhttphelipsumcom823515061489151214971514aspannbspnbspaclasshihrefhttphilipsumcom236123672344238123422368aaclasshuhrefhttphulipsumcommagyaraaclassidhrefhttpidlipsumcomindonesiaaaclassithrefhttpitlipsumcomitalianoaaclasslvhrefhttplvlipsumcomlatviskiaaclasslthrefhttpltlipsumcomlietuviscaronkaiaaclassmkhrefhttpmklipsumcom1084107210821077107610861085108910821080aaclassmshrefhttpmslipsumcommelayuaaclassnohrefhttpnolipsumcomnorskaaclassplhrefhttppllipsumcompolskiaaclasspthrefhttpptlipsumcomportuguecircsaaclassrohrefhttprolipsumcomromacircnaaaclassruhrefhttprulipsumcompycc108210801081aaclasssrhrefhttpsrlipsumcom105710881087108910821080aaclassskhrefhttpsklipsumcomsloven269inaaaclassslhrefhttpsllipsumcomsloven353269inaaaclasseshrefhttpeslipsumcomespantildeolaaclasssvhrefhttpsvlipsumcomsvenskaaaclassthhrefhttpthlipsumcom365236073618aaclasstrhrefhttptrlipsumcomtuumlrkccedileaaclassukhrefhttpuklipsumcom1059108210881072111110851089110010821072aaclassvihrefhttpvilipsumcomti7871ngvi7879tadivh1loremipsumh1h4nequeporroquisquamestquidoloremipsumquiadolorsitametconsecteturadipiscivelith4h5thereisnoonewholovespainitselfwhoseeksafteritandwantstohaveitsimplybecauseitispainh5hrdividcontentdividpanesdivh2whatisloremipsumh2pstrongloremipsumstrongissimplydummytextoftheprintingandtypesettingindustryloremipsumhasbeentheindustrysstandarddummytexteversincethe1500swhenanunknownprintertookagalleyoftypeandscrambledittomakeatypespecimenbookithassurvivednotonlyfivecenturiesbutalsotheleapintoelectronictypesettingremainingessentiallyunchangeditwaspopularisedinthe1960swiththereleaseofletrasetsheetscontainingloremipsumpassagesandmorerecentlywithdesktoppublishingsoftwarelikealduspagemakerincludingversionsofloremipsumpdivdivh2whydoweuseith2pitisalongestablishedfactthatareaderwillbedistractedbythereadablecontentofapagewhenlookingatitslayoutthepointofusingloremipsumisthatithasamoreorlessnormaldistributionoflettersasopposedtousingcontentherecontentheremakingitlooklikereadableenglishmanydesktoppublishingpackagesandwebpageeditorsnowuseloremipsumastheirdefaultmodeltextandasearchforloremipsumwilluncovermanywebsitesstillintheirinfancyvariousversionshaveevolvedovertheyearssometimesbyaccidentsometimesonpurposeinjectedhumourandthelikepdivbrdivh2wheredoesitcomefromh2pcontrarytopopularbeliefloremipsumisnotsimplyrandomtextithasrootsinapieceofclassicallatinliteraturefrom45bcmakingitover2000yearsoldrichardmcclintockalatinprofessorathampdensydneycollegeinvirginialookeduponeofthemoreobscurelatinwordsconsecteturfromaloremipsumpassageandgoingthroughthecitesofthewordinclassicalliteraturediscoveredtheundoubtablesourceloremipsumcomesfromsections11032and11033ofdefinibusbonorumetmalorumtheextremesofgoodandevilbycicerowrittenin45bcthisbookisatreatiseonthetheoryofethicsverypopularduringtherenaissancethefirstlineofloremipsumloremipsumdolorsitametcomesfromalineinsection11032ppthestandardchunkofloremipsumusedsincethe1500sisreproducedbelowforthoseinterestedsections11032and11033fromdefinibusbonorumetmalorumbyciceroarealsoreproducedintheirexactoriginalformaccompaniedbyenglishversionsfromthe1914translationbyhrackhampdivdivh2wherecanigetsomeh2ptherearemanyvariationsofpassagesofloremipsumavailablebutthemajorityhavesufferedalterationinsomeformbyinjectedhumourorrandomisedwordswhichdontlookevenslightlybelievableifyouaregoingtouseapassageofloremipsumyouneedtobesurethereisntanythingembarrassinghiddeninthemiddleoftextalltheloremipsumgeneratorsontheinternettendtorepeatpredefinedchunksasnecessarymakingthisthefirsttruegeneratorontheinternetitusesadictionaryofover200latinwordscombinedwithahandfulofmodelsentencestructurestogenerateloremipsumwhichlooksreasonablethegeneratedloremipsumisthereforealwaysfreefromrepetitioninjectedhumourornoncharacteristicwordsetcpformmethodpostactionfeedhtmltablestylewidth100trtdrowspan2inputtypetextnameamountvalue5size3idamounttdtdrowspan2tablestyletextalignlefttrtdstylewidth20pxinputtyperadionamewhatvalueparasidparascheckedcheckedtdtdlabelforparasparagraphslabeltdtrtrtdstylewidth20pxinputtyperadionamewhatvaluewordsidwordstdtdlabelforwordswordslabeltdtrtrtdstylewidth20pxinputtyperadionamewhatvaluebytesidbytestdtdlabelforbytesbyteslabeltdtrtrtdstylewidth20pxinputtyperadionamewhatvaluelistsidliststdtdlabelforlistslistslabeltdtrtabletdtdstylewidth20pxinputtypecheckboxnamestartidstartvalueyescheckedcheckedtdtdstyletextalignleftlabelforstartstartwithlorembripsumdolorsitametlabeltdtrtrtdtdtdstyletextalignleftinputtypesubmitnamegenerateidgeneratevaluegenerateloremipsumtdtrtableformdivdivhrdivclassboxedtightimgsrcimagesadvertpngwidth100altadvertisedivhrdivclassboxedstylecolorff0000strongtranslationsstrongcanyouhelptranslatethissiteintoaforeignlanguagepleaseemailuswithdetailsifyoucanhelpdivhrdivclassboxedtherearenowasetofmockbannersavailableahrefbannersclasslnkhereainthreecoloursandinarangeofstandardbannersizesbrahrefbannersimgsrcimagesbannersblack_234x60gifwidth234height60altbannersaahrefbannersimgsrcimagesbannersgrey_234x60gifwidth234height60altbannersaahrefbannersimgsrcimagesbannerswhite_234x60gifwidth234height60altbannersadivhrdivclassboxedstrongdonatestrongifyouusethissiteregularlyandwouldliketohelpkeepthesiteontheinternetpleaseconsiderdonatingasmallsumtohelppayforthehostingandbandwidthbillthereisnominimumdonationanysumisappreciatedclickatarget_blankhrefdonateclasslnkhereatodonateusingpaypalthankyouforyoursupportdivhrdivclassboxedidpackagesatarget_blankrelnofollowhrefhttpschromegooglecomextensionsdetailjkkggolejkaoanbjnmkakgjcdcnpfkgichromeaatarget_blankrelnofollowhrefhttpsaddonsmozillaorgenusfirefoxaddondummylipsumfirefoxaddonaatarget_blankrelnofollowhrefhttpsgithubcomtraviskaufmannodelipsumnodejsaatarget_blankrelnofollowhrefhttpftpktugorkrtexarchivehelpcatalogueentrieslipsumhtmltexpackageaatarget_blankrelnofollowhrefhttpcodegooglecomppypsumpythoninterfaceaatarget_blankrelnofollowhrefhttpgtklipsumsourceforgenetgtklipsumaatarget_blankrelnofollowhrefhttpgithubcomgsavagelorem_ipsumtreemasterrailsaatarget_blankrelnofollowhrefhttpsgithubcomcerkitloremipsumnetaatarget_blankrelnofollowhrefhttpgroovyconsoleappspotcomscript64002groovyaatarget_blankrelnofollowhrefhttpwwwlayerherocomloremipsumgeneratoradobepluginadivhrdividtranslationh3thestandardloremipsumpassageusedsincethe1500sh3ploremipsumdolorsitametconsecteturadipiscingelitseddoeiusmodtemporincididuntutlaboreetdoloremagnaaliquautenimadminimveniamquisnostrudexercitationullamcolaborisnisiutaliquipexeacommodoconsequatduisauteiruredolorinreprehenderitinvoluptatevelitessecillumdoloreeufugiatnullapariaturexcepteursintoccaecatcupidatatnonproidentsuntinculpaquiofficiadeseruntmollitanimidestlaborumph3section11032ofdefinibusbonorumetmalorumwrittenbyciceroin45bch3psedutperspiciatisundeomnisistenatuserrorsitvoluptatemaccusantiumdoloremquelaudantiumtotamremaperiameaqueipsaquaeabilloinventoreveritatisetquasiarchitectobeataevitaedictasuntexplicabonemoenimipsamvoluptatemquiavoluptassitaspernaturautoditautfugitsedquiaconsequunturmagnidoloreseosquirationevoluptatemsequinesciuntnequeporroquisquamestquidoloremipsumquiadolorsitametconsecteturadipiscivelitsedquianonnumquameiusmoditemporainciduntutlaboreetdoloremagnamaliquamquaeratvoluptatemutenimadminimaveniamquisnostrumexercitationemullamcorporissuscipitlaboriosamnisiutaliquidexeacommodiconsequaturquisautemveleumiurereprehenderitquiineavoluptatevelitessequamnihilmolestiaeconsequaturvelillumquidoloremeumfugiatquovoluptasnullapariaturph31914translationbyhrackhamh3pbutimustexplaintoyouhowallthismistakenideaofdenouncingpleasureandpraisingpainwasbornandiwillgiveyouacompleteaccountofthesystemandexpoundtheactualteachingsofthegreatexplorerofthetruththemasterbuilderofhumanhappinessnoonerejectsdislikesoravoidspleasureitselfbecauseitispleasurebutbecausethosewhodonotknowhowtopursuepleasurerationallyencounterconsequencesthatareextremelypainfulnoragainisthereanyonewholovesorpursuesordesirestoobtainpainofitselfbecauseitispainbutbecauseoccasionallycircumstancesoccurinwhichtoilandpaincanprocurehimsomegreatpleasuretotakeatrivialexamplewhichofuseverundertakeslaboriousphysicalexerciseexcepttoobtainsomeadvantagefromitbutwhohasanyrighttofindfaultwithamanwhochoosestoenjoyapleasurethathasnoannoyingconsequencesoronewhoavoidsapainthatproducesnoresultantpleasureph3section11033ofdefinibusbonorumetmalorumwrittenbyciceroin45bch3patveroeosetaccusamusetiustoodiodignissimosducimusquiblanditiispraesentiumvoluptatumdelenitiatquecorruptiquosdoloresetquasmolestiasexcepturisintoccaecaticupiditatenonprovidentsimiliquesuntinculpaquiofficiadeseruntmollitiaanimiidestlaborumetdolorumfugaetharumquidemrerumfacilisestetexpeditadistinctionamliberotemporecumsolutanobisesteligendioptiocumquenihilimpeditquominusidquodmaximeplaceatfacerepossimusomnisvoluptasassumendaestomnisdolorrepellendustemporibusautemquibusdametautofficiisdebitisautrerumnecessitatibussaepeevenietutetvoluptatesrepudiandaesintetmolestiaenonrecusandaeitaqueearumrerumhicteneturasapientedelectusutautreiciendisvoluptatibusmaioresaliasconsequaturautperferendisdoloribusasperioresrepellatph31914translationbyhrackhamh3pontheotherhandwedenouncewithrighteousindignationanddislikemenwhoaresobeguiledanddemoralizedbythecharmsofpleasureofthemomentsoblindedbydesirethattheycannotforeseethepainandtroublethatareboundtoensueandequalblamebelongstothosewhofailintheirdutythroughweaknessofwillwhichisthesameassayingthroughshrinkingfromtoilandpainthesecasesareperfectlysimpleandeasytodistinguishinafreehourwhenourpowerofchoiceisuntrammelledandwhennothingpreventsourbeingabletodowhatwelikebesteverypleasureistobewelcomedandeverypainavoidedbutincertaincircumstancesandowingtotheclaimsofdutyortheobligationsofbusinessitwillfrequentlyoccurthatpleasureshavetoberepudiatedandannoyancesacceptedthewisemanthereforealwaysholdsinthesematterstothisprincipleofselectionherejectspleasurestosecureothergreaterpleasuresorelseheendurespainstoavoidworsepainspdivdividbannerldividdivgptad14745377621222scripttypetextjavascriptgoogletagcmdpushfunctiongoogletagdisplaydivgptad14745377621222scriptdivdivdividbannerrdividdivgptad14745377621223scripttypetextjavascriptgoogletagcmdpushfunctiongoogletagdisplaydivgptad14745377621223scriptdivdivdivhrdivclassboxedastyletextdecorationnonehref1099710510811611158104101108112641081051121151171094699111109104101108112641081051121151171094699111109abrastyletextdecorationnonetarget_blankhrefprivacypdfprivacypolicyadivdivdivclassbannerdividdivgptad14561483161981scripttypetextjavascriptgoogletagcmdpushfunctiongoogletagdisplaydivgptad14561483161981scriptdivdivdivgeneratedin0014secondsbodyhtml'], 'term_freq': [[1, 0, 0], [0, 1, 0], [0, 0, 1]]}\n" + ] + } + ], "source": [ "from sklearn.feature_extraction import stop_words\n", "bow = get_bow_from_docs([\n", @@ -87,6 +206,28 @@ "Spend 20-30 minutes to improve your functions or until you feel you are good at string operations. This lab is just a practice so you don't need to stress yourself out. If you feel you've practiced enough you can stop and move on the next challenge question." ] }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "ename": "FileNotFoundError", + "evalue": "[Errno 2] No such file or directory: 'tool!'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mFileNotFoundError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mget_bow_from_docs\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mtest_string2\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[0m", + "\u001b[0;32m\u001b[0m in \u001b[0;36mget_bow_from_docs\u001b[0;34m(docs, stop_words)\u001b[0m\n\u001b[1;32m 34\u001b[0m \u001b[0mterm_freq\u001b[0m \u001b[0;34m=\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 35\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mstring\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mdocs\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 36\u001b[0;31m \u001b[0;32mwith\u001b[0m \u001b[0mopen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mstring\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0mfile\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 37\u001b[0m \u001b[0mcorpus\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mappend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mfile\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mread\u001b[0m\u001b[0;34m(\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 38\u001b[0m \u001b[0mcorpus\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mlowercases_list\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mcorpus\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mFileNotFoundError\u001b[0m: [Errno 2] No such file or directory: 'tool!'" + ] + } + ], + "source": [ + "print(get_bow_from_docs(test_string2))" + ] + }, { "cell_type": "code", "execution_count": null, @@ -111,7 +252,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.7.3" } }, "nbformat": 4, diff --git a/module-1_labs/lab-functional-programming/your-code/Q3.ipynb b/module-1_labs/lab-functional-programming/your-code/Q3.ipynb index 75055ac..34e2939 100644 --- a/module-1_labs/lab-functional-programming/your-code/Q3.ipynb +++ b/module-1_labs/lab-functional-programming/your-code/Q3.ipynb @@ -85,12 +85,21 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[-1, -100, -99]\n" + ] + } + ], "source": [ "numbers = [1, 4, -1, -100, 0, 5, -99]\n", - "\n", + "filtered_numbers =list(filter(lambda x : x < 0, numbers))\n", + "print(filtered_numbers)\n", "# Enter your code below" ] }, @@ -113,14 +122,23 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 7, "metadata": {}, - "outputs": [], + "outputs": [ + { + "ename": "SyntaxError", + "evalue": "invalid syntax (, line 4)", + "output_type": "error", + "traceback": [ + "\u001b[0;36m File \u001b[0;32m\"\"\u001b[0;36m, line \u001b[0;32m4\u001b[0m\n\u001b[0;31m only_english = reduce((lambda i, \" \".join(i) : langdetect.detect(i) == 'eb' ) , words)\u001b[0m\n\u001b[0m ^\u001b[0m\n\u001b[0;31mSyntaxError\u001b[0m\u001b[0;31m:\u001b[0m invalid syntax\n" + ] + } + ], "source": [ "import langdetect\n", "from functools import reduce\n", "words = ['good morning', '早上好', 'доброго', 'おはようございます', 'everyone', '大家', 'каждый', 'みんな']\n", - "\n", + "only_english = reduce((lambda i, b \" \".join(i) : langdetect.detect(i) == 'eb' ) , words)\n", "# Enter your code below" ] }, @@ -199,7 +217,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.7.3" } }, "nbformat": 4, diff --git a/module-1_labs/lab-functional-programming/your-code/Untitled.ipynb b/module-1_labs/lab-functional-programming/your-code/Untitled.ipynb new file mode 100644 index 0000000..9be92b8 --- /dev/null +++ b/module-1_labs/lab-functional-programming/your-code/Untitled.ipynb @@ -0,0 +1,73 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[-9]" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "[0-9]" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'A' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mprint\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mA\u001b[0m\u001b[0;34m-\u001b[0m\u001b[0mZ\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;31mNameError\u001b[0m: name 'A' is not defined" + ] + } + ], + "source": [ + "print[A-Z]\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module-1_labs/lab-lambda-functions/your-code/main.ipynb b/module-1_labs/lab-lambda-functions/your-code/main.ipynb index 66a9984..bebe95d 100644 --- a/module-1_labs/lab-lambda-functions/your-code/main.ipynb +++ b/module-1_labs/lab-lambda-functions/your-code/main.ipynb @@ -34,17 +34,29 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 5, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "[3, 4, 5, 6, 7, 8, 9, 10, 11, 12]" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "l = [######]\n", - "f = lambda x: #define the lambda expression\n", + "lst = [1, 2 ,3 ,4 ,5 ,6 , 7 , 8 , 9 , 10]\n", + "func_lambda = lambda x: x + 2\n", "b = []\n", - "def modify_list(lst, fudduLambda):\n", - " for x in ####:\n", - " b.append(#####(x))\n", - "#Call modify_list(##,##)\n", + "def modify_list(lst, func_lambda):\n", + " for x in lst:\n", + " b.append(func_lambda(x))\n", + " return(b)\n", + "modify_list(lst, func_lambda)\n", "#print b" ] }, @@ -59,12 +71,12 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 9, "metadata": {}, "outputs": [], "source": [ "# Your code here:\n", - "\n" + "covert_c_to_k = lambda c: c + 273.15 \n" ] }, { @@ -76,13 +88,25 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 13, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "[285.15, 296.15, 311.15, 218.14999999999998, 297.15]" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "temps = [12, 23, 38, -55, 24]\n", "\n", - "# Your code here:" + "# Your code here:\n", + "[covert_c_to_k(elm) for elm in temps]" ] }, { diff --git a/module-1_labs/lab-list-comprehensions/your-code/main.ipynb b/module-1_labs/lab-list-comprehensions/your-code/main.ipynb index c5931c4..71fa6ba 100644 --- a/module-1_labs/lab-list-comprehensions/your-code/main.ipynb +++ b/module-1_labs/lab-list-comprehensions/your-code/main.ipynb @@ -11,7 +11,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 11, "metadata": {}, "outputs": [], "source": [ @@ -29,10 +29,70 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 12, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1\n", + "2\n", + "3\n", + "4\n", + "5\n", + "6\n", + "7\n", + "8\n", + "9\n", + "10\n", + "11\n", + "12\n", + "13\n", + "14\n", + "15\n", + "16\n", + "17\n", + "18\n", + "19\n", + "20\n", + "21\n", + "22\n", + "23\n", + "24\n", + "25\n", + "26\n", + "27\n", + "28\n", + "29\n", + "30\n", + "31\n", + "32\n", + "33\n", + "34\n", + "35\n", + "36\n", + "37\n", + "38\n", + "39\n", + "40\n", + "41\n", + "42\n", + "43\n", + "44\n", + "45\n", + "46\n", + "47\n", + "48\n", + "49\n", + "50\n" + ] + } + ], + "source": [ + " \n", + "nums_1_to_50 = [print(i) for i in range(1, 51)]\n" + ] }, { "cell_type": "markdown", @@ -43,10 +103,119 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 13, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2\n", + "4\n", + "6\n", + "8\n", + "10\n", + "12\n", + "14\n", + "16\n", + "18\n", + "20\n", + "22\n", + "24\n", + "26\n", + "28\n", + "30\n", + "32\n", + "34\n", + "36\n", + "38\n", + "40\n", + "42\n", + "44\n", + "46\n", + "48\n", + "50\n", + "52\n", + "54\n", + "56\n", + "58\n", + "60\n", + "62\n", + "64\n", + "66\n", + "68\n", + "70\n", + "72\n", + "74\n", + "76\n", + "78\n", + "80\n", + "82\n", + "84\n", + "86\n", + "88\n", + "90\n", + "92\n", + "94\n", + "96\n", + "98\n", + "100\n", + "102\n", + "104\n", + "106\n", + "108\n", + "110\n", + "112\n", + "114\n", + "116\n", + "118\n", + "120\n", + "122\n", + "124\n", + "126\n", + "128\n", + "130\n", + "132\n", + "134\n", + "136\n", + "138\n", + "140\n", + "142\n", + "144\n", + "146\n", + "148\n", + "150\n", + "152\n", + "154\n", + "156\n", + "158\n", + "160\n", + "162\n", + "164\n", + "166\n", + "168\n", + "170\n", + "172\n", + "174\n", + "176\n", + "178\n", + "180\n", + "182\n", + "184\n", + "186\n", + "188\n", + "190\n", + "192\n", + "194\n", + "196\n", + "198\n", + "200\n" + ] + } + ], + "source": [ + "even_nums_2_to_200 = [print(i) for i in range(1,201) if i % 2 == 0]" + ] }, { "cell_type": "markdown", @@ -57,7 +226,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 14, "metadata": {}, "outputs": [], "source": [ @@ -75,10 +244,30 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 28, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0.84062117 0.48006452 0.7876326 0.77109654]\n", + "[0.44409793 0.09014516 0.81835917 0.87645456]\n", + "[0.7066597 0.09610873 0.41247947 0.57433389]\n", + "[0.29960807 0.42315023 0.34452557 0.4751035 ]\n", + "[0.17003563 0.46843998 0.92796258 0.69814654]\n", + "[0.41290051 0.19561071 0.16284783 0.97016248]\n", + "[0.71725408 0.87702738 0.31244595 0.76615487]\n", + "[0.20754036 0.57871812 0.07214068 0.40356048]\n", + "[0.12149553 0.53222417 0.9976855 0.12536346]\n", + "[0.80930099 0.50962849 0.94555126 0.33364763]\n" + ] + } + ], + "source": [ + "#print_sub_list_and_drop_line = []\n", + "#[print_sub_list_and_drop_line.append[char[i] for i in range ]" + ] }, { "cell_type": "markdown", @@ -89,10 +278,21 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 25, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "ename": "SyntaxError", + "evalue": "invalid syntax (, line 1)", + "output_type": "error", + "traceback": [ + "\u001b[0;36m File \u001b[0;32m\"\"\u001b[0;36m, line \u001b[0;32m1\u001b[0m\n\u001b[0;31m print_sub_list_and_drop_line_greater = [i for i in a j for j in i if f >= 0.5]\u001b[0m\n\u001b[0m ^\u001b[0m\n\u001b[0;31mSyntaxError\u001b[0m\u001b[0;31m:\u001b[0m invalid syntax\n" + ] + } + ], + "source": [ + "#print_sub_list_and_drop_line_greater = [print(j) for j in i if f >= 0.5i for i in a j for j in i if f >= 0.5]" + ] }, { "cell_type": "markdown", @@ -153,10 +353,34 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 66, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "data": { + "text/plain": [ + "['sample_file_1.csv',\n", + " 'sample_file_0.csv',\n", + " 'sample_file_2.csv',\n", + " 'sample_file_3.csv',\n", + " 'sample_file_7.csv',\n", + " 'sample_file_6.csv',\n", + " 'sample_file_4.csv',\n", + " 'sample_file_5.csv',\n", + " 'sample_file_8.csv',\n", + " 'sample_file_9.csv']" + ] + }, + "execution_count": 66, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#name_of_csv_files_in_data = [i for i in i ]\n", + "names_of_csv_files_in_datafor =[ file for file in os.listdir('../data/') if file.endswith(\".csv\")]\n", + "names_of_csv_files_in_datafor\n" + ] }, { "cell_type": "markdown", @@ -167,10 +391,1374 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 70, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "data": { + "text/html": [ + "

    \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
    012345678910111213141516171819
    00.2768270.2600540.9423970.1131870.7813550.4757400.1520610.2503240.1470780.1629840.9770250.5096190.5932120.9118390.2576450.3864570.6969320.0691620.9522910.286542
    10.9958850.1583810.2442740.9621630.6519000.9306650.5771900.0879140.9602610.5808400.1946160.6614590.6740850.0493260.7858030.3156450.4953550.2321350.5493240.572232
    20.6419170.8210550.3924370.7826170.5107620.4283200.0173240.6807200.3404120.4625130.7857760.2519490.0328470.9957000.8165630.7356920.4359980.4304110.5317570.489528
    30.8065320.5692580.1481750.8099870.4596320.7357620.7306640.9345020.0803220.7635020.3985040.0276370.4096650.9428460.1332560.1571580.9294460.4027910.6859760.246594
    40.3111850.5011650.3659790.7828070.7767950.7971990.7919460.8471570.7718110.2339440.5223440.0530300.2085510.8243540.5885670.6043410.2329640.2291090.0228810.479022
    00.7347510.1953620.7343090.5981840.7634330.2634340.8680660.0580920.7535020.5875130.3116080.1783560.1829220.1476310.3911880.8160490.7490680.2932600.9378280.880858
    10.7726070.4453910.2496420.7879220.5985830.8272380.6241260.6015240.6887530.3388700.0815950.4714740.2674430.4533510.8007160.0457490.6837930.3897890.0167870.503695
    20.2264280.2687640.6942620.6223350.0638430.1226830.8156250.5845420.0325940.5897750.7643500.6509730.5657050.6917840.2652230.7390310.5603940.3348020.5176940.646110
    30.3627480.4954300.1138760.5941490.6125220.6252040.8640500.2602790.5288730.1680430.7159290.6770140.1757350.6323700.9267150.0856750.1205250.1417460.7711440.489660
    40.0334150.3404330.4649710.3637370.0258150.4341290.4151630.8922100.3817010.4152640.7908010.6969300.8197510.9440290.8699650.0417230.8191400.6760510.1093490.872947
    00.9486640.2152850.9182700.5999510.7551200.9716090.1031900.1947540.9323880.5917270.6975170.6073550.1776490.4359680.2024040.9797770.0957130.1590400.6514570.803393
    10.1632360.8039260.9166550.7752340.6448900.7013620.9102080.8712040.3217450.5860350.8870540.2400600.9153420.2053100.4895040.8489260.3043420.3589770.8415390.964889
    20.9341360.0314100.9540570.8533870.6421600.6811840.3171980.8752590.5384160.8675110.8133090.2156240.5520620.4983780.7396560.3079140.2339960.6021660.2442100.313071
    30.7570380.9189640.4754590.8376860.1496450.8190320.6119960.6443480.9384440.4104440.5615130.4992310.8564370.0546190.3263100.4618250.9547830.3618730.1459520.873029
    40.2634550.8162830.3367070.5879970.2858710.6199420.0180270.5488450.1214710.1942990.1498440.8488660.5318400.6633840.0848840.1203120.4632140.4378890.5423760.668447
    00.3761010.8965900.5009950.3814160.4477300.0484720.0942350.9868900.5823520.0372300.1303060.7661530.1537830.1991400.3303180.9696570.1109980.0334740.1172770.213938
    10.4981920.5655000.1523940.2842320.5570420.4170950.6634650.1581880.0391820.5434420.5212100.9934810.5803590.7657570.9312640.3368410.2712300.5097980.8770480.310951
    20.6352840.2475120.1799860.4682310.9117990.7642090.9414130.8083700.5780240.1812670.0647880.9242260.0707440.7045750.9481270.9714520.3608610.0743940.3869490.396453
    30.6474970.0724120.6814030.9771890.6909530.8293470.2369150.4069380.8982340.5135750.5324730.7903120.0822920.8508210.0880250.2892180.8227750.5159330.9628270.026952
    40.1707920.5869000.0298340.9219230.0907270.5927460.9724290.7747600.2938000.9569490.8117400.5255620.4547880.8488120.0952140.4153110.0264960.5133420.8303890.931145
    00.4602810.3085510.7358940.0540590.5936420.3976790.0199220.8556730.3394450.8958100.8324310.5533080.6177110.8415750.3360940.9519070.0509860.8561350.7739530.295344
    10.0658510.7360290.7977300.6927220.1677640.8397560.9101860.6433280.3715590.6743110.4248150.2793970.0150810.7884970.1323910.7660330.7085100.7528660.4938620.577262
    20.6713230.7472960.8923280.7329020.0656080.2623640.7124170.7643790.0174610.1319700.6494510.9021570.0341880.8409380.0985360.9578240.5662090.6559470.5927330.002596
    30.4454780.5235220.9593550.3482920.7618050.3013910.7122400.9454620.1392410.1054770.8895010.1608280.4007740.7702950.8446550.7727980.5842620.8074000.1774190.926007
    40.2913990.5512480.7365420.1635620.4511490.8889380.9684650.3960900.6816790.3905420.0303940.9440770.3661390.0781880.1754820.2324890.8069640.9045930.8036290.792851
    00.7025660.0923360.2450830.9184020.6951100.8869210.5886050.9509700.1680790.7831070.6988360.1208570.2074320.8247890.3492120.8186060.3769410.8866440.4728260.551858
    10.1770050.6495510.4673210.4495970.4588720.8155860.4551320.7298120.9985280.0487240.3773910.7294980.7215150.5667240.3383660.8772390.1298240.7731550.4853850.686294
    20.6895560.4455860.0056910.1501710.5541460.4923200.1856120.0608550.4574430.8473370.6030720.3465740.8984640.4829630.4439790.4301320.7130780.3027860.0513820.203699
    30.0471880.8545960.8333680.0438780.8835050.7863020.9809160.0040300.6196010.5477690.1609620.5452810.9316230.9918550.8210990.6545920.3467100.1839480.3727390.739383
    40.9360650.7258310.1842390.6773910.2427260.1254570.3562540.9373500.2157740.2127620.4830180.5731620.6344870.4239240.3946330.7669670.6067190.5387120.8855160.667051
    00.9013810.7909440.5966030.3547210.3570020.3213250.7383980.7778850.7756230.7178170.7881980.9622140.3944650.8789220.0842060.6809410.9928970.2674550.2124030.572150
    10.7638230.5372810.7088040.9752690.0537770.9577400.3891370.6898290.5108850.7374450.0976780.2429060.0736030.4975910.7984670.7890780.9475590.6314970.0579530.060306
    20.5718640.3862430.5674760.5092830.5525940.1738070.2290920.2579450.3134370.4183110.7500070.6047590.2348860.8323370.4212630.4557850.8938410.7264120.4583600.048740
    30.9561680.4222740.1217130.6852080.7133700.4162450.3371510.5706930.4359380.3600980.0374370.1675450.8478800.7734560.4906280.5442320.9546680.5672800.5715390.560742
    40.1218260.2374790.5539560.1736600.3544230.5320800.2713610.7660060.6070200.1973020.5263520.6765710.4735740.9532280.4131860.9572420.6425580.3514960.5472970.177401
    00.4371140.1569410.1831480.8177850.7476320.7268550.9447580.2874490.7926920.0800250.0798860.0678870.5434980.7111580.9600300.8108070.5793950.6608110.5202950.945250
    10.2133370.5034900.8026630.4434840.7008930.1293290.0071760.0277350.4276920.1569260.4861380.5712780.9404140.9407300.9333770.4278690.6544020.4075800.1224530.115311
    20.6256920.1846090.1206520.4109550.4082720.6867920.4801680.2869010.3201120.0488150.7687250.4610140.0904510.7209380.1925010.2190770.0341130.8589560.8160360.582192
    30.6420070.1755920.4768890.4510960.8034910.2726130.5760370.7742690.3233130.3498500.4134650.6411110.8412100.6686610.1010310.9721350.4795810.1499820.0351500.528075
    40.8091290.5493740.0554050.8578020.7606880.6622570.4532890.6583290.9736150.4497710.6152290.4672900.1580770.3057160.7303550.4123360.4691420.0787340.4487410.827487
    00.1324530.1066350.6735680.5072530.1629250.1300420.9803880.6231670.0740660.1115570.8646640.0936370.4469740.0225250.7133690.7078740.5635060.9822560.5624980.968681
    10.3849380.7676040.8505280.6059980.8261720.6674880.1420450.0869040.9123480.8921830.4263890.7765520.4294960.6020560.2837690.1667930.3168780.6883370.1695250.966198
    20.3186910.6757200.8071890.7525180.5313420.7032250.5982930.9215080.5633330.1843000.6676250.2700170.5734400.1636690.0328520.6893150.9736840.7196100.1636700.724486
    30.5385930.2912410.4071870.6132600.8514240.9620860.5905120.9807000.1590220.6842650.8986330.4701130.7565930.2824080.5513690.7321530.4941000.7928030.7944260.837695
    40.7132710.1562100.3928000.7023480.0094000.0303040.9600660.6889370.2602520.6346080.2737750.2641450.6829410.9084990.4509500.2007610.9683240.2211650.8913820.398914
    00.2151900.1553520.1608480.8077360.3635870.8998320.1467540.0948020.7051330.8827620.7733200.6877450.0167890.3407250.9841820.9854610.4120440.8678940.1134320.349845
    10.8955440.9551960.0899250.8275550.0890710.6428830.9960520.8790200.4218370.4121410.8585130.2170910.1761570.5512360.8343780.4195350.0414310.6022580.9846280.516899
    20.4137520.6930520.7897960.9291640.5361910.4397690.7734740.9820740.8769550.6331540.2790050.4833170.9082880.7561720.4621300.2898920.1452330.0768190.7978360.197592
    30.7280010.3481560.9357870.8511630.4445730.7150800.9884080.2103320.7321330.8923830.2168930.3675950.8462080.2401110.4718800.3997210.7581960.6655680.9315420.448124
    40.1349420.8759310.2735050.2075880.0806960.7173960.0339300.6468370.8887220.9227420.1765930.8613330.3894510.6952440.1299550.3641140.4282240.3654420.8478180.588319
    \n", + "
    " + ], + "text/plain": [ + " 0 1 2 3 4 5 6 \\\n", + "0 0.276827 0.260054 0.942397 0.113187 0.781355 0.475740 0.152061 \n", + "1 0.995885 0.158381 0.244274 0.962163 0.651900 0.930665 0.577190 \n", + "2 0.641917 0.821055 0.392437 0.782617 0.510762 0.428320 0.017324 \n", + "3 0.806532 0.569258 0.148175 0.809987 0.459632 0.735762 0.730664 \n", + "4 0.311185 0.501165 0.365979 0.782807 0.776795 0.797199 0.791946 \n", + "0 0.734751 0.195362 0.734309 0.598184 0.763433 0.263434 0.868066 \n", + "1 0.772607 0.445391 0.249642 0.787922 0.598583 0.827238 0.624126 \n", + "2 0.226428 0.268764 0.694262 0.622335 0.063843 0.122683 0.815625 \n", + "3 0.362748 0.495430 0.113876 0.594149 0.612522 0.625204 0.864050 \n", + "4 0.033415 0.340433 0.464971 0.363737 0.025815 0.434129 0.415163 \n", + "0 0.948664 0.215285 0.918270 0.599951 0.755120 0.971609 0.103190 \n", + "1 0.163236 0.803926 0.916655 0.775234 0.644890 0.701362 0.910208 \n", + "2 0.934136 0.031410 0.954057 0.853387 0.642160 0.681184 0.317198 \n", + "3 0.757038 0.918964 0.475459 0.837686 0.149645 0.819032 0.611996 \n", + "4 0.263455 0.816283 0.336707 0.587997 0.285871 0.619942 0.018027 \n", + "0 0.376101 0.896590 0.500995 0.381416 0.447730 0.048472 0.094235 \n", + "1 0.498192 0.565500 0.152394 0.284232 0.557042 0.417095 0.663465 \n", + "2 0.635284 0.247512 0.179986 0.468231 0.911799 0.764209 0.941413 \n", + "3 0.647497 0.072412 0.681403 0.977189 0.690953 0.829347 0.236915 \n", + "4 0.170792 0.586900 0.029834 0.921923 0.090727 0.592746 0.972429 \n", + "0 0.460281 0.308551 0.735894 0.054059 0.593642 0.397679 0.019922 \n", + "1 0.065851 0.736029 0.797730 0.692722 0.167764 0.839756 0.910186 \n", + "2 0.671323 0.747296 0.892328 0.732902 0.065608 0.262364 0.712417 \n", + "3 0.445478 0.523522 0.959355 0.348292 0.761805 0.301391 0.712240 \n", + "4 0.291399 0.551248 0.736542 0.163562 0.451149 0.888938 0.968465 \n", + "0 0.702566 0.092336 0.245083 0.918402 0.695110 0.886921 0.588605 \n", + "1 0.177005 0.649551 0.467321 0.449597 0.458872 0.815586 0.455132 \n", + "2 0.689556 0.445586 0.005691 0.150171 0.554146 0.492320 0.185612 \n", + "3 0.047188 0.854596 0.833368 0.043878 0.883505 0.786302 0.980916 \n", + "4 0.936065 0.725831 0.184239 0.677391 0.242726 0.125457 0.356254 \n", + "0 0.901381 0.790944 0.596603 0.354721 0.357002 0.321325 0.738398 \n", + "1 0.763823 0.537281 0.708804 0.975269 0.053777 0.957740 0.389137 \n", + "2 0.571864 0.386243 0.567476 0.509283 0.552594 0.173807 0.229092 \n", + "3 0.956168 0.422274 0.121713 0.685208 0.713370 0.416245 0.337151 \n", + "4 0.121826 0.237479 0.553956 0.173660 0.354423 0.532080 0.271361 \n", + "0 0.437114 0.156941 0.183148 0.817785 0.747632 0.726855 0.944758 \n", + "1 0.213337 0.503490 0.802663 0.443484 0.700893 0.129329 0.007176 \n", + "2 0.625692 0.184609 0.120652 0.410955 0.408272 0.686792 0.480168 \n", + "3 0.642007 0.175592 0.476889 0.451096 0.803491 0.272613 0.576037 \n", + "4 0.809129 0.549374 0.055405 0.857802 0.760688 0.662257 0.453289 \n", + "0 0.132453 0.106635 0.673568 0.507253 0.162925 0.130042 0.980388 \n", + "1 0.384938 0.767604 0.850528 0.605998 0.826172 0.667488 0.142045 \n", + "2 0.318691 0.675720 0.807189 0.752518 0.531342 0.703225 0.598293 \n", + "3 0.538593 0.291241 0.407187 0.613260 0.851424 0.962086 0.590512 \n", + "4 0.713271 0.156210 0.392800 0.702348 0.009400 0.030304 0.960066 \n", + "0 0.215190 0.155352 0.160848 0.807736 0.363587 0.899832 0.146754 \n", + "1 0.895544 0.955196 0.089925 0.827555 0.089071 0.642883 0.996052 \n", + "2 0.413752 0.693052 0.789796 0.929164 0.536191 0.439769 0.773474 \n", + "3 0.728001 0.348156 0.935787 0.851163 0.444573 0.715080 0.988408 \n", + "4 0.134942 0.875931 0.273505 0.207588 0.080696 0.717396 0.033930 \n", + "\n", + " 7 8 9 10 11 12 13 \\\n", + "0 0.250324 0.147078 0.162984 0.977025 0.509619 0.593212 0.911839 \n", + "1 0.087914 0.960261 0.580840 0.194616 0.661459 0.674085 0.049326 \n", + "2 0.680720 0.340412 0.462513 0.785776 0.251949 0.032847 0.995700 \n", + "3 0.934502 0.080322 0.763502 0.398504 0.027637 0.409665 0.942846 \n", + "4 0.847157 0.771811 0.233944 0.522344 0.053030 0.208551 0.824354 \n", + "0 0.058092 0.753502 0.587513 0.311608 0.178356 0.182922 0.147631 \n", + "1 0.601524 0.688753 0.338870 0.081595 0.471474 0.267443 0.453351 \n", + "2 0.584542 0.032594 0.589775 0.764350 0.650973 0.565705 0.691784 \n", + "3 0.260279 0.528873 0.168043 0.715929 0.677014 0.175735 0.632370 \n", + "4 0.892210 0.381701 0.415264 0.790801 0.696930 0.819751 0.944029 \n", + "0 0.194754 0.932388 0.591727 0.697517 0.607355 0.177649 0.435968 \n", + "1 0.871204 0.321745 0.586035 0.887054 0.240060 0.915342 0.205310 \n", + "2 0.875259 0.538416 0.867511 0.813309 0.215624 0.552062 0.498378 \n", + "3 0.644348 0.938444 0.410444 0.561513 0.499231 0.856437 0.054619 \n", + "4 0.548845 0.121471 0.194299 0.149844 0.848866 0.531840 0.663384 \n", + "0 0.986890 0.582352 0.037230 0.130306 0.766153 0.153783 0.199140 \n", + "1 0.158188 0.039182 0.543442 0.521210 0.993481 0.580359 0.765757 \n", + "2 0.808370 0.578024 0.181267 0.064788 0.924226 0.070744 0.704575 \n", + "3 0.406938 0.898234 0.513575 0.532473 0.790312 0.082292 0.850821 \n", + "4 0.774760 0.293800 0.956949 0.811740 0.525562 0.454788 0.848812 \n", + "0 0.855673 0.339445 0.895810 0.832431 0.553308 0.617711 0.841575 \n", + "1 0.643328 0.371559 0.674311 0.424815 0.279397 0.015081 0.788497 \n", + "2 0.764379 0.017461 0.131970 0.649451 0.902157 0.034188 0.840938 \n", + "3 0.945462 0.139241 0.105477 0.889501 0.160828 0.400774 0.770295 \n", + "4 0.396090 0.681679 0.390542 0.030394 0.944077 0.366139 0.078188 \n", + "0 0.950970 0.168079 0.783107 0.698836 0.120857 0.207432 0.824789 \n", + "1 0.729812 0.998528 0.048724 0.377391 0.729498 0.721515 0.566724 \n", + "2 0.060855 0.457443 0.847337 0.603072 0.346574 0.898464 0.482963 \n", + "3 0.004030 0.619601 0.547769 0.160962 0.545281 0.931623 0.991855 \n", + "4 0.937350 0.215774 0.212762 0.483018 0.573162 0.634487 0.423924 \n", + "0 0.777885 0.775623 0.717817 0.788198 0.962214 0.394465 0.878922 \n", + "1 0.689829 0.510885 0.737445 0.097678 0.242906 0.073603 0.497591 \n", + "2 0.257945 0.313437 0.418311 0.750007 0.604759 0.234886 0.832337 \n", + "3 0.570693 0.435938 0.360098 0.037437 0.167545 0.847880 0.773456 \n", + "4 0.766006 0.607020 0.197302 0.526352 0.676571 0.473574 0.953228 \n", + "0 0.287449 0.792692 0.080025 0.079886 0.067887 0.543498 0.711158 \n", + "1 0.027735 0.427692 0.156926 0.486138 0.571278 0.940414 0.940730 \n", + "2 0.286901 0.320112 0.048815 0.768725 0.461014 0.090451 0.720938 \n", + "3 0.774269 0.323313 0.349850 0.413465 0.641111 0.841210 0.668661 \n", + "4 0.658329 0.973615 0.449771 0.615229 0.467290 0.158077 0.305716 \n", + "0 0.623167 0.074066 0.111557 0.864664 0.093637 0.446974 0.022525 \n", + "1 0.086904 0.912348 0.892183 0.426389 0.776552 0.429496 0.602056 \n", + "2 0.921508 0.563333 0.184300 0.667625 0.270017 0.573440 0.163669 \n", + "3 0.980700 0.159022 0.684265 0.898633 0.470113 0.756593 0.282408 \n", + "4 0.688937 0.260252 0.634608 0.273775 0.264145 0.682941 0.908499 \n", + "0 0.094802 0.705133 0.882762 0.773320 0.687745 0.016789 0.340725 \n", + "1 0.879020 0.421837 0.412141 0.858513 0.217091 0.176157 0.551236 \n", + "2 0.982074 0.876955 0.633154 0.279005 0.483317 0.908288 0.756172 \n", + "3 0.210332 0.732133 0.892383 0.216893 0.367595 0.846208 0.240111 \n", + "4 0.646837 0.888722 0.922742 0.176593 0.861333 0.389451 0.695244 \n", + "\n", + " 14 15 16 17 18 19 \n", + "0 0.257645 0.386457 0.696932 0.069162 0.952291 0.286542 \n", + "1 0.785803 0.315645 0.495355 0.232135 0.549324 0.572232 \n", + "2 0.816563 0.735692 0.435998 0.430411 0.531757 0.489528 \n", + "3 0.133256 0.157158 0.929446 0.402791 0.685976 0.246594 \n", + "4 0.588567 0.604341 0.232964 0.229109 0.022881 0.479022 \n", + "0 0.391188 0.816049 0.749068 0.293260 0.937828 0.880858 \n", + "1 0.800716 0.045749 0.683793 0.389789 0.016787 0.503695 \n", + "2 0.265223 0.739031 0.560394 0.334802 0.517694 0.646110 \n", + "3 0.926715 0.085675 0.120525 0.141746 0.771144 0.489660 \n", + "4 0.869965 0.041723 0.819140 0.676051 0.109349 0.872947 \n", + "0 0.202404 0.979777 0.095713 0.159040 0.651457 0.803393 \n", + "1 0.489504 0.848926 0.304342 0.358977 0.841539 0.964889 \n", + "2 0.739656 0.307914 0.233996 0.602166 0.244210 0.313071 \n", + "3 0.326310 0.461825 0.954783 0.361873 0.145952 0.873029 \n", + "4 0.084884 0.120312 0.463214 0.437889 0.542376 0.668447 \n", + "0 0.330318 0.969657 0.110998 0.033474 0.117277 0.213938 \n", + "1 0.931264 0.336841 0.271230 0.509798 0.877048 0.310951 \n", + "2 0.948127 0.971452 0.360861 0.074394 0.386949 0.396453 \n", + "3 0.088025 0.289218 0.822775 0.515933 0.962827 0.026952 \n", + "4 0.095214 0.415311 0.026496 0.513342 0.830389 0.931145 \n", + "0 0.336094 0.951907 0.050986 0.856135 0.773953 0.295344 \n", + "1 0.132391 0.766033 0.708510 0.752866 0.493862 0.577262 \n", + "2 0.098536 0.957824 0.566209 0.655947 0.592733 0.002596 \n", + "3 0.844655 0.772798 0.584262 0.807400 0.177419 0.926007 \n", + "4 0.175482 0.232489 0.806964 0.904593 0.803629 0.792851 \n", + "0 0.349212 0.818606 0.376941 0.886644 0.472826 0.551858 \n", + "1 0.338366 0.877239 0.129824 0.773155 0.485385 0.686294 \n", + "2 0.443979 0.430132 0.713078 0.302786 0.051382 0.203699 \n", + "3 0.821099 0.654592 0.346710 0.183948 0.372739 0.739383 \n", + "4 0.394633 0.766967 0.606719 0.538712 0.885516 0.667051 \n", + "0 0.084206 0.680941 0.992897 0.267455 0.212403 0.572150 \n", + "1 0.798467 0.789078 0.947559 0.631497 0.057953 0.060306 \n", + "2 0.421263 0.455785 0.893841 0.726412 0.458360 0.048740 \n", + "3 0.490628 0.544232 0.954668 0.567280 0.571539 0.560742 \n", + "4 0.413186 0.957242 0.642558 0.351496 0.547297 0.177401 \n", + "0 0.960030 0.810807 0.579395 0.660811 0.520295 0.945250 \n", + "1 0.933377 0.427869 0.654402 0.407580 0.122453 0.115311 \n", + "2 0.192501 0.219077 0.034113 0.858956 0.816036 0.582192 \n", + "3 0.101031 0.972135 0.479581 0.149982 0.035150 0.528075 \n", + "4 0.730355 0.412336 0.469142 0.078734 0.448741 0.827487 \n", + "0 0.713369 0.707874 0.563506 0.982256 0.562498 0.968681 \n", + "1 0.283769 0.166793 0.316878 0.688337 0.169525 0.966198 \n", + "2 0.032852 0.689315 0.973684 0.719610 0.163670 0.724486 \n", + "3 0.551369 0.732153 0.494100 0.792803 0.794426 0.837695 \n", + "4 0.450950 0.200761 0.968324 0.221165 0.891382 0.398914 \n", + "0 0.984182 0.985461 0.412044 0.867894 0.113432 0.349845 \n", + "1 0.834378 0.419535 0.041431 0.602258 0.984628 0.516899 \n", + "2 0.462130 0.289892 0.145233 0.076819 0.797836 0.197592 \n", + "3 0.471880 0.399721 0.758196 0.665568 0.931542 0.448124 \n", + "4 0.129955 0.364114 0.428224 0.365442 0.847818 0.588319 " + ] + }, + "execution_count": 70, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "single_data_frame = pd.concat(list(pd.read_csv('../data/'+filename) for filename in names_of_csv_files_in_datafor))\n", + "single_data_frame" + ] }, { "cell_type": "markdown", @@ -231,7 +1819,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.0" + "version": "3.7.3" } }, "nbformat": 4, diff --git a/module-1_labs/lab-object-oriented-programming/your-code/main.ipynb b/module-1_labs/lab-object-oriented-programming/your-code/main.ipynb index 15996b3..d4390f5 100644 --- a/module-1_labs/lab-object-oriented-programming/your-code/main.ipynb +++ b/module-1_labs/lab-object-oriented-programming/your-code/main.ipynb @@ -401,7 +401,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.7.3" } }, "nbformat": 4, diff --git a/module-1_labs/lab-string-operations/your-code/challenge-2.ipynb b/module-1_labs/lab-string-operations/your-code/challenge-2.ipynb index 3b3e492..eec212e 100644 --- a/module-1_labs/lab-string-operations/your-code/challenge-2.ipynb +++ b/module-1_labs/lab-string-operations/your-code/challenge-2.ipynb @@ -266,27 +266,29 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "[[1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 0, 0, 1, 1, 0, 0, 0, 0], [1, 0, 0, 1, 0, 1, 1, 1, 1]]\n" + "[[1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 0, 0, 2, 1, 0, 0, 0, 0], [1, 0, 0, 2, 0, 1, 4, 1, 1]]\n" ] } ], "source": [ "term_freq = []\n", - "\n", + "bag_of_words = ['ironhack', 'is', 'cool', 'i', 'love', 'am', 'a', 'student', 'at']\n", + "corpus = ['ironhack is cool', 'i love ironhack', 'i am a student at ironhack']\n", "# Write your code here\n", "\n", "for line in corpus:\n", " freq=[]\n", " for word in bag_of_words:\n", " if word in line.split():\n", - " freq.append(1)\n", + " freq.append(line.count(word))\n", + " \n", " else:\n", " freq.append(0)\n", " term_freq.append(freq)\n", From f10496a75352fda643727a6ae9aa242a3dcdf540 Mon Sep 17 00:00:00 2001 From: NAS <56131958+NAVSmith@users.noreply.github.com> Date: Mon, 21 Oct 2019 16:18:07 +0200 Subject: [PATCH 5/6] adding the project once again --- .../lab-lambda-functions/your-code/main.ipynb | 221 +++++++++-- .../python-project/your-code/basic.ipynb | 342 ++++++++++++++++++ .../your-code/my_first_project.ipynb | 342 ++++++++++++++++++ .../your-code/sample-code.ipynb | 160 ++++++-- 4 files changed, 997 insertions(+), 68 deletions(-) create mode 100644 module-1_projects/python-project/your-code/basic.ipynb create mode 100644 module-1_projects/python-project/your-code/my_first_project.ipynb diff --git a/module-1_labs/lab-lambda-functions/your-code/main.ipynb b/module-1_labs/lab-lambda-functions/your-code/main.ipynb index bebe95d..c48e635 100644 --- a/module-1_labs/lab-lambda-functions/your-code/main.ipynb +++ b/module-1_labs/lab-lambda-functions/your-code/main.ipynb @@ -34,7 +34,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 1, "metadata": {}, "outputs": [ { @@ -43,7 +43,7 @@ "[3, 4, 5, 6, 7, 8, 9, 10, 11, 12]" ] }, - "execution_count": 5, + "execution_count": 1, "metadata": {}, "output_type": "execute_result" } @@ -71,7 +71,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ @@ -88,7 +88,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 3, "metadata": {}, "outputs": [ { @@ -97,7 +97,7 @@ "[285.15, 296.15, 311.15, 218.14999999999998, 297.15]" ] }, - "execution_count": 13, + "execution_count": 3, "metadata": {}, "output_type": "execute_result" } @@ -120,11 +120,25 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 4, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n", + "1\n", + "0\n" + ] + } + ], "source": [ - "# Your code here:\n" + "# Your code here:\n", + "mod = lambda x ,y : 0 if y == 0 else ( 1 if x % y == 0 else 0)\n", + "print(mod(1,0))\n", + "print(mod(1,1))\n", + "print(mod(1,2))" ] }, { @@ -138,17 +152,18 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ - "def divisor(b):\n", + "def divisor(num1, num2):\n", " \"\"\"\n", " input: a number\n", " output: a function that returns 1 if the number is divisible by another number (to be passed later) and zero otherwise\n", " \"\"\"\n", " \n", - " # Your code here:" + " # Your code here:\n", + " return mod(num , divisor)" ] }, { @@ -160,11 +175,17 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 9, "metadata": {}, "outputs": [], "source": [ - "# Your code here:\n" + "# Your code here:\n", + "divisor = 5\n", + "def divisible5(num , divisor = divisor ) :\n", + " is_divisible_by_5 = False\n", + " if mod(num , divisor) == 1:\n", + " is_divisible_by_5 = True\n", + " return is_divisible_by_5 " ] }, { @@ -176,18 +197,40 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 10, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "divisible5(10)" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 11, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "divisible5(8)" ] @@ -242,14 +285,24 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 12, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[(1, 2), (2, 3), (3, 4), (4, 5)]\n" + ] + } + ], "source": [ "list1 = [1,2,3,4]\n", "list2 = [2,3,4,5]\n", "## Zip the lists together \n", - "## Print the zipped list " + "zipped_lsts = list(zip(list1, list2))\n", + "## Print the zipped list \n", + "print(zipped_lsts)" ] }, { @@ -261,18 +314,22 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 15, "metadata": {}, "outputs": [ { - "data": { - "text/plain": [ - "'\\n\\ncompare = lambda ###: print(\"True\") if ### else print(\"False\")\\nfor ### in zip(list1,list2):\\n compare(###)\\n \\n'" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" + "name": "stdout", + "output_type": "stream", + "text": [ + "(1, 2)\n", + "False\n", + "(2, 3)\n", + "False\n", + "(3, 4)\n", + "False\n", + "(4, 5)\n", + "False\n" + ] } ], "source": [ @@ -281,8 +338,15 @@ "compare = lambda ###: print(\"True\") if ### else print(\"False\")\n", "for ### in zip(list1,list2):\n", " compare(###)\n", - " \n", - "''' " + "\n", + "''' \n", + "\n", + "\n", + "compare = lambda elm1, elm2: print(\"True\") if elm1 == elm2 else print(\"False\")\n", + "for pair in zip(list1,list2):\n", + " print(pair)\n", + " compare(pair[0], pair[1])\n", + " " ] }, { @@ -298,14 +362,40 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 49, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Lab\n", + "[('Engineering', 'Lab'), ('Computer Science', 'Homework'), ('Political Science', 'Essay'), ('Mathematics', 'Module')]\n" + ] + }, + { + "data": { + "text/plain": [ + "[('Political Science', 'Essay'),\n", + " ('Computer Science', 'Homework'),\n", + " ('Engineering', 'Lab'),\n", + " ('Mathematics', 'Module')]" + ] + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "list1 = ['Engineering', 'Computer Science', 'Political Science', 'Mathematics']\n", "list2 = ['Lab', 'Homework', 'Essay', 'Module']\n", "\n", - "# Your code here:\n" + "# Your code here: \n", + "zipped = list(zip(list1, list2))\n", + "print(zipped[0][1])\n", + "print(zipped)\n", + "sorted(zip(list1, list2), key=lambda tup: tup[1][0])\n" ] }, { @@ -319,7 +409,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 37, "metadata": {}, "outputs": [], "source": [ @@ -328,6 +418,67 @@ "# Your code here:" ] }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Audi', 'BMW', 'Honda', 'Toyota']" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#sorted(d, key=lambda d : d[0])" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "1997" + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "d['Honda']" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "\n", + "\n" + ] + } + ], + "source": [ + "for i in d:\n", + " print(str(d.keys))" + ] + }, { "cell_type": "code", "execution_count": null, diff --git a/module-1_projects/python-project/your-code/basic.ipynb b/module-1_projects/python-project/your-code/basic.ipynb new file mode 100644 index 0000000..e0dd939 --- /dev/null +++ b/module-1_projects/python-project/your-code/basic.ipynb @@ -0,0 +1,342 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "# define rooms and items\n", + "\n", + "\n", + "\n", + "door_a = {\n", + " \"name\": \"door a\",\n", + " \"type\": \"door\",\n", + "}\n", + "\n", + "door_b = {\n", + " \"name\": \"door b\",\n", + " \"type\": \"door\",\n", + "}\n", + "\n", + "door_c = {\n", + " \"name\": \"door c\",\n", + " \"type\": \"door\",\n", + "}\n", + "\n", + "door_d = {\n", + " \"name\": \"door d\",\n", + " \"type\": \"door\",\n", + "}\n", + "\n", + "key_a = {\n", + " \"name\": \"key for door a\",\n", + " \"type\": \"key\",\n", + " \"target\": door_a,\n", + "}\n", + "\n", + "key_b = {\n", + " \"name\": \"key for door b\",\n", + " \"type\": \"key\",\n", + " \"target\": door_b,\n", + "}\n", + "\n", + "key_c = {\n", + " \"name\": \"key for door c\",\n", + " \"type\": \"key\",\n", + " \"target\": door_c,\n", + "}\n", + "\n", + "key_d = {\n", + " \"name\": \"key for door d\",\n", + " \"type\": \"key\",\n", + " \"target\": door_d,\n", + "}\n", + "\n", + "couch = {\n", + " \"name\": \"couch\",\n", + " \"type\": \"furniture\",\n", + "}\n", + "\n", + "piano = {\n", + " \"name\": \"piano\",\n", + " \"type\": \"furniture\",\n", + "}\n", + "\n", + "queen_bed = {\n", + " \"name\": \"queen bed\",\n", + " \"type\": \"furniture\",\n", + "}\n", + "\n", + "double_bed = {\n", + " \"name\": \"double bed\",\n", + " \"type\": \"furniture\",\n", + "}\n", + "\n", + "dresser = {\n", + " \"name\": \"dresser\",\n", + " \"type\": \"furniture\",\n", + "}\n", + "\n", + "dining_table = {\n", + " \"name\": \"dining_table\",\n", + " \"type\": \"furniture\",\n", + "}\n", + "\n", + "game_room = {\n", + " \"name\": \"game room\",\n", + " \"type\": \"room\",\n", + "}\n", + "\n", + "bedroom_1 = {\n", + " \"name\": \"bedroom 1\",\n", + " \"type\": \"room\",\n", + "}\n", + "\n", + "bedroom_2 = {\n", + " \"name\": \"bedroom 2\",\n", + " \"type\": \"room\",\n", + "}\n", + "\n", + "living_room = {\n", + " \"name\": \"living room\",\n", + " \"type\": \"room\",\n", + "}\n", + "\n", + "outside = {\n", + " \"name\": \"outside\"\n", + "}\n", + "\n", + "all_rooms = [game_room, bedroom_1, bedroom_2 , outside]\n", + "\n", + "all_doors = [door_a, door_b, door_c ,door_d]\n", + "\n", + "# define which items/rooms are related\n", + "\n", + "object_relations = {\n", + " \"game room\": [couch, piano, door_a],\n", + " \"piano\": [key_a],\n", + " \"queen_bed\": [key_b],\n", + " \"double_bed\": [key_c],\n", + " \"dresser\": [key_d],\n", + " \"dining_table\": [],\n", + " \"outside\": [door_d],\n", + " \"door a\": [game_room, bedroom_1],\n", + " \"door b\": [bedroom_1, bedroom_2],\n", + " \"door c\": [bedroom_1, living_room],\n", + " \"door d\": [living_room, outside],\n", + " \"bedroom 1\": [door_a, door_b, door_c, queen_bed],\n", + " \"bedroom_2\": [door_b, dresser, double_bed],\n", + " \"living_room\" : [door_c, door_d, dining_table],\n", + " \"couch\": [],\n", + "\n", + " \n", + "}\n", + "\n", + "# define game state. Do not directly change this dict. \n", + "# Instead, when a new game starts, make a copy of this\n", + "# dict and use the copy to store gameplay state. This \n", + "# way you can replay the game multiple times.\n", + "\n", + "INIT_GAME_STATE = {\n", + " \"current_room\": game_room,\n", + " \"keys_collected\": [],\n", + " \"target_room\": outside\n", + "}\n" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "GAME_STATE = {\n", + " \"current_room\": game_room,\n", + " \"keys_collected\": [],\n", + " \"target_room\": outside\n", + "}" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "def linebreak():\n", + " \"\"\"\n", + " Print a line break\n", + " \"\"\"\n", + " print(\"\\n\\n\")\n", + "\n", + "def start_game():\n", + " \"\"\"\n", + " Start the game\n", + " \"\"\"\n", + " print(\"You wake up on a couch and find yourself in a strange house with no windows which you have never been to before. You don't remember why you are here and what had happened before. You feel some unknown danger is approaching and you must get out of the house, NOW!\")\n", + " play_room(game_state[\"current_room\"])\n", + "\n", + "def play_room(room):\n", + " \"\"\"\n", + " Play a room. First check if the room being played is the target room.\n", + " If it is, the game will end with success. Otherwise, let player either \n", + " explore (list all items in this room) or examine an item found here.\n", + " \"\"\"\n", + " game_state[\"current_room\"] = room\n", + " if(game_state[\"current_room\"] == game_state[\"target_room\"]):\n", + " print(\"Congrats! You escaped the room!\")\n", + " else:\n", + " print(\"You are now in \" + room[\"name\"])\n", + " intended_action = input(\"What would you like to do? Type 'explore' or 'examine'?\").strip()\n", + " if intended_action == \"explore\":\n", + " explore_room(room)\n", + " play_room(room)\n", + " elif intended_action == \"examine\":\n", + " examine_item(input(\"What would you like to examine?\").strip())\n", + " else:\n", + " print(\"Not sure what you mean. Type 'explore' or 'examine'.\")\n", + " play_room(room)\n", + " linebreak()\n", + "\n", + "def explore_room(room):\n", + " \"\"\"\n", + " Explore a room. List all items belonging to this room.\n", + " \"\"\"\n", + " items = [i[\"name\"] for i in object_relations[room[\"name\"]]]\n", + " print(\"You explore the room. This is \" + room[\"name\"] + \". You find \" + \", \".join(items))\n", + "\n", + "def get_next_room_of_door(door, current_room):\n", + " \"\"\"\n", + " From object_relations, find the two rooms connected to the given door.\n", + " Return the room that is not the current_room.\n", + " \"\"\"\n", + " connected_rooms = object_relations[door[\"name\"]]\n", + " for room in connected_rooms:\n", + " if(not current_room == room):\n", + " return room\n", + "\n", + "def examine_item(item_name):\n", + " \"\"\"\n", + " Examine an item which can be a door or furniture.\n", + " First make sure the intended item belongs to the current room.\n", + " Then check if the item is a door. Tell player if key hasn't been \n", + " collected yet. Otherwise ask player if they want to go to the next\n", + " room. If the item is not a door, then check if it contains keys.\n", + " Collect the key if found and update the game state. At the end,\n", + " play either the current or the next room depending on the game state\n", + " to keep playing.\n", + " \"\"\"\n", + " current_room = game_state[\"current_room\"]\n", + " next_room = \"\"\n", + " output = None\n", + " \n", + " for item in object_relations[current_room[\"name\"]]:\n", + " if(item[\"name\"] == item_name):\n", + " output = \"You examine \" + item_name + \". \"\n", + " if(item[\"type\"] == \"door\"):\n", + " have_key = False\n", + " for key in game_state[\"keys_collected\"]:\n", + " if(key[\"target\"] == item):\n", + " have_key = True\n", + " if(have_key):\n", + " output += \"You unlock it with a key you have.\"\n", + " next_room = get_next_room_of_door(item, current_room)\n", + " else:\n", + " output += \"It is locked but you don't have the key.\"\n", + " else:\n", + " if(item[\"name\"] in object_relations and len(object_relations[item[\"name\"]])>0):\n", + " item_found = object_relations[item[\"name\"]].pop()\n", + " game_state[\"keys_collected\"].append(item_found)\n", + " output += \"You find \" + item_found[\"name\"] + \".\"\n", + " else:\n", + " output += \"There isn't anything interesting about it.\"\n", + " print(output)\n", + " break\n", + "\n", + " if(output is None):\n", + " print(\"The item you requested is not found in the current room.\")\n", + " \n", + " if(next_room and input(\"Do you want to go to the next room? Ener 'yes' or 'no'\").strip() == 'yes'):\n", + " play_room(next_room)\n", + " else:\n", + " play_room(current_room)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "You wake up on a couch and find yourself in a strange house with no windows which you have never been to before. You don't remember why you are here and what had happened before. You feel some unknown danger is approaching and you must get out of the house, NOW!\n", + "You are now in game room\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?piano\n", + "You examine piano. You find key for door b.\n", + "You are now in game room\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?examine\n", + "The item you requested is not found in the current room.\n", + "You are now in game room\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?door a\n", + "You examine door a. You unlock it with a key you have.\n", + "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", + "You are now in bedroom 1\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?door a\n", + "You examine door a. You unlock it with a key you have.\n", + "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", + "You are now in game room\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?couch\n", + "You examine couch. There isn't anything interesting about it.\n", + "You are now in game room\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?piano\n", + "You examine piano. There isn't anything interesting about it.\n", + "You are now in game room\n" + ] + } + ], + "source": [ + "game_state = INIT_GAME_STATE.copy()\n", + "\n", + "start_game()\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module-1_projects/python-project/your-code/my_first_project.ipynb b/module-1_projects/python-project/your-code/my_first_project.ipynb new file mode 100644 index 0000000..e0dd939 --- /dev/null +++ b/module-1_projects/python-project/your-code/my_first_project.ipynb @@ -0,0 +1,342 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "# define rooms and items\n", + "\n", + "\n", + "\n", + "door_a = {\n", + " \"name\": \"door a\",\n", + " \"type\": \"door\",\n", + "}\n", + "\n", + "door_b = {\n", + " \"name\": \"door b\",\n", + " \"type\": \"door\",\n", + "}\n", + "\n", + "door_c = {\n", + " \"name\": \"door c\",\n", + " \"type\": \"door\",\n", + "}\n", + "\n", + "door_d = {\n", + " \"name\": \"door d\",\n", + " \"type\": \"door\",\n", + "}\n", + "\n", + "key_a = {\n", + " \"name\": \"key for door a\",\n", + " \"type\": \"key\",\n", + " \"target\": door_a,\n", + "}\n", + "\n", + "key_b = {\n", + " \"name\": \"key for door b\",\n", + " \"type\": \"key\",\n", + " \"target\": door_b,\n", + "}\n", + "\n", + "key_c = {\n", + " \"name\": \"key for door c\",\n", + " \"type\": \"key\",\n", + " \"target\": door_c,\n", + "}\n", + "\n", + "key_d = {\n", + " \"name\": \"key for door d\",\n", + " \"type\": \"key\",\n", + " \"target\": door_d,\n", + "}\n", + "\n", + "couch = {\n", + " \"name\": \"couch\",\n", + " \"type\": \"furniture\",\n", + "}\n", + "\n", + "piano = {\n", + " \"name\": \"piano\",\n", + " \"type\": \"furniture\",\n", + "}\n", + "\n", + "queen_bed = {\n", + " \"name\": \"queen bed\",\n", + " \"type\": \"furniture\",\n", + "}\n", + "\n", + "double_bed = {\n", + " \"name\": \"double bed\",\n", + " \"type\": \"furniture\",\n", + "}\n", + "\n", + "dresser = {\n", + " \"name\": \"dresser\",\n", + " \"type\": \"furniture\",\n", + "}\n", + "\n", + "dining_table = {\n", + " \"name\": \"dining_table\",\n", + " \"type\": \"furniture\",\n", + "}\n", + "\n", + "game_room = {\n", + " \"name\": \"game room\",\n", + " \"type\": \"room\",\n", + "}\n", + "\n", + "bedroom_1 = {\n", + " \"name\": \"bedroom 1\",\n", + " \"type\": \"room\",\n", + "}\n", + "\n", + "bedroom_2 = {\n", + " \"name\": \"bedroom 2\",\n", + " \"type\": \"room\",\n", + "}\n", + "\n", + "living_room = {\n", + " \"name\": \"living room\",\n", + " \"type\": \"room\",\n", + "}\n", + "\n", + "outside = {\n", + " \"name\": \"outside\"\n", + "}\n", + "\n", + "all_rooms = [game_room, bedroom_1, bedroom_2 , outside]\n", + "\n", + "all_doors = [door_a, door_b, door_c ,door_d]\n", + "\n", + "# define which items/rooms are related\n", + "\n", + "object_relations = {\n", + " \"game room\": [couch, piano, door_a],\n", + " \"piano\": [key_a],\n", + " \"queen_bed\": [key_b],\n", + " \"double_bed\": [key_c],\n", + " \"dresser\": [key_d],\n", + " \"dining_table\": [],\n", + " \"outside\": [door_d],\n", + " \"door a\": [game_room, bedroom_1],\n", + " \"door b\": [bedroom_1, bedroom_2],\n", + " \"door c\": [bedroom_1, living_room],\n", + " \"door d\": [living_room, outside],\n", + " \"bedroom 1\": [door_a, door_b, door_c, queen_bed],\n", + " \"bedroom_2\": [door_b, dresser, double_bed],\n", + " \"living_room\" : [door_c, door_d, dining_table],\n", + " \"couch\": [],\n", + "\n", + " \n", + "}\n", + "\n", + "# define game state. Do not directly change this dict. \n", + "# Instead, when a new game starts, make a copy of this\n", + "# dict and use the copy to store gameplay state. This \n", + "# way you can replay the game multiple times.\n", + "\n", + "INIT_GAME_STATE = {\n", + " \"current_room\": game_room,\n", + " \"keys_collected\": [],\n", + " \"target_room\": outside\n", + "}\n" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "GAME_STATE = {\n", + " \"current_room\": game_room,\n", + " \"keys_collected\": [],\n", + " \"target_room\": outside\n", + "}" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "def linebreak():\n", + " \"\"\"\n", + " Print a line break\n", + " \"\"\"\n", + " print(\"\\n\\n\")\n", + "\n", + "def start_game():\n", + " \"\"\"\n", + " Start the game\n", + " \"\"\"\n", + " print(\"You wake up on a couch and find yourself in a strange house with no windows which you have never been to before. You don't remember why you are here and what had happened before. You feel some unknown danger is approaching and you must get out of the house, NOW!\")\n", + " play_room(game_state[\"current_room\"])\n", + "\n", + "def play_room(room):\n", + " \"\"\"\n", + " Play a room. First check if the room being played is the target room.\n", + " If it is, the game will end with success. Otherwise, let player either \n", + " explore (list all items in this room) or examine an item found here.\n", + " \"\"\"\n", + " game_state[\"current_room\"] = room\n", + " if(game_state[\"current_room\"] == game_state[\"target_room\"]):\n", + " print(\"Congrats! You escaped the room!\")\n", + " else:\n", + " print(\"You are now in \" + room[\"name\"])\n", + " intended_action = input(\"What would you like to do? Type 'explore' or 'examine'?\").strip()\n", + " if intended_action == \"explore\":\n", + " explore_room(room)\n", + " play_room(room)\n", + " elif intended_action == \"examine\":\n", + " examine_item(input(\"What would you like to examine?\").strip())\n", + " else:\n", + " print(\"Not sure what you mean. Type 'explore' or 'examine'.\")\n", + " play_room(room)\n", + " linebreak()\n", + "\n", + "def explore_room(room):\n", + " \"\"\"\n", + " Explore a room. List all items belonging to this room.\n", + " \"\"\"\n", + " items = [i[\"name\"] for i in object_relations[room[\"name\"]]]\n", + " print(\"You explore the room. This is \" + room[\"name\"] + \". You find \" + \", \".join(items))\n", + "\n", + "def get_next_room_of_door(door, current_room):\n", + " \"\"\"\n", + " From object_relations, find the two rooms connected to the given door.\n", + " Return the room that is not the current_room.\n", + " \"\"\"\n", + " connected_rooms = object_relations[door[\"name\"]]\n", + " for room in connected_rooms:\n", + " if(not current_room == room):\n", + " return room\n", + "\n", + "def examine_item(item_name):\n", + " \"\"\"\n", + " Examine an item which can be a door or furniture.\n", + " First make sure the intended item belongs to the current room.\n", + " Then check if the item is a door. Tell player if key hasn't been \n", + " collected yet. Otherwise ask player if they want to go to the next\n", + " room. If the item is not a door, then check if it contains keys.\n", + " Collect the key if found and update the game state. At the end,\n", + " play either the current or the next room depending on the game state\n", + " to keep playing.\n", + " \"\"\"\n", + " current_room = game_state[\"current_room\"]\n", + " next_room = \"\"\n", + " output = None\n", + " \n", + " for item in object_relations[current_room[\"name\"]]:\n", + " if(item[\"name\"] == item_name):\n", + " output = \"You examine \" + item_name + \". \"\n", + " if(item[\"type\"] == \"door\"):\n", + " have_key = False\n", + " for key in game_state[\"keys_collected\"]:\n", + " if(key[\"target\"] == item):\n", + " have_key = True\n", + " if(have_key):\n", + " output += \"You unlock it with a key you have.\"\n", + " next_room = get_next_room_of_door(item, current_room)\n", + " else:\n", + " output += \"It is locked but you don't have the key.\"\n", + " else:\n", + " if(item[\"name\"] in object_relations and len(object_relations[item[\"name\"]])>0):\n", + " item_found = object_relations[item[\"name\"]].pop()\n", + " game_state[\"keys_collected\"].append(item_found)\n", + " output += \"You find \" + item_found[\"name\"] + \".\"\n", + " else:\n", + " output += \"There isn't anything interesting about it.\"\n", + " print(output)\n", + " break\n", + "\n", + " if(output is None):\n", + " print(\"The item you requested is not found in the current room.\")\n", + " \n", + " if(next_room and input(\"Do you want to go to the next room? Ener 'yes' or 'no'\").strip() == 'yes'):\n", + " play_room(next_room)\n", + " else:\n", + " play_room(current_room)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "You wake up on a couch and find yourself in a strange house with no windows which you have never been to before. You don't remember why you are here and what had happened before. You feel some unknown danger is approaching and you must get out of the house, NOW!\n", + "You are now in game room\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?piano\n", + "You examine piano. You find key for door b.\n", + "You are now in game room\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?examine\n", + "The item you requested is not found in the current room.\n", + "You are now in game room\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?door a\n", + "You examine door a. You unlock it with a key you have.\n", + "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", + "You are now in bedroom 1\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?door a\n", + "You examine door a. You unlock it with a key you have.\n", + "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", + "You are now in game room\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?couch\n", + "You examine couch. There isn't anything interesting about it.\n", + "You are now in game room\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?piano\n", + "You examine piano. There isn't anything interesting about it.\n", + "You are now in game room\n" + ] + } + ], + "source": [ + "game_state = INIT_GAME_STATE.copy()\n", + "\n", + "start_game()\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module-1_projects/python-project/your-code/sample-code.ipynb b/module-1_projects/python-project/your-code/sample-code.ipynb index a6f8a94..e0dd939 100644 --- a/module-1_projects/python-project/your-code/sample-code.ipynb +++ b/module-1_projects/python-project/your-code/sample-code.ipynb @@ -2,53 +2,136 @@ "cells": [ { "cell_type": "code", - "execution_count": 1, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "# define rooms and items\n", "\n", - "couch = {\n", - " \"name\": \"couch\",\n", - " \"type\": \"furniture\",\n", - "}\n", + "\n", "\n", "door_a = {\n", " \"name\": \"door a\",\n", " \"type\": \"door\",\n", "}\n", "\n", + "door_b = {\n", + " \"name\": \"door b\",\n", + " \"type\": \"door\",\n", + "}\n", + "\n", + "door_c = {\n", + " \"name\": \"door c\",\n", + " \"type\": \"door\",\n", + "}\n", + "\n", + "door_d = {\n", + " \"name\": \"door d\",\n", + " \"type\": \"door\",\n", + "}\n", + "\n", "key_a = {\n", " \"name\": \"key for door a\",\n", " \"type\": \"key\",\n", " \"target\": door_a,\n", "}\n", "\n", + "key_b = {\n", + " \"name\": \"key for door b\",\n", + " \"type\": \"key\",\n", + " \"target\": door_b,\n", + "}\n", + "\n", + "key_c = {\n", + " \"name\": \"key for door c\",\n", + " \"type\": \"key\",\n", + " \"target\": door_c,\n", + "}\n", + "\n", + "key_d = {\n", + " \"name\": \"key for door d\",\n", + " \"type\": \"key\",\n", + " \"target\": door_d,\n", + "}\n", + "\n", + "couch = {\n", + " \"name\": \"couch\",\n", + " \"type\": \"furniture\",\n", + "}\n", + "\n", "piano = {\n", " \"name\": \"piano\",\n", " \"type\": \"furniture\",\n", "}\n", "\n", + "queen_bed = {\n", + " \"name\": \"queen bed\",\n", + " \"type\": \"furniture\",\n", + "}\n", + "\n", + "double_bed = {\n", + " \"name\": \"double bed\",\n", + " \"type\": \"furniture\",\n", + "}\n", + "\n", + "dresser = {\n", + " \"name\": \"dresser\",\n", + " \"type\": \"furniture\",\n", + "}\n", + "\n", + "dining_table = {\n", + " \"name\": \"dining_table\",\n", + " \"type\": \"furniture\",\n", + "}\n", + "\n", "game_room = {\n", " \"name\": \"game room\",\n", " \"type\": \"room\",\n", "}\n", "\n", + "bedroom_1 = {\n", + " \"name\": \"bedroom 1\",\n", + " \"type\": \"room\",\n", + "}\n", + "\n", + "bedroom_2 = {\n", + " \"name\": \"bedroom 2\",\n", + " \"type\": \"room\",\n", + "}\n", + "\n", + "living_room = {\n", + " \"name\": \"living room\",\n", + " \"type\": \"room\",\n", + "}\n", + "\n", "outside = {\n", " \"name\": \"outside\"\n", "}\n", "\n", - "all_rooms = [game_room, outside]\n", + "all_rooms = [game_room, bedroom_1, bedroom_2 , outside]\n", "\n", - "all_doors = [door_a]\n", + "all_doors = [door_a, door_b, door_c ,door_d]\n", "\n", "# define which items/rooms are related\n", "\n", "object_relations = {\n", " \"game room\": [couch, piano, door_a],\n", " \"piano\": [key_a],\n", - " \"outside\": [door_a],\n", - " \"door a\": [game_room, outside]\n", + " \"queen_bed\": [key_b],\n", + " \"double_bed\": [key_c],\n", + " \"dresser\": [key_d],\n", + " \"dining_table\": [],\n", + " \"outside\": [door_d],\n", + " \"door a\": [game_room, bedroom_1],\n", + " \"door b\": [bedroom_1, bedroom_2],\n", + " \"door c\": [bedroom_1, living_room],\n", + " \"door d\": [living_room, outside],\n", + " \"bedroom 1\": [door_a, door_b, door_c, queen_bed],\n", + " \"bedroom_2\": [door_b, dresser, double_bed],\n", + " \"living_room\" : [door_c, door_d, dining_table],\n", + " \"couch\": [],\n", + "\n", + " \n", "}\n", "\n", "# define game state. Do not directly change this dict. \n", @@ -60,12 +143,25 @@ " \"current_room\": game_room,\n", " \"keys_collected\": [],\n", " \"target_room\": outside\n", + "}\n" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "GAME_STATE = {\n", + " \"current_room\": game_room,\n", + " \"keys_collected\": [],\n", + " \"target_room\": outside\n", "}" ] }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 7, "metadata": {}, "outputs": [], "source": [ @@ -170,7 +266,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": null, "metadata": {}, "outputs": [ { @@ -179,41 +275,39 @@ "text": [ "You wake up on a couch and find yourself in a strange house with no windows which you have never been to before. You don't remember why you are here and what had happened before. You feel some unknown danger is approaching and you must get out of the house, NOW!\n", "You are now in game room\n", - "What would you like to do? Type 'explore' or 'examine'?explore\n", - "You explore the room. This is game room. You find couch, piano, door a\n", - "You are now in game room\n", "What would you like to do? Type 'explore' or 'examine'?examine\n", - "What would you like to examine?door a\n", - "You examine door a. It is locked but you don't have the key.\n", + "What would you like to examine?piano\n", + "You examine piano. You find key for door b.\n", "You are now in game room\n", "What would you like to do? Type 'explore' or 'examine'?examine\n", - "What would you like to examine?piano\n", - "You examine piano. You find key for door a.\n", + "What would you like to examine?examine\n", + "The item you requested is not found in the current room.\n", "You are now in game room\n", "What would you like to do? Type 'explore' or 'examine'?examine\n", "What would you like to examine?door a\n", "You examine door a. You unlock it with a key you have.\n", "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", - "Congrats! You escaped the room!\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n" + "You are now in bedroom 1\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?door a\n", + "You examine door a. You unlock it with a key you have.\n", + "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", + "You are now in game room\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?couch\n", + "You examine couch. There isn't anything interesting about it.\n", + "You are now in game room\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?piano\n", + "You examine piano. There isn't anything interesting about it.\n", + "You are now in game room\n" ] } ], "source": [ "game_state = INIT_GAME_STATE.copy()\n", "\n", - "start_game()" + "start_game()\n" ] }, { @@ -240,7 +334,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.2" + "version": "3.7.3" } }, "nbformat": 4, From 25f88b37cfe8d31090a06459450ef89caaa5ceb8 Mon Sep 17 00:00:00 2001 From: NAS <56131958+NAVSmith@users.noreply.github.com> Date: Sun, 27 Oct 2019 20:59:37 +0100 Subject: [PATCH 6/6] uploading my dataframe cleaning --- .../pandas-project/your-code/GSAF5.csv | 6004 +++++++++ .../your-code/cleaning_up_the_sharks.txt | 1 + .../your-code/shaq attack.ipynb | 11009 ++++++++++++++++ 3 files changed, 17014 insertions(+) create mode 100644 module-1_projects/pandas-project/your-code/GSAF5.csv create mode 100644 module-1_projects/pandas-project/your-code/cleaning_up_the_sharks.txt create mode 100644 module-1_projects/pandas-project/your-code/shaq attack.ipynb diff --git a/module-1_projects/pandas-project/your-code/GSAF5.csv b/module-1_projects/pandas-project/your-code/GSAF5.csv new file mode 100644 index 0000000..18b63fd --- /dev/null +++ b/module-1_projects/pandas-project/your-code/GSAF5.csv @@ -0,0 +1,6004 @@ +Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Sex ,Age,Injury,Fatal (Y/N),Time,Species ,Investigator or Source,pdf,href formula,href,Case Number,Case Number,original order,, +2016.09.18.c,18-Sep-16,2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,16,Minor injury to thigh,N,13h00,,"Orlando Sentinel, 9/19/2016",2016.09.18.c-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.c-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.c-NSB.pdf,2016.09.18.c,2016.09.18.c,5993,, +2016.09.18.b,18-Sep-16,2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Chucky Luciano,M,36,Lacerations to hands,N,11h00,,"Orlando Sentinel, 9/19/2016",2016.09.18.b-Luciano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.b-Luciano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.b-Luciano.pdf,2016.09.18.b,2016.09.18.b,5992,, +2016.09.18.a,18-Sep-16,2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,43,Lacerations to lower leg,N,10h43,,"Orlando Sentinel, 9/19/2016",2016.09.18.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.a-NSB.pdf,2016.09.18.a,2016.09.18.a,5991,, +2016.09.17,17-Sep-16,2016,Unprovoked,AUSTRALIA,Victoria,Thirteenth Beach,Surfing,Rory Angiolella,M,,Struck by fin on chest & leg,N,,,"The Age, 9/18/2016",2016.09.17-Angiolella.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17-Angiolella.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17-Angiolella.pdf,2016.09.17,2016.09.17,5990,, +2016.09.15,16-Sep-16,2016,Unprovoked,AUSTRALIA,Victoria,Bells Beach,Surfing,male,M,,No injury: Knocked off board by shark,N,,2 m shark,"The Age, 9/16/2016",2016.09.16-BellsBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.16-BellsBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.16-BellsBeach.pdf,2016.09.16,2016.09.15,5989,, +2016.09.15.R,15-Sep-16,2016,Boat,AUSTRALIA,Western Australia,Bunbury,Fishing,Occupant: Ben Stratton,,,Shark rammed boat. No injury to occupant,N,,,"West Australian, 9/15/2016",2016.09.15.R-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.15.R-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.15.R-boat.pdf,2016.09.15.R,2016.09.15.R,5988,, +2016.09.11,11-Sep-16,2016,Unprovoked,USA,Florida,"Ponte Vedra, St. Johns County",Wading,male,M,60s,Minor injury to arm,N,15h15,3' to 4' shark,"News4Jax, 9/11/2016",2016.09.11-PonteVedra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.11-PonteVedra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.11-PonteVedra.pdf,2016.09.11,2016.09.11,5987,, +2016.09.07,07-Sep-16,2016,Unprovoked,USA,Hawaii,"Makaha, Oahu",Swimming,female,F,51,Severe lacerations to shoulder & forearm,N,14h30,"Tiger shark, 10?","Hawaii News Now, 9/7/2016",2016.09.07-Oahu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.07-Oahu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.07-Oahu.pdf,2016.09.07,2016.09.07,5986,, +2016.09.06,06-Sep-16,2016,Unprovoked,NEW CALEDONIA,North Province,Koumac,Kite surfing,David Jewell,M,50,FATAL,Y,15h40,,"TVANouvelles, 9/6/2016",2016.09.06-Jewell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.06-Jewell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.06-Jewell.pdf,2016.09.06,2016.09.06,5985,, +2016.09.05.b,05-Sep-16,2016,Unprovoked,USA,South Carolina,"Kingston Plantation, Myrtle Beach, Horry County",Boogie boarding,Rylie Williams,F,12,Lacerations & punctures to lower right leg,N,Late afternoon,,"C. Creswell, GSAF",2016.09.05.b-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.05.b-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.05.b-Williams.pdf,2016.09.05.b,2016.09.05.b,5984,, +2016.09.05.a,05-Sep-16,2016,Unprovoked,AUSTRALIA,Western Australia,Injidup ,Surfing,Fraser Penman,M,,"No inury, board broken in half by shark",N,Late afternoon,,"Perth Now, 9/5/2016",2016.09.05.a-Penman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.05.a-Penman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.05.a-Penman.pdf,2016.09.05.a,2016.09.05.a,5983,, +2016.09.04,04-Sep-16,2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Body boarding,Austin Moore,M,9,Foot bitten,N,,,"Orlando Sentinel, 9/7/2016",2016.09.04-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.04-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.04-Moore.pdf,2016.09.04,2016.09.04,5982,, +2016.09.01,01-Sep-16,2016,Unprovoked,USA,California,"Refugio State Beach, Santa Barbara County",Spearfishing,Tyler McQuillen ,M,22,Two toes broken & lacerated,N,,White shark,"R. Collier, GSAF",2016.09.01-McQuillen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.01-McQuillen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.01-McQuillen.pdf,2016.09.01,2016.09.01,5981,, +2016.08.29.b,29-Aug-16,2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Sam Cumiskey ,M,25,Lacerations to right foot,N,15h00,"Bull shark, 6'","News Channel 8, 8/30/16",2016.08.29.b-Cumiskey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.29.b-Cumiskey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.29.b-Cumiskey.pdf,2016.08.29.b,2016.08.29.b,5980,, +2016.08.29.a,29-Aug-16,2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,37,Minor injury to ankle,N,14h00,,"News Channel 8, 8/30/16",2016.08.29.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.29.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.29.a-NSB.pdf,2016.08.29.a,2016.08.29.a,5979,, +2016.08.27,27-Aug-16,2016,Unprovoked,REUNION,,Boucan Canot,Surfing,Laurent Chardard ,M,20,"Right arm severed, ankle severely bitten ",N,17h00,"Bull shark, 3.5 m","LaDepeche, 8/29/2016",2016.08.27-Chardard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.27-Chardard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.27-Chardard.pdf,2016.08.27,2016.08.27,5978,, +2016.08.25,25-Aug-16,2016,Unprovoked,USA,Florida,"Ponte Vedra, St. Johns County",Wading,David Cassetty,M,49,Minor injury to ankle,N,16h00,,"First Coast News, 7/25/2016",2016.08.25-Cassetty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.25-Cassetty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.25-Cassetty.pdf,2016.08.25,2016.08.25,5977,, +2016.08.07,07-Aug-16,2016,Unprovoked,BAHAMAS,New Providence Island,Nassau,Snorkeling,Johnny Stoch,M,15,Lacerations to left leg,N,,,"ABC, 8/11/2016",2016.08.07-Stoch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.07-Stoch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.07-Stoch.pdf,2016.08.07,2016.08.07,5976,, +2016.08.06,06-Aug-16,2016,Unprovoked,USA,Hawaii,Maui,SUP Foil boarding,Connor Baxter,M,21,"No inury, shark & board collided",N,,"Tiger shark, 10' ","SUP, 8/9/2015",2016.08.06-Baxter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.06-Baxter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.06-Baxter.pdf,2016.08.06,2016.08.06,5975,, +2016.08.04,04-Aug-16,2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Nolan Tyler,M,22,Big toe bitten,N,,Blacktip shark,"News 965, 8/5/2016",2016.06.04-Tyler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.04-Tyler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.04-Tyler.pdf,2016.08.04,2016.08.04,5974,, +2016.07.29,29-Jul-16,2016,Unprovoked,SPAIN,Alicante Province,Arenales del Sol,Swimming,male,M,40,Lacerations to right hand,N,11h30,Blue shark,"Informacion.es, 7/29/2016",2016.07.29-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.29-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.29-Spain.pdf,2016.07.29,2016.07.29,5973,, +2016.07.28.R,28-Jul-16,2016,Unprovoked,CHINA,Hong Kong,,Swimming,Justus Franz,M,72,Lacerations to leg,N,,,"Klassick, 7/28/2016",2016.07.28.R-Franz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.28.R-Franz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.28.R-Franz.pdf,2016.07.28.R,2016.07.28.R,5972,, +2016.07.28,28-Jul-16,2016,Boat,AUSTRALIA,Western Australia,Near Albany,Kayaking,Ian Watkins,M,,"No injury, shark nudged kayak repeatedly",N,,White shark,"ABC Australia, 7/28/2016",2016.07.28-Watkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.28-Watkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.28-Watkins.pdf,2016.07.28,2016.07.28,5971,, +2016.07.27,27-Jul-16,2016,Provoked,USA,Florida,"Florida Keys, Monroe County",Lobstering,Warren Sapp,M,43,Laceration to left forearm PROVOKED INCIDENT,N,,"Nurse shark, 4'","Tampa Bay Times, 7/27/2016",2016.07.27-Sapp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.27-Sapp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.27-Sapp.pdf,2016.07.27,2016.07.27,5970,, +2016.07.26,26-Jul-16,2016,Unprovoked,AUSTRALIA,New South Wales,"Sharpes Beach, Ballina",Surfing,Curran See & Harry Lake,M,18,"No injury. Leg rope severed, knocked off board by shark",N,12h00,,"Gold Coast Bulletin, 7/28/2016",2016.07.26-Ballina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.26-Ballina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.26-Ballina.pdf,2016.07.26,2016.07.26,5969,, +2016.07.24,24-Jul-16,2016,Unprovoked,JAPAN,Kochi Prefecture,Irino Beach,Surfing,male,M,29,Lacerations to left leg,N,19h05,,"Japan Times, 7/25/2016",2016.07.24-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.24-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.24-Japan.pdf,2016.07.24,2016.07.24,5968,, +2016.07.23.b,23-Jul-16,2016,Unprovoked,AUSTRALIA,Tasmania,Clifton Beach,Surfing,Zebulon Critchlow,M,36,Calf bumped but no injury,N,,,"C. Black, GSAF",2016.07.23.b-Critchlow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.23.b-Critchlow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.23.b-Critchlow.pdf,2016.07.23.b,2016.07.23.b,5967,, +2016.07.23.a,23-Jul-16,2016,Unprovoked,BAHAMAS,Abaco Islands,Green Turtle Cay,Spearfishing,Steve Cutbirth,M,,Lacerations to face and right leg,N,,"Bull shark, 6'","KWTX, 7/23/2016",2016.07.23.a-Cutbirth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.23.a-Cutbirth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.23-Cutbirth.pdf,2016.07.23.a,2016.07.23.a,5966,, +2016.07.20,20-Jul-16,2016,Provoked,AUSTRALIA,Queensland,"20 k off The Spit, off the Gold Coast",Fishing,Scott van Burck,M,31,Laceration to left calf from hooked shark PROVOKED INCIDENT,N,After noon,"reef shark, 1m","Nine News, 7/20/2016",2016.07.20-Burck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.20-Burck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.20-Burck.pdf,2016.07.20,2016.07.20,5965,, +2016.07.17,17-Jul-16,2016,Boat,USA,Alabama,8 miles off Mobile,Fishing in Alabama Deep Fishing Rodeo,Occupant: Ben Raines,,,"No injury, shark bit trolling motor",N,,"Tiger shark, 10' ","Al.com, 7/19/2016",2016.07.17-Gulf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.17-Gulf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.17-Gulf.pdf,2016.07.17,2016.07.17,5964,, +2016.07.16.b,16-Jul-16,2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,female,F,9,Minor injury to leg,N,1300,,"Orlando Sentinel, 7/21/2016",2016.07.16.b-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.16.b-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.16.b-NSB.pdf,2016.07.16.b,2016.07.16.b,5963,, +2016.07.16.a,16-Jul-16,2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",,female,F,11,Minor injury to toes,N,11h00,,"Orlando Sentinel, 7/21/2016",2016.07.16.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.16.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.16.a-NSB.pdf,2016.07.16.a,2016.07.16.a,5962,, +2016.07.15,15-Jul-16,2016,Unprovoked,USA,South Carolina,"North Myrtle Beach, Horry County",Swimming,male,M,,Puncture wounds to foot,N,,,"C. Creswell, GSAF",2016.07.14-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.14-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.14-MyrtleBeach.pdf,2016.07.15,2016.07.15,5961,, +2016.07.14.4,Reported 14-Jul-2016,2016,Unprovoked,BAHAMAS,,Tiger Beach,Scuba Diving,Michael Dornellas,M,,Face bruised when partly blind shark collided with him,N,,"Lemon shark, 9'","GrindTV, 7/14/2016",2016.07.14.R-TigerBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.14.R-TigerBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.14.R-TigerBeach.pdf,2016.07.14.R,2016.07.14.4,5960,, +2016.07.08.R,Reported 08-Jul-2016,2016,Unprovoked,SPAIN,Canary Islands,"Las Teresitas, Tenerife",Wading,female,F,10,"5 tiny puncture marks to lower leg, treated with hydrogen peroxide",N,,Angel shark,La Opinion de Tenerife,2016.07.08.R-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.08.R-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.08.R-Spain.pdf,2016.07.08.R,2016.07.08.R,5959,, +2016.07.08,08-Jul-16,2016,Boat,USA,California,"Capitola, Santa Cruz County",Fishing for squid,Mark Davis,M,,"No injury. Hull bitten, tooth fragment recovered",N,,White shark,"R. Collier, GSAF",2016.07.08-CapitolaBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.08-CapitolaBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.08-CapitolaBoat.pdf,2016.07.08,2016.07.08,5958,, +2016.07.07.b,07-Jul-16,2016,Provoked,USA,Massachusetts,"Off Gloucester, Essec County",Fishing,Roger Brissom,M,59,Fin of hooked shark injured fisherman's forearm. . PROVOKED INCIDENT,N,10h00,dogfish shark,Salem News 7/8/2016,2016.07.07.b-Brissom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.07.b-Brissom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.07.b-Brissom.pdf,2016.07.07.b,2016.07.07.b,5957,, +2016.07.07.a,07-Jul-16,2016,Boat,USA,California,"Off Palos Verdes peninsula, Los Angeles County",Fishing for sharks,24' boat Shark Tagger Occupant Keith Poe,M,,"No injury. Hull bitten, tooth fragment recovered",N,,White shark,"R. Collier, GSAF",2016.07.07.a-PoeBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.07.a-PoeBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.07.a-PoeBoat.pdf,2016.07.07.a,2016.07.07.a,5956,, +2016.07.06,06-Jul-16,2016,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Swimming,female,F,42,"Buttocks, thigh, left hand & wrist injured",N,14h30 / 15h30,,"Florida Today, 7/6/2016",2016.07.06-Njwoman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.06-Njwoman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.06-Njwoman.pdf,2016.07.06,2016.07.06,5955,, +2016.07.04,04-Jul-16,2016,Provoked,AUSTRALIA,Queensland,Palm Cove ,Fishing,Nathan Oliver,M,34,Right thigh injured by hooked pregnant female shark PROVOKED INCIDENT,N,22h00,Tawny nurse shark,"Cairns Post, 7/9/2016",2016.07.04-Oliver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.04-Oliver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.04-Oliver.pdf,2016.07.04,2016.07.04,5954,, +2016.06.27,27-Jun-16,2016,Unprovoked,USA,South Carolina,Sullivan's Island,,male,M,35,Minor injury,N,16h20,3' to 4' shark,"C. Creswell, GSAF",2016.06.27-Sullivans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.27-Sullivans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.27-Sullivans.pdf,2016.06.27,2016.06.27,5953,, +2016.06.25,25-Jun-16,2016,Unprovoked,USA,North Carolina,"Atlantic Beach, Emerald Isle, Carteret County",Surfing,male,M,11,Foot injured,N,14h34,,"C. Creswell, GSAF",2016.06.25-AtlanticBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.25-AtlanticBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.25-AtlanticBeach.pdf,2016.06.25,2016.06.25,5952,, +2016.06.24,24-Jun-16,2016,Unprovoked,COLUMBIA,Isla Provedencia,,Scuba Diving,Arturo Velez,M,59,Severe bite to right hand,N,11h00,"Caribbean reef shark, 4.5'",Dr. A. Velez,2016.06.24-Velez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.24-Velez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.24-Velez.pdf,2016.06.24,2016.06.24,5951,, +2016.06.23,23-Jun-16,2016,Unprovoked,SOUTH AFRICA,Western Cape Province,Ryspunt,Spearfishing,male,M,43,Injuries to left leg & right hand,N,,White shark,"News 24, 6/23/2016",2016.06.23-Rysport.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.23-Rysport.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.23-Rysport.pdf,2016.06.23,2016.06.23,5950,, +2016.06.21.b,21-Jun-16,2016,Unprovoked,USA,South Carolina,"North Myrtle Beach, Horry County",Floating,Jeff Schott,M,42,Lacerations and punctures to foot,N,15h25,3' to 5' shark,"C. Creswell, GSAF",2016.06.21.b-Schott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.21.b-Schott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.21.b-Schott.pdf,2016.06.21.b,2016.06.21.b,5949,, +2016.06.21.a,21-Jun-16,2016,Unprovoked,USA,Florida,"Pelican Beach Park, Satellite Beach, Brevard County",Wading,male,M,,Injuries to right calf,N,14h55,,"Florida Today, 6/22/2016",2016.06.21.a-SatelliteBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.21.a-SatelliteBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.21.a-SatelliteBeach.pdf,2016.06.21.a,2016.06.21.a,5948,, +2016.06.15.b,15-Jun-16,2016,Unprovoked,USA,Hawaii,"Kalapaki Beach, Kauai",Surfing,male,M,,Single puncture wound to arm,N,06h00,3' to 4' shark,"West Hawaii Today, 6/16/2016",2016.06.15.b-Kauai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.15.b-Kauai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.15.b-Kauai.pdf,2016.06.15.b,2016.06.15.b,5947,, +2016.06.15.a,15-Jun-16,2016,Provoked,AUSTRALIA,Western Australia,Coral Bay,Spearfishing,Brad Vale,M,19,No injury but shark punctured his wetsuit after he prodded it with his spear PROVOKED INCIDENT,N,,5' shark,"Perth Now, 6/16/2016",2016.06.15.a-Vale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.15.a-Vale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.15.a-Vale.pdf,2016.06.15.a,2016.06.15.a,5946,, +2016.06.14,14-Jun-16,2016,Unprovoked,USA,Texas,"Pirates Beach, Galveston",Floating in tube,Marin Alice Melton,F,6,Injury to lower leg,N,17h30,3' to 4' shark,"Click2Houston, 6/14/2016",2016.06.14-Melton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.14-Melton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.14-Melton.pdf,2016.06.14,2016.06.14,5945,, +2016.06.11,11-Jun-16,2016,Unprovoked,USA,North Carolina,"Atlantic Beach, Emerald Isle, Carteret County",Standing,Dillon Bowen,M,19,Laceration to wrist,N,15h00,3' shark,"C. Creswell, GSAF",2016.06.11-Bowen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.11-Bowen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.11-Bowen.pdf,2016.06.11,2016.06.11,5944,, +2016.06.07,07-Jun-16,2016,Invalid,USA,South Carolina,"Folly Beach, Charleston County",Surfing,Jack O'Neill,M,27,"No injury, board damaged",N,11h30,Said to involve an 8' shark but more likely damage caused by debris,"C. Creswell, GSAF",2016.06.07-Oneill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.07-Oneill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.07-Oneill.pdf,2016.06.07,2016.06.07,5943,, +2016.06.05.b,05-Jun-16,2016,Unprovoked,USA,Florida,"Flagler Beach, Flagler County",Swimming,male,M,64,Leg bitten,N,08h30,,"Daytona Beach News-Journal, 6/5/2016",2016.06.05.b-Flagler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.05.b-Flagler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.05.b-Flagler.pdf,2016.06.05.b,2016.06.05.b,5942,, +2016.06.05.a,05-Jun-16,2016,Unprovoked,AUSTRALIA,Western Australia,Mindarie,Diving,Doreen Collyer,F,60,FATAL,Y,11h30,3+ m shark,"B. Myatt, GSAF",2016.06.05.a-Collyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.05.a-Collyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.05.a-Collyer.pdf,2016.06.05.a,2016.06.05.a,5941,, +2016.06.04,04-Jun-16,2016,Unprovoked,EGYPT,Suez,Ain Sokhna,Swimming,Omar Abdel Qader,M,23,"Leg severely bitten, surgically amputated",N,Morning,Mako shark,"Ahram Online, 6/4/2016",2016.06.04-Qader.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.04-Qader.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.04-Qader.pdf,2016.06.04,2016.06.04,5940,, +2016.06.02.b,02-Jun-16,2016,Unprovoked,AUSTRALIA,New South Wales,Kingscliff,Spearfishing,Waade Madigan and Dr Seyong Kim ,M,,"No injury, but sharks repeatedly hit their fins and guns",,,Bronze whaler sharks x 3,"Gold Coast Bulletin, 6/4/2016",2016.06.02.b-Matigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.02.b-Matigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.02.b-Matigan.pdf,2016.06.02.b,2016.06.02.b,5939,, +2016.06.02.a,02-Jun-16,2016,Unprovoked,NEW CALEDONIA,," C�te-Blanche, Noum�a ",Kite surfing,Pierre de Rotalier,M,,Laceration to heel,N,Afternoon,3 m shark,"Les Nouvelles Caledoniennes, 6/3/2016",2016.06.02.a-Pierre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.02.a-Pierre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.02.a-Pierre.pdf,2016.06.02.a,2016.06.02.a,5938,, +2016.05.31,31-May-16,2016,Unprovoked,AUSTRALIA,Western Australia,"Falcon Beach, Mandurah",Surfing,Ben Gerring,M,29,FATAL,Y,16h00,White shark,"Perth Now, 5/31/2016",2016.05.31-Gerring.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.31-Gerring.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.31-Gerring.pdf,2016.05.31,2016.05.31,5937,, +2016.05.29.b,29-May-16,2016,Unprovoked,USA,California,"Corona Del Mar, Newport, Orange County",Swimming," Maria Korcsmaros +",F,52,Injuries to arm and shoulder,N,16h00,,"R. Collier, GSAF",2016.05.29.b-Corona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.29.b-Corona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.29.b-Corona.pdf,2016.05.29.b,2016.05.29.b,5936,, +2016.05.29.a,29-May-16,2016,Unprovoked,USA,Florida,"Neptune, Duval County",Swimming,male,M,13,Injury to posterior right leg,N,15h45,5' shark,"News4Jax, 5/29/2016",2016.05.29.a-Neptune.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.29.a-Neptune.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.29.a-Neptune.pdf,2016.05.29.a,2016.05.29.a,5935,, +2016.05.22,22-May-16,2016,Unprovoked,USA,Florida,"Vero Beach, Indian River County",Swimming,Mary Marcus,F,57,Puncture wounds to thigh,N,12h00,,"Florida Today, 5/22/2016",2016.05.22-Marcus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.22-Marcus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.22-Marcus.pdf,2016.05.22,2016.05.22,5934,, +2016.05.21.b,21-May-16,2016,Unprovoked,USA,Florida,"St. Petersburg, Pinellas County",Swimming,Krystal Magee,F,22,Lacerations and puncture wounds to foot and ankle,N,18h00,"Bull shark, 4' to 5'","ABC Action News, 6/15/2016",2016.05.21.b-Magee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.21.b-Magee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.21.b-Magee.pdf,2016.05.21.b,2016.05.21.b,5933,, +2016.05.21.a,21-May-16,2016,Unprovoked,USA,Florida,"Hugenot Beach , Jacksonville, Duval County",Swimming,female,F,11,"Back, arm & hand injured",N,17h46,,"Action News Jax, 5/23/2016",2016.05.21.a-Girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.21.a-Girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.21.a-Girl.pdf,2016.05.21.a,2016.05.21.a,5932,, +2016.05.18,18-May-16,2016,Unprovoked,USA,Florida,"Ponte Vedra, St. Johns County",Swimming,Mark Wilson,M,48,Ankle bitten,N,Morning ,"Blacktip shark, 4'","News4Jax, 5/19/2016",2016.05.18-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.18-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.18-Wilson.pdf,2016.05.18,2016.05.18,5931,, +2016.05.15,15-May-16,2016,Provoked,USA,Florida,"Boca Raton, Palm Beach County",Teasing a shark,female,F,23,Arm grabbed PROVOKED INCIDENT,N,13h20,"Nurse shark, 2'","CBS News, 5/16/2016",2016.05.15-Boca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.15-Boca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.15-Boca.pdf,2016.05.15,2016.05.15,5930,, +2016.05.03,03-May-16,2016,Unprovoked,USA,Hawaii,"Wailea Beach, Maui",Floating,male,M,59,Minor lacerations to right shoulder,N,15h49,,"Maui Now, 5/3/2016",2016.05.03-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.03-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.03-Maui.pdf,2016.05.03,2016.05.03,5929,, +2016.05.02,02-May-16,2016,Provoked,NEW ZEALAND,North Island,Cormandel,Fishing,male,M,39,Foot bitten by landed shark PROVOKED INCIDENT,N,Afternoon,"Mako shark, 1.5 m [5'] ",Radio New Zealand 5/3/2016,2016.05.02-NZ-pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.02-NZ-pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.02-NZ-pdf,2016.05.02,2016.05.02,5928,, +2016.04.25,25-Apr-16,2016,Unprovoked,INDONESIA,Bali,Balian,Surfing,Ryan Boarman,M,24,Elbow bitten,N,07h00,"Bull shark, 6'","News.com.au, 4/26/2016",2016.04.25-Boarman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.25-Boarman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.25-Boarman.pdf,2016.04.25,2016.04.25,5927,, +2016.04.23,23-Apr-16,2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Kelton Beardall,M,15,Minor injury to left foot,N,17h30,,"News4Jax, 4/23/2016",2016.04.23-Beardall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.23-Beardall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.23-Beardall.pdf,2016.04.23,2016.04.23,5926,, +2016.04.22,22-Apr-16,2016,Unprovoked,SOUTH AFRICA,Western Cape Province,"Robberg Beach, Plettenberg Bay",Surf-skiing,Dave Manson,M,,"No injury, surf-ski bitten",N,08h00,White shark,"Knysna-Plett Herald, 4/22/2016",2016.04.22-Manson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.22-Manson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.22-Manson.pdf,2016.04.22,2016.04.22,5925,, +2016.04.19,19-Apr-16,2016,Unprovoked,AUSTRALIA,New South Wales,"First Sun Beach, Byron Bay",Swimming,Zak Kedem,M,12,Minor puncture wound to foot,N,12h00,Wobbegong shark,"Gold Coast Bulletin, 4/19/2016",2016.04.19-Kedem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.19-Kedem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.19-Kedem.pdf,2016.04.19,2016.04.19,5924,, +2016.04.18,18-Apr-16,2016,Provoked,FRENCH POLYNESIA,Tuamotos,Makemo Atoll,Spearfishing,Teva Tokoragi,M,26,"Severe lacerations to right forearm, hand and calf from speared shark PROVOKED INCIDENT",N,,"Grey reef shark, 2 m","Tahiti Infos, 4/19/2016",2016.04.18-Tokoragi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.18-Tokoragi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.18-Tokoragi.pdf,2016.04.18,2016.04.18,5923,, +2016.04.13,13-Apr-16,2016,Unprovoked,USA,Florida,"Off Singer Island, Palm Beach County",Spearfishing,Kyle Senkowicz,M,26,Multiple bites to right arm,N,,"Bull shark, 7'","Palm Beach Post, 4/13/2016",2016.04.13-Senkowicz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.13-Senkowicz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.13-Senkowicz.pdf,2016.04.13,2016.04.13,5922,, +2016.04.09,09-Apr-16,2016,Unprovoked,NEW CALEDONIA,Grand Terre,Poe Beach,Walking,Nicole Malignon,F,69,FATAL,Y,10h45,"Tiger shark, 2.5 m",Les Nouvelles Caledonnie. 4/11/2016,2016.04.09-Malignon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.09-Malignon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.09-Malignon.pdf,2016.04.09,2016.04.09,5921,, +2016.04.08,08-Apr-16,2016,Invalid,CAPE VERDE,Boa Vista Island,,,a British citizen,M,60,"""Serious""",N,,Shark involvement not confirmed,L.O.Guttke,2016.04.08-CapeVerde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.08-CapeVerde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.08-CapeVerde.pdf,2016.04.08,2016.04.08,5920,, +2016.04.07.b,07-Apr-16,2016,Unprovoked,USA,Florida,"Florida Keys, Monroe County",Fishing,Jonathan Lester,M,34,Left hand bitten,N,,5' to 6' shark,,2016.04.07.b-Lester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.07.b-Lester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.07.b-Lester.pdf,2016.04.07.b,2016.04.07.b,5919,, +2016.04.07.a,07-Apr-16,2016,Invalid,USA,Florida,"Corners Beach, Jupiter, Palm Beach County",SUP,Maximo Trinidad,M,,Fell off board when spinner shark leapt from the water next to him. No injury to surfer,N,,,YouTube,2016.04.07.a-Trinidad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.07.a-Trinidad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.07.a-Trinidad.pdf,2016.04.07.a,2016.04.07.a,5918,, +2016.03.31,31-Mar-16,2016,Unprovoked,USA,Hawaii,"Olowalu, Maui",Snorkeling,J. Orr,F,46,Minor injury to left foot,N,11h00,,"Maui Now, 3/31/2016",2016.03.31-Orr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.31-Orr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.31-Orr.pdf,2016.03.31,2016.03.31,5917,, +2016.03.30,30-Mar-16,2016,Unprovoked,AUSTRALIA,New South Wales,Bombo Beach,Surfing,Brett Connellan,M,22,Severe injury to thigh,N,19h00,,"Daily Telegraph, 3/30/2016",2016.03.30-Connellan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.30-Connellan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.30-Connellan.pdf,2016.03.30,2016.03.30,5916,, +2016.03.28.b,28-Mar-16,2016,Unprovoked,USA,Florida,"Fort Myers Beach, Lee County",,Nick Kawa,M,Teen,Minor injury to arm. Possibly caused by smalll nurse shark,N,,Shark involvement not confirmed,"Fox 35, 3/30/2015",2016.03.28.b-Kawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.28.b-Kawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.28.b-Kawa.pdf,2016.03.28.b,2016.03.28.b,5915,, +2016.03.28.a,28-Mar-16,2016,Unprovoked,AUSTRALIA,New South Wales,North Cronulla Beach,Surfing,Roie Smyth,M,41,"No injury, board dented",N,11h00,,"B. Myatt, GSAF",2013.03.28.a-Smyth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.28.a-Smyth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.28.a-Smyth.pdf,2016.03.28.a,2016.03.28.a,5914,, +2016.03.26,26-Mar-16,2016,Provoked,BAHAMAS,,,,Henry Kreckman ,M,9,Minor injury to chest PROVOKED INCIDENT,N,,"Nurse shark, 2.5-ft","Wisconsin State Journal, 4/2/2016",2016.03.26-Kreckman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.26-Kreckman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.26-Kreckman.pdf,2016.03.26,2016.03.26,5913,, +2016.03.13,13-Mar-16,2016,Invalid,USA,California,"Bolsa Chica State Park, Orange County",Surfing,unknown,,,Board reportedly bumped by shark. No injury,N,Morning,Shark involvement not confirmed,"Orange County Register, 3/13/2016",2016.03.13-BolsaChicaSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.13-BolsaChicaSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.13-BolsaChicaSurfer.pdf,2016.03.13,2016.03.13,5912,, +2016.03.11,11-Mar-16,2016,Unprovoked,USA,Florida,"Vero Beach, St. Lucie County",Body surfing,Daniel Kenny,M,19,Lacerations to right foot and ankle,N,13h30,,"WCBV-5, 3/31/206",2016.03.11-Kenny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.11-Kenny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.11-Kenny.pdf,2016.03.11,2016.03.11,5911,, +2016.03.10,10-Mar-16,2016,Unprovoked,Fiji,Vanua Levu,,Diving for beche-de-mer,Maika Tabua,M,45,FATAL,Y,Afternoon,,"Fiji Sun, 3/12/2016",2016.03.10-Tabua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.10-Tabua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.10-Tabua.pdf,2016.03.10,2016.03.10,5910,, +2016.03.04,04-Mar-16,2016,Unprovoked,USA,Florida,"Ocean Reef Park, Singer Island, Palm Beach County",,male,M,12,Superficial injury to foot,N,Afternoon,,WPTV. 3/4/2016,2016.03.04-OCPark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.04-OCPark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.04-OCPark.pdf,2016.03.04,2016.03.04,5909,, +2016.03.03.R,Reported 03-Mar-2016,2016,Unprovoked,AUSTRALIA,South Australia,Wrights Bay,Fishing,Lee Taplin,M,,Puncture wounds to right calf,N,Midnight,Bronze whaler,"9 News, 3/1/2016",2016.03.03.R-Taplin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.03.R-Taplin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.03.R-Taplin.pdf,2016.03.03.R,2016.03.03.R,5908,, +2016.03.02,02-Mar-16,2016,Unprovoked,BRAZIL,Santa Catarina State,Escalerio Beach Balne�rio Cambori�,Swimming,Rafael Hermes Thomas,M,41,Minor injury to head,N,,Sandtiger shark,"Misones Online, 3/4/2016",2016.03.02-Thomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.02-Thomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.02-Thomas.pdf,2016.03.02,2016.03.02,5907,, +2016.02.22,22-Feb-16,2016,Unprovoked,NEW CALEDONIA,South Province,"Ricaudy Reef, Noumea",Kite surfing,Adrian *,M,21,Puncture wounds to right thigh,N,19h00,,"Les Nouvelles Cal�doniennes, 2/23/2016",2016.02.22-Noumea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.22-Noumea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.22-Noumea.pdf,2016.02.22,2016.02.22,5906,, +2016.02.19, 19-Feb-2016,2016,Unprovoked,NEW CALEDONIA,South Province,Yate,Spearfishing,male,M,31,Forearm bitten,N,16h00,,"Les Nouvelles Cal�doniennes, 2/19/2016",2016.02.19-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.19-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.19-NewCaledonia.pdf,2016.02.19,2016.02.19,5905,, +2016.02.12,12-Feb-16,2016,Unprovoked,DOMINICAN REPUBLIC,Altagracia Province,"Bavaro Beach, Punta Cana",Wading,Patricia Howe,F,,Avulsion injury to lower leg,N,15h00,,S. Harris,2016.02.12-Howe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.12-Howe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.12-Howe.pdf,2016.02.12,2016.02.12,5904,, +2016.02.10.R,Reported 10-Feb-2016,2016,Invalid,CAYMAN ISLANDS,Grand Cayman,Stingray City Bar,Feeding stingrays?,Richard Branson,M,65,Minor injury to wrist from Southern stingray,N,,No shark involvement,R. Branson,2016.02.10.R-Branson-stingray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.10.R-Branson-stingray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.10.R-Branson-stingray.pdf,2016.02.10.R,2016.02.10.R,5903,, +2016.02.10,10-Feb-16,2016,Invalid,AUSTRALIA,Tasmania,Nettley Bay,Surfing,male,M,,"No injury, knocked off board",N,12h30,No shark involvement,"C. Black, GSAF",2016.02.11-NettleyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.11-NettleyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.11-NettleyBay.pdf,2016.02.10,2016.02.10,5902,, +2016.02.05,05-Feb-16,2016,Unprovoked,AUSTRALIA,Queensland,Stradbroke Island,Walking,female,F,45,Foot nipped,N,13h20,,"Courier Mail, 2/5/2016",2016.02.05-Stradbroke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.05-Stradbroke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.05-Stradbroke.pdf,2016.02.05,2016.02.05,5901,, +2016.02.04,04-Feb-16,2016,Unprovoked,AUSTRALIA,New South Wales,Hams Beach,Windsurfing,Andrew Morris,M,40,"No injury, shark bit board",N,Late afternoon,,"B. Myatt, GSAF",2016.02.04-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.04-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.04-Morris.pdf,2016.02.04,2016.02.04,5900,, +2016.01.29,29-Jan-16,2016,Boat,SOUTH AFRICA,KwaZulu-Natal,,Kayak fishing,Dev De Lange,M,,"No injury, shark capsized kayak",N,,,"Nine News, 2/1/2016",2016.01.29-DeLange.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.29-DeLange.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.29-DeLange.pdf,2016.01.29,2016.01.29,5899,, +2016.01.28,28-Jan-16,2016,Unprovoked,USA,Hawaii,"Hanalei Bay, Kauai",Surfing,male,M,,Lacerations to both hands,N,14h00,"Reef shark, 5'",KHON2. 1/28/2016,2016.01.28-Kauai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.28-Kauai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.28-Kauai.pdf,2016.01.28,2016.01.28,5898,, +2016.01.25,25-Jan-16,2016,Unprovoked,USA,Hawaii,"Hanalei Bay, Kauai, ",Surfing,Kaya Waldman,F,15,No injury,N,11h30,,"The Garden Island, 2/2/2016",2016.01.25-Waldman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.25-Waldman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.25-Waldman.pdf,2016.01.25,2016.01.25,5897,, +2016.01.24.b,24-Jan-16,2016,Unprovoked,USA,Texas,Off Surfside,Spearfishing,Keith Love,M,,"Bruised ribs & tail bone, speargun broken and wetsuit cut",N,09h30 / 10h00,Bull sharks x 2,K. Love,2016.01.24.b-Love.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.24.b-Love.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.24.b-Love.pdf,2015.01.24.b,2016.01.24.b,5896,, +2016.01.24.a,24-Jan-16,2016,Boat,UNITED ARAB EMIRATES,Fujairah Emirate,35 miles off Fujairah,Fishing,Occupants: Hamza Humaid Al Sahra�a & 5 crew,M,,"No injury to occupants, shark leapt into boat",N,,Mako shark,"Gulf News, 1/25/2016",2016.01.24.a-UAEboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.24.a-UAEboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.24.a-UAEboat.pdf,2016.01.24.a,2016.01.24.a,5895,, +2016.01.23,23-Jan-16,2016,Unprovoked,USA,Hawaii,"Wailea Beach, Maui",Paddle boarding,Matt Mason,M,48,No injury,N,Morning,"Tiger shark, 14'","Grand Forks Herald, 1/27/2915",2016.01.23-Mason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.23-Mason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.23-Mason.pdf,2016.01.23,2016.01.23,5894,, +2016.01.11.R,Reported 11-Jan-2016,2016,Unprovoked,AUSTRALIA,Queensland,"Happy Valley Beach, Caloundra",Surfing,Shane Hilder,M,,Laceration to right foot,N,,Wobbegong shark,"ABC Sunshine Coast, 1/11/2016",2016.01.11.R-Hilder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.11.R-Hilder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.11.R-Hilder.pdf,2016.01.11.R,2016.01.11.R,5893,, +2016.01.05,05-Jan-16,2016,Unprovoked,AUSTRALIA,Queensland,Heron Island,Wading,Nicolas Davis,M,11,Laceration to right calf,N,Afternoon,Blacktip shark,"Nine News, 1/5/2016",2016.01.05-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.05-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.05-Davis.pdf,2016.01.05,2016.01.05,5892,, +2016.01.02,02-Jan-16,2016,Unprovoked,AUSTRALIA,Queensland,Miall Island,Spearfishing,Allan Countryman,M,31,Lacerations to arms & leg,N,11h30,3 m shark,"Courier Mail, 1/2/2016",2016.01.02-Countryman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.02-Countryman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.02-Countryman.pdf,2016.01.02,2016.01.02,5891,, +2015.12.26,26-Dec-15,2015,Boat,SOUTH AFRICA,KwaZulu-Natal,Westbrook Beach,Kayak Fishing,Occupant: Grant Wardell,M,,"No injury, kayak damaged",N,Morning,"White shark, 3 m","Traveller24, 12/26/2015",2015.12.26-Wardell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.26-Wardell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.26-Wardell.pdf,2015.12.26,2015.12.26,5890,, +2015.12.25,25-Dec-15,2015,Unprovoked,SPAIN,Grand Canary Island,"Arinaga Beach, Aguimes, Gran Canaria",Swimming,Cristina Ojeda-Thies ,F,38,Lacerations to left forearm,N,,"Silky shark, 6.5'","Diaro de Visos, 12/26/2015",2015.12.25-GrandCanary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.25-GrandCanary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.25-GrandCanary.pdf,2015.12.25,2015.12.25,5889,, +2015.12.22,22-Dec-15,2015,Unprovoked,USA,Hawaii,La'aloa Beach Park,Paddle boarding,Robert Ford,M,71,"No injury, shark bit board",N,Morning,9' shark,"West Hawaii Today, 12/23/2015",2015.12.22-Ford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.22-Ford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.22-Ford.pdf,2015.12.22,2015.12.22,5888,, +2015.12.21.b,21-Dec-15,2015,Unprovoked,AUSTRALIA,New South Wales,Bondi Beach,Surfing,Dean Norburn,M,43,"No injury, shark leapt on surfboard",N,07h00,"Bronze whaler shark, 6'","The Telegraph, 12/22/;2015",2015.12.21.b-Norburn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.21.b-Norburn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.21.b-Norburn.pdf,2015.12.21.b,2015.12.21.b,5887,, +2015.12.21.a,21-Dec-15,2015,Unprovoked,BRAZIL,Pernambuco,Fernano de Noronha,Scuba diving,M�rcio de Castro Palma ,M,32,Right hand & part of forearm removed,N,,"Tiger shark, 1.5 m ","Fox News, 12/22/2015",2015.12.21.a-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.21.a-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.21.a-Brazil.pdf,2015.12.21.a,2015.12.21.a,5886,, +2015.12.19,19-Dec-15,2015,Unprovoked,ARUBA,,Boat capsized,Sea disaster,Adrian Esteban Rafael,M,58,FATAL,Y,,,"Fox News, 12/11/2015",2015.12.19-Aruba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.19-Aruba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.19-Aruba.pdf,2015.12.19,2015.12.19,5885,, +2015.12.13,13-Dec-15,2015,Boat,AUSTRALIA,New South Wales,Lake Macquarie,Fishing,6 m boat: occupants Stephen & Andrew Crust,,,"No injury, shark rammed boat & bit motor",N,10h30,"White shark, 3.5 m","Courier Mail, 12/15/2015",2015.12.13-Crust-Boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.13-Crust-Boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.13-Crust-Boat.pdf,2015.12.13,2015.12.13,5884,, +2015.12.11,11-Dec-15,2015,Unprovoked,BAHAMAS,,Off Andros Island,Lobster fishing,Richard Pinder,M,26,"Bitten on thigh, abdomen & hand",N,,Bull shark,"Nassau Guardian, 12/12/2015",2015.12.11-Pinder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.11-Pinder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.11-Pinder.pdf,2015.12.11,2015.12.11,5883,, +2015.12.08,08-Dec-15,2015,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Mpande,Swimming / Wading,Tamsin Scott,F,22,Lacerations to both hands and forearms,N,Morning,,"The Bulletin, 12/17/2015",2015.12.08-Scott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.08-Scott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.08-Scott.pdf,2015.12.08,2015.12.08,5882,, +2015.11.16,16-Nov-15,2015,Unprovoked,USA,Florida,"Playalinda Beach, Brevard County",Surfing,Aaron Conti,M,,Right heel injured,N,Afternoon,,WFTV. 11/17/2015,2015.11.16-Conti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.16-Conti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.16-Conti.pdf,2015.11.16,2015.11.16,5880,, +2015.11.15.b,15-Nov-15,2015,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Swimming,female,F,,Leg injured,N,Morning,,"Palm Beach Post, 11/16/2015",2015.11.15.b-PalmBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.15.b-PalmBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.15.b-PalmBeach.pdf,2015.11.15.b,2015.11.15.b,5879,, +2015.11.15.a,15-Nov-15,2015,Unprovoked,USA,Florida,"Ocean Reef Park, Singer Island, Palm Beach County",Surfing,Allen Engelman,M,28,Lacerations to hand,N,,"Spinner shark, 7'","5WPTV, 11/15/2015",2015.11.15.a-Engelman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.15.a-Engelman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.15.a-Engelman.pdf,2015.11.15.a,2015.11.15.a,5878,, +2015.11.10,10-Nov-15,2015,Unprovoked,AUSTRALIA,New South Wales,East Ballina,Surfing,Sam Morgan,M,20,Injury to left thigh,N,18h15,"Bull shark, 2.8 to 3.1 m","The Sydney Morning Herald, 11/11/2015",2015.11.10-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.10-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.10-Morgan.pdf,2015.11.10,2015.11.10,5877,, +2015.12.23,07-Nov-15,2015,Invalid,USA,Florida,"Paradise Beach, Melbourne, Brevard County",Surfing,Ryla Underwood,F,9,Lower left leg injured,N,11h00,Shark involvement not confirmed,"Fox25Orlando, 11/7/2015",2015.11.07-Underwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.07-Underwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.07-Underwood.pdf,2015.11.07,2015.12.23,5876,, +2015.11.03,03-Nov-15,2015,Unprovoked,USA,Hawaii,"Kehena Beach, Hawaii",Swimming,Paul O'Leary,M,54,Laceration to right ankle,N,11h00,,"Hawaii News Now, 11/4/2015",2015.11.03-O'Leary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.03-O'Leary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.03-O'Leary.pdf,2015.11.03,2015.11.03,5875,, +2015.11.01.b,01-Nov-15,2015,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Wading,Jill Kruse,F,28,Injury to right ankle/calf & hand,N,14h00,3' to 5' shark,"USA Today, 11/1/2015",2015.11.01.b-Kruse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.01.b-Kruse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.01.b-Kruse.pdf,2015.11.01.b,2015.11.01.b,5874,, +2015.11.01.a,01-Nov-15,2015,Unprovoked,MOZAMBIQUE,Inhambane Province,Maxixe,Fishing,Albino Ernesto,M,19,"Arms severely injured, surgically amputated",N,04h00,,"Coastweek, 12/3/2015",2015.11.01.a-Ernesto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.01.a-Ernesto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.01.a-Ernesto.pdf,2015.11.01.a,2015.11.01.a,5873,, +2015.10.30,30-Oct-15,2015,Unprovoked,AUSTRALIA,Western Australia,Bald Island,Spearfishing,Norman Galli,M,50,Minor injury,N,,,"Perth Now, 10/30/2015",2015.10.30-Galli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.30-Galli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.30-Galli.pdf,2015.10.30,2015.10.30,5872,, +2015.10.28.a,28-Oct-15,2015,Unprovoked,USA,Hawaii,"Malaka, Oahu",Body boarding,Raymond Senensi,M,10,"Lacerations & puncture wounds to right thigh, calf & ankle",N,14h50,,"Star Advertiser, 10/28/2015",2015.10.28-Senensi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.28-Senensi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.28-Senensi.pdf,2015.10.28,2015.10.28.a,5871,, +2015.10.25,25-Oct-15,2015,Unprovoked,SOUTH AFRICA,Western Cape Province,Stil Bay,Surfing,Stuart Anderson,M,42,"Lacerations to right calf, knee & hip",N,15h00,"White shark, 3 to 3.5m ","News 24, 10/26/2015",2015.10.25-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.25-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.25-Anderson.pdf,2015.10.25,2015.10.25,5870,, +2015.10.21,21-Oct-15,2015,Unprovoked,USA,Florida,"Playalinda Beach, Brevard County",Surfing,Michael Salinger,M,21,Lacerations to left hand,N,14h30,5' shark,"ClickOrlando.com, 10/21/2015",2015.10.21-Playalinda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.21-Playalinda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.21-Playalinda.pdf,2015.10.21,2015.10.21,5869,, +2015.10.19,19-Oct-15,2015,Unprovoked,USA,Florida,"Deerfield Beach, Broward County",Surfing,Peter Kirn,M,21,Left foot bitten,N,13h50,"Spinner shark, 5'","NBC6.com, 10/19/2015",2015.10.19-Kirn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.19-Kirn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.19-Kirn.pdf,2015.10.19,2015.10.19,5868,, +2015.10.17.c,17-Oct-15,2015,Unprovoked,MOZAMBIQUE,Inhambane Province,"Nahaduga, Inhambane Bay",Fishing for shrimp,Albertina Cavel,F,35,FATAL,Y,,,Xinhua News Agency,2015.10.17.c-Cavel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.17.c-Cavel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.17.c-Cavel.pdf,2015.10.17.c,2015.10.17.c,5867,, +2015.10.17.b,17-Oct-15,2015,Invalid,USA,Hawaii,"Waikiki, ",Surfing,male,M,32,Left foot bitten by eel,N,19h20,No shark involvement,"KHON2, 10/17/2015",2015.10.17.b.-Hawaii. pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.17.b.-Hawaii. pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.17.b.-Hawaii. pdf,2015.10.17.b,2015.10.17.b,5866,, +2015.10.17.a,17-Oct-15,2015,Unprovoked,USA,Hawaii,"Lanikai Beach, Kailua, Oahu",Swimming,Tony Lee,M,44,Injuries to lower legs,N,11h30,"Tiger shark, 7'","KHON2, 10/17/2015",2015.10.17.a-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.17.a-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.17.a-Lee.pdf,2015.10.17.a,2015.10.17.a,5865,, +2015.10.13,13-Oct-15,2015,Boat,USA,California,"Off Leffingwell Landing, San Luis Obispo County",Kayak Fishing,Jordan Pavacich,M,,"No injury, shark rammed kayak repeatedly",N,11h00,Hammerhead sp.,"The Tribune, 10/28/2015",2015.10.13-Pavacich-kayak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.13-Pavacich-kayak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.13-Pavacich-kayak.pdf,2015.10.13,2015.10.13,5864,, +2015.10.09.b,09-Oct-15,2015,Unprovoked,USA,South Carolina,"Shipyard Beach Club, Hilton Head Island, Beaufort County",Boogie boarding,Meti Kershner,F,9,Laceration to forearm,N,16h20,,"C. Creswell, GSAF",2015.10.09.b-Kershner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.09.b-Kershner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.09.b-Kershner.pdf,2015.10.09.b,2015.10.09.b,5863,, +2015.10.09.a,09-Oct-15,2015,Unprovoked,USA,Hawaii,"Leftovers, Oahu",Surfing,Colin Cook,M,25,"Left leg severed below the knee, defense injuries to left hand",N,10h25,"Tiger shark, 13' ","Hawaii News Now, 10/9/2015",2015.10.09.a-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.09.a-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.09.a-Cook.pdf,2015.10.09.a,2015.10.09.a,5862,, +2015.10.08,08-Oct-15,2015,Unprovoked,MOZAMBIQUE,Inhambane Province,"Maxixe, Inhambane Bay",Fishing,Alberto Rafael,M,,"Arm severely injured, surgically amputated",N,,,Club of Mozambique,2015.10.08-Rafael.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.08-Rafael.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.08-Rafael.pdf,2015.10.08,2015.10.08,5861,, +2015.10.07,07-Oct-15,2015,Unprovoked,AUSTRALIA,Western Australia,Pyramids Beach,Surfing,Eli Zawadzki,M,18,Foot injured,N,16h50,,"Daily Mail, 10/7/2015",2015.10.07-Zawadzki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.07-Zawadzki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.07-Zawadzki.pdf,2015.10.07,2015.10.07,5860,, +2015.10.05.b,05-Oct-15,2015,Unprovoked,USA,Florida,"Pepper Park Beach, St. Lucie County",Body boarding,male,M,22,2 lacerations to ankle,N,13h00,,"WPBF.com, 10/6/2015",2015.10.05.b-FtPierce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.05.b-FtPierce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.05.b-FtPierce.pdf,2015.10.05.b,2015.10.05.b,5859,, +2015.10.05.a,05-Oct-15,2015,Unprovoked,USA,Texas,Galveston,Wading,Gregory Slaughter,M,13,Foot & hands bitten,N,10h00,4' to 5' shark,"Houston Chronicle, 10/5/2015",2015.10.05.a-Slaughter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.05.a-Slaughter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.05-Slaughter.pdf,2015.10.05.a,2015.10.05.a,5858,, +2015.10.04,04-Oct-15,2015,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Phillip Tarasovic,M,14,Severe lacerations to left hand,N,08h30,"Blacktip shark, 4' to 5'","CNN, 10/4/2015",2015.10.04-Tarasovic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.04-Tarasovic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.04-Tarasovic.pdf,2015.10.04,2015.10.04,5857,, +2015.09.29,29-Sep-15,2015,Unprovoked,USA,Florida,"Vilano Beach, St. Johns County",Surfing,"David Morrison, Jr.",M,22,"Laceration to heel, puncture wounds to dorsum of foot",N,16h20,"Blacktip shark, 5' to 6'","First Coast News, 9/30/2015",2015.09.29-Morrison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.29-Morrison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.29-Morrison.pdf,2015.09.29,2015.09.29,5856,, +2015.09.26,26-Sep-15,2015,Unprovoked,AUSTRALIA,Queensland,"Russel Island, Frankland Group",Snorkeling,female,F,7,Laceration to leg,N,Afternoon,,"The Cairns Post, 9/28/2015",2015.09.26-QLD.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.26-QLD.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.26-QLD.pdf,2015.09.26,2015.09.26,5855,, +2015.09.24,24-Sep-15,2015,Unprovoked,USA,California,"Horseshoe Rock, Santa Barbara County",Kayak fishing,Darren Kenney,M,,"No injury, kayak damaged",N,10h45-11h15,"White shark, 19'",R. Collier,2015.09.24-Kenney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.24-Kenney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.24-Kenney.pdf,2015.09.24,2015.09.24,5854,, +2015.09.20.d,20-Sep-15,2015,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,14,Minor injury to left ankle,N,16h45,juvenile shark,"Orlando Sentinel, 9/20/2015",2015.09.20.d-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.d-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.d-NSB.pdf,2015.09.20.d,2015.09.20.d,5853,, +2015.09.20.c,20-Sep-15,2015,Unprovoked,USA,Hawaii,"Upolu Point, North Kohala, Big Island",Spearfishing, Braxton Rocha,M,27,Severe laceration to left leg,N,15h52,"Tiger shark, 13'","Big Island Video, 9/20/2015",2015.09.20.c-Braxton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.c-Braxton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.c-Braxton.pdf,2015.09.20.c,2015.09.20.c,5852,, +2015.09.20.b,20-Sep-15,2015,Unprovoked,USA,Florida,"Fernandina Beach, Amelia Island, Nassau County",Wading,"Joshua Bitner, Jr.",M,12,Significant injuries to leg,N,12h30,4' shark,"News4Jax, 9/21/2015",2015.09.20.b-Bitner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.b-Bitner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.b-Bitner.pdf,2015.09.20.b,2015.09.20.b,5851,, +2015.09.20.a,20-Sep-15,2015,Unprovoked,USA,Florida,"Vilano Beach, St. Johns County",Photographing fish,Filippo Schiavo ,M,16,Injury to right hand / wrist,N,07h30,,"News4JAX, 9/21/2015",2015.09.20.a-Schiavo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.a-Schiavo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.a-Schiavo.pdf,2015.09.20.a,2015.09.20.a,5850,, +2015.09.18,18-Sep-15,2015,Unprovoked,USA,Florida,"Big Talbot Island, Duval County",Swimming,Peter Vergenz ,M,,Lacerations to calf,N,19h00,,"Action News Jax, 9/23/2015",2015.09.18-Vergenz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.18-Vergenz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.18-Vergenz.pdf,2015.09.18,2015.09.18,5849,, +2015.09.17,17-Sep-15,2015,Unprovoked,USA,Florida,"Jacksonville Beach, Duval County",Surfing,Bryan Liebetrau,M,20,Injury to right foot,N,15h00,,"News4JAX, 9/15/2015",2015.09.17-Liebetrau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.17-Liebetrau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.17-Liebetrau.pdf,2015.09.17,2015.09.17,5848,, +2015.09.08,08-Sep-15,2015,Unprovoked,AUSTRALIA,New South Wales,North Shelly Beach,Surfing,Justin Daniels,M,42,Minor laceration to hand,N,06h15,6' shark,"ABC News, 9/8/2015",2015.09.08-Daniels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.08-Daniels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.08-Daniels.pdf,2015.09.08,2015.09.08,5847,, +2015.09.06,06-Sep-15,2015,Unprovoked,USA,California,"El Pescador Beach, Los Angeles County",Stand-Up Paddleboarding,Caterina Gennaro,F,50,"No injury, shark struck board, tossing her into the sea",N,17h30,"White shark, 11' to 12'","R. Collier, GSAF",2015.09.06-Gennaro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.06-Gennaro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.06-Gennaro.pdf,2015.09.06,2015.09.06,5846,, +2015.09.05,05-Sep-15,2015,Provoked,USA,California,"Deer Creek Beach, Ventura County",Kayak Fishing,Dylan Marks,M,29,Laceration to dorsum of foot by hooked shark PROVOKED INCIDENT,N,14h40,Hammerhead shark.,"R. Collier, GSAF",2015.09.05-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.05-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.05-Marks.pdf,2015.09.05,2015.09.05,5845,, +2015.09.04,04-Sep-15,2015,Unprovoked,AUSTRALIA,New South Wales,Hallidays Point,Surf-skiing,David Quinliven,M,62,Inuries to lower left leg & ankle,N,11h30,"White shark, 2.5 m","The Sydney Morning Herald, 9/4/2015",2015.09.04-Quinliven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.04-Quinliven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.04-Quinliven.pdf,2015.09.04,2015.09.04,5844,, +2015.09.03,03-Sep-15,2015,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",,Chip Wagner,M,,Right foot bitten,N,16h00,4' shark?,"C. Creswell, GSAF",2015.09.03-Wagner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.03-Wagner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.03-Wagner.pdf,2015.09.03,2015.09.03,5843,, +2015.09.01,01-Sep-15,2015,Unprovoked,THAILAND,Phuket,Karon Beach,Wading,Jane Neame,F,37,Left foot & ankle bitten,N,08h30,small shark,"Phuket Gazette, 9/1/2015",2015.09.01-Neame.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.01-Neame.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.01-Neame.pdf,2015.09.01,2015.09.01,5842,, +2015.09.00,Sep-15,2015,Unprovoked,FIJI,,,Spearfishing,Viliame Lautiki,M,,Leg bitten,N,,Tiger shark,"Fiji Times, 2/8/2016",2015.09.00-Lautiki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.00-Lautiki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.00-Lautiki.pdf,2015.09.00,2015.09.00,5841,, +2015.08.29.b,29-Aug-15,2015,Unprovoked,USA,California,"Morro Strand State Beach, San Luis Obispo County",Surfing,Elinor Dempsey,F,54,"No injury, surfboard bitten",N,10h25,"White shark, 11' to 12'","R. Collier, GSAF",2015.08.29.b-Dempsey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.29.b-Dempsey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.29.b-Dempsey.pdf,2015.08.29.b,2015.08.29.b,5840,, +2015.08.29.a,29-Aug-15,2015,Unprovoked,USA,California,"Morro Bay, San Luis Obispo County",Surfing,Daniel Phillips,M,21,"No injury, shark struk sufer's leg and his board",N,10h00,"White shark, 10' to 12' ","R. Collier, GSAF",2015.08.29.a-Phillips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.29.a-Phillips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.29.a-Phillips.pdf,2015.08.29.a,2015.08.29.a,5839,, +2015.08.22.b,22-Aug-15,2015,Invalid,USA,Florida,"Cocoa Beach, Brevard County",,young boy,M,,Wound to right lower leg,N,19h45,Shark involvement not confirmed,"Brevard Times, 8/22/2015",2015.08.22.b-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.22.b-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.22.b-CocoaBeach.pdf,2015.08.22.b,2015.08.22.b,5838,, +2015.08.22.a,22-Aug-15,2015,Unprovoked,AUSTRALIA,New South Wales,Lighthouse Beach,Surfing,Dale Carr,M,38,Severe laceration to left buttock & thigh,N,17h10,,"Daily Telegraph, 8/22/2015",2015.08.22.a-Carr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.22.a-Carr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.22.a-Carr.pdf,2015.08.22.a,2015.08.22.a,5837,, +2015.08.20,20-Aug-15,2015,Unprovoked,USA,South Carolina,"Murrells Inlet, Georgetown County",Surfing,Dylan Peyton,M,15,"Injuries to left calf, arm and hand",N,12h30,4' shark,"C. Creswell, GSAF",2015.08.20-Peyton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.20-Peyton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.20-Peyton.pdf,2015.08.20,2015.08.20,5836,, +2015.08.19,19-Aug-15,2015,Unprovoked,USA,Florida,"Jacksonville Beach, Duval County",Walking,Kaley Szarmack,F,10,Lacerations to right leg,N,15h30,3' shark,"ABC News, 8/21/2015",2015.08.19-Szsarmack,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.19-Szsarmack,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.19-Szsarmack,2015.08.19,2015.08.19,5835,, +2015.08.18.b,18-Aug-15,2015,Unprovoked,USA,California,Santa Barbara County,Kayak Fishing,Connor Lyon,M,22,"No injury, kayak bitten",N,07h30,"White shark, 13'","R. Collier, GSAF",2015.08.18.b-Lyon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.18.b-Lyon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.18.b-Lyon.pdf,2015.08.18.b,2015.08.18.b,5834,, +2015.08.18.a,18-Aug-15,2015,Invalid,SPAIN,Alicante,"Poniente Beach, Benidorm",Swimming,male,M,10,Minor injury when he attempted to touch a fish. ,N,11h00,Shark involvement not confirmed,"The Local, 8/18/2015",2015.08.18.a-Benidorm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.18.a-Benidorm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.18.a-Benidorm.pdf,2015.08.18.a,2015.08.18.a,5833,, +2015.08.10,10-Aug-15,2015,Provoked,USA,California,Cortes Bank,Spearfishing,Richard Shafer,M,57,Right hand bitten PROVOKED INCIDENT,N,08h00,Hammerhead shark. 6' to 7',"NBC San Diego, 8/13/2015",2015.08.10-Shafer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.10-Shafer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.10-Shafer.pdf,2015.08.10,2015.08.10,5832,, +2015.07.31,31-Jul-15,2015,Unprovoked,AUSTRALIA,New South Wales,Evans Head,Surfing,Craig Ison,M,52,"Lacerations and puncture wounds to hip, thigh, arm and hand",N,06h00,White shark,"Daily Telegraph, 7/31/2015",2015.07.31-Ison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.31-Ison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.31-Ison.pdf,2015.07.31,2015.07.31,5831,, +2015.07.26.b,26-Jul-15,2015,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Surfing,Shawn Warrilow,M,25,Minor injury to sole of foot,N,19h00,"Blacktip or spinner shark, 4'",CBS 7/27/2015,2015.07.26.b-Warrilow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.26.b-Warrilow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.26.b-Warrilow.pdf,2015.07.26.b,2015.07.26.b,5830,, +2015.07.26.a,26-Jul-15,2015,Invalid,USA,South Carolina,"Edisto Beach, Colleton County",Floating,female,F,35,"2' cut to dorsum of foot, 2 puncture wounds to sole",N,10h10,"Thought to involve a 3' to 4' shark, but shark involvement not confirmed","C. Creswell, GSAF, ABC 11, 7/27/2015",2015.07.26.a-Edisto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.26.a-Edisto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.26.a-Edisto.pdf,2015.07.26.a,2015.07.26.a,5829,, +2015.07.25,25-Jul-15,2015,Unprovoked,AUSTRALIA,Tasmania,"Lachan Island, Mercury Passage",Scallop diving on hookah,Damien Johnson,M,46,FATAL,Y,10h00,White shark,"C. Black, GSAF",2015.07.25-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.25-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.25-Johnson.pdf,2015.07.25,2015.07.25,5828,, +2015.07.23.b,23-Jul-15,2015,Provoked,USA,California,"La Jolla, San Diego County",Kayak Fishing,Austin Lorber,M,31,No injury to occupant. Kayak bitten by gaffed shark. PROVOKED INCIDENT,N,,"Mako shark, 100-lb","NBC San Diego, 7/27/2015",2015.07.23.b-Lorber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.23.b-Lorber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.23.b-Lorber.pdf,2015.07.23.b,2015.07.23.b,5827,, +2015.07.23.a,23-Jul-15,2015,Unprovoked,AUSTRALIA,Victoria,Tyrendarra Beach near Portland,Surfing,male,M,40s,Left hand bitten,N,,"Bronze whaler shark, 1.5m","ABC News, 7/27/2015",2015.07.23.a-Victoria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.23.a-Victoria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.23.a-Victoria.pdf,2015.07.23.a,2015.07.23.a,5826,, +2015.07.22,22-Jul-15,2015,Unprovoked,REUNION,,St. Leu,Surfing,Rodolphe Arri�guy,M,45,Arm bitten,N,,"Bull shark, 2m",Zig Zag Surfing Magazine,2015.07.22-Arrieguy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.22-Arrieguy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.22-Arrieguy.pdf,2015.07.22,2015.07.22,5825,, +2015.07.19,19-Jul-15,2015,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Jeffrey's Bay,Surfing,Mick Fanning,M,34,No injury,N,,White shark,"BBC, 7/20/2015",2015.07.19-Fanning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.19-Fanning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.19-Fanning.pdf,2015.07.19,2015.07.19,5824,, +2015.07-10,10-Jul-15,2015,Unprovoked,USA,California,"Huntington Beach, Orange County",Surfing,Danny Miskin,M,38,"No injury, shark bumped & damaged board",N,08h45,"White shark, 7'","KTLA, 7/10/2015",2015.07.10-Miskin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.10-Miskin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.10-Miskin.pdf,2015.07.10,2015.07.10,5823,, +2015.07.08,08-Jul-15,2015,Invalid,USA,California,"Huntington Beach, Orange County",Treading water,Eugene Finney,M,39,Laceration to back,N,,Shark involvement not cofirmed,"Sentinel & Enterprise.com, 10/4/2015",2015.07.08-Finney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.08-Finney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.08-Finney.pdf,2015.07.08,2015.07.08,5822,, +2015.07.06,06-Jul-15,2015,Invalid,FRENCH POLYNESIA,Bora Bora,,Swimming,Joe Termini,M,,Parallel lacerations to torso inconsistent with shark bite,N,,No shark involvement,"Hollywood Life, 7/6/2015",2015.07.06-Termini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.06-Termini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.06-Termini.pdf,2015.07.06,2015.07.06,5821,, +2015.07.04.b,04-Jul-15,2015,Unprovoked,BAHAMAS,Grand Bahama Island,"Port Lucaya, Freeport",Spearfishing,Katie Hester,F,23,Lacerations to lower leg & ankle,N,,6' shark,"ABC action News, 7/7/2015",2015.07.04.b-Hester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.04.b-Hester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.04.b-Hester.pdf,2015.07.04.b,2015.07.04.b,5820,, +2015.07.04.a,04-Jul-15,2015,Unprovoked,USA,North Carolina,"Off Surf City, Pender County",,a marine,M,32,Lacerations to right hand & forearm,N,Evening,,"C. Creswell, GSAF",2015.07.04.a-Marine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.04.a-Marine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.04.a-Marine.pdf,2015.07.04.a,2015.07.04.a,5819,, +2015.07.03,03-Jul-15,2015,Unprovoked,AUSTRALIA,New South Wales,Lennox Head,Surfing,Michael Hoile,M,52,"No injury, shark bit surfboard",N,09h00,White shark,"Northern Star, 7/3/2015",2015.07.03-Hoile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.03-Hoile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.03-Hoile.pdf,2015.07.03,2015.07.03,5818,, +2015.07.02,02-Jul-15,2015,Unprovoked,AUSTRALIA,New South Wales,East Ballina,Body boarding ,Matt Lee,M,32,Significant injuries to lower legs,N,09h00,White shark,"Northern Star, 7/2/2015",2015.07.02-Matt-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.02-Matt-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.02-Matt-Lee.pdf,2015.07.02,2015.07.02,5817,, +2015.07.01,01-Jul-15,2015,Unprovoked,USA,North Carolina,"Ocracoke, Lifeguard Beach, National Park Service, Hyde County",Swimming,Andrew Costello,M,68,"Injuries to torso, hip, lower leg & hands",N,12h10,6' to 7' shark,"C. Creswell, GSAF",2015.07.01-Costello.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.01-Costello.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.01-Costello.pdf,2015.07.01,2015.07.01,5816,, +2015.06.30.b,30-Jun-15,2015,Unprovoked,AUSTRALIA,New South Wales,"Flat Rock, Yamba",Surfing,Steve,M,,Hand bitten,N,,,"The Telegraph, 7/8/2015",2015.06.30.b-Steve.pf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.30.b-Steve.pf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.30.b-Steve.pf,2015.06.30.b,2015.06.30.b,5815,, +2015.06.30.a,30-Jun-15,2015,Unprovoked,USA,South Carolina,"Isle of Palms County Park, Isle of Palms, Charleston County",Playing in the water,Kysen Weakley,M,12,Shallow lacerations & puncture to lateral left leg,N,18h05,4' to 5' shark,"C. Creswell, GSAF",2015.06.30.a.pdf-Weakley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.30.a.pdf-Weakley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.30.a.pdf-Weakley.pdf,2015.06.30.a,2015.06.30.a,5814,, +2015.06.27.b,27-Jun-15,2015,Unprovoked,USA,North Carolina,"Rodanthe, Dare County",Swimming,John Cole,M,18,"Injuries to right calf, buttock and both hands",N,16h00,Bull shark,"C. Creswell, WRAL, 6/27/2015",2015.06.27.b-Rodanthe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.27.b-Rodanthe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.27.b-Rodanthe.pdf,2015.06.27.b,2015.06.27.b,5813,, +2015.06.27.a,27-Jun-15,2015,Unprovoked,SOUTH AFRICA,Western Cape Province,Buffels Bay near Knysna,Body Boarding,Caleb Swanepoel,M,19,"Right leg severed, multiple lacerations to left leg",N,14h40,White shark,"NSRI, 6/27/205",2015.06.27.a-Swanepoel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.27.a-Swanepoel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.27-Swanepoel.pdf,2015.06.27.a,2015.06.27.a,5812,, +2015.06.26.c,26-Jun-15,2015,Invalid,USA,Florida,"Jacksonville Beach, Duval County",Swimming,female,F,,Minor lacerations to leg,N,19h30,Shark involvement not confirmed,"Action News Jax, 6/26/2015",2015.06.26.c-Jacksonville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.26.c-Jacksonville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.26.c-Jacksonville.pdf,2015.06.26.c,2015.06.26.c,5811,, +2015.06.26.b,26-Jun-15,2015,Unprovoked,SOUTH AFRICA,Western Cape Province,"Lookout Beach, Plettenberg Bay",Surfing,Dylan Reddering,M,23,Multiple lacerations to torso & leg,N,16h00,"White shark, 2m to 3 m",Zig Zag Surfing Magazine,2015.06.26.b-Reddering.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.26.b-Reddering.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.26.b-Reddering.pdf,2015.06.26.b,2015.06.26.b,5810,, +2015.06.26.a,26-Jun-15,2015,Unprovoked,USA,South Carolina,"South Beach, Hunting Island State Park, Beaufort County",Standing,"Lance Donahue, Jr",M,43,Puncture wounds to foot,N,11h00,4' shark,"C. Creswell, GSAF; WCNC, 6/26/2015",2015.06.26.a-Donahue.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.26.a-Donahue.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.26.a-Donahue.pdf,2015.06.26.a,2015.06.26.a,5809,, +2015.06.25.R,Reported 25-Jun-2015,2015,Provoked,AUSTRALIA,Western Australia,Rottnest Island,Swimming,Stephen,M,19,Minor lacerations to forearm when he grabbed shark by its tail PROVOKED INCIDENT,N,,Wobbegong shark,"West Australian Police, 6/25/2015",2015.06.25.R-Stephen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.25.R-Stephen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.25.R-Stephen.pdf,2015.06.25.R,2015.06.25.R,5808,, +2015.06.25,25-Jun-15,2015,Unprovoked,USA,North Carolina,"Avon, Hatteras Island, Outer Banks, Dare County",Body surfing?,Patrick Thornton,M,47,Multiple lacerations to back,N,11h41,,"C. Creswell, GSAF",2015.06.25-Avon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.25-Avon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.25-Avon.pdf,2015.06.25,2015.06.25,5807,, +2015.06.24.b,24-Jun-15,2015,Unprovoked,USA,North Carolina,Surf City,Swimming,Brady Noyes,M,6,Minor injury to foot,N,12h25,Sandtiger shark,"C. Creswell, GSAF",2015.06.24.b-Noyes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.24.b-Noyes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.24.b-Noyes.pdf,2015.06.24.b,2015.06.24.b,5806,, +2015.06.24.a,24-Jun-15,2015,Invalid,AUSTRALIA,Western Australia,Denmark,Surfing,Lily Kumpe,F,37,"Bruises and abrasions to face, chin, chest, both shins & feet and cut to right hand when her surfboard was struck with force",N,09h30,White shark,"L. Kumpe, R. Mcauley",2015.06.24.a-Kumpe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.24.a-Kumpe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.24.a-Kumpe.pdf,2015.06.24.a,2015.06.24.a,5805,, +2015.06.23,23-Jun-15,2015,Unprovoked,USA,South Carolina,"St. Helena Island, Beaufort County",Standing,male,M,9,Minor injury to calf ,N,,small shark,"C. Creswell, GSAF; R. Lurye, Island Packet",2015.06.23-Davenport.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.23-Davenport.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.23-Davenport.pdf,2015.06.23,2015.06.23,5804,, +2015.06.19,19-Jun-15,2015,Unprovoked,PUERTO RICO,,Off Cabo Rojo,Spearfishing,Benjamin Rios,M,36,Injury to hand,N,Morning,,"Yahoo News, 6/19/2015",2015.06.19-Rios.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.19-Rios.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.19-Rios.pdf,2015.06.19,2015.06.19,5803,, +2015.06.17,17-Jun-15,2015,Unprovoked,USA,Florida,Daytona Beach Shores,Swimming,Gavin Simpson,M,10,Minor injury to calf ,N,13h00,,"WTXL TV, 6/17/2015",2015.06.17-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.17-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.17-Simpson.pdf,2015.06.17,2015.06.17,5802,, +2015.06.14.b,14-Jun-15,2015,Unprovoked,USA,North Carolina,"Oak Island, Brunswick County",Wading,Hunter Treschel,M,16,Arm amputated below shoulder,N,17h51,Bull shark,"C. Creswell, GSAF",2015.06.14.b-Treschel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.14.b-Treschel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.14.b-Treschel.pdf,2015.06.14.b,2015.06.14.b,5801,, +2015.06.14.a,14-Jun-15,2015,Unprovoked,USA,North Carolina,"Oak Island, Brunswick County",Wading,Kiersten Yow,F,12,Left arm amputated at elbow & severe injury to leg,N,16h12,Bull shark,"C. Creswell, GSAF",2015.06.14.a-Yow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.14.a-Yow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.14.a-Yow.pdf,2015.06.14.a,2015.06.14.a,5800,, +2015.06.13,13-Jun-15,2015,Unprovoked,USA,California,Off San Diego,,Elke Specker,F,,Severe laceration to leg,N,,Mako shark,"Courthouse News Service, 11/18/2015",Court Case pending,http://sharkattackfile.net/spreadsheets/pdf_directory/Court Case pending,,2015.06.13,2015.06.13,5799,, +2015.06.11,11-Jun-15,2015,Unprovoked,USA,North Carolina,"Ocean Isle, Brunswick County",Boogie boarding,girl,F,13,Minor lacerations to foot,N,12h45,4' shark,"C. Creswell, GSAF",2015.06.11-OceanIsle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.11-OceanIsle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.11-OceanIsle.pdf,2015.06.11,2015.06.11,5798,, +2015.06.07,07-Jun-15,2015,Unprovoked,USA,Florida,"Lori Wilson Park, Cocoa Beach, Brevard County",Playing,Lucas Vertullo,M,11,Lacerations to right calf,N,10h50,"Bull shark, 5'","Florida Today, 6/7/2015",2015.06.07-Vertullo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.07-Vertullo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.07-Vertullo.pdf,2015.06.07,2015.06.07,5797,, +2015.06.05,05-Jun-15,2015,Unprovoked,USA,Florida,Fort Lauderdale,Attempting to rescue a shark,female,F,17,Puncture wound to finger,N,,small nurse shark,"7 News, 6/5/2015",2015.06.05-FortLauderdale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.05-FortLauderdale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.05-FortLauderdale.pdf,2015.06.05,2015.06.05,5796,, +2015.06.01,01-Jun-15,2015,Unprovoked,REUNION,Le Port,Folette,Surfing,Eddy Chaussalet,M,47,Left forearm bitten,N,15h00,"Bull shark, 2.5 m","Clincanoo, 6/1/2015",2015.06.01-Chaussalet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.01-Chaussalet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.01-Chaussalet.pdf,2015.06.01,2015.06.01,5795,, +2015.05.29.b,29-May-15,2015,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Standing,Ashlyn Gilpin,F,14,Left foot bitten,N,15h00,,"Orlando Sentinel, 5/29/2015",2015.05.29.b-Gilpin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.29.b-Gilpin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.29.b-Gilpin.pdf,2015.05.29.b,2015.05.29.b,5794,, +2015.05.29.a,29-May-15,2015,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,Dakota Hatfield,F,19,Minor lacerations to dorsum of right foot,N,13h45,,"ClickOrlando, 5/29/2015",2015.05.29.a-Hatfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.29.a-Hatfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.29.a-Hatfield.pdf,2015.05.29.a,2015.05.29.a,5793,, +2015.05.25,25-May-15,2015,Unprovoked,FRENCH POLYNESIA,Rangiroa,Avatoru Pass,Spearfishing,male,M,19,Lacerations to right forearm,N,08h00,1m to 1.2 m shark,Polyn�sie 1�re. 5/262015,2015.05.25-Rangiroa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.25-Rangiroa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.25-Rangiroa.pdf,2015.05.25,2015.05.25,5792,, +2015.05.24,24-May-15,2015,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Swimming,Alysa Whetro,F,13,"Puncture wounds to lower left leg and ankle, shallow lacerations to foot, deep laceration to Achilles tendon",N,,,"WFTV, 5/27/2015",2015.05.24-Wheatro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.24-Wheatro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.24-Wheatro.pdf,2015.05.24,2015.05.24,5791,, +2015.05.20,20-May-15,2015,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Matthew Zaccaria,M,18,2 puncture wounds to dorsum of left foot,N,10h30,5' shark,"WFTV, 5/20/2015",2015.05.20-Zaccaria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.20-Zaccaria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.20-Zaccaria.pdf,2015.05.20,2015.05.20,5790,, +2015.05.15,15-May-15,2015,Unprovoked,USA,South Carolina,Sullivan's Island,,male,M,30,Laceration to foot ,N,14h15,6' shark,"News 2, 5/15/2015",2015.05.15-Sullivans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.15-Sullivans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.15-Sullivans.pdf,2015.05.15,2015.05.15,5789,, +2015.05.09,09-May-15,2015,Unprovoked,NEW CALEDONIA,,Kouare ,Snorkeling,Yves Berthelot,M,50,FATAL,Y,,"Bull shark, 3.5 m",Les Nouvelles Caledonnie,2015.05.09-Berthelot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.09-Berthelot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.09-Berthelot.pdf,2015.05.09,2015.05.09,5788,, +2015.05.07,07-May-15,2015,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Swimming,Josh Green,M,,"Lacerations to lower left leg, ankle & foot",N,15h00,,"KnightNews.com, 5/9/2015",2015.05.07-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.07-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.07-Green.pdf,2015.05.07,2015.05.07,5787,, +2015.05.03,03-May-15,2015,Unprovoked,AUSTRALIA,New South Wales,Saltwater Beach,Surfing,Bruce Lucas,M,,Injuries to left arm & right hand,N,15h00,White shark,"ABC, 5/3/2015",2015.05.03-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.03-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.03-Lucas.pdf,2015.05.03,2015.05.03,5786,, +2015.05.02,02-May-15,2015,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port St. John's,Diving,Mathieu Dasnois,M,29,"Injuries to leg, left arm & both hands",N,13h00,"White shark, 3.5 m","DispatchLive, 5/4/2015",2015.05.02-Dasnois.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.02-Dasnois.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.02-Dasnois.pdf,2015.05.02,2015.05.02,5785,, +2015.04.29,29-Apr-15,2015,Unprovoked,USA,Hawaii,Kanahena Cove ,Snorkeling,Margaret Cruse,F,65,FATAL,Y,09h00,,"Star Advertiser, 4/30/2015",2015.04.29-Cruse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.29-Cruse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.29-Cruse.pdf,2015.04.29,2015.04.29,5784,, +2015.04.26,26-Apr-15,2015,Unprovoked,USA,Florida,"Resident's Beach, Marco Island",Wading,Carsten Jessen,M,63,Lacerations to left calf,N,16h30,3- to 4-foot shark,"ABC-7, 4/27/2015",2015.04.26-Jessen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.26-Jessen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.26-Jessen.pdf,2015.04.26,2015.04.26,5783,, +2015.04.25,25-Apr-15,2015,Unprovoked,AUSTRALIA,South Australia,Fishery Bay,Surfing,Chris Blowes�,M,26,Leg severed at mid-thigh,N,09h45,"White shark, 6 m","The Advertiser, 4/25/2015",2015.04.25-Blowes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.25-Blowes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.25-Blowes.pdf,2015.04.25,2015.04.25,5782,, +2015.04.24.c,24-Jun-15,2015,Unprovoked,AUSTRALIA,New South Wales,"Belongil Beach, Byron Bay",Surf skiing ,Woody Vidgens,M,71,"No injury, knocked off ski",N,11h00,"White shark, 3 m","Echo Daily, 6/25/2015",2015.04.24.c-Vidgens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.24.c-Vidgens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.24.c-Vidgens.pdf,2015.04.24.c,2015.04.24.c,5781,, +2015.04.13,13-Apr-15,2015,Unprovoked,USA,Florida,"Florida Keys, Monroe County",Photographing the shark,Mark Rackley,M,48,Lacerations to shoulder and left bicep,N,,"Blue shark, 8 to 9 feet","Miami Herald, 4/25/2015",2015.04.13-Rackley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.13-Rackley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.13-Rackley.pdf,2015.04.13,2015.04.13,5780,, +2015.04.11,11-Apr-15,2015,Unprovoked,AUSTRALIA,New South Wales,McKenzies Beach,Paddle boarding,male,M,,Ankle injured,N,07h30,,"Surf Life Saving, 4/11/2015",2015.04.11-McKenzie-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.11-McKenzie-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.11-McKenzie-Surfer.pdf,2015.04.11,2015.04.11,5779,, +2015.04.12,12-Apr-15,2015,Unprovoked,REUNION,Saint-Gilles-les-Bains,Cap Homard,Surfing,Elio Canestri,M,13,FATAL,Y,09h00,Bull shark,"Le Huffington Post, 4/15/2015",2015.04.12-Canestri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.12-Canestri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.12-Canestri.pdf,2015.04.12,2015.04.12,5778,, +2015.03.31,31-Mar-15,2015,Invalid,BRAZIL,Pernambuco,"Praia del Chifre, Olinda",Surfing,Diego Gomes Mota,M,23,Injury to left thigh from unidentified species of fish; injuries inconsistent with shark bite,N,11h00,No shark involvement,"Globo, 3/31/2015",2015.03.31-Mota.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.31-Mota.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.31-Mota.pdf,2015.03.31,2015.03.31,5777,, +2015.04.03,03-Apr-15,2015,Unprovoked,USA,Florida,"3 miles off Jupiter, Palm Beach County",Spearfishing,Rick Neumann,M,70,Injuries to head & torso,N,Afternoon,Bull shark,"ABC Action News, 4/6/2015",2015.04.03-Neumann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.03-Neumann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.03-Neumann.pdf,2015.04.03,2015.04.03,5776,, +2015.03.29,29-Mar-15,2015,Invalid,ITALY,Sardinia,,Diving,Eugenio Masala,M,43,"FATAL, but shark involvement prior to death unconfirmed",Y,,Shark involvement not cofirmed,"A. de Maddalena, GSAF",2015.03.29-Masala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.29-Masala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.29-Masala.pdf,2015.03.29,2015.03.29,5775,, +2015.03.26,26-Mar-15,2015,Boat,SOUTH AFRICA,Eastern Cape Province,Yellow Sands Point,Kayak Fishing,Kayak: Occupant Kelly Janse van Rensburg,M,36,No injury but kayak bitten,N,,"White shark, 4 m","Times Live, 4/1/2015",2015.03.26-VanRensburg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.26-VanRensburg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.26-VanRensburg.pdf,2015.03.26,2015.03.26,5774,, +2015.03.21,21-Mar-15,2015,Unprovoked,EGYPT,,Marsa Alam,Swimming,male,M,52,FATAL,Y,,Mako shark,"E. Ritter, GSAF",2015.03.21-Egypt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.21-Egypt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.21-Egypt.pdf,2015.03.21,2015.03.21,5773,, +2015.03.18,18-Mar-15,2015,Unprovoked,USA,Hawaii,Hapuna Beach,Standing / Snorkeling,Ken Grasing,M,58,Lacerations to left forearm. Lacerations to left hand and thigh,N,11h45,"Tiger shark, 8 to 12 feet","KMBC, 3/19/2015",2015.03.18-Grasing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.18-Grasing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.18-Grasing.pdf,2015.03.18,2015.03.18,5772,, +2015.03.16,16-Mar-15,2015,Unprovoked,FRENCH POLYNESIA,Bora Bora,Anau,Hand feeding sharks,male,M,9,Hand bitten,N,10h00,Blacktip shark,"Radio1, 3/16/2015",2015.03.16-Bora-Bora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.16-Bora-Bora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.16-Bora-Bora.pdf,2015.03.16,2015.03.16,5771,, +2015.03.11,11-Mar-15,2015,Boat,AUSTRALIA,New South Wales,"Julian Rocks, Byron Bay",Fishing,Dinghy: Occupant Robbie Graham,M,,Bruised in falling overboard as shark bumped boat,N,Morning,,"Northern Star, 3/13/2015",2015.03.11-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.11-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.11-Graham.pdf,2015.03.11,2015.03.11,5770,, +2015.03.10,10-Mar-15,2015,Provoked,MEXICO,Sinaloa,Mazlatan,Fishing,David Villegas Mora,M,36,Right hand bitten by hooked shark PROVOKED INCIDENT,N,10h20,,"Noreste, 3/10/2015",2015.03.10-Mora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.10-Mora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.10-Mora.pdf,2015.03.10,2015.03.10,5769,, +2015.03.07,07-Mar-15,2015,Unprovoked,FRENCH POLYNESIA,Central Tuamotu,"Tupapati, Hikueru Atoll",Sitting in the water,male,M,18 months,Thigh bitten,N,,Blacktip Reef shark ,"Radio1, 3/9/2015",2015.03.07-18-month.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.07-18-month.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.07-18-month.pdf,2015.03.07,2015.03.07,5768,, +2015.02.15,15-Feb-15,2015,Boat,ATLANTIC OCEAN,,,Transatlantic Rowing,"Avalon, a carbon kevlar monohull: 8 occupants",,,"No injury, shark bit rudder",N,,White shark,"Yorkshire Post, 3/16/2014",2015.02.15-Avalon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.15-Avalon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.15-Avalon.pdf,2015.02.15,2015.02.15,5767,, +2015.02.14,14-Feb-15,2015,Unprovoked,REUNION,d��tang-Sal�,Ravine Mula,Swimming,Talon Bishop,F,22,FATAL,Y,18h30,"Tiger shark, 3.5 m","L'Yonne R�publicaine, 2/14/2015",2015.02.14-Bishop.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.14-Bishop.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.14-Bishop.pdf ,2015.02.14,2015.02.14,5766,, +2015.02.09,09-Feb-15,2015,Unprovoked,AUSTRALIA,New South Wales,Shelly Beach,Surfing,Tadashi Nakahara,M,41,FATAL,Y,10h00,3.5 to 4 m shark,"The Telegraph, 2/9/2015",2015.02.09-Nakahara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.09-Nakahara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.09-Nakahara.pdf,2015.02.09,2015.02.09,5765,, +2015.02.08,08-Feb-15,2015,Unprovoked,AUSTRALIA,New South Wales,"Seven Mile Beach, Byron Bay",Surfing,Jacob Reitman,M,35,Laceration & puncture wounds to right flank & hip,N,06h45,2 m to 3 m shark,"The Telegraph, 2/8/2015",2015.02.08-Reitman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.08-Reitman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.08-Reitman.pdf,2015.02.08,2015.02.08,5764,, +2015.02.05,05-Feb-15,2015,Unprovoked,AUSTRALIA,New South Wales,Mereweather Beach,Bodysurfing,Ben McPhee,M,,5 minor puncture wounds to lower left leg,N,,1.8 m shark,"The Telegraph, 1/6/2015",2015.02.05-McPhee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.05-McPhee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.05-McPhee.pdf,2015.02.05,2015.02.05,5763,, +2015.01.30,30-Jan-15,2015,Boat,AUSTRALIA,Queensland,"Nerang River, Surfer's Paradise",Rowing,Racing scull: Occupant Trevor Carter,M,57,"No injury, shark's teeth scratched hull",N,05h00,"Bull shark, 1.3 m","Gold Coast Bulletin, 1/31/2015",2015.01.20-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.20-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.20-Carter.pdf,2015.01.30,2015.01.30,5762,, +2015.01.27,27-Jan-15,2015,Provoked,USA,Hawaii,Lahaina,Shark fishing,Michael Pollard,M,20,Lacerations to calf by hooked shark PROVOKED INCIDENT,N,03h30,4' shark,"Huffington Post, 1/28/2015",2015.01.27-Pollard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.27-Pollard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.27-Pollard.pdf,2015.01.27,2015.01.27,5761,, +2015.01.24,24-Jan-15,2015,Unprovoked,AUSTRALIA,New South Wales,Flat Rock,Surfing,Hamish Murray,M,,"No injury, surfboard dented",N,,,"Northern Star, 1/26/2015",2015.01.24-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.24-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.24-Murray.pdf,2015.01.24,2015.01.24,5760,, +2015.01.19.b,19-Jan-15,2015,Boat,USA,Florida,Off Panama City,Fishing,22-ft boat. Occupant Captain Scott Fitzgerald,M,,No injury but shark bit trolling motor & rammed boat,N,,White shark,"The Panhandle, 1/20/2015",2015.01.19.b-Fitzgerald-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.19.b-Fitzgerald-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.19.b-Fitzgerald-boat.pdf,2015.01.19.b,2015.01.19.b,5759,, +2015.01.19.a,19-Jan-15,2015,Invalid,AUSTRALIA,New South Wales,"Wategos Beach, Byon Bay",Surfing & filming dolphins,Diane Ellis,F,,Board snapped in two,N,,Shark involvement not confirmed,"ABC North Coast, 1/21/2015",2015.01.19.a-Ellis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.19.a-Ellis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.19.a-Ellis.pdf,2015.01.19.a,2015.01.19.a,5758,, +2015.01.17,17-Jan-15,2015,Boat,AUSTRALIA,New South Wales,Off Blacksmith Beach,Fishing,Boat: occupants: Tim Watson & Allan de Sylva,M,,"Shark bumped boat, no injury to occupants",N,13h45,5 m shark,"The Sydney Morning Herald, 1/18/2015",2015.01.17-Watson-Tinny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.17-Watson-Tinny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.17-Watson-Tinny.pdf,2015.01.17,2015.01.17,5757,, +2015.01.16,16-Jan-15,2015,Unprovoked,AUSTRALIA,New South Wales,"Mollymook Beach, Bannister Head",Filming,Sam Smith,M,17,Bitten on hand & wrist,N,,1.5 m shark,"Milton-Ulladulla Times, 1/16/2015",2015.01.16-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.16-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.16-Smith.pdf,2015.01.16,2015.01.16,5756,, +2015.01.08,08-Jan-15,2015,Invalid,USA,Florida,,Swimming after falling overboard,Rob Konrad,M,38,"During his 16-hour swim to shore, he was circled by a shark but it did not injure him",N,Night,No shark involvement,"UPI, 1/12/2015",2015.01.08-Konrad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.08-Konrad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.08-Konrad.pdf,2015.01.08,2015.01.08,5755,, +2015.01.06,06-Jan-15,2015,Unprovoked,BAHAMAS,Abaco Islands,"Tahiti Beach, Elbow Cay",Snorkeling,Lacy Webb,F,34,Severe bite to right flank,N,16h00,White shark or oceanic whitetip shark,"Britt Martin; Local10, 1/7/2015",2015.01.06-Webb-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.06-Webb-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.06-Webb-Martin.pdf,2015.01.06,2015.01.06,5754,, +2015.01.03,03-Jan-15,2015,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Chintsa East Beach,Surfing,Jason Krafft,M,15,"Lacerations to lower left leg, puncture wounds to sole of left foot",N,08h00,"Raggedtooth shark, 1.3 m","Dispatch Online, 1/7/2015",2015.01.03-Krafft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.03-Krafft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.03-Krafft.pdf,2015.01.03,2015.01.03,5753,, +2015.01.01,01-Jan-15,2015,Unprovoked,USA,Florida,"Windsor Beach, Indian River County",,male,M,12,Leg bitten,N,Afternoon,"""A small shark""","WPTV-West Palm Beach, 1/2/2015",2015.01.01-Child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.01-Child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.01-Child.pdf,2015.01.01,2015.01.01,5752,, +2014.12.29.b,29-Dec-14,2014,Unprovoked,AUSTRALIA,New South Wales,Bherwerre Beach,Surfing,Jeff Brown,,,Lacerations to both feet,N,Morning,2 m shark,"South Coast Register, 12/29/2014",2014.12.29.b-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/N56702014.12.29.b-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/N56702014.12.29.b-Brown.pdf,2014.12.29.b,2014.12.29.b,5751,, +2014.12.29.a,29-Dec-14,2014,Unprovoked,AUSTRALIA,Western Australia,Three Stripes near Cheynes Beach,Spearfishing,Jay Muscat,M,17,FATAL,Y,Morning,"White shark, 4 to 5 m","The West Australian, 12/29/2014",2014.12.29.a-Muscat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.29.a-Muscat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.29.a-Muscat.pdf,2014.12.29.a,2014.12.29.a,5750,, +2014.12.28.d,28-Dec-14,2014,Sea Disaster,GREECE,,33 nautical miles off Othonoi Island,,Passenger ferry Norman Atlantic,,,"Of 9 bodies recovered, one was bitten by a shark",N,,Shark involvement prior to death still to be determined,"Greek Reporter, 1/13/2015",2014.12.28.d-NormanAtlantic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.d-NormanAtlantic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.d-NormanAtlantic.pdf,2014.12.28.d,2014.12.28.d,5749,, +2014.12.28.c,28-Dec-14,2014,Invalid,SOUTH AFRICA,KwaZulu-Natal,Durban,Swimming,"5 people claimed to have been injured by a ""baby"" shark",,,Minor cuts on feet,N,Morning,Shark involvement not confirmed & highly unlikely,"IOL News, 12/29/2014",2014.12.28.c-Durban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.c-Durban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.c-Durban.pdf,2014.12.28.c,2014.12.28.c,5748,, +2014.12.28.b,28-Dec-14,2014,Unprovoked,USA,California,"Monta�a de Oro State Park, San Luis Obispo County ",Surfing,Kevin Swanson,M,50,Injury to hip/leg,N,11h30,"White shark, 8' to 10'","R. Collier, GSAF",2014.12.28.b-Swanson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.b-Swanson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.b-Swanson.pdf,2014.12.28.b,2014.12.28.b,5747,, +2014.12.28.a,28-Dec-14,2014,Provoked,AUSTRALIA,Victoria,Paradise Beach,Fishing,male,M,40s,Laceration to calf when he fell on shark he had caught PROVOKED INCIDENT,N,Morning,1.5 m shark,"ABC.net.au, 12/28/2014",2014.12.28.a-ParadiseBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.a-ParadiseBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.a-ParadiseBeach.pdf,2014.12.28.a,2014.12.28.a,5746,, +2014.12.23.R,Reported 23-Dec-2014,2014,Unprovoked,JAPAN,,,Diving / Filming,male,M,,"No injury, shark snagged its teeth in diver's suit",N,,Goblin shark,"Maxisciences.com, 12/23/2014",2014.12.23.R-GoblinShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.23.R-GoblinShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.23.R-GoblinShark.pdf,2014.12.23.R,2014.12.23.R,5745,, +2014.12.15,15-Dec-14,2014,Unprovoked,AUSTRALIA,Queensland,Rudder Reef,Spearfishing,Daniel Smith,M,17,FATAL,Y,11h30,,"Herald Sun, 12/15/2014",2014.12.15-DanielSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.15-DanielSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.15-DanielSmith.pdf,2014.12.15,2014.12.15,5744,, +2014.12.03.R,Reported 03-Dec-2014,2014,Provoked,SPAIN,Granada,Off Motril,Fishing for blue sharks,male,M,,Glancing bite to wrist from netted shark PROVOKED INCIDENT,N,07h00,,"ABCandalucia, 12/3/2014",2014.12.03.R-Spanish-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.03.R-Spanish-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.03.R-Spanish-fisherman.pdf,2014.12.03.R,2014.12.03.R,5743,, +2014.11.29,29-Nov-14,2014,Unprovoked,AUSTRALIA,Western Australia,"Pyramids Beach, Port Bouvard",Surfing,Cameron Pearman,M,13,Minor injuries to right leg,N,Sometime between 06h00 & 08hoo,,"The Sydney Morning Herald, 11/29/2014",2014.11.29-Pearman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.29-Pearman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.29-Pearman.pdf,2014.11.29,2014.11.29,5742,, +2014.11.20,20-Nov-14,2014,Provoked,MAURITIUS,Cargados Carajos Shoals (St. Brandon),,Fishing,Rameshwar Ram Dhauro,M,39,"FATAL, arm bitten by shark hauled on deck PROVOKED INCIDENT",Y,,,A. R. Ramjatan ,2014.11.20-Mauritius.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.20-Mauritius.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.20-Mauritius.pdf ,2014.11.20,2014.11.20,5741,, +2014.11.19,19-Nov-14,2014,Boat,AUSTRALIA,Western Australia,Freo,Fishing,Boat: occupants: David Lock & his father,M,,"Shark chasing fish bumped boat, no injury to occupants",N,,White shark,"The West Australian, 11/20/2014",2014.11.19-Freo.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.19-Freo.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.19-Freo.pdf ,2014.11.19,2014.11.19,5740,, +2014.11.16,16-Nov-14,2014,Unprovoked,USA,Florida,"Indian Harbor Beach, Brevard County",Surfing,male,M,44,Laceration to left hand,N,13h00,2' shark,"USA Today, 11/16/2014",2014.11.16-IndianHarbor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.16-IndianHarbor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.16-IndianHarbor.pdf,2014.11.16,2014.11.16,5739,, +2014.11.17,Reported 17-Nov-2014,2014,Boat,USA,California,"Franklin Point, San Mateo County",,Boat: occupants: Matt Mitchell & 2 other people,,,"Shark bumped boat, no injury to occupants",N,,White shark,"Inquisitr, 11/17/2014",2014.11.17-CA-Fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.17-CA-Fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.17-CA-Fishermen.pdf,2014.11.17,2014.11.17,5739,, +2014.11.13,13-Nov-14,2014,Unprovoked,USA,Hawaii,"Airplane Beach, Lahina, West Maui",Snorkeling,Andrew Haas,M,53,Laceration to left upper leg,N,13h30,1.5 m shark,"G. Kubota, Star Advertiser, 11/13/2014",2014.11.13-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.13-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.13-Hawaii.pdf,2014.11.13,2014.11.13,5738,, +2014.11.10,10-Nov-14,2014,Unprovoked,AUSTRALIA,New South Wales,Moonee Beach,Surfing,male,M,,Minor injury to lower leg and foot,N,06h30,,"Norhern Rivers Echo, 11/10/2014",2014.11.10-Moonee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.10-Moonee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.10-Moonee.pdf,2014.11.10,2014.11.10,5737,, +2014.11.08,08-Nov-14,2014,Unprovoked,USA,Florida,"Fort Pierce Inlet State Park, St. Lucie County",Surfing,Ryan Shapiro,M,18,Minor injuries to hand & arm ,N,16h30,,WPTV.com,2014.11.08-FortPierce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.08-FortPierce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.08-FortPierce.pdf,2014.11.08,2014.11.08,5736,, +2014.10.31,31-Oct-14,2014,Unprovoked,USA,Hawaii,"North Kohala, Hawaii County",Surfing,McKenzie Clark,F,34,Lacerations to fingers,N,11h00,"Tiger shark, 12'","L. Kubota, Hawaii News Now, 10/31/2014",2014.10.31-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.31-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.31-Clark.pdf,2014.10.31,2014.10.31,5735,, +2014.10.30,29-Oct-14,2014,Provoked,AUSTRALIA,New South Wales,Wallabi Point,Surfing,Ryan Hunt,M,20,Laceration to dorsum of left foot when he stepped on the shark PROVOKED INCIDENT,N,18h00,,"The Sydney Morning Herald, 10/30/2014",2014.10.29-Hunt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.29-Hunt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.29-Hunt.pdf,2014.10.30,2014.10.30,5734,, +2014.10.22,22-Oct-14,2014,Unprovoked,USA,Hawaii,"Kihei, Maui",Stand-Up Paddleboarding,Kim Lawrence,F,,"No injury, paddleboard bitten",N,10h00,Tiger shark,"Hawaii News Now, 10/22/2014",2014.10.22-Lawrence.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.22-Lawrence.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.22-Lawrence.pdf,2014.10.22,2014.10.22,5733,, +2014.10.20,20-Oct-14,2014,Unprovoked,USA,Hawaii,"Kahului, Maui",Stand-Up Paddleboarding,male,M,,"No injury, paddleboard bitten",N,08h00,,"The Maui News, 10/21/2014",2014.10.20-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.20-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.20-Maui.pdf,2014.10.20,2014.10.20,5732,, +2014.10.19,19-Oct-14,2014,Boat,USA,California,"Leadbetter Beach, Santa Barbara County",Canoeing,Tara Burnley,F,,"No injury to occupant, canoe bitten",N,,,"R. Collier, GSAF",2014.10.19-Tara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.19-Tara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.19-Tara.pdf,2014.10.19,2014.10.19,5731,, +2014.10.18,18-Oct-14,2014,Unprovoked,USA,Hawaii,"Maalaea, South Maui",Surfing,Kaleo Roberson ,M,,"No injury, surfboard bitten",N,11h15,12' to 14' shark,"Star Advertiser, 10/18/2014",2014.10.18-Roberson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.18-Roberson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.18-Roberson,2014.10.18,2014.10.18,5730,, +2014.10.17,17-Oct-14,2014,Unprovoked,AUSTRALIA,New South Wales,Avoca Beach,Surfing,Kirra-Belle Olsson,F,13,"Lacerations to left calf & ankle, puncture wounds to left foot",N,06h30,1 m shark,"Sydney Morning Herald, 10/17/2014","2014.10.17-Olsson, pdf","http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.17-Olsson, pdf",http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.14-Bandy.pdf,2014.10.17,2014.10.17,5729,, +2014.10.14,14-Oct-14,2014,Unprovoked,USA,South Carolina,"Hilton Head Island, Beaufort County",Standing in inner tube,Kyra Bandy,F,7,Lacerations to left foot,N,,"Bull shark, 3' to 4'","TheIndyChannel, 10/16,2014",2014.10.14-Bandy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.14-Bandy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.14-Bandy.pdf,2014.10.14,2014.10.14,5728,, +2014.10.12,12-Oct-14,2014,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Body surfing or Boogie boarding,female,F,,Laceration to right hand/wrist,N,15h30,,"Florida Today, 10/13/2014",2014.10.12-Melbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.12-Melbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.12-Melbourne.pdf,2014.10.12,2014.10.12,5727,, +2014.10.07,07-Oct-14,2014,Unprovoked,USA,Florida,"Cherie Down Park, Brevard County",Fishing,female,F,40,Thigh bitten,N,Afternoon,,"Click Orlando, 10/7/2014",2014.10.07-CherieDownPark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.07-CherieDownPark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.07-CherieDownPark.pdf,2014.10.07,2014.10.07,5726,, +2014.10.11,11-Oct-14,2014,Boat,AUSTRALIA,Western Australia,"Castle Rock, north of Dunsborough",Kayaking,"Inflatable kayak Occupants: Andrej Kultan & Steve Hopkins. + +",M,,"Kayak deflated, no injury to occupants",N,17h20,,"Perth Now, 10/11/2014",2014.10.11-Dunsborough.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.11-Dunsborough.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.11-Dunsborough.pdf,2014.10.11,2014.10.11,5725,, +2014.10.05.b,05-Oct-14,2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Kevin Ross,M,29,Foot bitten,N,11h30,Blacktip shark,"WESH2, 10/6/2014",2014.10.05.b-Ross.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.05.b-Ross.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.05.b-Ross.pdf,2014.10.05.b,2014.10.05.b,5723,, +2014.10.05.a,05-Oct-14,2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Hilton Mantooth,M,15,Foot bitten,N,11h00,Blacktip shark,"WESH2, 10/6/2014",2014.10.05.a-Mantooth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.05.a-Mantooth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.05.a-Mantooth.pdf,2014.10.05.a,2014.10.05.a,5722,, +2014.10.03.b,03-Oct-14,2014,Boat,USA,California,Santa Barbara County,Kayaking,Ryan Howell,M,,"No injury to occupant, shark/s holded kayak",N,14h00,"White shark, 18' to 20'","R. Collier, GSAF",2014.10.03.b-Kayaks2.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.03.b-Kayaks2.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.02.b-Vandenberg.pdf,2014.10.03.b,2014.10.03.b,5721,, +2014.10.03.a,03-Oct-14,2014,Boat,USA,California,Santa Barbara County,Kayaking ,Raul Armenta ,M,,"No injury to occupant, shark/s holded kayak",N,11h30,White shark,"R. Collier, GSAF",2014.10.03.a-Kayaks1.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.03.a-Kayaks1.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.02.b-Vandenberg.pdf,2014.10.03.a,2014.10.03.a,5720,, +2014.10.02.b,02-Oct-14,2014,Unprovoked,USA,California,"Walls Beach, Vandenberg AFB, Santa Barbara County",Surfing,M.M.,M,28,Lacerations to knee,N,17h30,8' to 10' shark,"R. Collier, GSAF",2014.10.02.b-Vandenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.02.b-Vandenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.02.b-Vandenberg.pdf,2014.10.02.b,2014.10.02.b,5719,, +2014.10.02.a,02-Oct-14,2014,Unprovoked,AUSTRALIA,Western Australia,"Kelpids Beach, Wylie Bay, Esperance",Surfing,Sean Pollard,M,23,"Left arm & right hand severed, lacerations to both legs",N,11h00,"2 white shark: 13' & 9""8""","9News, 2/15/2015",2014.10.02.a-Pollard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.02.a-Pollard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.02.a-Pollard.pdf,2014.10.02.a,2014.10.02.a,5718,, +2014.09.21,21-Sep-14,2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jordan Lefebvre,M,,Minor injury to left foot,N,11h30,,"NBC2 News, 9/21/2014",2014.09.21-Lefebvre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.21-Lefebvre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.21-Lefebvre.pdf,2014.09.21,2014.09.21,5717,, +2014.09.13.R,Reported 12-Sep-2014,2014,Unprovoked,FRENCH POLYNESIA,Moorea,Tiahura Lagoon,Feeding fish,female,F,36,Thumb & finger nipped,N,,Blacktip shark,"LeDepeche, 9/12/2014",2014.09.12.R-Moorea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.12.R-Moorea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.12.R-Moorea.pdf,2014.09.13.R,2014.09.13.R,5716,, +2014.09.13,13-Sep-14,2014,Invalid,USA,California,"Manresa State Beach, Santa Cruz County",Surfing,Beau Browning,M,,"A hoax, no shark involvement",N,18h45,No shark involvement,"R. Collier, GSAF",2014.09.13-Browning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.13-Browning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.13-Browning.pdf,2014.09.13,2014.09.13,5715,, +2014.09.09,09-Sep-14,2014,Unprovoked,AUSTRALIA,New South Wales,"Clarkes Beach, Byron Bay",Swimming,Paul Wilcox,M,50,FATAL,Y,10h45,7' shark,"BBC, 9/9/2014",2014.09.09-Wilcox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.09-Wilcox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.09-Wilcox.pdf,2014.09.09,2014.09.09,5714,, +2014.09.06,06-Sep-14,2014,Unprovoked,USA,Alabama,"Katrina Cut, Dauphin Island, Mobile County",Fishing ,Jamie Robson,M,43,Leg bitten,N,13h00,Bull shark,"Fox10TV.com, 9/7/2014",2014.09.06-Robson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.06-Robson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.06-Robson.pdf,2014.09.06,2014.09.06,5713,, +2014.09.03,03-Sep-14,2014,Unprovoked,USA,Massachusetts,"Manomet Point, Plymouth, Plymouth County",Kayaking ,Ida Parker & Kristen Orr,F,20s,"No injury, shark bit kayak",N,18h00,"White shark, 12' to 14'","Boston Globe, 9/4/2014",2014.09.03-Plymouthkayakers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.03-Plymouthkayakers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.03-Plymouthkayakers.pdf,2014.09.03,2014.09.03,5712,, +2014.09.02,02-Sep-14,2014,Provoked,USA,Florida,"Fletcher Beach, Hutchinson Island, Martin County",Fishing,male,M,52,Bitten twice on the leg by a shark he was attempting to free from his line PROVOKED INCIDENT,N,20h00,3' to 4' shark,"WPBF.com, 9/2/2014",2014.09.02-FletcherBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.02-FletcherBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.02-FletcherBeach.pdf,2014.09.02,2014.09.02,5711,, +2014.09.00,Sep-14,2014,Unprovoked,SPAIN,Catalonia,Salou,Playing with an air mattress,male,M,16,Lacerations to right hand,N,,,"A. Brenneka, Shark Attack Survivors",2014.09.00-Salou.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.00-Salou.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.00-Salou.pdf,2014.09.00,2014.09.00,5710,, +2014.08.31,31-Aug-14,2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Body surfing,Alexandra Masterson,F,13,Injury to left calf,N,16h40,Spinner shark,"Sun Sentinel, 8/31/2014",2014.08.31-Masterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.31-Masterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.31-Masterson.pdf,2014.08.31,2014.08.31,5709,, +2014.08.29.b,29-Aug-14,2014,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,Brendan Murphy,M,17,Lacerations to shin,N,,Spinner shark or blacktip shark,"Click Orlando, 9/12/2014",2014.08.29.b-Murphy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.29.b-Murphy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.29.b-Murphy.pdf,2014.08.29.b,2014.08.29.b,5708,, +2014.08.29.a,29-Aug-14,2014,Invalid,USA,Florida,"Atlantic Beach, Duval County",,child,,,Shark involvement not confirmed,N,16h18,Shark involvement not confirmed,"Orlando Sentinel, 8/31/2014",2014.08.29.a-AtlanticBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.29.a-AtlanticBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.29.a-AtlanticBeach.pdf,2014.08.29.a,2014.08.29.a,5707,, +2014.08.28,28-Aug-14,2014,Provoked,USA,Maryland,Assateague National Seashore,Fishing,Mathew Vickers,M,33,Lacerations to foot by hooked shark PROVOKED INCIDENT,N,,,"Delmarva Now, 8/29/2014",2014.08.28-Vickers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.28-Vickers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.28-Vickers.pdf,2014.08.28,2014.08.28,5706,, +2014.08.27.c,27-Aug-14,2014,Unprovoked,SPAIN,Alicante,Benidorm,Swimming,Raquel Martin,F,30s,Minor lacerations to posterior lower leg,N,,small shark,"Diario Informacion, 8/29/2014",2014.08.27.c-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.27.c-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.27.c-Spain.pdf,2014.08.27.c,2014.08.27.c,5705,, +2014.08.27.b,27-Aug-14,2014,Unprovoked,USA,North Carolina,"Figure Eight Island, New Hanover County",Surfing,Hunter Anderson,M,29,Laceration to left hand,N,,4' to 6' shark,"C. Creswell, GSAF",2014.08.27.b-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.27.b-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.27.b-Anderson.pdf,2014.08.27.b,2014.08.27.b,5704,, +2014.08.27.a,27-Aug-14,2014,Unprovoked,USA,South Carolina,"Surfside Beach, Horry County",Standing,female,F,,Heel bitten,N,15h00,,"C. Creswell, GSAF",2014.08.27.a-Surfside.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.27.a-Surfside.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.27.a-Surfside.pdf,2014.08.27.a,2014.08.27.a,5703,, +2014.08.25,Reported 25-Aug-2014,2014,Provoked,USA,Florida,Apalachicola Bay ,Fishing for sharks,John Wiley,M,,Lacerations to forearm from hooked shark PROVOKED INCIDENT,N,,"Bull shark, 4.5' ","Nooga.com, 8/25/2014",2014.08.25.R-Wiley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.25.R-Wiley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.25.R-Wiley.pdf,2014.08.25,2014.08.25,5702,, +2014.08.24,24-Aug-14,2014,Unprovoked,USA,North Carolina,"Off Masonboro Island, New Hanover County",Kite boarding,Miller Diggs,,,Laceration to left foot,N,,4' shark,"C. Creswell, GSAF; WWAY, 8/24/2014",2014.08.24-Diggs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.24-Diggs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.24-Diggs.pdf,2014.08.24,2014.08.24,5701,, +2014.08.16,16-Aug-14,2014,Unprovoked,AUSTRALIA,Western Australia,Gnaraloo,Spearfishing,Adam Haling ,M,31,Lacerations to face and neck,N,,reef shark,"Herald Sun, 8/21/2014",2014.08.16-Haling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.16-Haling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.16-Haling.pdf,2014.08.16,2014.08.16,5700,, +2014.08.12,12-Aug-14,2014,Unprovoked,USA,Florida,"3 to 4 miles west of Indian Pass, Gulf County",Standing,Kyle Hayes,M,,Puncture wounds and lacerations to left thigh and knee,N,11h10," Bull shark, 8'","K. Hayes / Brewton Standard, 8/19/2014",2014.08.15-Hayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.15-Hayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.12-Hayes.pdf,2014.08.12,2014.08.12,5699,, +2014.08.10,10-Aug-14,2014,Unprovoked,USA,Florida,"Hallandale Beach, Broward County",,male,M,26,Puncture wounds & lacerations to foot,N,,,"CBS Miami, 8/11/1014",2014.08.10-Hallandale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.10-Hallandale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.10-Hallandale.pdf,2014.08.10,2014.08.10,5698,, +2014.08.09.R,09-Aug-14,2014,Unprovoked,BAHAMAS,,,Spearfishing,Andrew Hindley,M,,Puncture wounds to right foot and ankle,N,,"Bull shark, 9' to 10'",A. Hindley / M. Michaelson,"2014.08.09.R-Hindley, pdf","http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.09.R-Hindley, pdf","http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.09.R-Hindley, pdf",2014.08.09.R,2014.08.09.R,5697,, +2014.08.09,09-Aug-14,2014,Unprovoked,USA,Florida,"Lori Wilson Park, Cocoa Beach, Brevard County",Swimming,Krama Fordham,F,10,Puncture wounds to right foot & ankle,N,13h30,,"Florida Today, 8/9/2014",2014.08.09-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.09-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.09-CocoaBeach.pdf,2014.08.09,2014.08.09,5696,, +2014.08.08,08-Aug-14,2014,Unprovoked,USA,Louisiana,"Lake Ponchartain off Southshore Harbor, New Orleans",Swimming,Trent Trentacosta,M,7,Minor lacerations to left heel and big toe,N,Afternoon," Bull shark, 5'","The Times-Picayune, 8/9/2014",2014.08.08-Trentacosta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.08-Trentacosta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.08-Trentacosta.pdf,2014.08.08,2014.08.08,5695,, +2014.08.06,06-Aug-14,2014,Unprovoked,USA,South Carolina,"Folly Beach, Charleston County",Boogie boarding,Riley Harris,M,10,Lacerations to right leg & foot,N,14h00,4' tp 5' shark,"C. Creswell, GSAF; WCSC. 8/6/2014",2014.08.14-Harris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.14-Harris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.14-Harris.pdf,2014.08.06,2014.08.06,5694,, +2014.08.05,05-Aug-14,2014,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Swimming,female,F,45,Lacerations to foot,N,,,"Inquisitr, 8/7/2014",2014.08.05-Tulip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.05-Tulip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.05-Tulip.pdf,2014.08.05,2014.08.05,5693,, +2014.08.02,02-Aug-14,2014,Unprovoked,USA,Florida,"South of Cocoa Beach, Brevard County",Surfing,male,M,50s,Foot bitten,N,,,"Florida Today, 8/8/2014",2014.08.08-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.08-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.08-CocoaBeach.pdf,2014.08.02,2014.08.02,5692,, +2014.08.02,02-Aug-14,2014,Unprovoked,USA,Florida,"Table Beach, Brevard County",Boogie boarding,Christian Sanhueza,M,8,Laceration to ankle,N,13h00,,"Florida Today, 8/2/2014",2014.08.02-Sanhueza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.02-Sanhueza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.02-Sanhueza.pdf,2014.08.02,2014.08.02,5691,, +2014.08.01,01-Aug-14,2014,Unprovoked,SOUTH AFRICA,Western Cape Province,Muizenberg,Surfing,Matthew Smithers,M,20,Lower limbs & thigh bitten,N,14h00,White shark,"NSRI, 8/1/2014",2014.08.01-Smithers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.01-Smithers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.01-Smithers.pdf,2014.08.01,2014.08.01,5690,, +2014.08.00,Aug-14,2014,Invalid,,,,Sea disaster,Cuban refugees,M,,Shark involvement prior to death not confirmed,Y,,Shark involvement not confirmed,"Associated Press, 11/27/2014",2014.08.00-Cuban-refugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.00-Cuban-refugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.00-Cuban-refugees.pdf,2014.08.00,2014.08.00,5689,, +2014.07.27,27-Jul-14,2014,Unprovoked,USA,North Carolina,"Sunset Beach, Brunswick County",Swimming,male,M,Teen,Left foot bitten,N,,Possibly juvenile tiger shark,"C. Creswell, GSAF",2014.07.27-SunsetBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.27-SunsetBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.27-SunsetBeach.pdf,2014.07.27,2014.07.27,5688,, +2014.07.22,22-Jul-14,2014,Unprovoked,REUNION,Saint-Leu,,Surfing,Vincent Rintz,M,51,Lacerations to right wrist & calf,N,15h00,1.8 metre shark,"BFM-tv, 7/22/2014",2014.07.22-Rintz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.22-Rintz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.22-Rintz.pdf,2014.07.22,2014.07.22,5687,, +2014.07.21,21-Jul-14,2014,Unprovoked,USA,Florida,"Indialantic, Brevard County",Standing,Aayden Crick,M,8,Lacerations to right knee,N,Early afternoon,,"ClickOrlando, 7/22/2014",2014.07.21-Crick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.21-Crick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.21-Crick.pdf,2014.07.21,2014.07.21,5686,, +2014.07.20,20-Jul-14,2014,Unprovoked,SPAIN,Canary Islands,"Teresita, Santa Cruz, Tenerife",Wading,child,,,Minor injury,N,,Angel shark,"DiariodeAvisos, 7/25/2014",2014.07.20-Tenerife.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.20-Tenerife.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.20-Tenerife.pdf,2014.07.20,2014.07.20,5685,, +2014.07.16,16-Jul-14,2014,Unprovoked,USA,Hawaii,"Paia Bay, Maui",Swimming,male,M,61,Lacerations to left foot,N,17h50,6' to 8' shark,"Maui Now, 7/16/2014",2014.07.16-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.16-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.16-Maui.pdf,2014.07.16,2014.07.16,5684,, +2014.07.14,14-Jul-14,2014,Unprovoked,USA,Florida,Okaloosa Island,Swimming,Terrell Moore,M,39,Puncture wounds to foot,N,14h30,4' shark,"W. Victora, Daily News, 7/15/2014",2014.07.14-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.14-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.14-Moore.pdf,2014.07.14,2014.07.14,5683,, +2014.07.13,13-Jul-14,2014,Invalid,BAHAMAS,West End,Tiger Beach,Shark diving,John Petty,M,63,"Missing after a dive, shark involvement considered probable, but not confirmed",Y,Night,Shark involvement not confirmed,"Outside, 7/14/2014",2014.07.13-Petty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.13-Petty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.13-Petty.pdf,2014.07.13,2014.07.13,5682,, +2014.07.12,12-Jul-14,2014,Unprovoked,USA,North Carolina,"Masonboro Island, New Hanover County",Body surfing,Carson Jewell,M,,Lacerations to hand and wrist,N,,,"C. Creswell, GSAF",2014.07.12-Jewell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.12-Jewell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.12-Jewell.pdf,2014.07.12,2014.07.12,5681,, +2014.07.09,09-Jul-14,2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Tristan Durham,M,14,Lacerations to foot,N,14h00,,"WESH.com, 7/9/2014",2014.07.09-Durham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.09-Durham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.09-Durham.pdf,2014.07.09,2014.07.09,5680,, +2014.07.05.b,05-Jul-14,2014,Provoked,USA,California,"Manhattan Beach, Los Angeles County",Swimming,Steve Robles,M,,PROVOKED INCIDENT Torso bitten by shark hooked by an angler,N,09h30," White shark, 7' ","R. Collier, GSAF / M Michaelson, SRI ",2014.07.05.b-Robles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.05.b-Robles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.05.b-Robles.pdf,2014.07.05.b,2014.07.05.b,5679,, +2014.07.05.a,05-Jul-14,2014,Unprovoked,USA,California,"Oceano Dunes State Beach, San Luis Obispo County",Surfing,R.J.,M,,"No injury, surboard bitten",N,07h00 - 08h00,,"R. Collier, GSAF",2014.07.05.a-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.05.a-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.05.a-Surfer.pdf,2014.07.05.a,2014.07.05.a,5678,, +2014.07.03,03-Jul-14,2014,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Body surfing,Christian Fairbourne,M,19,Right hand bitten,N,18h15-18h30,4' to 5' shark,"C. Creswell, GSAF Live5News, 7/3/2014",2014.07.03-Fairbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.03-Fairbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.03-Fairbourne.pdf,2014.07.03,2014.07.03,5677,, +2014.06.27.R,Reported 27-Jun-2014,2014,Boat,ST. MARTIN,,20 miles from shore,Transatlantic Rowing,Victor Mooney,M,48,His boat was holed by a shark,N,,Oceanic whitetip shark',"Star Advertiser, 6/272014; Goree Challenge.com",2014.06.27-Mooney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.27-Mooney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.27-Mooney.pdf,2014.06.27.R,2014.06.27.R,5676,, +2014.06.25,25-Jun-14,2014,Unprovoked,BAHAMAS,Abaco Islands,,Spearfishing,Mark Adams,M,42,No injury but shark took his pole spear,N,13h00,"Caribbean reef shark, 7' to 8'","A. Brenneka, Shark Attack Survivors, M. Adams",2014.06.25-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.25-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.25-Adams.pdf,2014.06.25,2014.06.25,5675,, +2014.06.18.b,18-Jun-14,2014,Unprovoked,AUSTRALIA,South Australia,"Middleton Point, Fleurieu Peninsula",Surfing,Max Longhurst ,M,,"No injury, surfboard 'attacked'",N,17h01,,"The Times, 6/19/2014",2014.06.18.b-Longhurst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.18.b-Longhurst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.18.b-Longhurst.pdf,2014.06.18.b,2014.06.18.b,5674,, +2014.06.18.a,18-Jun-14,2014,Unprovoked,AUSTRALIA,South Australia,"Middleton Point, Fleurieu Peninsula",Body boarding,Jesse McKinnon,M,15,Lacerations to knee,N,17h00,,"The Advertiser, 6/19/2014",2014.06.18.a-McKinnon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.18.a-McKinnon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.18.a-McKinnon.pdf,2014.06.18.a,2014.06.18.a,5673,, +2014.06.17.R,Reported 17-Jun-2014,2014,Provoked,AUSTRALIA,Western Australia,Horizontal Falls,Petting a shark,Ric Wright,M,,Lacerations to right hand by captive shark PROVOKED INCIDENT,N,," Lemon shark, 3.5 m","Meribula News, 6/17/2014",2014.06.17.R-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.17.R-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.17.R-Wright.pdf,2014.06.17.R,2014.06.17.R,5672,, +2014.06.09.c,09-Jun-14,2014,Unprovoked,BRAZIL,,500 km off the coast of Pernambuco,Fishing,Sunarko,M,43,Severe injury to arm,N,,,"msn, 6/11/2014",2014.06.09.c-Sunarko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.09.c-Sunarko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.09.c-Sunarko.pdf,2014.06.09.c,2014.06.09.c,5671,, +2014.06.09.b,09-Jun-14,2014,Unprovoked,USA,Delaware,"Cape Henlopen State Park, Sussex County",Standing,Andrew Vance,M,16,"Abrasion to right hand, lacerations to left forearm",N,17h00," Sandbar shark, 3' to 4'","News Journal (Wilmington, Del), 6/11/2014",2014.06.09.b-Vance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.09.b-Vance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.09.b-Vance.pdf,2014.06.09.b,2014.06.09.b,5670,, +2014.06.09.a,09-Jun-14,2014,Unprovoked,AUSTRALIA,South Australia,"Parsons Beach, Fleurieu Peninsula",Body boarding,Scott Berry,M,39,Minor injury to torso,N,09h45,"Bronze whaler shark, 1.5m","The Australian, 6/9/2014",2014.06.09.a-Berry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.09.a-Berry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.09-Berry.pdf,2014.06.09.a,2014.06.09.a,5669,, +2014.06.08,08-Jun-14,2014,Unprovoked,JAPAN,Atsumi peninsula,Aichi,Surfing,Tsuyoshi Takahashi,M,43,Left arm bitten,N,Afternoon,,"Sky News, 6/10/2013",2014.06.08-Takahashi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.08-Takahashi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.08-Takahashi.pdf,2014.06.08,2014.06.08,5668,, +2014.06.07,07-Jun-14,2014,Unprovoked,USA,Texas,"West Beach, Galveston",Kneeling in the water,Mikaela Amezaga Medina,F,14,Shallow lacerations & puncture wounds below shoulder,N,Afternoon,,"Inquisitr.com, 6/9/2014",2014.06.07-Medina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.07-Medina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.07-Medina.pdf,2014.06.07,2014.06.07,5667,, +2014.06.01.c,01-Jun-14,2014,Unprovoked,USA,Florida,Fort Lauderdale,Swimming,Jessica Vaughn,F,22,Laceration to right lower leg,N,13h30,Bull shark,"Local10.com, 6/1/2014",2014.06.01.c-Vaughn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.01.c-Vaughn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.01.c-Vaughn.pdf,2014.06.01.c,2014.06.01.c,5666,, +2014.06.01.b,01-Jun-14,2014,Unprovoked,AUSTRALIA,New South Wales,"Seven Mile Beach, Gerroa",Surfing,Bob Smith,M,,Lacerations & puncture wounds to ankle and foot,N,Morning,,"Newcastle Herald, 6/3/2014",2014.06.01.b-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.01.b-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.01.b-Smith.pdf,2014.06.01.b,2014.06.01.b,5665,, +2014.06.01.a,01-Jun-14,2014,Unprovoked,USA,Palmyra Atoll,,Tagging sharks,female,F,37,Laceration to left hand,N,,Blacktip Reef shark ,U.S. Coast Guard,2014.06.01.a-PalmyraAtoll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.01.a-PalmyraAtoll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.01.a-PalmyraAtoll.pdf,2014.06.01.a,2014.06.01.a,5664,, +2014.05.27.R,24-May-14,2014,Unprovoked,AUSTRALIA,Queensland,Nerang River near Chevron Island,Fell into the water,Bianca Freeman,F,29,Lacerations to legs,N,," Bull shark, 1.2m ","Gold Coast Bulletin, 4/27/2014",2014.05.27.R-Freeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.27.R-Freeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.27.R-Freeman.pdf,2014.05.27.R,2014.05.27.R,5663,, +2014.05.23,23-May-14,2014,Unprovoked,FRANCE,Wallis and Futuna,Wallis Island,Scuba diving,Eric Barnabas,M,,Lacerations to left thigh and hip,N,Morning,3m shark,Facebook.com,2014.05.23-Barnabas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.23-Barnabas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.23-Barnabas.pdf,2014.05.23,2014.05.23,5662,, +2014.05.22,22-May-14,2014,Provoked,AUSTRALIA,New South Wales,The Australian Shark and Ray Centre,Teasing a shark,male,M,10,Cut to tip of finger by a captive shark PROVOKED INCIDENT,N,," Tawney nurse shark, 1m","Newcastle Herald, 5/22/2014",2014.05.22-Aquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.22-Aquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.22-Aquarium.pdf,2014.05.22,2014.05.22,5661,, +2015.11.20,20-Nov-15,2015,Unprovoked,ECUADOR,Galapagos Islands,"Punta Vicente Roca, Isabella Island",Snorkeling,Graham Hurley,M,55,Lacerations to left calf,N,10h15,Galapagos shark,G. Hurley,2015.11.20-Hurley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.20-Hurley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.20-Hurley.pdf,2015.11.20,2015.11.20,5661,, +2014.05.15,15-May-14,2014,Unprovoked,USA,Florida,"Juan Ponce de Le�n Landing, Melbourne Beach, Brevard County",Body boarding,Amy Tatsch,F,38,Calf bitten,N,11h30,,"M. Michaelson, Shark Research Institute",2014.05.15-Tatsch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.15-Tatsch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.15-Tatsch.pdf,2014.05.15,2014.05.15,5660,, +2014.05.14,14-May-14,2014,Unprovoked,AUSTRALIA,South Australia,"Elliston, Eyre Peninsula",Surfing,Andrew McLeod,M,35,"No injury, but surfboard severely damaged",N,09h30," white shark, 15' ","N. Davies, The Advertiser, 5/114/2014","2014.05.14-McLeod, pdf","http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.14-McLeod, pdf","http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.14-McLeod, pdf",2014.05.14,2014.05.14,5659,, +2014.05.13,13-May-14,2014,Unprovoked,USA,Florida,"Jacksonville Beach, Duval County",Wading,Mihaela Cosa,F,44,Lacerations and puncture wounds to right foot,N,11h00,,"M. Michaelson, Shark Research Institute",2014.05.13-Cosa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.13-Cosa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.13-Cosa.pdf,2014.05.13,2014.05.13,5658,, +2014.05.11,11-May-14,2014,Unprovoked,USA,Georgia,"Tybee Island, Chatham County",Surfing,Ayden Meadows,M,12,Puncture wounds to right thigh,N,,Shark involvement not confirmed,"Savannah Morning News, 5/12/2014",2014.05.11-Meadows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.11-Meadows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.11-Meadows.pdf,2014.05.11,2014.05.11,5657,, +2014.05.10.R,Reported 10-May-2014,2014,Invalid,USA,Florida,"Bethel Shoals, Indian River County",Diving,Jimmy Roseman,M,,"No injury. No attack. 12' white shark appeared curious, not aggressive & departed when prodded by spear",N,,No shark involvement,"Metro, 5/10/2014",2014.05.10.R-Roseman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.10.R-Roseman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.10.R-Roseman.pdf,2014.05.10.R,2014.05.10.R,5656,, +2014.05.06,06-May-14,2014,Unprovoked,USA,South Carolina,"Coligny Beach, Hilton Head, Beaufort County",Swimming,Kimberly Popp,F,40,Lacerations to left foot,N,15h00,4' to 5' shark,"The Island Packet, 5/7/2014",2014.05.06-Popp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.06-Popp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.06-Popp.pdf,2014.05.06,2014.05.06,5655,, +2014.05.01,01-May-14,2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Shane Nolet,M,23,Laceration to right hand and cuts on fingertips,N,15h00,3' shark,"Wesh.com, 5/2/2014",2014.05.01-Nolet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.01-Nolet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.01-Nolet.pdf,2014.05.01,2014.05.01,5654,, +2014.04.24,24-Apr-14,2014,Unprovoked,AUSTRALIA,Western Australia,"South Passage, south of Coral Bay",Spearfishing,male,M,,Minor injury,N,,reef shark?,"9 News, 4/24/2014",2014.04.24-WA.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.24-WA.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.24-WA.pdf,2014.04.24,2014.04.24,5653,, +2014.04.22,22-Apr-14,2014,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Swimming,male,M ,42,Laceration & puncture wounds to right foot,N,15h30,,"R. Neale, Florida Today, 4/22/2014",2014.04.22-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.22-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.22-CocoaBeach.pdf,2014.04.22,2014.04.22,5652,, +2014.04.15,15-Apr-14,2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,Justin Davidson,M,25,Minor lacerations to left foot,N,09h57,,"Daytona Beach News-Journal, 4/15/2014",2014.04.15-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.15-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.15-NSB.pdf,2014.04.15,2014.04.15,5651,, +2014.04.12.R,Reported 12-Apr-2014,2014,Boat,SOUTH AFRICA,,,Shark watching,Inflatable boat,,,"No injury to occupants, shark bit pontoon",N,,White shark,"You Tube, posted 4/12/2014",.2014.04.12.R-inflatable,http://sharkattackfile.net/spreadsheets/pdf_directory/.2014.04.12.R-inflatable,http://sharkattackfile.net/spreadsheets/pdf_directory/.2014.04.12.R-inflatable,2014.04.12.R,2014.04.12.R,5650,, +2014.04.12,12-Apr-14,2014,Provoked,SOUTH AFRICA,Eastern Cape Province,Port Alfred,Fishing,Lionel McDougall,M,,Lacerations to leg & hand by hooked shark PROVOKED INCIDENT,N,Morning," Raggedtooth shark, 2m","The Citizen, 4/12/2014",2014.04.12-McDougall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.12-McDougall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.12-McDougall.pdf,2014.04.12,2014.04.12,5649,, +2014.04.04.b,04-Apr-14,2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,teen,Minor puncture wounds to lower left leg,N,13h50,,"News 13, 4/4/2014",2014.04.04.b-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.04.b-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.04.b-NSB.pdf,2014.04.04.b,2014.04.04.b,5648,, +2014.04.04.a,04-Apr-14,2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,teen,Lacerations to foot,N,13h30,,"News 13, 4/4/2014",2014.04.04.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.04.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.04.a-NSB.pdf,2014.04.04.a,2014.04.04.a,5647,, +2014.04.03,03-Apr-14,2014,Unprovoked,AUSTRALIA,New South Wales,Tathra,Swimming,Christine Armstrong,F,63,FATAL,Y,08h20,3 m to 4 m white shark,"B. Myatt, GSAF",2014.04.03-Armstrong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.03-Armstrong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.03-Armstrong.pdf,2014.04.03,2014.04.03,5646,, +2014.03.29,29-Mar-14,2014,Invalid,AUSTRALIA,Western Australia,Off Dawesville Cut,Diving for lobsters,Michael McGregor,M,38,Shark bites may have been post mortem,Y,13h30,,"The West Australian, 4/2/2014",2014.03.29-WesternAustralia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.29-WesternAustralia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.29-WesternAustralia.pdf,2014.03.29,2014.03.29,5645,, +2014.03.22.b,22-Mar-14,2014,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Second Beach, Port St Johns",Swimming,Friedrich Burgstaller.,M,66,FATAL,Y,15h00,2 m shark,"Austrian Independent, 3/24/2014",2014.03.22.b-SecondBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.22.b-SecondBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.22.b-SecondBeach.pdf,2014.03.22.b,2014.03.22.b,5644,, +2014.03.22.a,22-Mar-14,2014,Unprovoked,USA,Florida,Delray Beach,Kite Surfing,Kurt Hoffman,M,,Lacerations to left forearm,N,,4' to 5' shark,"TC Palm, 3/23/2014",2014.03.22.a-Hoffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.22.a-Hoffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.22.a-Hoffman.pdf,2014.03.22.a,2014.03.22.a,5643,, +2014.03.21,21-Mar-14,2014,Unprovoked,USA,Florida,Macarthur State Park,Surfing,Sebastian Cozzen,M,9,Lacerations to toes and heel of right foot,N,,,"E. Guy, WPBF, 3/26/2014",2014.03.21-Cozzen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.21-Cozzen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.21-Cozzen.pdf,2014.03.21,2014.03.21,5642,, +2014.03.18.c,18-Mar-14,2014,Unprovoked,NEW CALEDONIA,Baie de Sainte-Marie,,Kite Surfing,Laurent Borgna ,M,42,Lacerations to calf,N,17h58,,"A. Brenneka, Shark Attack Surviors",2014.03.18.c-Borgna,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.18.c-Borgna,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.18.c-Borgna,2014.03.18.c,2014.03.18.c,5641,, +2014.03.18.b,18-Mar-14,2014,Unprovoked,AUSTRALIA,Victoria,Winkipop Beach,Surfing,Mark Byrne,M,42,Shark leapt onto surfboard; surfer uninjured ,N,Morning,,"New7 Melbourne, 3/19/2014",2014.03.18.b-Byrne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.18.b-Byrne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.18.b-Byrne.pdf,2014.03.18.b,2014.03.18.b,5640,, +2014.03.13,13-Mar-14,2014,Invalid,CAYMAN ISLANDS,,,Scuba diving / culling lionfish,Jason Dimitri,M,,"Caribbean reef shark buzzed him. No injury, no attack. ",N,,,"You Tube, posted 4/12/2014",2014.03.13-Dimitri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.13-Dimitri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.13-Dimitri.pdf,2014.03.13,2014.03.13,5639,, +2014.03.18,18-Mar-14,2014,Invalid,AUSTRALIA,New South Wales,Lennox Head,,Myxie Ryan,F,10,"Injuries to wrist/hand by a mackerel, not a shark",N,17h00,No shark involvement,"Brisbane Times, 3/18/2014",2014.03.18-NSW.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.18-NSW.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.18-NSW.pdf,2014.03.18,2014.03.18,5638,, +2014.03.12,12-Mar-14,2014,Unprovoked,AUSTRALIA,New South Wales,Lighthouse Beach,Swimming,Mike Porter,M,,Minor lacerations to foot,N,18h00,Wobbegong shark,"N. Keene, The Daily Telegraph, 3/13/2014",2014.03.12-LightouseBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.12-LightouseBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.12-LightouseBeach.pdf,2014.03.12,2014.03.12,5637,, +2014.03.02,02-Mar-14,2014,Unprovoked,USA,Florida,"Santa Lucea Beach, South Hutchinson Island, St. Lucie County",Surfing,Dylan Fugitt,M,21,Lacerations to toes,N,,Blacktip or spinner shark?,"L.Gordon, CBS 12, 3/3/2014",2014.03.02-Fugitt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.02-Fugitt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.02-Fugitt.pdf,2014.03.02,2014.03.02,5636,, +2014.02.20,20-Feb-14,2014,Unprovoked,FRENCH POLYNESIA,Society Islands,Huahine,Kitesurfing,male,M,21,Lacerations to lower leg,N,16h00,Blacktip reef shark ,"A. Brenneka, Shark Attack Survivors",2014.02.20-FrenchPolynesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.20-FrenchPolynesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.20-FrenchPolynesia.pdf,2014.02.20,2014.02.20,5635,, +2014.02.17,Reported 17-Feb-2014,2014,Boat,PAPUA NEW GUINEA,,,Sailing,OneDLL,M,21,"No injury to occupants, hull bitten",N,Night,,"Sail-World.com, 2/17/2014",2014.02.17.R-OneDLL,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.17.R-OneDLL,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.17.R-OneDLL,2014.02.17,2014.02.17,5634,, +2014.02.08,08-Feb-14,2014,Unprovoked,AUSTRALIA,South Australia,"Goldsmith Beach, Yorke Peninsula",Spearfishing / Free diving,Sam Kellett ,M,28,FATAL,Y,12h00,,"The Advertiser, 2/9/2014",2014.02.08-Kellett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.08-Kellett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.08-Kellett.pdf,2014.02.08,2014.02.08,5633,, +2014.02.07.b,07-Feb-14,2014,Provoked,TRINIDAD & TOBAGO,Trinidad,,Fishing,Simon Torres,M,,Possibly a PROVOKED INCIDENT,N,,,"Trinidad Guardian, 2/11/2014",2014.02.07.b-Torres.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.07.b-Torres.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/w014.01.25-Grant.pdf,2014.02.07.b,2014.02.07.b,5632,, +2014.02.07,07-Feb-14,2014,Unprovoked,NEW ZEALAND,South Island,Porpoise Bay,Surfing,Darren Mills,M,28,Lacerations to leg,N,20h30,7-gill shark?,"New Zealand Herald, 2/7/2014",2014.02.07-PorpoiseBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.07-PorpoiseBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/w014.01.25-Grant.pdf,2014.02.07,2014.02.07,5631,, +2014.01.26,26-Jan-14,2014,Provoked,AUSTRALIA,New South Wales,Umina Beach,Fishing,Richard O'Connor,M,,Lacerations to ring and pinky fingers of his left hand by hooked shark PROVOKED INCIDENT,N,,1m shark,"Daily Telegraph, 1/29/2014",2014.01.26-O'Connor.pf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.01.26-O'Connor.pf,http://sharkattackfile.net/spreadsheets/pdf_directory/w014.01.25-Grant.pdf,2014.01.26,2014.01.26,5630,, +2014.01.25,25-Jan-14,2014,Unprovoked,NEW ZEALAND,South Island,Garden Bay near Cosy Nook,Spearfishing,James Grant,M,24,Minor injury to left lower leg & heel,N,,7-gill shark,"Stuff.co.nz,1/27/2014",2014.01.25-Grant,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.01.25-Grant,http://sharkattackfile.net/spreadsheets/pdf_directory/w014.01.25-Grant.pdf,2014.01.25,2014.01.25,5629,, +2014.01.04,04-Jan-14,2014,Sea Disaster,JAPAN,Okinawa Prefecture,Off Miyako Island,Sea disaster,Rianto,M,31,5 cm bite to left foot,N,,,"Focus Taiwan, 1/7/2014",2014.01.04-Rianto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.01.04-Rianto.pdf,pdf_directory2014.01.04-Riano.pdf ,2014.01.04,2014.01.04,5628,, +2014.00.00,2014,2014,Boat,NEW ZEALAND,,Stewart Island,Filming a documentary,Dinghy. Occupants: Jeff Kurr and Andy Casagrande,,,"No injury to occupants, shark nudged and bit boat",N,,"White shark, 6 m",Discovery Channel,2014.00.00-Jeff-Andy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.00.00-Jeff-Andy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.00.00-Jeff-Andy.pdf,2014.00.00,2014.00.00,5627,, +2013.12.25,25-Dec-13,2013,Unprovoked,NEW CALEDONIA,North Province,"Lind�ralique, Hiengh�ne",Snorkeling,Lo�c Merlet,M,37,Leg bitten,N,11h00,Reported to involve a bull shark,"Les Novelles Caledonie, 12/26/2014",2013.12.25-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.25-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.25-NewCaledonia.pdf ,2013.12.25,2013.12.25,5626,, +2013.12.16,16-Dec-13,2013,Unprovoked,SOUTH AFRICA,Western Cape Province,Die Platt,Surfing,Thomas Browne,M,19,Injuries to left thigh,N,08h45,"White shark, 3m ","Cape Argus, 12/16/2013",2013.12.16-Browne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.16-Browne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.16-Browne.pdf,2013.12.16,2013.12.16,5625,, +2013.12.13,13-Dec-13,2013,Unprovoked,KIRIBATI,740 miles SE of Tarawa Atoll,,Attempting to remove fishing net from submerged object,male,M,35,Severe injury to arm,N,,,"Coast Guard News, 12/16/2013",2013.12.13-Kiribati.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.13-Kiribati.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.13-Kiribati.pdf,2013.12.13,2013.12.13,5624,, +2013.12.11,11-Dec-13,2013,Unprovoked,USA,Hawaii,"Ninole Bay, Hawaii County",Boogie boarding,male,M,29,Lacerations to right hand & knee,N,08h00,"Tiger shark, 10' to 12'","Big Island Now, 12/11/2013",2013.12.11-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.11-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.11-Hawaii.pdf,2013.12.11,2013.12.11,5623,, +2013.12.10,10-Dec-13,2013,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,Bobby Baughman,M,30,Right foot bitten,N,14h30,4' to 6' shark,"Florida Today, 12/10/2103",2013.12.10-Baughman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.10-Baughman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.10-Baughman.pdf,2013.12.10,2013.12.10,5622,, +2013.12.05,05-Dec-13,2013,Unprovoked,AUSTRALIA,New South Wales,"Shelly Beach, near Port Macquarie",Surfing,male,M,26,"Puncture wounds to hand, laceration to leg",N,18h15," Wobbegong shark, 1.6 to 1.8m ","The Sydney Morning Herald, 12/5/2013",2013.12.05-PortMacquarie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.05-PortMacquarie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.05-PortMacquarie.pdf,2013.12.05,2013.12.05,5621,, +2013.12.02,02-Dec-13,2013,Unprovoked,USA,Hawaii,"Between Makena & Molokini, Maui",Kayaking / Fishing,Patrick Briney,M,57,FATAL,Y,09h00,,"C. Sugidono, The Maui News, 12/2/2013",2013.12.02-Briney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.02-Briney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.02-Briney.pdf,2013.12.02,2013.12.02,5620,, +2013.11.30,30-Nov-13,2013,Unprovoked,AUSTRALIA,New South Wales,"Riecks Point, Campbell�s Beach, ",Body boarding,Zac Young,M,19,FATAL,Y,14h00,"Tiger shark, 3m ","The Sydney Morning Herald, 11/30/2013",2013.11.30-ZacYoung.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.30-ZacYoung.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.30-ZacYoung.pdf,2013.11.30,2013.11.30,5619,, +2013.11.29,29-Nov-13,2013,Unprovoked,USA,Hawaii,"Keawekapu Beach, Kihei, Maui",Snorkeling,female,F,58,Right calf bitten,N,13h00,,"L. Fujimoto, Maui News, 11/29/2013",2013.11.29-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.29-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.29-Maui.pdf,2013.11.29,2013.11.29,5618,, +2013.11.23.a,23-Nov-13,2013,Unprovoked,AUSTRALIA,Western Australia,Gracetown,Surfing,Chris Boyd,M,35,FATAL,Y,09h00,Thought to involve a white shark,"J. Baily; Perth Now, 11/23/2013",2013.11.23.a-Boyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.23.a-Boyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.23.a-Boyd.pdf,2013.11.23.a,2013.11.23.a,5617,, +2013.11.22,22-Nov-13,2013,Unprovoked,USA,Oregon,"Gleneden Beach, Lincoln County",Surfing,Andrew Gardiner,M,25,"No injury, board bitten",N,10h30,"White shark, 10 '",R. Collier,2013.11.22-Gardiner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.22-Gardiner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.22-Gardiner,2013.11.22,2013.11.22,5616,, +2013.11.12,12-Nov-13,2013,Unprovoked,AUSTRALIA,Western Australia,"Trigg Beach, Perth",Surfing,Shaun Daly,M,,"No injury, board bumped by shark",N,15h00,Reported to involve a white shark,"West Australian, 11/13/2013",2013.11.12-Daly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.12-Daly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.12-Daly,2013.11.12,2013.11.12,5615,, +2013.11.10,10-Nov-13,2013,Provoked,BAHAMAS,,Off Cape Eleuthera,Shark fishing,male,M,77,Injuries to arm & leg by hooked shark PROVOKED INCIDENT,N,11h00,,"Jamaica Observer, 11/11/2013",2013.11.10-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.10-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.10-Bahamas,2013.11.10,2013.11.10,5614,, +2013.11.07.b,07-Nov-13,2013,Unprovoked,USA,New Jersey,"Bay Head, Ocean County",Body boarding,Quinn Gates,M,16,"No injury, swim fin bitten",N,Afternoon,,"S. Nagiewicz, SRI; Star Ledger, 11/9/2013",2013.11.07.b-Gates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.07.b-Gates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.07.b-Gates,2013.11.07.b,2013.11.07.b,5613,, +2013.11.07.a,07-Nov-13,2013,Unprovoked,USA,Florida,"Floridana Beach, Brevard County",Surfing,Sandor Melian,M,,Foot bitten,N,,,"Space Coast Daily, 11/11/2013",2013.11.07.a-Melian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.07.a-Melian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.07.a-Melian,2013.11.07.a,2013.11.07.a,5612,, +2013.10.31,31-Oct-13,2013,Unprovoked,USA,Hawaii,"Kanaha Beach, Maui",Kiteboarding,Christian Brandon,M,46,Severe bite to right calf & anklel,N,15h19,Tiger shark,"Maui TV, 10/31/2013",2013.10.31-ChristianBrandon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.31-ChristianBrandon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.31-ChristianBrandon,2013.10.31,2013.10.31,5611,, +2013.10.28,28-Oct-13,2013,Unprovoked,AUSTRALIA,Western Australia,Turquoise Bay,Snorkeling,Glenda Simmons,F,60,Lacerations to right arm,N,Afternoon,"Blacktip reef shark, 1m","AAP, 10/28/2013",2013.10.28-Simmons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.28-Simmons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.28-Simmons,2013.10.28,2013.10.28,5610,, +2013.10.26.b,26-Oct-13,2013,Unprovoked,REUNION,d��tang-Sal�,Ravine Mula,Body boarding,Gicquel Tanguy,M,24,Right leg severed,N,16h30,Thought to involve a bull shark,"Global Post, 10/26/2013",2013.10.26.b-Tanguy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.26.b-Tanguy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.26.b-Tanguy,2013.10.26.b,2013.10.26.b,5609,, +2013.10.26.a,26-Oct-13,2013,Unprovoked,AUSTRALIA,Western Australia,"Little Island, near Hillarys",Diving for crayfish,Todd Robinson,M,,"No injury, swim fin shredded",N,10h55,Reported to involve a 4 m white shark,"Sky News, 10/26/2013",2013.10.26.a-Robinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.26.a-Robinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.26.a-Robinson.pdf,2013.10.26.a,2013.10.26.a,5608,, +2013.10.24,24-Oct-13,2013,Unprovoked,AUSTRALIA,New South Wales,South Narrabeen Beach,Surfing,Anthony Joyce,M,41,Injuries to right foot,N,18h15,Wobbegong shark,"A. Brenneka, Shark Attack Survivors",2013.10.24-Joyce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.24-Joyce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.24-Joyce.pdf,2013.10.24,2013.10.24,5607,, +2013.10.23,23-Oct-13,2013,Unprovoked,USA,Hawaii,"Waiehu, Maui",Diving ,Shane Mills,M,45,"3"" laceration to left hip",N,15h55,"Whitetip reef shark, 4' to 6'","Maui News, 10/23/2013",2013.10.23-ShaneMills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.23-ShaneMills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.23-ShaneMills.pdf,2013.10.23,2013.10.23,5606,, +2013.10.20,20-Oct-13,2013,Unprovoked,USA,Hawaii,"Pila'a Beach, Kaua'i",Surfing,Jeff Horton,M,25,"No injury, shark bit surfboard",N,11h00,Tiger shark,"B. Buley, The Garden Island, 10/22/2013",2013.10.20-Horton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.20-Horton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.20-Horton.pdf,2013.10.20,2013.10.20,5605,, +2013.10.19,19-Oct-13,2013,Unprovoked,USA,Florida,Miami Beach,Wading,Logan Hamby,M,6,Bitten on left calf & foot,N,Late afternoon,Nurse shark?,K & D Hamby ,2013.10.19-Hamby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.19-Hamby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.19-Hamby.pdf,2013.10.19,2013.10.19,5604,, +2013.10.11,11-Oct-13,2013,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Albatros Point, near Jeffrey's Bay",Swimming / snorkeling,Burgert Van Der Westhuizen,M,74,FATAL,Y,11h30,White shark,"JBayNews.com, 10/11/2013",2013.10.11-Vd-Westhuizen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.11-Vd-Westhuizen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.11-Vd-Westhuizen.pdf,2013.10.11,2013.10.11,5603,, +2013.10.08,08-Oct-13,2013,Unprovoked,AUSTRALIA,Western Australia,"Off Poison Creek, Cape Arid",Diving for Abalone,Greg Pickering,M,55,"Injuries to torso, head and face",N,10h30,White shark,"Fox News, 10/9/2013",2013.10.08-Pickering.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.08-Pickering.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.08-Pickering.pdf,2013.10.08,2013.10.08,5602,, +2013.10.05,06-Oct-13,2013,Unprovoked,USA,California,"Bunkers, Humboldt Bay, Eureka, Humboldt County",Surfing,Jay Scrivner,M,45,Laceration to thigh,N,08h45,"White shark, 8' to 10'","R. Collier, GSAF",2013.10.06-Scrivner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.06-Scrivner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.06-Scrivner.pdf,2013.10.05,2013.10.05,5601,, +2013.10.05,10-Oct-13,2013,Unprovoked,USA,Florida,"Destin, Okaloosa County",Wading,Zachary Tyke Standridge ,M,12,Lacerations to right forearm,N,15h30,Small bull shark,"Monroe County Advocate, 10/9/2013",2013.10.05-Standridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.05-Standridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.05-Standridge.pdf,2013.10.05,2013.10.05,5600,, +2013.09.29.b,29-Sep-13,2013,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,male,M,50,Lacerations to hand,N,10h00,,"Florida Today, 9/30/2013",2013.09.29.b-BrevardSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.29.b-BrevardSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.29.b-BrevardSurfer.pdf,2013.09.29.b,2013.09.29.b,5599,, +2013.09.29.a,29-Sep-13,2013,Provoked,ISRAEL,Southern District,Ashdod,Diving,Erez Lev,M,27,Hand bitten PROVOKED INCIDENT,N,11h30,,"Times of Israel, 9/30/2013",2013.09.29.a-Lev.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.29.a-Lev.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.29.a-Lev.pdf,2013.09.29.a,2013.09.29.a,5598,, +2013.09.25, 25-Sep-2013,2013,Unprovoked,USA,Florida,"Panama City, Bay County",Standing,Ethan Hand,M,7,Laceration and puncture wounds to ankle,N,10h30,,"C. Dobridnia, WMBB.com",2013.09.25-EthanHand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.25-EthanHand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.25-EthanHand.pdf,2013.09.25,2013.09.25,5597,, +2013.09.21.b, 21-Sep-2013,2013,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",Swimming,female,M,45,Lacerations to right foot,N,13h00,,"M. I. Johnson, Daytona Beach News Journal",2013.09.21.b-OrmondBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.21.b-OrmondBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.21.b-OrmondBeach.pdf,2013.09.21.b,2013.09.21.b,5596,, +2013.09.21.a, 21-Sep-2013,2013,Unprovoked,USA,Florida,"Carlin Park, Jupiter, Palm Beach County",Surfing,Brandon Dugan,M,,Lacerations to left foream,N,Morning,,News Channel 5,2013.09.21.a-Dugan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.21.a-Dugan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.21.a-Dugan.pdf,2013.09.21.a,2013.09.21.a,5595,, +2013.09.14, 14-Sep-2013,2013,Unprovoked,USA,Florida,"Casino Beach, Pensacola, Escambia County",Swimming,Trevor Kalck,M,21,Lacerations to right foot,N,15h30,Bull shark,"E. Ritter, GSAF",2013.09.14-Kalck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.14-Kalck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.14-Kalck.pdf,2013.09.14,2013.09.14,5594,, +2013.09.12, 12-Sep-2013,2013,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Storm Portman,F,13,Heel bitten,N,13h00,3' shark,"Orlando Sentinel, 9/7/2013",2013.09.12-Portman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.12-Portman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.12-Portman.pdf,2013.09.12,2013.09.12,5593,, +2013.09.08,08-Sep-13,2013,Unprovoked,USA,South Carolina,"St. Helena Island, Beaufort County",,female,F,,No details,UNKNOWN,,,"WIS-TV, 9/9/2013",2013.09.08-St-Helena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.08-St-Helena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.08-St-Helena.pdf,2013.09.08,2013.09.08,5592,, +2013.09.07.b, 07-Sep-2013,2013,Provoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,John Graham,M,43,Foot bitten when he accidentally jumped onto the shark PROVOKED INCIDENT,N,16h00,3' shark,"Orlando Sentinel, 9/7/2013",2013.09.07.b-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.07.b-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.07.b-Graham.pdf,2013.09.07.b,2013.09.07.b,5591,, +2013.09.07.a, 07-Sep-2013,2013,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Standing,Marco Edmundo Cardiel,M,25,"Minor injury, shin bitten",N,16h00,3' shark,"Orlando Sentinel, 9/7/2013",2013.09.07.a-Cardiel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.07.a-Cardiel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.07.a-Cardiel.pdf,2013.09.07.a,2013.09.07.a,5590,, +2013.09.02, 02-Sep-2013,2013,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",Swimming,Raushod Floyd,M,17,Shoulder bitten,N,13h00,,"WFTV, 9/2/2013",2013.09.02-Floyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.02-Floyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.02-Floyd.pdf,2013.09.02,2013.09.02,5589,, +2013.09.01.c, 01-Sep-2013,2013,Provoked,USA,Florida,Key West Aquarium,,female,M,3,Arm bitten by captive shark PROVOKED INCIDENT,N,,Nurse shark,"KeyNews, 8/4/2013",2013.09.01-KeyWestAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.01-KeyWestAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.01-KeyWestAquarium.pdf,2013.09.01.c,2013.09.01.c,5588,, +2013.09.01.b, 01-Sep-2013,2013,Unprovoked,BAHAMAS,,,,boy,M,,Leg injured,N,,,"WFTV, 9/2/2013",2013.09.01.b-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.01.b-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.01.b-Bahamas.pdf,2013.09.01.b,2013.09.01.b,5587,, +2013.09.01.a, 01-Sep-2013,2013,Unprovoked,USA,Florida,"St Augustine Beach, St Johns County",Casting a net,Connor Baker,M,9,Lacerations to left calf,N,12h00,4' shark,"WTEV 47, 9/1/2013",2013.09.01.a-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.01.a-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.01.a-Baker.pdf,2013.09.01.a,2013.09.01.a,5586,, +2013.08.31.b,31-Aug-13,2013,Unprovoked,BAHAMAS,,Freetown Beach,Spearfishing,Bryan Collins,M,,Lower left leg bitten,N,,Blacktip shark,,2013.08.31.b-Collins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.31.b-Collins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.31.b-Collins.pdf,2013.08.31.b,2013.08.31.b,5585,, +2013.08.31.a,31-Aug-13,2013,Unprovoked,USA,California,"Butterfly Beach, Montecito, Santa Barbara County",Swimming,Nick Kennedy,M,,Foot bitten,N,23h00,Salmon shark,R. Collier,2013.08.31.a-Kennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.31.a-Kennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.31.a-Kennedy.pdf,2013.08.31.a,2013.08.31.a,5584,, +2013.08.29,29-Aug-13,2013,Invalid,USA,California,Catalina Channel,Marathon swimming,Charlotte Brynn,F,47,"Puncture wound to torso. Reported as a bite by a leopard shark, the tooth fragment appears to be that of a bony fish",N,,No shark involvement,"Stowe Reporter, 9/5/2013",2013.08.29-Brynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.29-Brynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.29-Brynn.pdf,2013.08.29,2013.08.29,5583,, +2013.08.26,26-Aug-13,2013,Provoked,FRANCE,Bay of Biscay,,Longline fishing for sharks,Ramon Arufe,M,50,Laceration to right arm from hooked shark PROVOKED INCIDENT,N,20h30,"Mako shark, 5'","Diariovasco.com, 8/28/2013",2013.08.26-Arufe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.26-Arufe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.26-Arufe.pdf,2013.08.26,2013.08.26,5582,, +2013.08.25.b, 25-Aug-2013,2013,Unprovoked,USA,Florida,"Winterhaven Park, Ponce Inlet, Volusia County",Boogie boarding,Riley Breihan,F,11,Minor injury to left lower leg & heel,N,17h00,,"Daytona Beach News-Journal, 8/28/2013",2013.08.25-OttoLee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.25-OttoLee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.25-OttoLee.pdf,2013.08.25.b,2013.08.25.b,5581,, +2013.08.25, 25-Aug-2013,2013,Unprovoked,AUSTRALIA,New South Wales,Smiths,Wrangling a shark,Otto Lee,M,,Lacerations to left forearm,N,15h00,,"Great Lakes Advocate, 8/28/2013",2013.08.25-Breihan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.25-Breihan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.25-Breihan.pdf,2013.08.25,2013.08.25,5580,, +2013.08.18, 18-Aug-2013,2013,Unprovoked,USA,Hawaii,Pohoiki ,Surfing,Jimmy Napeahi,M,16,Lacerations to buttocks & thigh,N,13h00,,"T. Mori, KHON2, 8/18/2013",2013.08.18-Napeahi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.18-Napeahi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.18-Napeahi.pdf,2013.08.18,2013.08.18,5579,, +2013.08.17,17-Aug-13,2013,Unprovoked,USA,California,"Pillar Point, Half-Moon Bay, San Mateo County",Surfing,Wendi Zuccaro,F,,"No injury, shark bumped surfboard",N,12h40,White shark,R. Collier,2013.08.17-Zaccaro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.17-Zaccaro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.17-Zaccaro.pdf,2013.08.17,2013.08.17,5578,, +2013.08.14, 14-Aug-2013,2013,Unprovoked,USA,Hawaii,"Makenat, Maui",Snorkeling,Jana Lutteropp,F,20,FATAL,Y,16h30,Tiger shark?,"KHON2, 8/15/2013",2013.08.14-Lutteropp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.14-Lutteropp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.14-Lutteropp.pdf,2013.08.14,2013.08.14,5577,, +2013.08.13, 13-Aug-2013,2013,Unprovoked,USA,Hawaii,"Ka'a Point, Maui",Kiteboarding,Morgan Flannery,F,19,No injury & not on board. Board adrift when bitten by shark,N,13h55,,"Maui News, 8/14/2013",2013.08.13-Flannery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.13-Flannery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.13-Flannery.pdf,2013.08.13,2013.08.13,5576,, +2013.08.11,11-Aug-13,2013,Unprovoked,USA,South Carolina,Folly Beach,Surfing,Tyson Royston,M,10,"No injury, shark became entangled in his surfboard leash",N,17h30,"Bull shark, 8'","Post and Courier, 8/11/2013",2013.08.11-Royston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.11-Royston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.11-Royston.pdf,2013.08.11,2013.08.11,5575,, +2013.08.08.R,Reported 08-Aug-2013,2013,Unprovoked,SOUTH AFRICA,,,Attempting to free the shark,Tyler,M,,"Unknown, but survived",N,,Blacktip shark,"WebProNews/Science, 8/8/2013",2013.08.08-Tyler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.08-Tyler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.08-Tyler.pdf,2013.08.08.R,2013.08.08.R,5574,, +2013.08.05, 05-Aug-2013,2013,Unprovoked,USA,Florida,"Sanibel Island, Lee County",Fishing,Christian Mercurio,M,17,Minor injury to foot & shin,N,15h00,"Bull shark, 6' to 8'","NBC2 News, 8/5/2013",2013.08.05-Mercurio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.05-Mercurio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.05-Mercurio.pdf,2013.08.05,2013.08.05,5573,, +2013.07.31, 31-Jul-2013,2013,Unprovoked,USA,Hawaii,"Ulua Beach, Maui",Snorkeling,Evonne Cashman,F,56,"Lacerations to hand, face and torso",N,08h45,,"Maui Now, 7/31/2013",2013.07.31-Cashmani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.31-Cashmani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.31-Cashmani.pdf,2013.07.31,2013.07.31,5572,, +2013.07.30, 30-Jul-2013,2013,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Swimming,Ty Bretz,M,32,Foot bitten,N,,,"A. Brenneka, Shark Attack Survivors; C. Creswell, GSAF",2013.07.30-Bretz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.30-Bretz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.30-Bretz.pdf,2013.07.30,2013.07.30,5571,, +2013.07.29.c,28-Jul-13,2013,Unprovoked,BAHAMAS,Abaco Islands,Scotland Cay,Spearfishing,Erik Norrie,M,40,Leg bitten,N,16h05,6' shark,"CBS Miami, 8/1/2013",2013.07.29.c-Norrie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.29.c-Norrie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.29.c-Norrie.pdf,2013.07.29.c,2013.07.29.c,5570,, +2013.07.29.b, 29-Jul-2013,2013,Unprovoked,MEXICO,Quintana Roo,,Wading,Bonnie Davis,F,,Hip bitten,N,11h00,,"A. Brenneka, Shark Attack Survivors",2013.07.29.b-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.29.b-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.29.b-Davis.pdf,2013.07.29.b,2013.07.29.b,5569,, +2013.07.29.a, 29-Jul-2013,2013,Unprovoked,USA,Hawaii,"White Plains Beach, Oahu",Surfing,Kiowa Gatewood,M,18,Lower leg bitten,N,14h10,"Tiger shark, 8' to 10' ","Hawaii News Now, 7/29/2013",2013.07.29.a-Gatewood,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.29.a-Gatewood,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.29.a-Gatewood,2013.07.29.a,2013.07.29.a,5568,, +2013.07.28.b,28-Jul-13,2013,Unprovoked,BAHAMAS,Exuma Islands,Compass Cay,Cleaning fish,male,M,64,Bitten on left hand,N,16h45,Nurse shark,"Tribune 242, 7/28/2013",2013.07.28.b-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.28.b-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.28.b-Bahamas.pdf,2013.07.28.b,2013.07.28.b,5567,, +2013.07.28.a,28-Jul-13,2013,Unprovoked,BAHAMAS,Abaco Islands,Grand Cay,Diving,male,M,50,Bitten on rear lower extremities,N,11h15,,"News Channel 5, 7/28/2013",2013.07.28.a-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.28.a-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.28.a-Bahamas.pdf,2013.07.28.a,2013.07.28.a,5566,, +2013.07.22, 22-Jul-2013,2013,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Swimming,Bruna Silva Gobbi ,F,18,FATAL,Y,13h20,,"G! Pernambuco, 7/22/2013",2013.07.22-Gobbi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.22-Gobbi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.22-Gobbi.pdf,2013.07.22,2013.07.22,5565,, +2013.07.19,19-Jul-13,2013,Unprovoked,USA,Alabama,"Gulf Shores, Baldwin County",Walking in surf,Laura Havrylkoff,F,50,Lacerations and abrasions to foot and ankle,N,14h30,,"A. Brenneka, Shark Attack Survivors; L. Havrylkoff",2013.07.19-Havrylkoff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.19-Havrylkoff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.19-Havrylkoff.pdf,2013.07.19,2013.07.19,5564,, +2013.07.17.R,Reported 17-Jul-2013,2013,Unprovoked,USA,Florida,"Butler Beach, St Augustine, St. Johns County",Swimming ,male,M,teen,4 cuts to posterior calf,N,,,"Florida Today, 7/17/2013",2013.07.17-StAugustine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.17-StAugustine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.17-StAugustine.pdf,2013.07.17.R,2013.07.17.R,5563,, +2013.07.15,15-Jul-13,2013,Unprovoked,REUNION,Saint-Paul,Le cimeti�re marin,Swimming & snorkeling,Sarah Roperh,F,15,FATAL,Y,14h15,,"Clicanoo, 7/15/2013",2013.07.15-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.15-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.15-Reunion.pdf,2013.07.15,2013.07.15,5562,, +2013.07.14,14-Jul-13,2013,Unprovoked,DIEGO GARCIA,,,Swimming,Fernando Licay,M,33,FATAL,Y,,,"Sun Star, 7/18/2013",2013.07.14-Licay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.14-Licay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.14-Licay.pdf,2013.07.14,2013.07.14,5561,, +2013.07.11,11-Jul-13,2013,Unprovoked,USA,North Carolina,Holden Beach. Brunswick County,Wading,Barbara Corey,F,63,Right foot bitten,N,15h20,,"C. Creswell, GSAF, WWAY-TV, 7/12/2013",2013.07.11-Corey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.11-Corey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.11-Corey.pdf,2013.07.11,2013.07.11,5560,, +2013.07.09,07-Jul-13,2013,Invalid,SPAIN,Catalonia,"Sant Marti d�Empuries Beach, L�Escala",Swimming,Thierry Frennet,M,48,"Scrape to right forearm. Frennet says inflicted by a blue shark, but authorities question shark involvement",N,,Shark involvement not confirmed,"DH.be, 7/11/2013",2013.07.09-Frennet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.09-Frennet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.09-Frennet.pdf,2013.07.09,2013.07.09,5559,, +2013.07.02,02-Jul-13,2013,Unprovoked,AUSTRALIA,Victoria,"Flinders, Mornington Penisula",Body surfing,Jimmy McDonald-Jones,M,29,"No injury, holes in wetsuit ",N,,,"Herald Sun, 7/3/2013",2013.07.02-McDonald-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.02-McDonald-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.02-McDonald-Jones.pdf,2013.07.02,2013.07.02,5558,, +2013.06.30,30-Jun-13,2013,Unprovoked,TAIWAN,Taitung ,,Fishing,male,M,,Right thigh bitten,N,,,"China Post, 7/1/2013",2013.06.30-TaiwaneseFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.30-TaiwaneseFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.30-TaiwaneseFisherman.pdf,2013.06.30,2013.06.30,5557,, +2013.06.27,27-Jun-13,2013,Invalid,JAMAICA,Kingston Parish,Port Royal,,Kevin,M,20,Probable drowning with post-mortem bites,Y,,,Shark Attack Survivors,2013.06.27-Kevin-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.27-Kevin-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.27-Kevin-Jamaica.pdf,2013.06.27,2013.06.27,5556,, +2013.06.25.c,25-Jun-13,2013,Unprovoked,USA,California,"Pacific State , San Mateo County",Kayaking / Fishing,Micah Flanaburg,M,,"No injury, kayak scratched",N,15h30,White shark,R. Collier,2013.06.25.c-Flanaberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.25.c-Flanaberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.25.c-Flanaberg.pdf,2013.06.25.c,2013.06.25.c,5555,, +2013.06.25.b,25-Jun-13,2013,Unprovoked,USA,Florida,"Jacksonville, Duval County",Swimming,Colleen Malone,M,,Lacerations to left foot,N,,"Possibly a Bull shark, 3'","Action News, 7/25/2013",2013.06.25.b-Malone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.25.b-Malone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.25.b-Malone.pdf,2013.06.25.b,2013.06.25.b,5554,, +2013.06.25.a,25-Jun-13,2013,Unprovoked,USA,South Carolina,"Kiawah Island, Charleston County",Swimming,Joshua Watson,M,14,"Bitten on lower right leg, reported as a minor injury",N,12h45,4' to 5' shark,"C. Creswell, GSAF",2013.06.25.a-Watson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.25.a-Watson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.25.a-Watson.pdf,2013.06.25.a,2013.06.25.a,5553,, +2013.06.18,18-Jun-13,2013,Unprovoked,USA,Hawaii,Kona Coast State Park,Swimming,James Kerrigan,M,28,Right thigh & calf bitten,N,12h50,"Tiger shark, 14'","Hawaii News Now, 6/18/2013",2013.06.18-Kerrigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.18-Kerrigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.18-Kerrigan.pdf,2013.06.18,2013.06.18,5552,, +2013.06.17,17-Jun-13,2013,Unprovoked,USA,Texas,"Surfside Beach, Brazoria County",Swimming,Garrett Sebesta ,M,15,Left leg & hand bitten,N,14h45,,"ABC News, 6/18/2013",2013.06.17-Sebesta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.17-Sebesta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.17-Sebesta.pdf,2013.06.17,2013.06.17,5551,, +2013.06.16,16-Jun-13,2013,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Queensberry Bay,Surfing,Kevin Bracey,M,,Lacerations to knee,N,Morning,,"Dispatch Online, 6/19/2013",2013.06.16-Bracey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.16-Bracey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.16-Bracey.pdf,2013.06.16,2013.06.16,5550,, +2013.06.15,15-Jun-13,2013,Unprovoked,USA,Florida,"Atlantic Beach, Duval County",Surfing,female,F,,Lacerations to left ankle,N,,,"ActionNewsJax.com, 6/15/2013",2013.06.15-LaFlam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.15-LaFlam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.15-LaFlam.pdf,2013.06.15,2013.06.15,5549,, +2013.06.14.R,Reported 14-Jun-2013,2013,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Boogie Boarding,Allison Foreman,F,10,Puncture marks to hand,N,Afternoon,4' to 5' shark,"WMBF News, 6/14/2013",2013.06.14.R-Foreman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.14.R-Foreman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.14.R-Foreman.pdf,2013.06.14.R,2013.06.14.R,5548,, +2013.06.06.b,06-Jun-13,2013,Provoked,USA,Florida,"Off Snipe Point, Florida Keys, Monroe County",Fishing for sharks,Walter Kefauver,M,58,Left hand bitten as he attempted to remove hook from shark PROVOKED INCIDENT,N,,"Lemon shark, 4'","CBS Miami, 6/6/2013",2013.06.06.b-Kefauver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.06.b-Kefauver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.06.b-Kefauver.pdf,2013.06.06.b,2013.06.06.b,5547,, +2013.06.06.a,06-Jun-13,2013,Unprovoked,AUSTRALIA,New South Wales,Target Beach,Surfing,Steve Adamson,M,,"No injury, board damaged",N,16h00,6' shark,"A. Brenneka, Shark Attack Survivors",2013.06.06.a-Adamson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.06.a-Adamson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.06.a-Adamson.pdf,2013.06.06.a,2013.06.06.a,5546,, +2013.05.27.b,27-May-13,2013,Unprovoked,USA,Hawaii,"Halewia, Oahu",Diving,Tali Ena,M,32,Lacerations to right hand,N,,Galapagos shark,"A. Brenneka, Shark Attack Survivors",2013.05.27.b-Ena.pdf,pdf-directory/2013.05.27.b-Ena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.27.b-Ena.pdf,2013.05.27.b,2013.05.27.b,5545,, +2013.05.27.a,27-May-13,2013,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",Swimming,Kyle Kirkpatrick,M,11,Right foot bitten,N,Afternoon,,"Fox News, 5/28/2013",2013.05.27.a-Kirkpatrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.27.a-Kirkpatrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.27-Kirkpatrick.pdf,2013.05.27.a,2013.05.27.a,5544,, +2013.05.23.b,23-May-13,2013,Unprovoked,BRAZIL,Pernambuco,Coral Cove Beach,,Jos� Rog�rio da Silva,M,41,FATAL,Y,,,"JC Online, 6/6/2013",2013.05.25.b-daSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.25.b-daSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.25.b-daSilva.pdf,2013.05.23.b,2013.05.23.b,5543,, +2013.05.23.a,23-May-13,2013,Provoked,PALESTINIAN TERRITORIES,,Gaza,Fishing,Hamed Salah,M,30,Two fingers lost PROVOKED INCIDENT,N,Evening,,"Ma'an News Agency, 5/25/2013",2013.05.23-Salah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.23-Salah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.23-Salah.pdf,2013.05.23.a,2013.05.23.a,5542,, +2013.05.14,14-May-14,2013,Unprovoked,ECUADOR,Santa Cruz Island,"Playa Brava, Turtle Bay",Surfing,Intriago Diego,M,29,Superficial injury to left calf,N,12h00,Galapagos shark,"El Universo, 5/16/2013",2013.05.14-Diego.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.14-Diego.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.14-Diego.pdf,2013.05.14,2013.05.14,5541,, +2013.05.08.b,08-May-13,2013,Invalid,USA,California,"Tourmaline Surf Park, San Diego County",Surfing,Brandon Beaver,M,42,Shark bites were post-mortem,Y,,,"Sacramento Bee, 6/4/2013",2013.05.08.b-Beaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.08.b-Beaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.08.b-Beaver.pdf,2013.05.08.b,2013.05.08.b,5540,, +2013.05.08.a,08-May-13,2013,Unprovoked,REUNION,Saint-Gilles,Brisant Beach,Body boarding,St�phane Berhamel,M,36,FATAL,Y,08h20,Bull shark,A. Morel,2013.05.08.a-Berhamel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.08.a-Berhamel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.08.a-Berhamel.pdf,2013.05.08.a,2013.05.08.a,5539,, +2013.05.04.a,04-May-13,2013,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,Michael Adler,M,16,Lacerations to left foot and ankle,N,11h15,a small shark,"Local News 10, 5/5/2013",2013.05.04-Adler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.04-Adler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.04-Adler.pdf,2013.05.04.a,2013.05.04.a,5538,, +2013.04.28,28-Apr-13,2013,Provoked,AUSTRALIA,New South Wales,Emerald Beach,Fishing,Ted Collins,M,,Foot bitten by landed shark PROVOKED INCIDENT,N,,"Wobbegong, 2m","Coffs Coast Advocate, 5/4/2013",2013.04.28-Collins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.28-Collins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.28-Collins.pdf,2013.04.28,2013.04.28,5537,, +2013.04.24,24-Apr-13,2013,Unprovoked,MEXICO,Quintana Roo,"Seagull Beach, Cancun",Swimming,Isabella Carchia,F,34,Avulsion injury to lower right leg,N,13h40,Tiger shark,"I. Carchia; A. Brenneka, Shark Attack Survivors; Novedades 4/24/2013",2013.04.24-Carchia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.24-Carchia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.24-Carchia.pdf,2013.04.24,2013.04.24,5536,, +2013.04.21,21-Apr-13,2013,Unprovoked,AUSTRALIA,New South Wales,Crowdy Head,Fishing,Alan Saunders,M,51,Puncture wounds and lacerations to both legs,N,14h00,"Grey nurse shark, 3m","7NewsSydney, 4/22/2013",2013.04.21-Saunders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.21-Saunders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.21-Saunders.pdf,2013.04.21,2013.04.21,5535,, +2013.04.17,17-Apr-13,2013,Unprovoked,USA,Florida,"Near Boynton Beach, Palm Beach County",Playing in the surf,Colten Cicarelli,M,9,Lacerations to right foot,N,10h30,3' shark,"News Channel 5, 4/18/2013",2013.04.17-Cicarelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.17-Cicarelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.17-Cicarelli.pdf,2013.04.17,2013.04.17,5534,, +2013.04.14,14-Apr-13,2013,Unprovoked,SOUTH AFRICA,Western Cape Province,False Bay,Free diving,male,M,,"""Light scratch on hand/wrist area""",N,,Blue shark,"Cape Argus, 4/16/2013",2013.04.14-FalseBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.14-FalseBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.14-FalseBay.pdf,2013.04.14,2013.04.14,5533,, +2013.04.13.b,13-Apr-13,2013,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Joshua White,M,21,Minor lacerations to right hand,N,13h30,Bull shark,"News13, 4/14/2013",2013.04.13.b-JoshuaWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.13.b-JoshuaWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.13.b-JoshuaWhite.pdf,2013.04.13.b,2013.04.13.b,5532,, +2013.04.13.a,13-Apr-13,2013,Unprovoked,GUAM,,,,Nae Deok Kim,M,40,FATAL,Y,,,"Pacific News Center, 4/15/2013",2013.04.13.a-NaeDeokKim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.13.a-NaeDeokKim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.13.a-NaeDeokKim.pdf,2013.04.13.a,2013.04.13.a,5531,, +2013.04.10,10-Apr-13,2013,Unprovoked,FRENCH POLYNESIA,Tuamotus,"North Pass, Fakarava",Kite boarding,Nick Eitel,M,53,"Underside of board, fins and, harness were damaged, and left hip, thigh and buttock sustained puncture wounds",N,12h00,Possibly a blacktip reef shark,N. Eitel,2013.04.10-Eitel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.10-Eitel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.10-Eitel.pdf,2013.04.10,2013.04.10,5530,, +2013.04.04,04-Apr-13,2013,Unprovoked,USA,Florida,"Jensen Beach, Martin County ",Swimming,male,M,50,Lacerations to hand,N,,,"A. Brenneka, Shark Attack Survivors; TC Palm, 4/7/2013",2013.04.04-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.04-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.04-JensenBeach.pdf,2013.04.04,2013.04.04,5529,, +2013.04.02.R,Reported 02-Apr-2013,2013,Invalid,AUSTRALIA,Western Australia,Perth,,Martin Tann,M,24,Disappeared. No evidence that he was taken by a shark,Y,,shark involvement not confirmed,"WA Today, 4/4/2013",2013.04.02.R-Tann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.02.R-Tann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.02.R-Tann.pdf,2013.04.02.R,2013.04.02.R,5528,, +2013.04.02.a,02-Apr-13,2013,Unprovoked,USA,Hawaii,Ka�anapali Shores,Surfing,male,M,58,Right thigh bitten,N,08h30,4' shark,"Maui Now, 4/2/2013",2013.04.02.a-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.02.a-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.02.a-Hawaii.pdf,2013.04.02.a,2013.04.02.a,5527,, +2013.03.31,31-Mar-13,2013,Invalid,AUSTRALIA,New South Wales,Terrigal Beach,Surfing,Richard Tognetti,M,47,Never happened; it was a hoax,N,,No shark involvement,"Limelight Magazine, 4/1/2013",2013.03.31-Tognetti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.31-Tognetti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.31-Tognetti.pdf,2013.03.31,2013.03.31,5526,, +2013.03.29,29-Mar-13,2013,Unprovoked,SEYCHELLES,,Ile Platte,Free diving,Richard Parkinson,M,34,Lacerations to left foot,N,,,"E. Ritter, GSAF",2013.03.29-Parkinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.29-Parkinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.29-Parkinson.pdf,2013.03.29,2013.03.29,5525,, +2013.03.21.R,Reported 21-Mar-2013,2013,Unprovoked,BELIZE,,,Snorkeling,Monika Wanis,F,,Toe injured,N,,Nurse shark,"H. Fairchild, The Lantern, 3/21/2013",2013.03.21.R-Wanis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.21.R-Wanis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.21.R-Wanis.pdf,2013.03.21.R,2013.03.21.R,5524,, +2013.03.21,21-Mar-13,2013,Unprovoked,BAHAMAS,Eleuthera,Savannah Sound,Fly fishing,Kerry Anderson,M,50,Left foot bitten,N,,,"13wham.com, 3/22/2013",2013.03.21.a-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.21.a-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.21.a-Bahamas.pdf,2013.03.21,2013.03.21,5523,, +2013.03.16.b,16-Mar-13,2013,Provoked,SOUTH AFRICA,Western Cape Province,De Mond,Fishing - 'tag & release',Kobus Koeberg,M,30,Lacerations to left calf and heel from hooked shark PROVOKED INCIDENT,N,09h00,"Raggedtooth shark, 1.5 m",National Sea Rescue Institute,2013.03.16.b-Koeberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.16.b-Koeberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.16.b-Koeberg.pdf,2013.03.16.b,2013.03.16.b,5522,, +2013.03.16.a,16-Mar-13,2013,Unprovoked,SOUTH AFRICA,Western Cape Province,Hawston Beach,Surfing,Troy Henri,M,,"No injury, surfboard bitten",N,,,"Cape Times, 3/19/2013",2013.03.16.a-Henri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.16.a-Henri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.16.a-Henri.pdf,2013.03.16.a,2013.03.16.a,5521,, +2013.03.12,12-Mar-13,2013,Unprovoked,JAMAICA,St. Catherine,Pillikin Red Light area ,Spearfishing,George Facey,M,68,FATAL,Y,09h00,"Tiger shark, 4.8 m","R. Turner & A. Williams, Jamaica Star, 3/13/2013 ",2013.03.12-Facey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.12-Facey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.12-Facey.pdf,2013.03.12,2013.03.12,5520,, +2013.03.10.b,10-Mar-13,2013,Unprovoked,AUSTRALIA,Western Australia,African Reef off Geraldton,Spearfishing,Adam Thomason,M,28,Laceration to left hand,N,09h00,"Bronze whaler shark, 2.5m","The West Australian, 3/13/2013",2013.03.10.b-Thomason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.10.b-Thomason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.10.b-Thomason.pdf,2013.03.10.b,2013.03.10.b,5519,, +2013.03.10.a,10-Mar-13,2013,Unprovoked,PHILIPPINES,Palawan,Off Likas Island,Swimming to shore with floatioon devices after boat engine conked out,Alvin Lovido & John Paul Mangaoang,M,28 & 26,Minor leg injuries,N,,"""small sharks""","E. Badilla, InterAksyon.com, 3/15/2013",2013.03.10.a-PhilippineMarines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.10.a-PhilippineMarines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.10.a-PhilippineMarines.pdf,2013.03.10.a,2013.03.10.a,5518,, +2013.03.03,03-Mar-13,2013,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port St. John's,Swimming,Fundile Nogumla,M,39,Injuries to arms & hands,N,,,"Daily Dispatch, 3/4/2013",2013.03.03-Nogumla.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.03-Nogumla.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.03-Nogumla.pdf,2013.03.03,2013.03.03,5517,, +2013.02.27,27-Feb-13,2013,Unprovoked,NEW ZEALAND,North Island,Muriwai,Swimming,Adam Strange,M,46,FATAL,Y,13h24,"White shark, 4m","New Zealand Herald, 2/27/2013",2013.02.27-Strange.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.27-Strange.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.27-Strange.pdf,2013.02.27,2013.02.27,5516,, +2013.02.21.b,21-Feb-13,2013,Unprovoked,USA,Hawaii,"Ka'anapali, Honokowai, Maui",Surfing,,,,Lacerations to right leg,N,18h00,reef shark?,Hawaiisharks.com,2013.02.21.b-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.21.b-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.21.b-Hawaii.pdf,2013.02.21.b,2013.02.21.b,5515,, +2013.02.21.a,21-Feb-13,2013,Unprovoked,USA,Hawaii,"Paia Bay, Maui",Surfing,Jacob Lanskey,M,,"No injury, shark bit rail of foam board",N,18h00,reef shark?,Hawaiisharks.com,2013.02.21.a-Lansky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.21.a-Lansky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.21.a-Lansky.pdf,2013.02.21.a,2013.02.21.a,5514,, +2013.02.10,10-Feb-13,2013,Unprovoked,USA,Florida,"""Stuart Rocks"", Martin County",Surfing,Cole Taschman,M,16,Lacerations to right hand,N,14h00,"Blacktip shark, 4' to 5'","Palm Beach Post, 2/12/2013",2013.02.10-Taschman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.10-Taschman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.10-Taschman.pdf,2013.02.10,2013.02.10,5513,, +2013.02.09,09-Feb-13,2013,Unprovoked,FRENCH POLYNESIA,Society Islands,"Tapu, a dive site on the outer reefs of Bora Bora",Scuba diving,Zohar Kritzer ,M,48,Lacerations to right arm & thigh,N,09h00 - 09h30,Lemon shark,"A. Brenneka, Shark Attack Survivors; Les Nouvelles Caledoniennes, 2/21/2013",2013.02.09-Kritzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.09-Kritzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.09-Kritzer.pdf,2013.02.09,2013.02.09,5512,, +2013.02.01,01-Feb-13,2013,Unprovoked,JAMAICA,Kingston Parish,Pedro Cays,,male,M,18,Knee bitten,N,,,"The Gleaner, 2/1/2013",2013.02.01-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.01-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.01-Jamaica.pdf,2013.02.01,2013.02.01,5511,, +2013.01.26,26-Jan-13,2013,Boat,AUSTRALIA,Victoria,Cape Nelson,Fishing,"Occupants: Andrew & Ben Donegan & Joel Ryan, ",M,,"No injury to occupants, shark bit propeller",N,,"White shark, 5m","7NewsMelbourne, 1/28/2013",2013.01.26-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.26-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.26-boat.pdf,2013.01.26,2013.01.26,5510,, +2013.01.25,25-Jan-13,2013,Unprovoked,AUSTRALIA,Queensland,Noosa,Surfing,Matthew Cassaigne,M,,Lacerations to neck,N,,,sharkattackfile.info,2013.01.25-Cassaigne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.25-Cassaigne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.25-Cassaigne.pdf,2013.01.25,2013.01.25,5509,, +2013.01.21.R,Reported 21-Jan-2013,2013,Invalid,AUSTRALIA,Queensland,Bullcock Beach,Dragging stranded shark into deeper water,Paul Marshallsea,M,62,"No injury, a 3 m blue shark merely snapped at the man.",N,,,"The Guardian, 1/21/2013",2013.01.21.R-Marshallsea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.21.R-Marshallsea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.21.R-Marshallsea.pdf,2013.01.21.R,2013.01.21.R,5508,, +2013.01.16,16-Jan-13,2013,Unprovoked,USA,Hawaii,Kiholo Bay,Surfing,Paul Santos,M,43,Left forearm bitten ,N,16h30,"Tiger shark, 15'","Hawaii 24/7, 1/16/2013",2013.01.16-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.16-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.16-Santos.pdf,2013.01.16,2013.01.16,5507,, +2013.01.13,13-Jan-13,2013,Unprovoked,NEW ZEALAND,Mercury Islands,Great Mercury Island,Spearfishing,Kim Bade,M,,Minor cut on finger,N,,"Bronze whaler shark, 3m","Bay of Plenty Times, 1/18/2013",2013.01.13-Bade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.13-Bade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.13-Bade.pdf,2013.01.13,2013.01.13,5506,, +2013.01.05,05-Jan-13,2013,Unprovoked,AUSTRALIA,Western Australia,Near Legendre Island,Spearfishing / Free diving,Jake Swaffer,M,26,Calf & shin bitten ,N,10h00,,"Perth Now, 1/7/2013",2013.01.05-Swaffer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.05-Swaffer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.05-Swaffer.pdf,2013.01.05,2013.01.05,5505,, +2012.12.31,31-Dec-12,2012,Unprovoked,USA,Florida,"Jensen Beach, Martin County ",Swimming,male,M,,Lower leg or ankle bitten,N,14h00,,"TC Palm, 12/31/2012",2012.12.31-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.31-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.31-JensenBeach.pdf,2012.12.31,2012.12.31,5504,, +2012.12.30,30-Dec-12,2012,Unprovoked,AUSTRALIA,New South Wales,Between Dee Why and Long Reef,Surfing,Danny Sheather,M,23,"No injury, chunk missing from surfboard",N,12h45,2.5 m shark,"The Daily Telegraph, 12/31/2012",2012.12.30-Sheather.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.30-Sheather.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.30-Sheather.pdf,2012.12.30,2012.12.30,5503,, +2012.12.28,28-Dec-12,2012,Unprovoked,AUSTRALIA,New South Wales,"Kylie's Beach, Diamond Head",Paddle boarding,Luke Allan,M,29,Lacerations to thigh and hand,N,10h45,"Bull shark, 2m ","Port Macqquarie News, 12/28/2012",2012.12.28-Luke-Allan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.28-Luke-Allan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.28-Luke-Allan.pdf,2012.12.28,2012.12.28,5502,, +2012.12.25,25-Dec-12,2012,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port St. John's,Swimming,Liya Sibili,M,20,FATAL,Y,,Tiger shark,"SAPA, 12/27/2012",2012.12.25-Sibili.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.25-Sibili.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.25-Sibili.pdf,2012.12.25,2012.12.25,5501,, +2012.12.19,19-Dec-12,2012,Unprovoked,AUSTRALIA,Western Australia,Trigg Beach,Surfing,Richard Wands,M,32,No injury,N,830,"Tiger shark, 6'","The West Ausralian, 12/20/2012",2012.12.19-Wands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.19-Wands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.19-Wands.pdf,2012.12.19,2012.12.19,5500,, +2012.12.05,05-Dec-12,2012,Unprovoked,USA,Hawaii,Kauai,Surfing,"""Lorrin""",M,60,Lacerations to left foot,N,13h20,10' shark,"Hawaii News Now, 11/5/2012",2012.12.05-Kauai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.05-Kauai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.05-Kauai.pdf,2012.12.05,2012.12.05,5499,, +2012.12.02,02-Dec-12,2012,Unprovoked,AUSTRALIA,New South Wales,Green Island,Spearfishing,male,M,31,Minor puncture wounds to knee,N,16h45,Sandtiger shark,"ABC News, 12/2/2012",2012.12.02-Green-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.02-Green-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.02-Green-Island.pdf,2012.12.02,2012.12.02,5498,, +2012.12.00,Dec-12,2012,Unprovoked,NEW ZEALAND,South Island,"Sunday Cove, Fiordland",Scuba diving,Jenny Oliver,F,25,"No injury, shark grabbed hood",N,,Seven-gill shark,"Stuff.co.nz, 1/18/2013",2012.12.00-Oliver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.00-Oliver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.00-Oliver.pdf,2012.12.00,2012.12.00,5497,, +2012.11.30,30-Nov-12,2012,Unprovoked,USA,Hawaii,"Kihei, Maui",Snorkeling,Thomas Floyd Kennedy ,M,61,Lacerations to thigh & lower left leg,N,09h40,"Tiger shark, 10'","KHON2, 11/30/2012",2012.11.30-Kennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.30-Kennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.30-Kennedy.pdf,2012.11.30,2012.11.30,5496,, +2012.11.27,27-Nov-12,2012,Invalid,AUSTRALIA,Queensland,Mooloolaba,,,M,20,"Injury to ankle caused by a stingray, not a shark",N,14h50,No shark involvement,"Fraser Coast Chronicle, 11/27/2012",2012.11.27-stingray_accident.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.27-stingray_accident.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.27-stingray_accident.pdf,2012.11.27,2012.11.27,5495,, +2012.11.22,22-Nov-12,2012,Unprovoked,MEXICO,Sinaloa,Nuevo Altata,Swimming,Fernando Cardenas Garcia,M,32,FATAL,Y,11h40,2.5 m shark,"El Universal, 11/22/2012",2012.11.22-Garcia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.22-Garcia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.22-Garcia.pdf,2012.11.22,2012.11.22,5494,, +2012.11.19,19-Nov-12,2012,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,Kai Rittgers,M,14,Minor lacerations to left foot & heel,N,17h30,2' to 3' shark,"Florida Today, 11/19/2012",2012.11.19-Rittgers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.19-Rittgers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.19-Rittgers.pdf,2012.11.19,2012.11.19,5493,, +2012.11.04.b,04-Nov-12,2012,Unprovoked,USA,Hawaii,"Makena Landing, Maui",Diving,Mark Riglos,M,30,Right lower leg and foot bitten,N,08h30,"Tiger shark, 15'","Hawaii News Now, 11/5/2012",2012.11.04.b-Riglos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.04.b-Riglos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.04.b-Riglos.pdf,2012.11.04.b,2012.11.04.b,5492,, +2012.11.04.a,04-Nov-12,2012,Unprovoked,USA,Hawaii,"Davidson's Surf Break, Kekaha, Kaua'i",Surfing,male,M,43,"No injury, surfboard bitten",N,08h10,"Tiger shark, 8'",Kaua'i Police Department,2012.11.04.a-Kekaha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.04.a-Kekaha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.04.a-Kekaha.pdf,2012.11.04.a,2012.11.04.a,5491,, +2012.10.30,30-Oct-12,2012,Unprovoked,USA,California,"Humboldt Bay, Eureka, Humboldt County",Surfing,Scott Stephens,M,25,Multiple lacerations to torso,N,12h00,White shark,"R. Collier; Redwood Times, 11/5/2012",2012.10.30-Stephens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.30-Stephens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.30-Stephens.pdf,2012.10.30,2012.10.30,5490,, +2012.10.27,27-Oct-12,2012,Unprovoked,USA,Hawaii,"Makena Landing, Maui",Swimming,Mariko Haugen ,F,51,"Puncture wounds to thigh, defense wounds to hand",N,15h56,"Tiger shark, 10' to 12' ","MauiNow.com, 10/28/2012",2012.10.27-Haugen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.27-Haugen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.27-Haugen.pdf,2012.10.27,2012.10.27,5489,, +2012.10.23,23-Oct-12,2012,Unprovoked,USA,California,"Surf Beach, Lompoc, Santa Barbara County",Surfing,Francisco Javier Solorio Jr,M,39,FATAL,Y,11h00,"White shark, 15' to 16' ",R. Collier,2012.10.23-Solorio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.23-Solorio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.23-Solorio.pdf,2012.10.23,2012.10.23,5488,, +2012.10.19,19-Oct-12,2012,Unprovoked,USA,Florida,"Seaport, Brevard County",,female,F,35,Left calf bitten,N,,,"Brevard Times, 10/19/2012",2012.10.19-BrevardCounty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.19-BrevardCounty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.19-BrevardCounty.pdf,2012.10.19,2012.10.19,5487,, +2012.10.18.b,18-Oct-12,2012,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,male,M,24,Minor bite to ankle,N,10h30,,"WESH.com, 10/18/2012",2012.10.18.b-PonceInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.18.b-PonceInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.18.b-PonceInlet.pdf,2012.10.18.b,2012.10.18.b,5486,, +2012.10.18.a,18-Oct-12,2012,Unprovoked,USA,Hawaii,"Kanaha Beach, Maui",Paddle boarding,David Peterson,M,55,"No injury, board bitten",N,07h30,6' to 8' shark,"Maui News, 10/18/2012",2012.10.18.a-Peterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.18.a-Peterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.18.a-Peterson.pdf,2012.10.18.a,2012.10.18.a,5485,, +2012.10.16,16-Oct-12,2012,Invalid,USA,Florida,Hobe Sound,,male,M,,Laceration to toe,N,17h00,Shark involvement not confirmed,"WPTV, 10/16/2012",2012.10.16-HobeSound.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.16-HobeSound.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.16-HobeSound.pdf,2012.10.16,2012.10.16,5484,, +2012.10.11.R,Reported 11-Oct-2012,2012,Unprovoked,NIGERIA,Delta,Oboro,Bathing,Mrs. Torugbene-Ere Aboh,F,38,Laceration to right leg,N,,,"The Osun Defender, 10/11/2012",2012.10.11.R-Nigeria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.11.R-Nigeria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.11.R-Nigeria.pdf,2012.10.11.R,2012.10.11.R,5483,, +2012.10.07,10-Oct-12,2012,Unprovoked,USA,California,"Davenport Landing, Santa Cruz County",Windsurfing,Gunner Proppe,M,42,"No ijnury to boardrider, shark struck board breaking the mast",N,18h30,,R. Collier,2012.10.07-Proppe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.07-Proppe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.07-Proppe.pdf,2012.10.07,2012.10.07,5482,, +2012.10.02,02-Oct-12,2012,Unprovoked,AUSTRALIA,Western Australia,"Mullaloo Beach, Perth",Bodyboarding,Andrew Gavriliu,M,11,"No injury, but swim fin bitten & torn",N,12h00,2m shark,"The West Australian, 10/4/2012",2012.10.02-Gavriliu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.02-Gavriliu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.02-Gavriliu.pdf,2012.10.02,2012.10.02,5481,, +2012.09.25,25-Sep-12,2012,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,Brandon Taylor,M,21,Lacerations to left forearm,N,16h30,5' shark,"The Examiner, 9/26/2012",2012.09.25-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.25-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.25-Taylor.pdf,2012.09.25,2012.09.25,5480,, +2012.09.24,24-Sep-12,2012,Unprovoked,USA,Florida,"Spanish House Beach, Brevard County",Surfing,Brandon Murray,M,22,Left foot bitten,N,Afternoon,4' shark,"TC Palm, 9/26/2012",2012.09.24-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.24-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.24-Murray.pdf,2012.09.24,2012.09.24,5479,, +2012.09.16,16-Sep-12,2012,Unprovoked,USA,Florida," Cocoa Beach, Brevard County",Surfing,male,M,52,Foot bitten,N,15h00,,"Florida Today, 9/16/2012",2012.09.16-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.16-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.16-CocoaBeach.pdf,2012.09.16,2012.09.16,5478,, +2012.09.10,10-Sep-12,2012,Unprovoked,TONGA,Vava'u,Eueiki Island,Swimming,Kylie Maguire,F,29,Injuries to thighs & buttocks,N,,Possibly a 3 m bull shark,"Northern Star, 9/13/2012",2012.09.10-Maguire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.10-Maguire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.10-Maguire.pdf,2012.09.10,2012.09.10,5477,, +2012.09.09,09-Sep-12,2012,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,teen,,19,Minor injury to elbow,N,14h20,,"Daytona Beach News Journal, 9/9/2012",2012.09.09-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.09-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.09-NSB.pdf,2012.09.09,2012.09.09,5476,, +2012.09.08.b,08-Sep-12,2012,Unprovoked,USA,Florida,"Lori Wilson Park, Cocoa Beach, Brevard County",Surfing,Matthew Fowler,M,25,Right foot bitten,N,12h00,,Shark Attack Survivors,2012.09.08.b-Fowler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.08.b-Fowler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.08.b-Fowler.pdf,2012.09.08.b,2012.09.08.b,5475,, +2012.09.08.a,08-Sep-12,2012,Unprovoked,USA,Florida,"South Beach, Miami-Dade County",Swimming,male,M,,Lacerations to right calf,N,Afternoon,,"Miami CBS Local, 9/8/2012",2012.09.08.a-SouthBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.08.a-SouthBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.08.a-SouthBeach.pdf,2012.09.08.a,2012.09.08.a,5474,, +2012.09.06.b,06-Sep-12,2012,Unprovoked,USA,Florida,"Neptune Beach, Duval County",Surfing,James Fyfe,M,30s,Right calf bitten,N,Just before noon,,"New4Jax, 9/7/2012",2012.09.06.b-Fyfe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.06.b-Fyfe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.06.b-Fyfe.pdf,2012.09.06.b,2012.09.06.b,5473,, +2012.09.06.a,06-Sep-12,2012,Unprovoked,USA,Florida,"St. Augustine Beach, St. John's County",Surfing,Andrew Birchall,M,37,Lacerations to foot,N,11h30,,"WFTV, 9/4/2012",2012.09.06.a-Birchall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.06.a-Birchall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.06.a-Birchall.pdf,2012.09.06.a,2012.09.06.a,5472,, +2012.09.04,04-Sep-12,2012,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,male,M,32,Puncture wounds to hand,N,07h56,,"WFTV, 9/4/2012",2012.09.04-MelbourneBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.04-MelbourneBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.04-MelbourneBeach.pdf,2012.09.04,2012.09.04,5471,, +2012.09.02.b,02-Sep-12,2012,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Boogie boarding,female,F,8,Puncture wounds to calf and hand,N,18h30,3.5' to 4' shark,"WYTV, 9/3/2012",2012.09.02.b-NSB-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.02.b-NSB-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.02.b-NSB-girl.pdf,2012.09.02.b,2012.09.02.b,5470,, +2012.09.02.b,02-Sep-12,2012,Provoked,USA,Hawaii,"Spreckelsville, Maui",Spearfishing,M. Malabon,,,Minor laceration to hand PROVOKED INCIDENT,N,12h00,"Tiger shark, 10' to 12' ",HawaiiNow.com,2012.09.02.c-Malabon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.02.c-Malabon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.02.c-Malabon.pdf,2012.09.02.b,2012.09.02.b,5469,, +2012.09.02.a,02-Sep-12,2012,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming or boogie boarding,female,F,56,Puncture wound to left ankle,N,16h30,3.5' to 4' shark,"WYTV, 9/3/2012",2012.09.02.a-NSB-Woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.02.a-NSB-Woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.02.a-NSB-Woman.pdf,2012.09.02.a,2012.09.02.a,5468,, +2012.08.31,31-Aug-12,2012,Provoked,SCOTLAND,Inner Hebrides,Off the Isle of Islay,Shark fishing,Hamish Currie,M,53,"No injury, shoe bitten by hooked and landed shark PROVOKED INCIDENT",N,,"Porbeagle shark, 7'","The Mirror, 8/31/2012",2012.08.31.R-Hamish.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.31.R-Hamish.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.31.R-Hamish.pdf,2012.08.31,2012.08.31,5467,, +2012.08.28,28-Aug-12,2012,Unprovoked,AUSTRALIA,Western Australia,Red Bluff near Quobba Station,Surfing,Jon Hines,M,34,Lacerations to torso and arm,N,15h30,,"T. Peake, GSAF",2012.08.28-Hines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.28-Hines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.28-Hines.pdf,2012.08.28,2012.08.28,5466,, +2012.08.26,26-Aug-12,2012,Unprovoked,BRAZIL,Pernambuco,"Coral Cove, Cabo de Santo Agostinho",Swimming,Tiago Jos� de Oliveira da Silva ,M,18,FATAL,Y,Afternoon,,"JC Online, 8/30/2012",2012.08.26-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.26-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.26-Brazil.pdf,2012.08.26,2012.08.26,5465,, +2012.08.15,15-Aug-12,2012,Unprovoked,USA,Alabama,"Gulf Shores, Baldwin County",Wading or swimming,"male, a tourist from Germany",M,31,Lacerations to leg,N,,,"Fox 10, 8/17/2012",2012.08.15-GulfShoresSwimmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.15-GulfShoresSwimmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.15-GulfShoresSwimmer.pdf,2012.08.15,2012.08.15,5464,, +2012.08.11,11-Aug-12,2012,Boat,AUSTRALIA,Western Australia,Ocean Reef,Fishing,dinghy,,,"No injury, shark grabbed outboard motor",N,12h00,4.5 m shark,"Perth Now, 8/11/2012",2012.08.11-FishingBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.11-FishingBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.11-FishingBoat.pdf,2012.08.11,2012.08.11,5463,, +2012.08.09,08-Aug-12,2012,Unprovoked,USA,Florida,Key Largo,Free diving ,"David Lowe, Sr.",M,56,Lacerations to little finger of left hand,N,1600,"Lemon shark, 4' to 5' ",D. Lowe,2012.08.09-Lowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.09-Lowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.09-Lowe.pdf,2012.08.09,2012.08.09,5462,, +2012.08.05,06-Aug-12,2012,Unprovoked,REUNION,Saint Leu,,Surfing,Fabien Bujon,M,39,Right hand and foot severed,N,17h17,Bull shark,"Linfo.re, 8/5/2012",2012.08.05-Bujon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.05-Bujon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.05-Bujon.pdf,2012.08.05,2012.08.05,5461,, +2012.08.04,04-Aug-12,2012,Unprovoked,FRENCH POLYNESIA,Tuamotus,Kaukura Atoll,Spearfishing,T�ophane Tauiratea,M,,Shoulder bitten,N,,"Lemon shark, 2.5m to 3m ","A. Brenneka, Shark Attack Survivors; Les Nouvelles cal�doniennes, 9/6/2012",2012.08.04-FrenchPolynesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.04-FrenchPolynesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.04-FrenchPolynesia.pdf,2012.08.04,2012.08.04,5460,, +2012.07.31.b,31-Jul-12,2012,Unprovoked,USA,California,"Topanga Beach, Los Angeles County",Surfing,Jared Tennison,M,17,"No injury, surfer knocked off board when shark struck surfboard",N,06h45,,R. Collier,2012.07.31.b-Tennison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.31.b-Tennison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.31.b-Tennison.pdf,2012.07.31.b,2012.07.31.b,5459,, +2012.07.31.a,31-Jul-12,2012,Unprovoked,AUSTRALIA,South Australia,Streaky Bay,Surfing,John Campion,M,48,Lacerations to torso & arm,N,14h40,White shark or bronze whaler,"T. Conlin, Adelaide Now, 7/31/2012",2012.07.31.a-Campion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.31.a-Campion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.31.a-Campion.pdf,2012.07.31.a,2012.07.31.a,5458,, +2012.07.30.b,30-Jul-12,2012,Unprovoked,USA,Hawaii,"Maha�ulepu Beach, Kauai",Surfing,Steve Stotts,M,44,Left foot bitten,N,16h35,,"T. LaVenture, The GardenIsland.com",2012.07.30.b-Stotts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.30.b-Stotts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.30.b-Stotts.pdf,2012.07.30.b,2012.07.30.b,5457,, +2012.07.30.a,30-Jul-12,2012,Unprovoked,USA,Massachusetts,"Ballston Beach, Truro, Cape Cod",Body surfing,Chris Myers,M,50,Lacerations to both legs below the knees,N,15h30,Thought to involve a white shark,"A. Costellano, ABC News, 7/31/202",2012.07.30.a-Myers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.30.a-Myers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.30.a-Myers.pdf,2012.07.30.a,2012.07.30.a,5456,, +2012.07.24,24-Jul-12,2012,Invalid,USA,North Carolina,"Ocean Isle, Brunswick County",,male,M,12,Shark involvement unconfirmed,N,11h45,Shark involvement not confirmed,"C. Creswell, GSAF",2012.07.24-OceanIsle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.24-OceanIsle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.24-OceanIsle.pdf,2012.07.24,2012.07.24,5455,, +2012.07.23,23-Jul-12,2012,Unprovoked,REUNION,Trois-Bassins,,Surfing,Alexandre Rassiga,M,22,FATAL,Y,16h30,,"Clicanoo.re, 7/23/20122",2012.07.23-Rassica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.23-Rassica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.23-Rassica.pdf,2012.07.23,2012.07.23,5454,, +2012.07.21,21-Jul-12,2012,Invalid,TRINIDAD & TOBAGO,Trinidad,"Off Radix Village, Mayoro County",Swimming,Shaka Galera,M,24,Probable drowning with post-mortem bite,Y,,,"Trinidad Express, 8/3/2012",2012.07.21-Galera-drowning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.21-Galera-drowning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.21-Galera-drowning.pdf,2012.07.21,2012.07.21,5453,, +2012.07.19,19-Jul-12,2012,Invalid,CANADA,British Colombia,"Tofino, Vancouver",Surfing,Kaitlin Dakers,F,23,"Lacerations to 2 fingers, but shark involvement unconfirmed",N,,"Salmon shark suspected, but unlikely","CBC News, 7/23/2012",2012.07.19-Dakers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.19-Dakers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.19-Dakers.pdf,2012.07.19,2012.07.19,5452,, +2012.07.14,14-Jul-12,2012,Unprovoked,AUSTRALIA,Western Australia,Off Wedge Island,Surfing,Ben Linden,M,24,FATAL,Y,09h05,"White shark, 5m","WA News, 7/15/2012",2012.07.14-Linden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.14-Linden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.14-Linden.pdf,2012.07.14,2012.07.14,5451,, +2012.07.08,08-Jul-12,2012,Unprovoked,USA,North Carolina,"North Topsail Beach, Onslow County",Swimming,Tracy Fasick,F,43,Lacerations to right ankle and calf,N,17h30,,"A. Brenneka, SharkAttackSurvivors.com; T.Fasick",2012.07.08-Fasick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.08-Fasick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.08-Fasick.pdf,2012.07.08,2012.07.08,5450,, +2012.07.07.c,07-Jul-12,2012,Unprovoked,BAHAMAS,Eleuthera,,Spearfishing,Sean Connelly,M,,Lacerations to right leg,N,,,S. Connelly,2012.07.07.c-Connelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.07.c-Connelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.07.c-Connelly.pdf,2012.07.07.c,2012.07.07.c,5449,, +2012.07.07.b,07-Jul-12,2012,Invalid,AUSTRALIA,Victoria,Ship's Graveyard off Point Lonsdale,Scuba diving,Karen Lee,F,42,Cause of death was drowning & preceded shark involvement,Y,15h00,,"Aleks Devic, Herald Sun, 7/11/2012",2012.07.07.b-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.07.b-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.07.b-Lee.pdf,2012.07.07.b,2012.07.07.b,5448,, +2012.07.07.a,07-Jul-12,2012,Unprovoked,USA,California,"Pleasure Point, Santa Cruz County",Kayaking,M.C.,M,52,"No injury, kayak bitten",N,08h30,14' to 18'shark,R. Collier,2012.07.07.a-SantaCruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.07.a-SantaCruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.07.a-SantaCruz.pdf,2012.07.07.a,2012.07.07.a,5447,, +2012.07.06,06-Jul-12,2012,Unprovoked,SOUTH AFRICA,Western Cape Province,"Sandstrand, Jongensfontein",Surfing,Jacque Mostert,M,29,Lacerattions to left thigh & knee,N,16h30,15' shark,"NSRI, 7/6/2012",2012.07.06-Mostert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.06-Mostert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.06-Mostert.pdf,2012.07.06,2012.07.06,5446,, +2012.06.28.R,Reported 28-Jun-2012,2012,Invalid,CROATIA,,Buccari Bay,Swimming,,,60,"Leg struck. Initally reported as a shark attack, but involved a swordfish",N,,No shark involvement,"Il Gazzettino, 6/28/2012",2012.06.28.R-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.28.R-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.28.R-Croatia.pdf,2012.06.28.R,2012.06.28.R,5445,, +2012.06.26.c,26-Jun-12,2012,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Swimming,Nickolaus Bieber ,M,6,Thigh bitten,N,19h00,possibly a bull shark,"WPTV.com, 6/26/2012",2012.06.26.c-Bieber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.26.c-Bieber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.26.c-Bieber.pdf,2012.06.26.c,2012.06.26.c,5444,, +2012.06.26.b,26-Jun-12,2012,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,26,Nip to left foot,N,15h00,,"H. Frederick, Headline Surfer, 6/26/2012",2012.06.26.b-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.26.b-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.26.b-NewSmyrnaBeach.pdf,2012.06.26.b,2012.06.26.b,5443,, +2012.06.26.a,26-Jun-12,2012,Unprovoked,USA,Hawaii,"Kahana Beach, Maui",Sitting in the water,Sage St. Clair,F,16,Laceration to left calf,N,09h45,a small reef shark,"Hawaii News Now, 6/26/2012",2012.06.26.a-StClair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.26.a-StClair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.26.a-StClair.pdf,2012.06.26.a,2012.06.26.a,5442,, +2012.06.22.b,22-Jun-12,2012,Unprovoked,AUSTRALIA,Tasmania,South Cape Bay,Surfing,James Barthy,M,,"Knocked off board, shark bit nose off surfboard",N,,,J. Barthy,2012.06.22.b-Barthy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.22.b-Barthy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.22.b-Barthy.pdf,2012.06.22.b,2012.06.22.b,5441,, +2012.06.22.a,22-Jun-12,2012,Unprovoked,USA,Florida,"Bathtub Reef Beach, Stuart, Martin County",Swimming,Patrick McInerney,M,12,Minor injury,N,16h30,,WPTV.com,2012.06.22.a-McInerney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.22.a-McInerney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.22.a-McInerney.pdf,2012.06.22.a,2012.06.22.a,5440,, +2012.06.20,20-Jun-12,2012,Unprovoked,AUSTRALIA,Western Australia,"Mullaloo Beach, Perth",Surf skiing ,Martin Kane,M,62,"No injury, ski severely damaged",N,07h15,3 m shark,"Perth Now, 6/20/2012",2012.06.20-Kane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.20-Kane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.20-Kane.pdf,2012.06.20,2012.06.20,5439,, +2012.06.19,19-Jun-12,2012,Invalid,USA,South Carolina,"Myrtle Beach, Horry County",Standing,Matthew Breen,M,16,"Laceration to foot. Injured by a stingray, not a shark",N,,No shark involvement,C. Creswell,2012.06.19-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.19-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.19-MyrtleBeach.pdf,2012.06.19,2012.06.19,5438,, +2012.06.18,18-Jun-12,2012,Unprovoked,USA,North Carolina,"Ocean Isle, Brunswick County",Wading,Brooklyn Daniel,F,6,Numerous puncture wounds to leg ,N,11h00,,C. Creswell,2012.06.18-Daniel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.18-Daniel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.18-Daniel.pdf,2012.06.18,2012.06.18,5437,, +2012.06.15,15-Jun-12,2012,Provoked,USA,Florida,"Summerland Key, Monroe County",Fishing,male,M,23,Superficial injury to calf by hooked shark PROVOKED ACCIDENT,N,14h20,Nurse shark,WSVN-TV,2012.06.15-SummerlandKey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.15-SummerlandKey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.15-SummerlandKey.pdf,2012.06.15,2012.06.15,5436,, +2012.06.14.d,14-Jun-12,2012,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Swimming,female,F,18,Foot & hand bitten,N,Afternoon,small blacktip shark?,C. Creswell,2012.06.14.d-female-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.d-female-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.d-female-MyrtleBeach.pdf,2012.06.14.d,2012.06.14.d,5435,, +2012.06.14.c,14-Jun-12,2012,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Swimming,male,M,,Minor injury,N,Afternoon,Shark involvement not confirmed,C. Creswell,2012.06.14.c-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.c-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.c-MyrtleBeach.pdf,2012.06.14.c,2012.06.14.c,5434,, +2012.06.14.b,14-Jun-12,2012,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Swimming,male,M,,Calf bitten,N,Afternoon,small blacktip shark?,C. Creswell,2012.06.14.b-male-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.b-male-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.b-male-MyrtleBeach.pdf,2012.06.14.b,2012.06.14.b,5433,, +2012.06.14.a,14-Jun-12,2012,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Swimming,Jordon Garosalo,M,16,Laceration to right foot,N,13h20,Blacktip shark ,C. Creswell,2012.06.14.a-Garosalo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.a-Garosalo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.a-Garosalo.pdf,2012.06.14.a,2012.06.14.a,5432,, +2012.06.12,12-Jun-12,2012,Unprovoked,AUSTRALIA,Victoria,Port Campbell,Surfing,Mike Higgins,M,42,Laceration to right foot,N,Morning,1.5 m shark,"Herald Sun, 6/13/2012",2012.06.12-Higgins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.12-Higgins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.12-Higgins.pdf,2012.06.12,2012.06.12,5431,, +2012.06.10,10-Jun-12,2012,Provoked,ITALY,Sardinia,Muravera,Attempting to rescue an injured & beached shark,Giorgio Zara,M,57,Lower left leg injured PROVOKED ACCIDENT,N,Morning,"Blue shark, 2.5m","D. Puddo, 6/11/2012",2012.06.10-Zara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.10-Zara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.10-Zara.pdf,2012.06.10,2012.06.10,5430,, +2012.06.03,03-Jun-12,2012,Unprovoked,AUSTRALIA,New South Wales,"Redhead Beach, Newcastle",Surf skiing ,Mark Ayre,M,30,"No injury, ski bitten",N,14h30,"White shark, 2 m","Newcastle Herald, 6/6/2012",2012.06.03-Ayre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.03-Ayre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.03-Ayre.pdf,2012.06.03,2012.06.03,5429,, +2012.06.02.b,02-Jun-12,2012,Unprovoked,USA,Florida,"Bethune Beach, Volusia County",Surfing,Angelina DelRosso,F,12,Laceration to thigh,N,,,"J. Horton, West Volusia Bulletin, 6/6/2012",2012.06.02.b-DelRosso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.02.b-DelRosso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.02.b-DelRosso.pdf,2012.06.02.b,2012.06.02.b,5428,, +2012.06.02.a,02-Jun-12,2012,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Boogie Boarding,Ryan Orellana-Maczynski ,M,25,Severe laceration to foot,N,19h45,,C. Creswell,2012.06.02.a-Maczynski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.02.a-Maczynski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.02.a-Maczynski.pdf,2012.06.02.a,2012.06.02.a,5427,, +2012.05.31,31-May-12,2012,Unprovoked,USA,North Carolina,"Avon, Hatteras Island, Outer Banks, Dare County",Wading,Megan Konkler,F,33,Foot bitten,N,13h30,"18"" to 24"" shark",C. Creswell,2012.05.31-Konkler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.31-Konkler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.31-Konkler.pdf,2012.05.31,2012.05.31,5426,, +2012.05.29,29-May-12,2012,Unprovoked,MEXICO,Guerrero," Boca de la Le�a, La Uni�n",Free diving / spearfishing,Benigno Medina Navarrete ,M,46,Left hand severed,N,09h00,"Bull shark, 3m","El Sol ee Morelia, 5/30/2012",2012.05.29-Navarrette.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.29-Navarrette.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.29-Navarrette.pdf,2012.05.29,2012.05.29,5425,, +2012.05.23,23-May-12,2012,Unprovoked,USA,Florida,"Jacksonville, Duval County",Surfing,Chad Refro,M,22,Lacerations to foot,N,15h00,4' to 5' shark,"First Coast News, 5/24/2012",2012.05.23-Renfro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.23-Renfro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.23-Renfro.pdf,2012.05.23,2012.05.23,5424,, +2012.05.20,20-May-12,2012,Unprovoked,USA,Hawaii,"Iroquiois Point, Oahu",Kayak Fishing,Jerry Gallardo,M,,"No injury, teethmarks in kayak",N,Morning,"Tiger shark, 8' to 9' ","Hawaii Now, 5/25/2012",2012.05.20-Gallardo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.20-Gallardo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.20-Gallardo.pdf,2012.05.20,2012.05.20,5423,, +2012.05.16,16-May-12,2012,Unprovoked,FIJI,,Matacucu Reef ,Spearfishing,Tevita Naborisi ,M,20,Lacerations to head,N,,,"Fiji Times, 5/17/2012",2012.05.16-Naborisi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.16-Naborisi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.16-Naborisi.pdf,2012.05.16,2012.05.16,5422,, +2012.05.12,12-May-12,2012,Unprovoked,USA,California,"Leffingwell Landing, Cambria, San Luis Obispo County",Kayaking / Fishing,Joey Nocchi,M,30,"No injury, kayaker fell in the water when kayak bitten by a shark",N,14h30,White shark,R. Collier,2012.05.12-Nocchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.12-Nocchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.12-Nocchi.pdf,2012.05.12,2012.05.12,5421,, +2012.05.09,09-May-12,2012,Unprovoked,USA,Florida,"Vero Beach, Indian River County",Swimming,Karin Ulrike Stei,F,47,Upper left thigh bitten,N,11h30,,News Channel 5,2012.05.09-Stei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.09-Stei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.09-Stei.pdf,2012.05.09,2012.05.09,5420,, +2012.05.06,06-May-12,2012,Unprovoked,USA,California,Off Catalina Island,Paddle boarding,Rose McKereghan,F,15,"No injury, shark bit paddleboard",N,07h20,White shark,"R. Collier, A. Brenneka",2012.05.06-McKereghan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.06-McKereghan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.06-McKereghan.pdf,2012.05.06,2012.05.06,5419,, +2012.04.19.b,19-Apr-12,2012,Unprovoked,USA,Florida,"Indialantic, Brevard County",Surfing,Justin Ellingham,M,28,Lacerations to hand,N,19h28,5' shark,"MyFoxOrlando, 4/19/2012",2012.04.19.b-Ellingham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.19.b-Ellingham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.19.b-Ellingham.pdf,2012.04.19.b,2012.04.19.b,5418,, +2012.04.19.a,19-Apr-12,2012,Unprovoked,SOUTH AFRICA,Western Cape Province,Caves near Kogel Bay,Body boarding,David Lilienfeld ,M,20,FATAL,Y,12h30,"White shark, 4 m to 5m ","News 24, 4/19/2012",2012.04.19.a-Lilienfeld.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.19.a-Lilienfeld.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.19.a-Lilienfeld.pdf,2012.04.19.a,2012.04.19.a,5417,, +2012.04.11,11-Apr-12,2012,Unprovoked,AUSTRALIA,South Australia,"Dolphin Bay, Innes National Park",Kayaking,Michael Demasi,M,27,Minor wound to his thigh when shark bit kayak,N,,"White shark, 6m ","Adelaide Now, 4/12/2012",2012.04.11-Demasi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.11-Demasi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.11-Demasi.pdf,2012.04.11,2012.04.11,5416,, +2012.04.03,03-Apr-12,2012,Unprovoked,USA,Hawaii,"Leftovers near Chun's Reef, Oahu",Surfing,Joshua Holley,M,28,Lacerations to left foot,N,12h38,"Tiger shark, 10' ","Hawaii News Now, 4/3/2012",2012.04.03-Holley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.03-Holley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.03-Holley.pdf,2012.04.03,2012.04.03,5415,, +2012.04.00,Apr-13,2012,Unprovoked,USA,Florida,"Sanibel Island, Lee County",,Dylan Hapworth,M,,Right shin bitten,N,,a small shark,"Morning Sentinel, 4/20/2012",2012.04.00-Hapworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.00-Hapworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.00-Hapworth.pdf,2012.04.00,2012.04.00,5414,, +2012.03.31,31-Mar-12,2012,Unprovoked,AUSTRALIA,Western Australia,Stratham Beach,Scuba diving,Peter Kurmann,M,33,FATAL,Y,09h30,"White shark, 4m ","Associated Press, 3/31/2012",2012.03.31-Kurmann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.31-Kurmann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.31-Kurmann.pdf,2012.03.31,2012.03.31,5413,, +2012.03.24,24-Mar-12,2012,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Joey Coppola,M,21,Minor lacerations to foot,N,14h00,,"H. Frederick, NSB News, 3/24/2012",2012.03.24-Coppola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.24-Coppola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.24-Coppola.pdf,2012.03.24,2012.03.24,5412,, +2012.03.22,22-Mar-12,2012,Boat,AUSTRALIA,Western Australia,Kalbarri,Crayfishing,crayfish boat. Occupants: Dave & Mitchell Duperouzel: ,,,"No injury to occupants. Shark bit propelle, rope & crayfish float",N,05h50,White shark,"Sydney Morning Herald, 3/22/2012",2012.03.22-Kalbarri-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.22-Kalbarri-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.22-Kalbarri-fishermen.pdf,2012.03.22,2012.03.22,5411,, +2012.03.20,20-Mar-12,2012,Unprovoked,AUSTRALIA,Queensland,Nobby's Beach,Surfing,Billy O'Leary,M,20,Lacerations to left calf,N,17h00,Possibly a bull shark,"Courier Mail, 3/20/2012",2012.03.20-OLeary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.20-OLeary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.20-OLeary.pdf,2012.03.20,2012.03.20,5410,, +2012.03.15,15-Mar-12,2012,Unprovoked,USA,Florida,"Jensen Beach, Martin County ",Surfing,Frank Wacha,M,61,Left forearm bitten,N,15h50,Possibly a 5' to 6' bull shark,"WPBF.com, 3/16/2012",2012.03.15-Wacha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.15-Wacha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.15-Wacha.pdf,2012.03.15,2012.03.15,5409,, +2012.03.14.b,14-Mar-12,2012,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Sydney Levy,F,15,Bitten on ankle,N,16h00,4' to 5' shark,"C. Graham, Daytona Beach News-Journal, 3/14/2012",2012.03.14.b-Levy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.14.b-Levy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.14.b-Levy.pdf,2012.03.14.b,2012.03.14.b,5408,, +2012.03.14.a,14-Mar-12,2012,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Nick Romano,M,17,Bitten on calf,N,16h05,4' to 5' shark,"C. Graham, Daytona Beach News-Journal, 3/14/2012",2012.03.14.a-Romano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.14.a-Romano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.14.a-Romano.pdf,2012.03.14.a,2012.03.14.a,5407,, +2012.03.06.b,06-Mar-12,2012,Unprovoked,NEW ZEALAND,North Island,"Opunake, Taranake",Surfing,Peter Garrett,M,,Lacerations to left calf,N,19h00,,"NZ Herald, 3/7/2012",2012.03.06.b-Garrett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.06.b-Garrett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.06.b-Garrett.pdf,2012.03.06.b,2012.03.06.b,5406,, +2012.03.06.a,06-Mar-12,2012,Provoked,AUSTRALIA,Victoria,"Shipwreck Cove, Melbourne Aquarium","Diving, feeding sharks",female,F,34,Superficial lacerations to right side of face PROVOKED ACCIDENT,N,11h30,"Tawny nurse shark, 40cm","The Age, 3/6/2012",2012.03.06.a-MelbourneAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.06.a-MelbourneAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.06.a-MelbourneAquarium.pdf,2012.03.06.a,2012.03.06.a,5405,, +2012.03.05,05-Mar-12,2012,Unprovoked,REUNION,Saint-Benoit,Port de la�Marine,Body boarding,Gerard Itema,M,31,"No injury, board bitten",N,14h30,,"Clicanoo, 3/5/2012",2012.03.05-Itema.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.05-Itema.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.05-Itema.pdf,2012.03.05,2012.03.05,5404,, +2012.03.04,04-Mar-12,2012,Unprovoked,USA,Florida,"Playalinda Beach, Brevard County",Kite Surfing,Justin Worral,M,19,Lacerations to left calf,N,13h00,4' shark,Brevard Times,2012.03.04-Worrall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.04-Worrall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.04-Worrall.pdf,2012.03.04,2012.03.04,5403,, +2012.03.03,03-Mar-12,2012,Invalid,SAUDI ARABIA,Tabuk Province,Off Duba,Attempting to Kite surf from Egypt to Saudi Arabia,Jan Lisewski,M,42,Harassed by sharks but not injured by them,N,,,"Polskie Radio, 3/5/2012",2012.03.03-Lisewski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.03-Lisewski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.03-Lisewski.pdf,2012.03.03,2012.03.03,5402,, +2012.03.01,01-Mar-12,2012,Provoked,CHILE,Antofagasta Province,Antofagasta,Fishing (illegally),Paye Le�n Salom�n,M,,Hand injured PROVOKED INCIDENT,N,,,"Soychile.cl, 3/1/2012",2012.03.01-Salomon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.01-Salomon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.01-Salomon.pdf,2012.03.01,2012.03.01,5401,, +2012.02.26,26-Feb-12,2012,Provoked,USA,Florida,"Palm Beach Inlet, Palm Beach County",Kite Surfing,Jason Lasser,M,,Laceration to right foot when he struck a shark PROVOKED INCIDENT,N,14h00,Spinner shark,"Aspen Daily News, 2/29/2012",2012.02.26-Lasser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.26-Lasser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.26-Lasser.pdf,2012.02.26,2012.02.26,5400,, +2012.02.25,25-Feb-12,2012,Unprovoked,AUSTRALIA,New South Wales,Broughton Island,Fishing,male,M,,Laceration to left foot,N,16h00,Grey nurse shark,"B. Smee, Newcastle Herald, 2/27/2012",2012.02.25-BroughtonIslandFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.25-BroughtonIslandFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.25-BroughtonIslandFisherman.pdf,2012.02.25,2012.02.25,5399,, +2012.02.20,20-Feb-12,2012,Boat,SOUTH AFRICA,Western Cape Province,Strandfontein,Fishing,8m inflatable boat. Occupants: Bhad Battle & Kevin Overmeyer,,,"No injury to occupants, boat damaged",N,,"White shark, 7m","Cape Argus, 2/21/2012",2012.02.20-StrandfonteinBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.20-StrandfonteinBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.20-StrandfonteinBoat.pdf,2012.02.20,2012.02.20,5398,, +2012.02.06,06-Feb-12,2012,Unprovoked,AUSTRALIA,Queensland,Wurtulla,Surfing,Nick Ferguson,M,29,"No injury, but fin lost from surfboard",N,12h00,,"Sunshine Coast Daily, 2/7/2012",2012.02.06-Ferguson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.06-Ferguson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.06-Ferguson.pdf,2012.02.06,2012.02.06,5397,, +2012.01.22.R,Reported 22-Jan-2012,2012,Unprovoked,BAHAMAS,,Cat Island,"Diving, photographing sharks",Russell Easton,M,,"No injury, shark grabbed his camera",N,,Tiger shark,"Evening Chronicle, 1/23/2012",2012.01.22.R-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.22.R-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.22.R-Bahamas.pdf,2012.01.22.R,2012.01.22.R,5396,, +2012.01.27,27-Jan-12,2012,Unprovoked,USA,Hawaii,Lanai,Snorkeling,J. Graden,,,"No injury, shark bit swim fin",N,11h05,6' to 8' shark,HawaiiNow.com,2012.01.27-NV-Graden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.27-NV-Graden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.27-NV-Graden.pdf,2012.01.27,2012.01.27,5395,, +2012.01.19,19-Jan-12,2012,Unprovoked,AUSTRALIA,Western Australia,Coral Bay,Snorkeling,David Pickering,M,26,Lacerations to right forearm,N,Afternoon,"Tiger shark, 3m","Sydney Morning Herald, 1/20/2012",2012.01.19-Pickering.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.19-Pickering.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.19-Pickering.pdf,2012.01.19,2012.01.19,5394,, +2012.01.18.b,18-Jan-12,2012,Provoked,TAIWAN,Taitung ,Taimali,Fishing,male,M,24,Bitten on left thigh PROVOKED ACCIDENT,N,,"Blue shark, 70-kg blue shark",Taiwan television,2012.01.18.b-Taiwan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.18.b-Taiwan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.18.b-Taiwan.pdf,2012.01.18.b,2012.01.18.b,5393,, +2012.01.18.a,18-Jan-12,2012,Unprovoked,AUSTRALIA,New South Wales,Redhead Beach,Surfing,Glen Folkard,M,44,Lacerations to thigh,N,16h45,"White shark, 2.7 m",V. Peddemors,2012.01.18.a-Folkard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.18.a-Folkard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.18.a-Folkard.pdf,2012.01.18.a,2012.01.18.a,5392,, +2012.01.15,15-Jan-12,2012,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Second Beach, Port St. Johns",Swimming,Lungisani Msungubana,M,25,FATAL,Y,15h40,Thought to involve a bull shark,"News 24, 1/15/2012; R. Bonorchis, Bloomberg News, 1/16/2012",2012.01.15-Msungubana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.15-Msungubana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.15-Msungubana.pdf,2012.01.15,2012.01.15,5391,, +2012.01.13,13-Jan-12,2012,Unprovoked,USA,Oregon,"Lincoln City, Lincoln County",Surfing,Steve Harnack,M,53,"No injury, surfboard damaged",N,,White shark,R. Collier,2012.01.13-Harnack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.13-Harnack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.13-Harnack.pdf,2012.01.13,2012.01.13,5390,, +2012.01.03,03-Jan-12,2012,Unprovoked,AUSTRALIA,New South Wales,North Avoca Beach,Surfing,Mike Wells,M,28,Right forearm and wrist injured,N,20h00,2 m shark,"Daily Telegraph, 1/3/2012",2012.01.03-Wells.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.03-Wells.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.03-Wells.pdf,2012.01.03,2012.01.03,5389,, +2012.01.02,02-Jan-12,2012,Unprovoked,AUSTRALIA,Queensland,Duranbah,Spearfishing,Hugo Silva,M,34,"No injury, punctures to swim fin",N,09h00,Allegedly a 4 m tiger shark,"A. Brenneka, goldcoast.com.au, 1/3/2012",2012.01.02-Hugo-Ricardo-Mendes-da-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.02-Hugo-Ricardo-Mendes-da-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.02-Hugo-Ricardo-Mendes-da-Silva.pdf,2012.01.02,2012.01.02,5388,, +2011.12.31,31-Dec-11,2011,Unprovoked,USA,Florida,"Jupiter, Palm Beach County",,male,M,,Hand injured,N,18h00,,"Palm Beach Post, 12/31/2011",2011.12.31-Jupiter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.31-Jupiter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.31-Jupiter.pdf,2011.12.31,2011.12.31,5387,, +2011.12.26.R,Reported 26-Dec-2011,2011,Invalid,ANTIGUA,St John's,Fort James Beach,Swimming,"Veron Edwards, Sr. ",M,,Bitten on right hand & wrist,N,Early morning,Shark involvement not confirmed,"D. Francis, Caribarena, 12/26/2011",2011.12.26.R-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.26.R-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.26.R-Edwards.pdf,2011.12.26.R,2011.12.26.R,5386,, +2011.12.25,25-Dec-11,2011,Unprovoked,ECUADOR,Santa Elena,Barand�a Beach,Surfing,F�lix J�nior Lainez Trejos,M,23,Lacerations to left thigh and calf,N,18h00,,"A. Brenneka, SharkAttackSurvivors.com",2011.12.25-Trejos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.25-Trejos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.25-Trejos.pdf,2011.12.25,2011.12.25,5385,, +2011.12.23,23-Dec-11,2011,Unprovoked,USA,Florida,New Smyrna Beach,Surfing,Will Futato,M,27,Laceration to ankle,N,12h30,,"Daytona Beach News-Journal, 12/24/2011",2011.12.23-Futato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.23-Futato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.23-Futato.pdf,2011.12.23,2011.12.23,5384,, +2011.12.21.b,21-Dec-11,2011,Provoked,USA,Hawaii,"Makahuena Point, Kauai",Canoeing,Keone Miyake,M,,"No injury, after kayak collided with the shark, it bit the rudder PROVOKED INCIDENT",N,,7' to 8' shark ,"A. Brenneka, SharkAttackSurvivors.com",2011.12.21.b-Miyake.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.21.b-Miyake.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.21.b-Miyake.pdf,2011.12.21.b,2011.12.21.b,5383,, +2011.12.21.a,21-Dec-11,2011,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Noordhoek, Port Elizabeth",Kayak Fishing,Werner Coetzee,M,35,No injury but kayak dented,N,Dawn,,"Port Elizabeth Herald, 12/22/2011",2011.12.21.a-Coetzee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.21.a-Coetzee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.21.a-Coetzee.pdf,2011.12.21.a,2011.12.21.a,5382,, +2011.12.11,11-Dec-11,2011,Unprovoked,AUSTRALIA,New South Wales,Angourie,Surfing,Steve King,M,51,5 puncture wounds to thigh,N,05h45,"White shark, 2.5m","Daily Examiner, 12/11/2011",2011.12.11-King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.11-King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.11-King.pdf,2011.12.11,2011.12.11,5381,, +2011.12.07.b,07-Dec-11,2011,Invalid,SOUTH AFRICA,KwaZulu-Natal,Between Sodwana & Cape Vidal,Surf skiing ,Richard Kohler,M,,"No injury, ski damaged",N,,Shark involvement not confirmed,"Durban Daily News, 12/8/2011",2011.12.07.b-Kohler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.07.b-Kohler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.07.b-Kohler.pdf,2011.12.07.b,2011.12.07.b,5380,, +2011.12.07.a,07-Dec-11,2011,Unprovoked,AUSTRALIA,New South Wales,Maroubra,Surfing,Ronald Mason,M,14,Minor injuries to left leg ,N,,Wobbegong shark,"The Australian, 12/12/2011",2011.12.07.a-Mason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.07.a-Mason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.07.a-Mason.pdf,2011.12.07.a,2011.12.07.a,5379,, +2011.12.06,06-Dec-11,2011,Unprovoked,USA,Oregon,Seaside Cove,Surfing,female,F,,Minor injury to calf ,N,09h00,,"Seaside Signal, 12/6/2011",2011.12.06-Seaside-Oregon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.06-Seaside-Oregon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.06-Seaside-Oregon.pdf,2011.12.06,2011.12.06,5378,, +2011.12.05,05-Dec-11,2011,Invalid,AUSTRALIA,Queensland,Bushy Ilet,Spearfishing,Dave Fordson,,,Killed by a shark or crocodile.,Y,,Shark involvement not confirmed,"H. Beck, Cairns.com, 12/7/2011",2011.12.05-Forsden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.05-Forsden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.05-Forsden.pdf,2011.12.05,2011.12.05,5377,, +2011.12.02,02-Dec-11,2011,Unprovoked,AUSTRALIA,New South Wales,Broken Head,Surfing,Milton Carter,M,63,Torn shoulder ligament as result of collision with shark,N,06h00,,"Northern Star, 12/3/2011",2011.12.02-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.02-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.02-Carter.pdf,2011.12.02,2011.12.02,5376,, +2011.11.29,29-Nov-11,2011,Unprovoked,INDONESIA,Bali,Tabanan,Surfing,Marc Andrews,M,18,Lacerations to right hand,N,13h30,,"Daily Telegraph, 11/30/2011",2011.11.29-Andrews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.29-Andrews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.29-Andrews.pdf,2011.11.29,2011.11.29,5375,, +2011.11.28,28-Nov-11,2011,Unprovoked,AUSTRALIA,Queensland,Peregian,Swimming,Eamon Kriz,M,10,Puncture marks to foot,N,Afternoon,Wobbegong shark?,"Sunshire Coast Daily, 12/1/2011 ",2011.11.28-Kriz-not-on-spreadsheet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.28-Kriz-not-on-spreadsheet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.28-Kriz-not-on-spreadsheet.pdf,2011.11.28,2011.11.28,5374,, +2011.11.22,22-Nov-11,2011,Unprovoked,USA,California,Pigeon Point,Kayaking,Harry Pali,M,,"No injury, kayak bitten",N,,"White shark, 15' to 16'",R. Collier,2011.11.22-Harry-Pali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.22-Harry-Pali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.22-Harry-Pali.pdf,2011.11.22,2011.11.22,5373,, +2011.11.20.R,Reported 20-Nov-2011,2011,Unprovoked,PAPUA NEW GUINEA,East New Britain,Pigeon Island,Scuba diving,male,M,,"No injury, shark collided with diver",N,,,"you Tube, Shark Attack at 57 metres",2011.11.20.R-PigeonIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.20.R-PigeonIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.20.R-PigeonIsland.pdf,2011.11.20.R,2011.11.20.R,5372,, +2011.11.12,12-Nov-11,2011,Unprovoked,BRAZIL,Pernambuco,"Punta Del Chifre Beach, Olinda",Surfing,Jer�nimo Pereira da Paz ,M,35,Legs bitten,N,,,"H. Nickel & A. Brenneka, SharkAttackSurvivors.com",2011.11.12-Periera-Pernambuco.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.12-Periera-Pernambuco.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.12-Periera-Pernambuco.pdf,2011.11.12,2011.11.12,5371,, +2011.11.11,11-Nov-11,2011,Unprovoked,REUNION,Bois-Blanc ,Sainte-Rose,Free diving / spearfishing,Jean-Paul Delaunay,M,42,Left foot bitten,N,Morning,,"H. Nickel & A. Brenneka, SharkAttackSurvivors.com",2011.11.11-Delaunay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.11-Delaunay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.11-Delaunay.pdf,2011.11.11,2011.11.11,5370,, +2011.10.29., 29-Oct-2011,2011,Unprovoked,USA,California,"Marina State Beach, Monterey County",Surfing,Eric Tarantino,M,27,"Lacerations to right wrist, foream & neck",N,,White shark,R. Collier,2011.10.29-Tarantino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.29-Tarantino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.29-Tarantino.pdf,2011.10.29.,2011.10.29.,5369,, +2011.10.28.R,Reported 28-Oct-2011,2011,Unprovoked,SCOTLAND,Moray,Spey Bay,Surfing,Andrew Rollo,M,26,"No injury, shark bumped leg & board. ",N,,8' to 10' shark,"Daily Record, 10/28/2011",2011.10.28.R-Rollo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.28.R-Rollo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.28.R-Rollo.pdf,2011.10.28.R,2011.10.28.R,5368,, +2011.10.28., 29-Oct-2011,2011,Provoked,SOUTH AFRICA,KwaZulu-Natal,"uShaka Aquarium, Durban",Diving,,,,Arm bitten by captive shark PROVOKED INCIDENT,N,,Raggedtooth shark,"Durban Radio, 10/29/2011",2011.10.28-uShaka-Aquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.28-uShaka-Aquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.28-uShaka-Aquarium.pdf,2011.10.28.,2011.10.28.,5367,, +2011.10.22,22-Oct-11,2011,Unprovoked,AUSTRALIA,Western Australia,Rottnest Island,Diving,George Wainwright,M,32,FATAL,Y,13h25,"White shark, 10'","Sky News, 10/22/2011",2011.10.22-Wainwright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.22-Wainwright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.22-Wainwright.pdf,2011.10.22,2011.10.22,5366,, +2011.10.20,20-Oct-11,2011,Unprovoked,USA,Oregon,"Newport, Lincoln County",Surfing,Bobby Gumm,M,41,"No injury, shark bit surfboard",N,,"White shark, 15'",R. Collier,2011.10.20-Gumm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.20-Gumm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.20-Gumm.pdf,2011.10.20,2011.10.20,5365,, +2011.10.19,19-Oct-11,2011,Unprovoked,AUSTRALIA,Victoria,Elwood Beach,Diving,Andrew Houston ,M,50,Small bruise to calf,N,16h00,"Port Jackson shark, 1m","The Age, 10/20/2011",2011.10.19-Houston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.19-Houston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.19-Houston.pdf,2011.10.19,2011.10.19,5364,, +2011.10.11,11-Oct-11,2011,Unprovoked,USA,Florida,Cape Canaveral,Surfing,Tim Riley,M,,Foot bitten,N,,3' shark,T. Riley,2011.10.11-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.11-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.11-Riley.pdf,2011.10.11,2011.10.11,5363,, +2011.10.10,10-Oct-11,2011,Unprovoked,USA,Oregon,Seaside,Surfing,Doug Niblack,M,,No injury,N,,10' to 12' shark,"R.Collier; KATU News, 10/11/2011",2011.10.10-Niblack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.10-Niblack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.10-Niblack.pdf,2011.10.10,2011.10.10,5362,, +2011.10.09,09-Oct-11,2011,Unprovoked,AUSTRALIA,Western Australia,Cottesloe Beach,Swimming,Bryn Martin,M,64,FATAL,Y,08h10,,"Perth Now, 10/11/2011",2011.10.09-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.09-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.09-Martin.pdf,2011.10.09,2011.10.09,5361,, +2011.10.05,05-Oct-11,2011,Boat,REUNION,,Cap La Houssaye,Canoeing,Jean-Pierre Castellani ,M,51,No injury to occupant,N,10h30,2 to 2.5 m shark,"Clicanoo, 10/5/2011",2011.10.05-Castellani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.05-Castellani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.05-Castellani.pdf,2011.10.05,2011.10.05,5360,, +2011.10.02,02-Oct-11,2011,Unprovoked,USA,Florida,"Santa Maria Island, Manatee County",Wade fishing,Javier Perez,M,,Minor injury to thigh,N,Afternoon,,"Herald Tribune, 10/2/2011",2011.10.02-Perez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.02-Perez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.02-Perez.pdf,2011.10.02,2011.10.02,5359,, +2011.10.01,01-Oct-11,2011,Unprovoked,USA,Alabama,"Gulf Shores, Baldwin County",,Victor Meade,M,29,Lacerations to right wrist and middle finger,N,,,WKRG,2011.10.01-Meade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.01-Meade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.01-Meade.pdf,2011.10.01,2011.10.01,5358,, +2011.09.30,30-Sep-11,2011,Invalid,USA,Puerto Rico,Hatillo Beach,Surfing,Rafael Col�n Casanova,M,27,Lacerations to lower right leg ,N,09h50,No shark involvement,"El Nuevodia, 9/30/2011",2011.09.30-Casanova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.30-Casanova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.30-Casanova.pdf,2011.09.30,2011.09.30,5357,, +2011.09.28.b,28-Sep-11,2011,Provoked,DOMINICAN REPUBLIC,Saman� Province,Playa Jackson ,Fishing,Leocadio Reyes Sarante,M,48,Severe injuries to left arm PROVOKED INCIDENT,N,,,"Hoy Digital, 9/28/2011",2011.09.28.b-Sarante.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.28.b-Sarante.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.28.b-Sarante.pdf,2011.09.28.b,2011.09.28.b,5356,, +2011.09.28.a,28-Sep-11,2011,Unprovoked,SOUTH AFRICA,Western Cape Province,Clovely Beach,Swimming,Michael Cohen,M,43,"Right leg severed, left leg lacerated",N,12h25,White shark,"News 24, 9/29/2011",2011.09.28.a-Cohen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.28.a-Cohen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.28.a-Cohen.pdf,2011.09.28.a,2011.09.28.a,5355,, +2011.09.24.b,24-Sep-11,2011,Unprovoked,USA,Florida,"Santa Maria Island, Manatee County",Spearfishing,C.J. Wickersham,M,21,Laceration to left thigh,N,15h00,"Bull shark, 6'","Herald Tribune, 9/24/2011",2011.09.24.b-Wickersham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.24.b-Wickersham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.24.b-Wickersham.pdf,2011.09.24.b,2011.09.24.b,5354,, +2011.09.24.a,24-Sep-11,2011,Unprovoked,USA,South Carolina,"North Myrtle Beach, Horry County",Jumping in the waves,"Isaac O'Hara, ",M,5,Laceration to left thigh,N,10h00,,"Sun News, 9/26/2011",2011.09.24.a-O'Hara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.24.a-O'Hara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.24.a-O'Hara.pdf,2011.09.24.a,2011.09.24.a,5353,, +2011.09.20,20-Sep-11,2011,Boat,USA,Hawaii,Kauai,Canoeing,Tom Bartlett,M,,"No injury, canoe bitten by shark",N,15h00,,"R. Mizutani, KHON2, 9/23/2011",2011.09.20-Bartlett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.20-Bartlett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.20-Bartlett.pdf,2011.09.20,2011.09.20,5352,, +2011.09.19,19-Sep-11,2011,Unprovoked,REUNION,Saint-Gilles,Boucan-Canot,Body boarding,Mathieu Schiller ,M,38,FATAL,Y,15h30,,zinfos974,2011.09.19-Schiller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.19-Schiller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.19-Schiller.pdf,2011.09.19,2011.09.19,5351,, +2011.09.17,17-Sep-11,2011,Unprovoked,KENYA,Coast Province,"Mama Ngina Beach, Mombasa ",Swimming,,M,17,FATAL,Y,,,"Mombasa411, 9/20/2011",2011.09.17-Kenya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.17-Kenya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.17-Kenya.pdf,2011.09.17,2011.09.17,5350,, +2011.09.16,16-Sep-11,2011,Unprovoked,USA,Florida,New Smyrna Beach,Surfing,Daniel Jorgensen,M,25,Lacerations to arm,N,11h00,4' to 6' shark,"Daytona Beach News-Journal, 9/16/2011",2011.09.16-Jorgensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.16-Jorgensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.16-Jorgensen.pdf,2011.09.16,2011.09.16,5349,, +2011.09.11.b,11-Sep-11,2011,Unprovoked,USA,California,"Samoa Beach, Humboldt County",Surfing,Benjie Rose,M,37,"No injury, board bitten",N,12h20,,R. Collier,2011.09.11.b-Benji-Rose.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.11.b-Benji-Rose.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.11.b-Benji-Rose.pdf,2011.09.11.b,2011.09.11.b,5348,, +2011.09.11.a,11-Sep-11,2011,Unprovoked,PAPUA NEW GUINEA,Central Province,"Hula, near Port Moresby",Kite Surfing,Thomas Viot,M,30,Lacerations to right leg,N,Afternoon,"Tiger shark, 2m","Sydney Morning Herald, 9/12/2011",2011.09.11.a-Viot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.11.a-Viot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.11.a-Viot.pdf,2011.09.11.a,2011.09.11.a,5347,, +2011.09.04.b,04-Sep-11,2011,Unprovoked,USA,Hawaii,"Nimitz State Beach, Oahu",Surfing,M. Filipe,,,"No injury, shark bit surfboard",N,13h00,,"KITV.com, 9/4/2011",2011.09.04.b-Felipe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.04.b-Felipe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.04.b-Felipe.pdf,2011.09.04.b,2011.09.04.b,5346,, +2011.09.04.a,04-Sep-11,2011,Unprovoked,AUSTRALIA,Western Australia, Bunker Bay,Body boarding,Kyle James Burden,M,21,FATAL,Y,13h26,White shark,"Sunshine Coast Daily, 9/5/2011",2011.09.04.a-Burden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.04.a-Burden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.04.a-Burden.pdf,2011.09.04.a,2011.09.04.a,5345,, +2011.09.02,02-Sep-11,2011,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Daniel True,M,19,Lacerations to ankle & foot,N,11h00,"6' shark, possibly a blactip or spinner shark","WESH.com, 9/2/2011",2011.09.02-True.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.02-True.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.02-True.pdf,2011.09.02,2011.09.02,5344,, +2011.08.31,31-Aug-11,2011,Unprovoked,USA,Florida,Crescent Beach St. Johns County,Surfing,Shane Lancaster,M,19,Lacerations to lower leg,N,11h00,6' shark,"News4JAX, 9/1/2011",2011.08.31-Lancaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.31-Lancaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.31-Lancaster.pdf,2011.08.31,2011.08.31,5343,, +2011.08.28.b,28-Aug-11,2011,Invalid,AUSTRALIA,Queensland,Fantome Island,Swimming,Rooster,M,48,FATAL,Y,19h30,Shark involvement prior to death not confirmed,"Courier Pigeon, 8/30/2011",2011.08.28-Roosteer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.28-Roosteer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.28-Roosteer.pdf,2011.08.28.b,2011.08.28.b,5342,, +2011.08.28.a,28-Aug-11,2011,Unprovoked,USA,Texas,"Grass Island, Aransas County",Wade Fishing,Mary Locklear,F,39,"Lacerations to anterior left shin, abrasion to posteior right leg",N,19h00,,M. Locklear,2011.08.28.a-Locklear.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.28.a-Locklear.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.28.a-Locklear.pdf,2011.08.28.a,2011.08.28.a,5341,, +2011.08.26,26-Aug-11,2011,Unprovoked,RUSSIA,Primorsky Krai,Slavyanka,"Standing, collecting sea stars",Pavel Nechaev ,M,,Superficial laceration to shoulder,N,Morning,,"Voice of Russia, 8/27/2011",2011.08.26-Nechaev.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.26-Nechaev.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.26-Nechaev.pdf,2011.08.26,2011.08.26,5340,, +2011.08.24.b,24-Aug-11,2011,Unprovoked,USA,North Carolina,"Buxton Beach, Dare County",Surfing,Kevin Dinneen,M,21,Lacerations to foot,N,,,Shark Times,2011.08.24.b-Dinneen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.24.b-Dinneen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.24.b-Dinneen.pdf,2011.08.24.b,2011.08.24.b,5339,, +2011.08.24.a,24-Aug-11,2011,Unprovoked,USA,North Carolina,Holden Beach. Brunswick County,,male,M,10,Heel bitten,N,15h30,,"WECT.com, 8/24/2011",2011.08.24.a-Holden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.24.a-Holden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.24.a-Holden.pdf,2011.08.24.a,2011.08.24.a,5338,, +2011.08.23,23-Aug-11,2011,Unprovoked,SOUTH AFRICA,Western Cape Province,"Lookout Beach, near the Keurbooms river mouth in Plettenberg Bay",Surfing,Tim van Heerden,M,49,FATAL,Y,09h11,"White shark, >6'","News24, 8/23/2011",2011.08.23-VanHeerden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.23-VanHeerden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.23-VanHeerden.pdf,2011.08.23,2011.08.23,5337,, +2011.08.18,18-Aug-11,2011,Unprovoked,RUSSIA,"Peter the Great Bay, Khasan, Primorsky Krai (Far East)",Zheltukhin Island,Swimming,Valery Sidorovich ,M,16,"Lacerations to hip, thigh and knee",N,,,"Ria Novosti, 8/18/2011",2011.08.18-Siderovich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.18-Siderovich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.18-Siderovich.pdf,2011.08.18,2011.08.18,5336,, +2011.08.17.c.,17-Aug-11,2011,Unprovoked,USA,North Carolina,"Kure Beach, New Hanover County",Wading,Trang Aronian,F,20s,Lacerations to foot,N,17h00,Possibly a 5' to 6' sandtiger shark,C. Creswell,2011.08.17.c-Aronian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.17.c-Aronian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.17.c-Aronian.pdf,2011.08.17.c.,2011.08.17.c.,5335,, +2011.08.17.b.,17-Aug-11,2011,Invalid,USA,North Carolina,"Wrightsville Beach, New Hanover County",,,M,12,Abrasions to left hand,N,16h00,Shark involvement not confirmed,"C. Creswell, GSAF; Wway, 8/17/2011",2011.08.17.b-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.17.b-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.17.b-child.pdf,2011.08.17.b.,2011.08.17.b.,5334,, +2011.08.17.a,17-Aug-11,2011,Unprovoked,RUSSIA,"Telyakovsky Bay, Khasan, Primorsky Krai (Far East)",Vityaz,Swimming,Denis Udovenko,M,25,Hands severed,N,Evening,4 m shark,"AsiaOne, 8/17/2011",2011.08.17.a-Udovenko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.17.a-Udovenko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.17.a-Udovenko.pdf,2011.08.17.a,2011.08.17.a,5333,, +2011.08.16.c,16-Aug-11,2011,Unprovoked,FRENCH POLYNESIA,Society Islands,"Teahupoo, Tahiti",Surfing,Adam 'Biff' D'Esposito,M,32,"No injury, board bitten",N,15h30,Grey reef shark ,Sharksurvivors.com,2011.08.16.c-D'Esposito.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.16.c-D'Esposito.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.16.c-D'Esposito.pdf,2011.08.16.c,2011.08.16.c,5332,, +2011.08.16.b,16-Aug--2011,2011,Unprovoked,USA,Puerto Rico, Vieques,Floating ,Lydia Strunk,M,27,Lacerations to lower right leg and foot,N,Night,,"El Nuevodia, 7/17/2011",2011.08.16.b-Strunk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.16.b-Strunk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.16.b-Strunk.pdf,2011.08.16.b,2011.08.16.b,5331,, +2011.08.16.a,16-Aug-11,2011,Unprovoked,SEYCHELLES,Praslin,Anse Lazio ,Swimming or Snorkeling,Ian Martin Redmond,M,30,FATAL,Y,16h30,"Bull shark, 6'","P. Cahalan, The Independent, 8/17/2011",2011.08.16.a-Redmond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.16.a-Redmond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.16.a-Redmond.pdf,2011.08.16.a,2011.08.16.a,5330,, +2011.08.15,15-Aug-11,2011,Invalid,USA,South Carolina,"Myrtle Beach, Horry County",Playing in the surf,Rudy Varney ,M,7,Puncture wounds to foot,N,,Shark involvement not confirmed,"C. Creswell; Carolina Live, 8/15/2011",2011.08.15-Varney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.15-Varney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.15-Varney.pdf,2011.08.15,2011.08.15,5329,, +2011.08.11,11-Aug--2011,2011,Unprovoked,USA,North Carolina,Beaufort Inlet,Swimming,Don White,M,54,Lower right leg bitten,N,14h00,,"Eyewitness News 9, 8/12/011",2011.08.11-DonnieWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.11-DonnieWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.11-DonnieWhite.pdf,2011.08.11,2011.08.11,5328,, +2011.08.01,01-Aug-11,2011,Unprovoked,SEYCHELLES,Praslin,Anse Lazio ,Diving,Nicolas Virolle ,M,36,FATAL,Y,15h30,,"Gulf News, 8/2/2011; Clicanoo, 8/4/2011",2011.08.01-Virolle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.01-Virolle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.01-Virolle.pdf,2011.08.01,2011.08.01,5327,, +2011.07.31,31-Jul-11,2011,Invalid,BRAZIL,Pernambuco,Praia do Pina,Swimming,Gabriel Alves dos Santos ,M,14,Cause of death may have been drowning; remains scavenged by sharks,Y,,Shark involvement prior to death not confirmed,surfguru.com.br ,2011.07.31-GabrielAlves-dos-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.31-GabrielAlves-dos-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.31-GabrielAlves-dos-Santos.pdf,2011.07.31,2011.07.31,5326,, +2011.07.30,30-Jul-11,2011,Sea Disaster,PHILIPPINES,,,Sea disaster,"Fishing vessel. Occupants Gerry Malabago, Mark Anthony Malabago & 2 others",M,43,The two Malabagos were bitten by sharks but survived. The other occupants of the boat were rescued.,N,,,"ABS-CBN News, 8/17/2011",2011.07.30-Malabago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.30-Malabago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.30-Malabago.pdf,2011.07.30,2011.07.30,5325,, +2011.07.25,25-Jul-11,2011,Unprovoked,USA,New Jersey,"Egg Harbor, Atlantic County",Wade Fishing,Eric Aubrey,M,,"No injury, shark bit boot",N,Night,,"NBC, 7/28/2011",2011.07.25-Aubrey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.25-Aubrey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.25-Aubrey.pdf,2011.07.25,2011.07.25,5324,, +2011.07.22,22-Jul-11,2011,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Cintza Beach, East London",Surfing,Denver Struwig,M,29,Upper left arm & right leg bitten,N,10h00,"White shark, 3m to 4m","Zigzag, 7/22/2011",2011.07.22-Struwig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.22-Struwig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.22-Struwig.pdf,2011.07.22,2011.07.22,5323,, +2011.07.19,19-Jul-11,2011,Unprovoked,USA,North Carolina,"Ocracoke Island, Hyde County",Boogie Boarding,Lucy Magnum,F,6,Lower right leg & foot bitten,N,17h30,,"C. Creswell, GSAF; WITN.com",2011.07.19-Mangum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.19-Mangum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.19-Mangum.pdf,2011.07.19,2011.07.19,5322,, +2011.07.15,15-Jul-11,2011,Unprovoked,REUNION,Saint-Gilles,Brisants. ,Kayaking or Wave skiing,male,M,,No injury,N,17h00,,"Le Post, 7/19/2011",2011.07.15-Reunion-kayaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.15-Reunion-kayaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.15-Reunion-kayaker.pdf,2011.07.15,2011.07.15,5321,, +2011.07.13.b,13-Jul-11,2011,Unprovoked,USA,Texas,"South Padre Island, Cameron County",Surf fishing,Eugenio Gonz�lez Paez,M,,Lacerations to left foot,N,20h30,,E.G. Paez,2011.07.13.b-Paez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.13.b-Paez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.13.b-Paez.pdf,2011.07.13.b,2011.07.13.b,5320,, +2011.07.13.a,13-Jul-11,2011,Unprovoked,BAHAMAS,Grand Bahama Island,Off Lucaya,Scuba diving,male,M,54,Injuries to arm,N,12h30,,"Royal Bahamas Police Force, 7/13/2011",2011.07.13-diver-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.13-diver-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.13-diver-Bahamas.pdf,2011.07.13.a,2011.07.13.a,5319,, +2011.07.07.b,07-Jul-11,2011,Unprovoked,USA,Texas,"Sunday Beach, Matagorda Island, Calhoun County",Swimming,Nicholas Vossler,M,12,Foot bitten,N,17h00,,"A. Acosta, Victoria Advocate, 7/9/2011",2011.07.07.b-Vossler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.07.b-Vossler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.07.b-Vossler.pdf,2011.07.07.b,2011.07.07.b,5318,, +2011.07.07.a,07-Jul-11,2011,Unprovoked,USA,Texas,"Mustang Island, Nueces County",Wade Fishing,Shawn Hamilton,M,14,Lacerations to right foot,N,,,"J. Martinez, Corpus Christi Caller Times, 7/19/2011",2011.07.07.a-Hamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.07.a-Hamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.07.a-Hamilton.pdf,2011.07.07.a,2011.07.07.a,5317,, +2011.07.06,06-Jul-11,2011,Unprovoked,REUNION,Saint-Gilles,Roches Noires,Surfing,Arnaud Dussel ,M,16,Minor injuries: scratches on nose & ankle. Board broken in two,N,14h50,,"V. Boyer, Le Journal de l��le de la R�union, 7/7/2011",2011.07.06-Arnaud.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.06-Arnaud.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.06-Arnaud.pdf,2011.07.06,2011.07.06,5316,, +2011.07.05,05-Jul-11,2011,Unprovoked,COLUMBIA,Sucre,"Libertad, San Onofre",Kayaking,Andr�s Tulio Amaya Vidal ,M,17,"Right arm bitten, defense wounds to left hand",N,10h30,,"El Universal, 7/6/2011",2011.07.05-Vidal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.05-Vidal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.05-Vidal.pdf,2011.07.05,2011.07.05,5315,, +2011.06.30,30-Jun-11,2011,Unprovoked,TURKS & CAICOS,Middle Caicos,Mudjin Harbor,Snorkeling,Tyler Cyronak ,M,28,Lacerations to left shoulder and back,N,13h30,,"T. Cyronak, R. Collier",2011.06.30-Cryonak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.30-Cryonak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.30-Cryonak.pdf,2011.06.30,2011.06.30,5314,, +2011.06.29,29-Jun-11,2011,Unprovoked,BRAZIL,Pernambuco,Praia do Pina,Surfing,Malisson Lima ,M,21,Lacerations to right thigh,N,10h00,,"USA Today, 6/29/2011",2011.06.29-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.29-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.29-Brazil.pdf,2011.06.29,2011.06.29,5313,, +2011.06.28,28-Jun-11,2011,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Aliwal Shoal,Scuba diving,Paolo Stanchi,M,22,Lacerations to left leg and hands,N,12h00,"Dusky shark, 3m","Surfline.com, 6/28/2011",2011.06.28-Stanchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.28-Stanchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.28-Stanchi.pdf,2011.06.28,2011.06.28,5312,, +2011.06.26,26-Jun-08,2011,Unprovoked,USA,North Carolina,"North Topsail Beach, Onslow County",Playing in the surf,Cassidy Cartwright ,F,10,Ankle bitten,N,Afternoon,"Bull shark, 6'",C. Creswell & G. Hubbell,2011.06.26-Cartwright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.26-Cartwright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.26-Cartwright.pdf,2011.06.26,2011.06.26,5311,, +2011.06.24,24-Jun-11,2011,Unprovoked,USA,California,"San Onofre State Beach, San Diego County",Surfing,Doug Green,M,,Shark leapt onto surfboard; surfer uninjured ,N,13h30,"White shark, 5' k",R. Collier,2011.06.24-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.24-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.24-Green.pdf,2011.06.24,2011.06.24,5310,, +2011.06.21,21-Jun-11,2011,Unprovoked,USA,Florida,"Perdido Key, Escambia County",Jet skiing,Tyler McConnell,M,20,Lacerations to foot and ankle,N,Afternoon,,"B. Raines, Press-Register, 6/21/2011",2011.06.21-McConnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.21-McConnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.21-McConnell.pdf,2011.06.21,2011.06.21,5309,, +2011.06.19.b,19-Jun-11,2011,Unprovoked,TURKS & CAICOS,Caicos Bank,French Cay,Spearfishing,Cefor Lewis,M,35,Right calf bitten,N,,5' shark,"fptci.com, 6/23/2011",2011.06.19.b-Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.19.b-Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.19.b-Lewis.pdf,2011.06.19.b,2011.06.19.b,5308,, +2011.06.19.a,19-Jun-11,2011,Unprovoked,COSTA RICA,Guanacaste,Playa Grande,Surfing,Kevin Moraga,M,15,FATAL,Y,12h15,,"D. Martinez, Tico Times, 6/21/2011",2011.06.19.a-Moraga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.19.a-Moraga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.19.a-Moraga.pdf,2011.06.19.a,2011.06.19.a,5307,, +2011.06.15,15-Jun-11,2011,Unprovoked,REUNION,Saint-Gilles-les-Bains,Boucan-Canot,Boogie Boarding,Eddie Aubert,M,31,FATAL,Y,17h30,,"Surfprevention.com, 6/16/2011",2011.06.15-Auber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.15-Auber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.15-Auber.pdf,2011.06.15,2011.06.15,5306,, +2011.06.14.R,Reported 14-Jun-2011,2011,Boat,UNITED KINGDOM,Cornwall,St. Ives,Fishing,16' Dreamcatcher. Occupant: Ian Bussus,,,"No injury, shark slammed into boat",N,,"Oceanic whitetip shark, 7'","G. Box-Turnbull, Daily Mirror, 6/14/2011",2011.06.14.R-St.Ives.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.14.R-St.Ives.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.14.R-St.Ives.pdf,2011.06.14.R,2011.06.14.R,5305,, +2011.06.12,12-Jun-11,2011,Unprovoked,USA,Florida,"Off Jupiter Inlet, Palm Beach County",Scuba diving,Daniel Webb,M,28,Lacerations to right calf,N,14h30,"Blacktip shark, 4'","WPTV, 6/13/2011",2011.06.12-Webb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.12-Webb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.12-Webb.pdf,2011.06.12,2011.06.12,5304,, +2011.06.06.R,Reported 06-Jun-2011,2011,Unprovoked,COLUMBIA,San Andr�s archipelago,Albuquerque Cay,Spearfishing,Jhon Jairo James,M,24,Injuries to right hand and forearm,N,,,"Il Isleno.com, 6/6/2011",2011.06.06.R-James.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.R-James.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.R-James.pdf,2011.06.06.R,2011.06.06.R,5303,, +2011.06.06.b,06-Jun-11,2011,Unprovoked,USA,California,"La Jolla, San Diego County",Spearfishing,Justin Schlaefli,M,28,"No injury, minor damage to wetsuit",N,,"Sevengill shark, 6' to 8'",R. Collier,2011.06.06.b-Schlaefli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.b-Schlaefli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.b-Schlaefli.pdf,2011.06.06.b,2011.06.06.b,5302,, +2011.06.06.a,06-Jun-11,2011,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,Alan McIntosh,M,19,Puncture wound to calf,N,12h00,3' to 4' shark,"L. Lelis, Orlando Sentinel, 6/7/2011",2011.06.06.a-McIntosh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.a-McIntosh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.a-McIntosh.pdf,2011.06.06.a,2011.06.06.a,5301,, +2011.06.01,01-Jun-11,2011,Unprovoked,MALAYSIA,Kedah,Palau Payar,Snorkeling,Canadian teen,F,,Laceration to dorsum of right foot,N,,Blacktip reef shark ,meglognature.blogspot.com,2011.06.01-Malaysia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.01-Malaysia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.01-Malaysia.pdf,2011.06.01,2011.06.01,5300,, +2011.05.30,30-May-11,2011,Unprovoked,USA,Texas,"Follett's Island, Brazoria County",Standing or boogie boardin,Kori Robertson,F,22,Lacerations & punctures to right thigh ,N,15h00,,"KHOU.com, 5/31/2011",2011.05.30-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.30-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.30-Robertson.pdf,2011.05.30,2011.05.30,5299,, +2011.05.29,29-May-11,2011,Unprovoked,SOUTH AFRICA,Western Cape Province,Robberg Beach,Surfing,Clinton Nelson,M,33,"No injury, board bumped by shark",N,,White shark,"The George Herald, 5/30/2011",2011.05.29-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.29-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.29-Nelson.pdf,2011.05.29,2011.05.29,5298,, +2011.05.25,25-May-11,2011,Unprovoked,USA,Hawaii,"Lyman Beach, Kailua-Kona",Surfing,Theresa Fernandez,F,,"No injury, board bitten",N,13h15,"Tiger shark, 10'","Star Advertiser, 5/26/2011",2011.05.25-Fernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.25-Fernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.25-Fernandez.pdf,2011.05.25,2011.05.25,5297,, +2011.05.22,22-May-11,2011,Unprovoked,USA,Hawaii,"Lyman Beach, Kailua-Kona",Paddle boarding,Alaina DeBina,F,,"No injury, board bitten",N,12h00,Tiger shark,"Hawaii News Now, 5/22/2011",2011.05.22-DeBina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.22-DeBina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.22-DeBina.pdf,2011.05.22,2011.05.22,5296,, +2011.05.21.a,21-May-11,2011,Unprovoked,NEW CALEDONIA,North Province,Kendec,Kite Boarding,Nathan ____,M,15,"Thigh bitten, FATAL",Y,11h00," Tiger shark, 2.8m","Radio New Zealand & Les Nouvelles Caledoniennes, 5/23/2011",2011.05.21.a-Nathan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.21.a-Nathan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.21.a-Nathan.pdf,2011.05.21.a,2011.05.21.a,5295,, +2011.05.21.b,21-May-11,2011,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Levan Point,Spearfishing,Warren Smart,M,28,"Thigh bitten, FATAL",Y,Midday,Zambesi shark,"News 24, 5/21/2011",2011.05.21.b-Smart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.21.b-Smart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.21.b-Smart.pdf,2011.05.21.b,2011.05.21.b,5294,, +2011.05.13.b,13-May-11,2011,Unprovoked,USA,Florida,"Ponte Vedra Beach, St Johns County",Body surfing,Bob Brown,M,86,Lacerations to left foot & ankle,N,15h30,,"News 4, 5/16/2011",2011.05.13.b-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.13.b-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.13.b-Brown.pdf,2011.05.13.b,2011.05.13.b,5293,, +2011.05.13.a,13-May-11,2011,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",Surfing,Adrian Bronson,M,37,Minor injury; puncture wounds to calf,N,06h30,,"L. Lelis, Orlando Sentinel, 5/13/2011",2011.05.13.a-Bronson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.13.a-Bronson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.13.a-Bronson.pdf,2011.05.13.a,2011.05.13.a,5292,, +2011.05.10,10-May-11,2011,Provoked,USA,Florida,Miami,Fishing ,Brian Storch,M,,Laceration to arm by captive shark PROVOKED INCIDENT,N,,"Sandbar shark ,8'","News 7, 5/11/2011",2011.05.10-Storch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.10-Storch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.10-Storch.pdf,2011.05.10,2011.05.10,5291,, +2011.05.07.R,Reported 07-May-2011,2011,Invalid,UNITED ARAB EMIRATES (UAE),Umm al Qaywayan Province,Khor Fakkan ,Fishing ,Mustafa Al Hammadi,M,43,"Erroneously reported on several internet sites as a ""shark attack"", it was the shark 8', 300-kg mako shark that was attacked, not the fisherman",N,,,"Emirates 24/7 News, 5/7/2011",2011.05.07.R-UAE.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.07.R-UAE.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.07.R-UAE.pdf,2011.05.07.R,2011.05.07.R,5290,, +2011.05.04,04-May-11,2011,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Palm Beach,Spearfishing,Trevor Burger,M,37,Calf bitten,N,,,"The Witness, 5/10/2011",2011.05.04-Burger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.04-Burger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.04-Burger.pdf,2011.05.04,2011.05.04,5289,, +2011.04.26,26-Apr-11,2011,Unprovoked,USA,Florida,"Riviera Beach, Palm Beach County",Spearfishing,Anthony Segrich,M,32,Calf bitten,N,,"Bull shark, 12'","J. Wigham III, Palm Beach Post, 4/27/2011",2011.04.26-Seagrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.26-Seagrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.26-Seagrich.pdf,2011.04.26,2011.04.26,5288,, +2011.04.23,23-Apr-11,2011,Unprovoked,AUSTRALIA,Western Australia,Red Bluffs,Washing sand off a speared fish,Marcus van der Vyver,M,17,Heel bitten,N,15h00,"reef shark, 1.5m","T. Peake, GSAF",2011.04.23-VanderVyver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.23-VanderVyver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.23-VanderVyver.pdf,2011.04.23,2011.04.23,5287,, +2011.04.22,22-Apr-11,2011,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing ,Ronald White,M,49,Minor puncture wounds,N,15h30,1' to 2' shark,S. Petersohn,2011.04.22-RonWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.22-RonWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.22-RonWhite.pdf,2011.04.22,2011.04.22,5286,, +2011.04.16,16-Apr-11,2011,Unprovoked,NEW ZEALAND,South Island,Snapper Point,Surfing,Laine Hobson,M,41,Puncture to left hand,N,Afternoon,possibly a bronze whaler shark,"R.D. Weeks, GSAF",2011.04.16-Hobson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.16-Hobson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.16-Hobson.pdf,2011.04.16,2011.04.16,5285,, +2011.04.12,13-Apr-11,2011,Unprovoked,INDONESIA,Bali,Balian,Surfing,Joe Ferrar,M,,Lacerations to forearm,N,Morning," Bull shark, 2.5 m","A.Brenneka, SharkAttackSurvivors.com",2011.04.12-Ferrar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.12-Ferrar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.12-Ferrar.pdf,2011.04.12,2011.04.12,5284,, +2011.04.08,08-Apr-11,2011,Unprovoked,FIJI,Vitu Levu,"Malake Island, Ra Province",Diving,Etuate Caucau ,M,27,Minor injuries to left leg and hand,N,Afternoon,,"Bula Namaste, 4/10/2011",2011.04.08-Caucau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.08-Caucau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.08-Caucau.pdf,2011.04.08,2011.04.08,5283,, +2011.03.29.R,Reported 29-Mar-2011,2011,Provoked,USA,Texas,Matagorda Beach,"Standing, holding shark pup",Orlando,M,,Minor laceration to shoulder from captive shark PROVOKED INCIDENT,N,,Blacktip shark pup,"You Tube, Baby Blacktip Shark Attack - How NOT to hold a shark.",2011.03.29.R-Orlando.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.29.R-Orlando.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.29.R-Orlando.pdf,2011.03.29.R,2011.03.29.R,5282,, +2011.03.24,24-Mar-11,2011,Unprovoked,MEXICO,Quintana Roo,"Gaviotas Beach, Cancun",Swimming,Liuba Taran,F,,Lower leg & foot bitten,N,,Bull shark,"Canadian press, 3/25/2011",2011.03.24-Taran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.24-Taran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.24-Taran.pdf,2011.03.24,2011.03.24,5281,, +2011.03.23,23-Mar-11,2011,Unprovoked,AUSTRALIA,New South Wales,Crowdy Head,Surfing,David Pearson,M,48,Severe injury to left forearm,N,17h45,"Bull shark, 2.5m","Nine News, 3/24/2011",2011.03.23-Pearson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.23-Pearson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.23-Pearson.pdf,2011.03.23,2011.03.23,5280,, +2011.03.21.b,21-Mar-11,2011,Unprovoked,MEXICO,Quintana Roo,,Swimming,Andrew Masternak ,M,46,Right foot bitten,N,,,"Mississauga.net, 3/29/2011",2011.03.21.b-Masternak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.21.b-Masternak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.21.b-Masternak.pdf,2011.03.21.b,2011.03.21.b,5279,, +2011.03.21.a,21-Mar-11,2011,Unprovoked,FIJI,,Nukudamu ,Diving / fishing,Metereti Jeke,M,30,"Left forearm severely bitten, surgically amputated",N,16h00,,"Fiji Times Online, 3/24/2011",2011.03.21.a-Jeke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.21.a-Jeke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.21.a-Jeke.pdf,2011.03.21.a,2011.03.21.a,5278,, +2011.03.16,16-Mar-11,2011,Unprovoked,AUSTRALIA,New South Wales,"Jimmys Beach, Port Stephens",Wakeboarding,Lisa Mondy,F,24,"Severe injuries to head, neck, shoulder & upper left arm",N,13h00,3 m to 4 m shark,"The Sydney Morning Herald, 3/17/2011",2011.03.16-Mondy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.16-Mondy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.16-Mondy.pdf,2011.03.16,2011.03.16,5277,, +2011.03.10.R,Reported 10-Mar-2010,2011,Invalid,EGYPT,South Sinai Peninsula,Sharm-el-Sheikh,,female,F,,"Apparent drowning, and subsequent scavenging by 16' tiger shark",N,,,"Swindon Advertiser, 3/10/2011 ",2011.03.10.R-Sharm-scavenging.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.10.R-Sharm-scavenging.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.10.R-Sharm-scavenging.pdf,2011.03.10.R,2011.03.10.R,5276,, +2011.03.10,10-Mar-11,2011,Unprovoked,AUSTRALIA,New South Wales,"Tallow Beach, Byron Bay",Surfing,Prem Puri,M,,"No injury, surboard broken",N,,,"Northern Star, 3/11/2011",2011.03.10.a-Puri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.10.a-Puri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.10.a-Puri.pdf,2011.03.10,2011.03.10,5275,, +2011.02.28.R,Reported 28-Feb-2011,2011,Provoked,AUSTRALIA,Queensland,Between ,Fishing,Shane Nyari,M,36,Lacerations to right hand by hooked shark PROVOKED INCIDENT,N,10h45,"Bull shark, 2m","C. Eksander, GSAF",2011.02.28.R-Nyari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.28.R-Nyari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.28.R-Nyari.pdf,2011.02.28.R,2011.02.28.R,5274,, +2011.02.23,23-Feb-11,2011,Unprovoked,NEW CALEDONIA, Loyalty Islands,"Bay of Bweedro, Ouv�a",Spearfishing,Jean-Luc Majele,M,21,Lacerations to left forearm,N,Early afternoon,1.5 m shark,"Les Nouvelles Caledoniennes, 2/25/2011",2011.02.23-Jean-Luc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.23-Jean-Luc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.23-Jean-Luc.pdf,2011.02.23,2011.02.23,5273,, +2011.02.19,18-Feb-11,2011,Unprovoked,REUNION,Saint Gilles ,Trois-Roches,Surfing,Eric Dargent ,M,32,Left leg severed at the knee,N,18h30,,"Clicanoo.com, 2/21/2011",2011.02.19-Dargent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.19-Dargent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.19-Dargent.pdf,2011.02.19,2011.02.19,5272,, +2011.02.17,17-Feb-11,2011,Unprovoked,AUSTRALIA,South Australia,Off Perforated Island near Coffin Bay,Diving for abalone,Peter Clarkson,M,49,FATAL,Y,18h20,White shark x 2,"T. Peake, GSAF",2011.02.17-Clarkson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.17-Clarkson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.17-Clarkson.pdf,2011.02.17,2011.02.17,5271,, +2011.02.13,13-Feb-11,2011,Provoked,AUSTRALIA,Queensland,Sunshine Beach,Fishing,male,M,,Lacerations to calf by hooked shark PROVOKED INCIDENT,N,10h40,1 m shark,"Courier-Mail, 2/14/2011",2011.02.13-SunshineBeach-angler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.13-SunshineBeach-angler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.13-SunshineBeach-angler.pdf,2011.02.13,2011.02.13,5270,, +2011.02.12,12-Feb-11,2011,Unprovoked,AUSTRALIA,Western Australia,Exmouth,Snorkeling,Allen ___,M,58,Arm bitten,N,Late afternoon,,"T. Peake, GSAF",2011.02.12-Exmouth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.12-Exmouth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.12-Exmouth.pdf,2011.02.12,2011.02.12,5269,, +2011.02.04.R,Reported 04-Feb-2011,2011,Provoked,MEXICO,Colima,"Manzanillo, Revillagigedo Islands",Shark fishing on the Ricardo Astorga,Porfirio Lugo Camacho ,M,,Left foot bitten PROVOKED INCIDENT,N,,,"AngelGuardianMX, 2/4/2011",2011.02.04.R-Camacho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.04.R-Camacho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.04.R-Camacho.pdf,2011.02.04.R,2011.02.04.R,5268,, +2011.02.02,02-Feb-11,2011,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Sundays River Mouth, Port Elizabeth",Surf fishing,Johannes Jonk,M,37,Right leg bitten,N,,,"Iafrica.com, 2/2/2011",2011.02.02-Jonk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.02-Jonk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.02-Jonk.pdf,2011.02.02,2011.02.02,5267,, +2011.01.31,31-Jan-11,2011,Unprovoked,MEXICO,Quintana Roo,Cancun,Swimming,Nicole Moore,F,38,"Leg, forearm & hand severely bitten",N,12h00,6' shark,"El Diario de Yucatan, 2/1/2011",2011.01.31-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.31-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.31-Moore.pdf,2011.01.31,2011.01.31,5266,, +2011.01.28,28-Jan-11,2011,Provoked,MEXICO,Colima,Revillagigedo Islands,Shark fishing on the Don Agust�n-VI. ,C. Pedro Luis Beltr�n Camargo ,M,25,Left eg bitten PROVOKED INCIDENT,N,,,"Sun Sentinel, 1/30/2011",2011.01.28-Camargo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.28-Camargo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.28-Camargo.pdf,2011.01.28,2011.01.28,5265,, +2011.01.26,26-Jan-11,2011,Unprovoked,BAHAMAS,West End,Tiger Beach,Scuba diving,Jim Abernethy,M,55,Arm bitten ,N,15h00,Caribbean reef shark,J. Abernethy,2011.01.26-Abernethy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.26-Abernethy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.26-Abernethy.pdf,2011.01.26,2011.01.26,5264,, +2011.01.20,20-Jan-11,2011,Invalid,AUSTRALIA,New South Wales,Cudgen Creek ,Swimming,Mia Merlini,F,7,Lacerations to both legs,N,17h00,Shark involvement not confirmed,"L. Brodnik, Tweed News, 1/22/2011",2011.01.20-Merlini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.20-Merlini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.20-Merlini.pdf,2011.01.20,2011.01.20,5263,, +2011.01.15,15-Jan-11,2011,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Second Beach, Port St. John's",Surfing,Zama Ndamase,M,16,FATAL,Y,12h30,,"The Mercury, 1/15/211",2011.01.15-Ndamase.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.15-Ndamase.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.15-Ndamase.pdf,2011.01.15,2011.01.15,5262,, +2011.01.12.R,Reported 12-Jan 2011,2011,Unprovoked,MEXICO,Quintana Roo,Xcalak ,Attempting to fix motor,Juan Miguel Infante Ram�rez,M,37,Bitten on leg and groin,N,,,Sharksurvivors.com,2011.01.12.R-Infante.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.12.R-Infante.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.12.R-Infante.pdf,2011.01.12.R,2011.01.12.R,5261,, +2011.01.03,03-Jan-11,2011,Boat,AUSTRALIA,Western Australia,Busselton,Fishing,"A 'tinnie"". Occupants :Paul Sweeny, Paul Nieuwkerdk, John and Mark Kik ",,,"No injury, shark nudged boat and bit propeller",N,12h00,White shark,"S. Gordon, Sky News, 1/4/2011",2011.01.03-BusseltonBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.03-BusseltonBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.03-BusseltonBoat.pdf,2011.01.03,2011.01.03,5260,, +2010.12.26,26-Dec-10,2010,Unprovoked,USA,Hawaii," Kahului, Maui",Body boarding,Vaun Stover-French ,M,16,"Lacerations to his lower left leg, calf, foot & ankle",N,15h35,6' shark,"J. Howard, Surfing, 12/27/2010",2010.12.26-Stover-French.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.26-Stover-French.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.26-Stover-French.pdf,2010.12.26,2010.12.26,5259,, +2010.12.17,17-Dec-10,2010,Unprovoked,FIJI,Vitu Levu,Sigatoka,Surfing,Jordi Gracia ,M,,Lacerations to foot,N,AM,,"Fiji Times Online, 12/19/2010",2010.12.17-Gracia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.17-Gracia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.17-Gracia.pdf,2010.12.17,2010.12.17,5258,, +2010.12.11,11-Dec-10,2010,Unprovoked,USA,Hawaii,"Tavares Bay, Maui",Surfing,Andrew Wilson,M,46,Lacerations to right foot,N,13h51,,"Maui News, 12/14/2010",2010.12.11-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.11-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.11-Wilson.pdf,2010.12.11,2010.12.11,5257,, +2010.12.05,05-Dec-10,2010,Unprovoked,EGYPT,South Sinai Peninsula,"Middle Garden, Sharm el-Shiekh",Snorkeling,Renate Seiffert,F,70,FATAL,Y,12h00,"Oceanic whitetip shark, 2.5m ","M. Levine, R. Collier, E. Ritter, M. Fouda, et al",2010.12.05-Renate- Seiffert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.05-Renate- Seiffert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.05-Renate- Seiffert.pdf,2010.12.05,2010.12.05,5256,, +2010.12.03.R,Reported 03-Dec-2010,2010,Unprovoked,INDONESIA,Bali,Balian,Surfing,Wei Ong,M,,Lacerations to right hand,N,,,"M. Trott, Indo Surf Life, 12/5/2010",2010.12.03.R-Ong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.03.R-Ong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.03.R-Ong.pdf,2010.12.03.R,2010.12.03.R,5255,, +2010.12.01.b,01-Dec-10,2010,Unprovoked,EGYPT,South Sinai Peninsula,"Ras Nasrani, Sharm el-Sheikh",Snorkeling,Yevgeniy (Eugene) Trishkin ,M,54,Both arms severely bitten,N,11h00,Mako shark ,"M. Levine, R. Collier, E. Ritter, M. Fouda, et al",2010.12.01.b-Yevgeniy-Trishkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.01.b-Yevgeniy-Trishkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.01.b-Yevgeniy-Trishkin.pdf,2010.12.01.b,2010.12.01.b,5254,, +2010.12.01.a,01-Dec-10,2010,Unprovoked,EGYPT,South Sinai Peninsula,"Ras Nasrani, Sharm el-Sheikh",Snorkeling,Viktor Koliy ,M,46,Lacerations to right leg,N,10h55,Mako shark,"M. Levine, R. Collier, E. Ritter, M. Fouda, et al",2010.12.01.a-Viktor-Koliy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.01.a-Viktor-Koliy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.01.a-Viktor-Koliy.pdf,2010.12.01.a,2010.12.01.a,5253,, +2010.11.30.b,30-Nov-10,2010,Unprovoked,EGYPT,South Sinai Peninsula,"Coral Bay, Sharm el-Sheikh",Snorkeling,Lyudmila Stolyarova ,F,70,"Foot severed, Right forearm severed, lacerations to left hand (defense wounds)",N,14h55,"Oceanic whitetip shark, 2.5m, female","M. Levine, R. Collier, E. Ritter, M. Fouda, et al",2010.11.30.b-Lyudmila-Stolyarova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.30.b-Lyudmila-Stolyarova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.30.b-Lyudmila-Stolyarova.pdf,2010.11.30.b,2010.11.30.b,5252,, +2010.11.30.a,30-Nov-10,2010,Unprovoked,EGYPT,South Sinai Peninsula,"Coral Bay, Sharm el-Sheikh",Snorkeling,Olga Martsinko ,F,48,Foot and arm bitten,N,14h40,"Oceanic whitetip shark, 2.5m, female","M. Levine, R. Collier, E. Ritter, M. Fouda, et al",2010.11.30.a-Olga Marsyenko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.30.a-Olga Marsyenko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.30.a-Olga Marsyenko.pdf,2010.11.30.a,2010.11.30.a,5251,, +2010.11.27.R,Reported 27-Nov-2010,2010,Unprovoked,SAMOA,,,Fishing,male,M,47,Serious wounds to chest,N,Morning,,"Samoa Observer, 11/27/2010",2010.11.27.R-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.27.R-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.27.R-Samoa.pdf,2010.11.27.R,2010.11.27.R,5250,, +2010.11.27,27-Nov-10,2010,Invalid,AUSTRALIA,Western Australia,Native Dog Beach,Swimming,Michael Utley,M,,Death may have been due to drowning,Y,,Shark involvement not confirmed,"mailonline.com, 12/2/2010",2010.11.27.a-Utley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.27.a-Utley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.27.a-Utley.pdf,2010.11.27,2010.11.27,5249,, +2010.11.19,19-Nov-10,2010,Provoked,USA,Palmyra Atoll,,Snorkeling,Kydd Pollock,M,33,Head bitten by netted shark PROVOKED INCIDENT,N,13h30,,"Sunday News, 12/12/2010",2010.11.19-Pollock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.19-Pollock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.19-Pollock.pdf,2010.11.19,2010.11.19,5248,, +2010.11.15,15-Nov-10,2010,Unprovoked,DOMINICAN REPUBLIC,,Boca Chica,Diving,Pinales Pedro Zapata,M,21,FATAL,Y,Morning,,"Dominican Today, 11/15/2010",2010.11.15-Zapata.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.15-Zapata.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.15-Zapata.pdf,2010.11.15,2010.11.15,5247,, +2010.11.14,14-Nov-10,2010,Unprovoked,INDONESIA,Bali,Balian,Surfing,male,M,,Hand bitten ,N,,,Bali Waves,2010.11.14-Bali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.14-Bali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.14-Bali.pdf,2010.11.14,2010.11.14,5246,, +2010.11.12.R,Reported 12-Nov-2010,2010,Boat,AUSTRALIA,Western Australia,Between Carnac and Garden Islands,Fishing,4-m runabout. Occupant: Allen Gade,M,,No injury to occupant. Shark rammed bottom of the boat,N,Night,White shark,R. Hidding,2010.11.12.R-Gade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.12.R-Gade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.12.R-Gade.pdf,2010.11.12.R,2010.11.12.R,5245,, +2010.10.30,30-Oct-10,2010,Unprovoked,AUSTRALIA,Western Australia,Off Garden Island,Snorkeling,Elyse Frankcom,F,20,Torso and left buttock bitten,N,12h30,White shark,"Perth Now, 10/30/2010",2010.10.30-Francom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.30-Francom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.30-Francom.pdf,2010.10.30,2010.10.30,5244,, +2010.10.28.R,Reported 28-Oct-2010,2010,Unprovoked,AUSTRALIA,Western Australia,Cheynes Beach,Spearfishing,Deacon Plant,M,,"No injury, shark head-butted diver's thigh",N,,,"Albany & Great Southern Weekender, 10/28/2010",2010.10.28.R-Plant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.28.R-Plant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.28.R-Plant.pdf,2010.10.28.R,2010.10.28.R,5243,, +2010.10.28,28-Oct-10,2010,Unprovoked,USA,Oregon,Florence,Surfing,Seth Mead,M,,No injury to surfer,N,15h20,,R. Collier,2010.10.28.a-SethMead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.28.a-SethMead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.28.a-SethMead.pdf,2010.10.28,2010.10.28,5242,, +2010.10.25,25-Oct-10,2010,Provoked,AZORES,,350 miles from Faial Island,Fishing,crewman from the Gedi,M,,PROVOKED INCIDENT? ,N,,,"Jornal Diario, 10/26/2010",2010.10.25-Gedi-crewman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.25-Gedi-crewman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.25-Gedi-crewman.pdf,2010.10.25,2010.10.25,5241,, +2010.10.23.b,23-Oct-10,2010,Unprovoked,USA,Maine,"Burnt Cove near Eastport, Washington County",Scuba diving,Scott MacNichol,M,30,"No injury to diver, shark bit his video camera",N,Afternoon,"Porbeagle shark, 8' ","Bangor Daily News, 10/27/2010",2010.10.23-MacNichol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.23-MacNichol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.23-MacNichol.pdf,2010.10.23.b,2010.10.23.b,5240,, +2010.10.23.a,23-Oct-10,2010,Unprovoked,AUSTRALIA,Western Australia,Wedge Island,Kite Surfing,Liam Walker,M,14,Lacerations to lower right leg,N,,,Sharksurvivors.com,2010.10.23.a-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.23.a-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.23.a-Walker.pdf,2010.10.23.a,2010.10.23.a,5239,, +2010.10.22,22-Oct-10,2010,Unprovoked,USA,California,"Surf Beach, Vandenberg AFB, Santa Barbara County",Body boarding,Lucas Ransom,M,19,FATAL,Y,08h50,"White shark, 14' to 18' ",R. Collier,2010.10.22-Ransom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.22-Ransom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.22-Ransom.pdf,2010.10.22,2010.10.22,5238,, +2010.10.20,20-Oct-10,2010,Unprovoked,EGYPT,South Sinai Peninsula,Sharm el-Sheikh ,Snorkeling,Elena Rubanovich.,F,,Multiple lacerations to left leg and foot,N,A.M.,,M. Salem; Y. Sobolev,2010.10.20-Rubanovich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.20-Rubanovich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.20-Rubanovich.pdf,2010.10.20,2010.10.20,5237,, +2010.10.09,09-Oct-10,2010,Unprovoked,AUSTRALIA,New South Wales,Mullaway Headland,Surfing,Ken Turk,M,22,Foot bitten,N,13h30,"Bull shark, 1.4m ","The Coffs Coast Advocate, 10/16/2010",2010.10.09-Turk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.09-Turk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.09-Turk.pdf,2010.10.09,2010.10.09,5236,, +2010.10.02.b,02-Oct-10,2010,Unprovoked,BAHAMAS,Exuma Islands,,Snorkeling,Jose Molla,M,,Calf bitten,N,,Lemon shark,Sharksurvivors.com,2010.10.02.b-Molla.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.02.b-Molla.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.02.b-Molla.pdf,2010.10.02.b,2010.10.02.b,5235,, +2010.10.02.a,02-Oct-10,2010,Unprovoked,BAHAMAS,Abaco Islands,Elbow Cay,Surfing,Jane Engle,F,,Bitten between left ankle & knee,N,15h00,Possibly a 6' lemon shark,"The Tribune, 10/4/2010",2010.10.02.a-Engle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.02.a-Engle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.02.a-Engle.pdf,2010.10.02.a,2010.10.02.a,5234,, +2010.10.01,01-Oct-10,2010,Unprovoked,SOUTH AFRICA,Western Cape Province,"Melkbaai, Strand",Surfing,male,M,Teen,3 lacerations to foot,N,14h30,,"News24.com, 10/1/2010",2010.10.01-Melkbaai-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.01-Melkbaai-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.01-Melkbaai-surfer.pdf,2010.10.01,2010.10.01,5233,, +2010.09.27,27-Sep-10,2010,Unprovoked,USA,Oregon,Winchester Bay,Surfing,David Lowden,M,29,"No injury, surfboard rammed",N,16h00,White shark,R. Collier,2010.09.27-Lowden-COLLIER.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.27-Lowden-COLLIER.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.27-Lowden-COLLIER.pdf,2010.09.27,2010.09.27,5232,, +2010.09.24,24-Sep-10,2010,Unprovoked,USA,Virginia,Sandridge Beach,Surfing,Caleb Kauchak,M,18,Bite to left ankle and knee,N,16h30,,"K.Adams, The Virginian Pilot, 9/24/2010",2010.09.24-Kauchak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.24-Kauchak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.24-Kauchak.pdf,2010.09.24,2010.09.24,5231,, +2010.09.21,21-Sep-10,2010,Unprovoked,SOUTH AFRICA,Western Cape Province,Between Dyer Island and Pearly Beach,Swimming,Khanyisile Momoza ,M,29,FATAL,Y,,White shark,"Cape Argus, 9/25/2010",2010.09.21-Momoza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.21-Momoza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.21-Momoza.pdf,2010.09.21,2010.09.21,5230,, +2010.09.13, 13-Sep-2010,2010,Unprovoked,AUSTRALIA,New South Wales,Fraser's Reef,Surfing,Jake Davis,M,15,Lacerations and puncture wounds to leg and foot,N,17h00,2m shark,"Daily Telegraph, 9/16/2010",2010.09.13-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.13-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.13-Davis.pdf,2010.09.13,2010.09.13,5229,, +2010.09.07,07-Sep-10,2010,Unprovoked,USA,Florida,"St. Augustine, St. John's County",Swimming,Jason Whitworth,M,27,Lacerations to left wrist,N,,3' shark,"St. Augustine Record, 9/9/2010",2010.09.07-Whitworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.07-Whitworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.07-Whitworth.pdf,2010.09.07,2010.09.07,5228,, +2010.09.06.R,Reported 06-Sep-2010,2010,Unprovoked,TONGA,Ha'api ,,Swimming / Whale Watching,Bj�rn Jensen,M,24,Puncture wounds to right foot,N,12h00,,"New Zealand Herald, 9/6/2010",2010.09.06.R-Jensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.06.R-Jensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.06.R-Jensen.pdf,2010.09.06.R,2010.09.06.R,5227,, +2010.09.04, 04-Sep-2010,2010,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Kris Kerr,M,,"No injury, shark charged surfboard",N,,,"CBS News, 9/10/2010",2010.09.04-Kerr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.04-Kerr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.04-Kerr.pdf,2010.09.04,2010.09.04,5226,, +2010.09.03.b,03-Sep-10,2010,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jason Coffman,M,24,Lacerations to right hand ,N,12h00,,"S. Petersohn; Daytona Beach News-Journal, 9/3/2010",2010.09.03.b-Coffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.03.b-Coffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.03.b-Coffman.pdf,2010.09.03.b,2010.09.03.b,5225,, +2010.09.03.a,03-Sep-10,2010,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Andrew Heald,M,24,Left thigh bitten,N,09h00,,"S. Petersohn; M. Johnson, Daytona Beach News-Journal, 9/3/2010",2010.09.03.a-Heald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.03.a-Heald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.03.a-Heald.pdf,2010.09.03.a,2010.09.03.a,5224,, +2010.09.02,02-Sep-10,2010,Unprovoked,SOLOMON ISLANDS,Western Province,,,Benjamin D'Emden,M,34,Lacerations to face and neck,N,,,"The Daily Telegraph, 9/3/2010",2010.09.02-D'Emden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.02-D'Emden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.02-D'Emden.pdf,2010.09.02,2010.09.02,5223,, +2010.08.29,29-Aug-10,2010,Invalid,BAHAMAS,Exuma Islands,"Off Jaws Beach, New Providence Island",Swimming after boat became disabled,Judson Newton,M,43,"His partial remains were recovered from a 12' tiger shark on September 5, 2010. Cause of death was thought to be drowning",Y,,,"P.Nunez, Tribune",2010.08.29-Newton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.29-Newton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.29-Newton.pdf,2010.08.29,2010.08.29,5222,, +2010.08.18,18-Aug-10,2010,Unprovoked,USA,Florida,Crescent Beach St. Johns County,Boogie Boarding,Seth Shorten,M,10,Minor injuries to foot,N,09h00,,"Gainesville Sun, 8/18/2010",2010.08.18-Shorten.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.18-Shorten.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.18-Shorten.pdf,2010.08.18,2010.08.18,5221,, +2010.08.17,17-Aug-10,2010,Unprovoked,AUSTRALIA,Western Australia,Cowaramup Bay,Surfing,Nicholas Edwards,M,31,FATAL,Y,08h05,White shark,"The Australian, 8/17/2010",2010.08.17-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.17-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.17-Edwards.pdf,2010.08.17,2010.08.17,5220,, +2010.08.14,14-Aug-10,2010,Unprovoked,USA,California,"Pigeon Point, San Mateo County",Kayak Fishing,Adam Coca,M,45,"No injury, kayak bitten",N,,White shark,"Mercury News, 8/15/2010",2010.08.14-Coca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.14-Coca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.14-Coca.pdf,2010.08.14,2010.08.14,5219,, +2010.08.10.b,10-Aug-10,2010,Provoked,AUSTRALIA,Queensland,"Three Mile Creek, Townsville",Fishing,female,F,,Leg bitten by hooked shark PROVOKED INCIDENT,N,19h00,,"Courier-Mail, 8/10/2010",2010.08.10.b-Townsville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.10.b-Townsville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.10.b-Townsville.pdf,2010.08.10.b,2010.08.10.b,5218,, +2010.08.10,10-Aug-10,2010,Unprovoked,SOUTH KOREA,Jeju Province,Jeju Island,Swimming,Jaylee Pierce,F,16,Lacerations to left lower leg,N,Late afternoon,,"J. Williamson, Texarkana Gazette, 9/20/2010",2010.08.10.a-Pierce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.10.a-Pierce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.10.a-Pierce.pdf,2010.08.10,2010.08.10,5217,, +2010.08.08,08-Aug-10,2010,Unprovoked,AUSTRALIA,New South Wales,Crescent Head,Surfing,Rick Carroll,M,47,Left foot bitten,N,08h00,,"Macleay Argus, 8/10/2010",2010.08.08-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.08-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.08-Carroll.pdf,2010.08.08,2010.08.08,5216,, +2010.08.07.b,07-Aug-10,2010,Unprovoked,USA,North Carolina,"Figure Eight Island, Wilmington, New Hanover County",Surfing,Josh Clement,M,25,Left foot bitten,N,15h00,,"C. Creswell, GSAF",2010.08.07.b-Clement.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.07.b-Clement.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.07.b-Clement.pdf,2010.08.07.b,2010.08.07.b,5215,, +2010.08.07.a,07-Aug-10,2010,Unprovoked,MALTA,,"Off Fort St. Elmo, Valetta",Windsurfing,David Bonavia,M,35,"No injury, sail bitten",N,,3 m shark,"A. Buttigieg, GSAF",2010.08.07.a-Bonavia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.07.a-Bonavia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.07.a-Bonavia.pdf,2010.08.07.a,2010.08.07.a,5214,, +2010.08.05,05-Aug-10,2010,Invalid,USA,Florida,"Bethune Beach, Volusia County",Swimming,Judy Fischman,F,,Minor abrasions to legs when she was lifted on the back of a large marine animal,N,19h15,Shark involvement not confirmed,"Daytona Beach News-Journal, 8/7/2010",2010.08.05-Fischman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.05-Fischman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.05-Fischman.pdf,2010.08.05,2010.08.05,5213,, +2010.08.02.b,02-Aug-10,2010,Unprovoked,USA,California,"Near oil rig Hondo, 5 nm from Gaviota, Santa Barbara County",Kayaking,Duane Strosaker,M,,"No injury, kayak bitten",N,12h40,"White shark, 15'","R. Collier, GSAF",2010.08.02.b-Strosaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.02.b-Strosaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.02.b-Strosaker.pdf,2010.08.02.b,2010.08.02.b,5212,, +2010.08.02.a,02-Aug-10,2010,Unprovoked,USA,Florida,"Micklers Landing, St. Johns County",Standing,Kimberly Presser,F,37,Lacerations to forearm,N,11h00,3' to 4' shark,"News4JAX, 8/2/2010",2010.08.02.a-Presser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.02.a-Presser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.02.a-Presser.pdf,2010.08.02.a,2010.08.02.a,5211,, +2010.07.25,25-Jul-10,2010,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Standing,Alex Stamm,M,16,Lacerations to right lower leg,N,,4' shark,"C. Creswell, GSAF",2010.07.25-Stamm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.25-Stamm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.25-Stamm.pdf,2010.07.25,2010.07.25,5210,, +2010.07.23,23-Jul-10,2010,Unprovoked,USA,Florida,"Jacksonville Beach, Duval County",Surfing,Clayton Schulz,M,20,Left foot bitten,N,16h30,,"C. Creswell, GSAF",2010.07.23-Schulz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.23-Schulz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.23-Schulz.pdf,2010.07.23,2010.07.23,5209,, +2010.07.19,19-Jul-10,2010,Unprovoked,USA,South Carolina,Myrtle Beach,Swimming,Josh Myers,M,10,Minor lacerations to left calf,N,10h35,Possibly a small blacktip shark,"C. Creswell, GSAF",2010.07.19-Myers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.19-Myers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.19-Myers.pdf,2010.07.19,2010.07.19,5208,, +2010.07.17.b,17-Jul-10,2010,Unprovoked,USA,North Carolina,"Wrightsville Beach, New Hanover County",Swimming,Kendall Parker,F,13,Lacerations to right forearm,N,13h30,"Sandtiger shark, 4' to 5'","C. Creswell, GSAF",2010.07.17.b-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.17.b-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.17.b-Parker.pdf,2010.07.17.b,2010.07.17.b,5207,, +2010.07.17.a,17-Jul-10,2010,Unprovoked,USA,Florida,New Smyrna Beach,Surfing,Jimmy Johnston,M,55,Minor lacerations to right foot,N,,A small spinner shark,S. Petersohn,2010.07.17.a-Johnston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.17.a-Johnston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.17.a-Johnston.pdf,2010.07.17.a,2010.07.17.a,5206,, +2010.07.16.b,16-Jul-10,2010,Provoked,SPAIN,Grand Canary Island,"Sardina del Norte, G�ldar",Swimming,male,M,9,Lacerations to left foot when he stepped on the shark PROVOKED INCIDENT,N,19h15,Angel shark,"g�ldahora, 7/16/2010",2010.07.16.b-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.16.b-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.16.b-Spain.pdf,2010.07.16.b,2010.07.16.b,5205,, +2010.07.16.a,16-Jul-10,2010,Unprovoked,USA,Texas,Galveston,Fishing,Charlie Gauzer,M,,Leg bitten,N,,,"NY Post, 7/16/2010",2010.07.16.a-Gauzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.16.a-Gauzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.16.a-Gauzer.pdf,2010.07.16.a,2010.07.16.a,5204,, +2010.07.11,11-Jul-10,2010,Provoked,USA,Florida,"Lauderdale-by-the-Sea, Broward County",Fishing,male,M,,Small laceration to forearm from netted shark PROVOKED INCIDENT,N,,"Nurse shark, juvenile ","News 7, 7/13/2010",2010.07.11-Lauderdale-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.11-Lauderdale-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.11-Lauderdale-fisherman.pdf,2010.07.11,2010.07.11,5203,, +2010.07.04,04-Jul-10,2010,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Two Mile Reef, Sodwana Bay",Snorkeling,Sarah Haiden,F,21,Left leg bitten,N,,,The Sowetan. 7/9/2010,2010.07.04-Haiden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.04-Haiden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.04-Haiden.pdf,2010.07.04,2010.07.04,5202,, +2010.07.03,03-Jul-10,2010,Provoked,USA,New York,Off Long Island,Fishing,Frank Joseph,M,20,Laceration to right bicep by hooked shark PROVOKED INCIDENT,N,12h30,"Blue shark, 7'",NBC,2010.07.03-Joseph.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.03-Joseph.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.03-Joseph.pdf,2010.07.03,2010.07.03,5201,, +2010.07.02.b,02-Jul-10,2010,Unprovoked,USA,California,"Pismo Beach, San Luis Obispo County",Surfing,Derek Crane,M,19,Laceration to left foot,N,Evening,4' shark,R. Collier,2010.07.02.b-Crane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.02.b-Crane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.02.b-Crane.pdf,2010.07.02.b,2010.07.02.b,5200,, +2010.07.02.a,02-Jul-10,2010,Unprovoked,USA,California,"Dog Patch, San Onofre",Stand-Up Paddleboarding,David Bull,M,48,"No injury, board bumped by shark",N,15h15,8' shark,R. Collier,2010.07.02.a-Bull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.02.a-Bull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.02.a-Bull.pdf,2010.07.02.a,2010.07.02.a,5199,, +2010.06.27,27-Jun-10,2010,Unprovoked,USA,Texas,"Eight Mile Beach, Galveston",Surfing,Chad Rogers,M,20,Lacerations to right foot,N,,"Bull shark, 5'",KMBC,2010.06.27-Rogers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.27-Rogers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.27-Rogers.pdf,2010.06.27,2010.06.27,5198,, +2010.06.25.b,25-Jun-10,2010,Unprovoked,USA,South Carolina,Fripp Island,Boogie Boarding,Ella Morris,F,6,Laceration to leg,N,,,"C. Creswell, GSAF",2010.06.25.b-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.25.b-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.25.b-Morris.pdf,2010.06.25.b,2010.06.25.b,5197,, +2010.06.25.a,25-Jun-10,2010,Unprovoked,USA,North Carolina,"Topsail Island, Pender County",Swimming,Carley Schlentz,F,13,Laceration to left foot,N,13h00,,"C. Creswell, GSAF",2010.06.25.a-Schlentz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.25.a-Schlentz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.25.a-Schlentz.pdf,2010.06.25.a,2010.06.25.a,5196,, +2010.06.15,15-Jun-10,2010,Unprovoked,VIETNAM,Binh Dinh Province,Quy Nhon ,Swimming,Huynh Nhu Hoang,M,17,Laceration to left foot,N,17h00,1 m shark,"Thanh Nien News, 5/15/2010",2010.06.15-Hoang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.15-Hoang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.15-Hoang.pdf,2010.06.15,2010.06.15,5195,, +2010.06.10,10-Jun-10,2010,Unprovoked,USA,Florida,Jacksonville,Boogie Boarding,Hannah Mayo-Foster,F,18,Lacerations to left calf and foot,N,12h30,4' shark,"Gwinnett Daily Post, 6/10/2010",2010.06.10-Mayo-Foster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.10-Mayo-Foster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.10-Mayo-Foster.pdf,2010.06.10,2010.06.10,5194,, +2010.06.06,06-Jun-10,2010,Unprovoked,AUSTRALIA,Western Australia,"Conspicuous Beach, near Walpole",Surfing,Michael Bedford,M,40,Severe laceration to right knee,N,12h00,,"The West Australian, 6/7/2010",2010.06.06-Bedford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.06-Bedford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.06-Bedford.pdf,2010.06.06,2010.06.06,5193,, +2010.06.00,Jun-10,2010,Unprovoked,USA,Florida,"Ponte Vedra Beach, St Johns County",Surfing,Matt Searcy,M,20,Lacerations to left foot,N,,,"Florida Times-Union, 7/28/2010",2010.06.00-Searcy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.00-Searcy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.00-Searcy.pdf,2010.06.00,2010.06.00,5192,, +2010.05.30,30-May-10,2010,Provoked,USA,Florida,Off Tarpon Springs,Fishing,Mike Seymore,M,49,Laceration to left calf by hooked shark PROVOKED INCIDENT,N,08h45,"Lemon shark, 4'",tbo.com,2010.05.30-Seymore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.30-Seymore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.30-Seymore.pdf,2010.05.30,2010.05.30,5191,, +2010.05.18.c,18-May-10,2010,Unprovoked,VIETNAM,Binh Dinh Province,Quy Nhon ,Rescuing,Nguyen Thi Thu Thao,F,58,Minor laceration to leg,N,18h00,20 to 30kg shark,"Thanh Nien, 5/21/2010",2010.05.18.c-Thao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.18.c-Thao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.18.c-Thao.pdf,2010.05.18.c,2010.05.18.c,5190,, +2010.05.18.b,18-May-10,2010,Unprovoked,VIETNAM,Binh Dinh Province,Quy Nhon ,Swimming,Nguyen Thi Tanh ,F,60,Severe lacerations to left foot,N,18h00,20 to 30kg shark,"Thanh Nien, 5/21/2010",2010.05.18.b-Thanh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.18.b-Thanh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.18.b-Thanh.pdf,2010.05.18.b,2010.05.18.b,5189,, +2010.05.18.a,18-May-10,2010,Unprovoked,AUSTRALIA,New South Wales,Point Plomer,Surfing,Craig Gibson,M,,Superficial lacerations to lower left leg,N,16h30,,"Macleay Argus, 5/2/2010",2010.05.18.a-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.18.a-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.18.a-Gibson.pdf,2010.05.18.a,2010.05.18.a,5188,, +2010.05.03,03-May-10,2010,Unprovoked,MADAGASCAR,Antsiranana Province," Ambatolaoka, Nosy Be Island",Scuba diving,Michel Touzet,M,59,Lacerations to arm & chest,N,09h30,,M.Touzel; Shark Attack Survivors,2010.05.03-Touzet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.03-Touzet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.03-Touzet.pdf,2010.05.03,2010.05.03,5187,, +2010.05.01,01-May-10,2010,Unprovoked,USA,Florida,New Smyrna Beach,Wading,Caitlin Dubois,F,10,Minor puncture wounds to right ankle,N,10h30,4' shark,"S. Petersohn;J. Wheeler, 13 News, 5/4/2010",2010.05.01-Dubois.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.01-Dubois.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.01-Dubois.pdf,2010.05.01,2010.05.01,5186,, +2010.04.28,28-Apr-10,2010,Provoked,USA,Florida,Hanalei Bay,Measuring sharks,Kirk Gastrich,M,29,Arm bitten PROVOKED INCIDENT ,N,Afternoon,"Lemon shark, 6'","D. Guevara, WSVN-TV, 4/28/2010",2010.04.28-Gatrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.28-Gatrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.28-Gatrich.pdf,2010.04.28,2010.04.28,5185,, +2010.04.19,19-Apr-10,2010,Unprovoked,USA,Hawaii,"Hanalei Bay, Kauai",Surfing,Jim Rawlinson,M,68,"No injury, surfboard bitten",N,16h00,14' shark,"R. Collier, Honolulu Advertiser, 4/23/2010",2010.04.19-Rawlinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.19-Rawlinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.19-Rawlinson.pdf,2010.04.19,2010.04.19,5184,, +2010.04.13,13-Apr-10,2010,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"East Beach, Port Alfred",Surfing,Brendan Denton,M,35,Both feet bitten,N,10h00,2 m shark,"Dispatch Now, 4/13/2010",2010.04.13-Denton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.13-Denton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.13-Denton.pdf,2010.04.13,2010.04.13,5183,, +2010.04.04,04-Apr-10,2010,Unprovoked,EGYPT,Sinai Peninsula,Sharm el-Sheikh ,Swimming / treading water,James Elliott,M,24,Lacerations to left ankle and foot,N,14h00,"Oceanic whitetip shark, 6'","J. Elliott; Blackpool Gazette, 4/16/2010",2010.04.04-Elliot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.04-Elliot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.04-Elliot.pdf,2010.04.04,2010.04.04,5182,, +2010.03.27, 27-Mar-2010,2010,Unprovoked,REUNION,Saint-Benoit,Bittern,Surfing,Oliver Schorebreak,M,34,"No injury, board bitten",N,11h00,1.5 m shark,"C. Ekstander, GSAF",2010.03.27-Schorebreak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.03.27-Schorebreak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.03.27-Schorebreak.pdf,2010.03.27,2010.03.27,5181,, +2010.02.19,190Feb-2010,2010,Unprovoked,NEW ZEALAND,South Island,Tahunanui Beach,Swimming,Paul Baird,M,,Bruised but otherwise unhurt,N,Night,Possibly a blue shark,"Nelson Mail, 2/23/2010",2010.02.19-Baird.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.19-Baird.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.19-Baird.pdf,2010.02.19,2010.02.19,5180,, +2010.02.16,16-Feb-10,2010,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Yellow Sands Point,Surfing,Michal du Plessis ,M,,Lacerations to right leg,N,11h00,3 m shark,"Die Burger, 2/18/2010",2010.02.16-duPlessis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.16-duPlessis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.16-duPlessis.pdf,2010.02.16,2010.02.16,5179,, +2010.02.15,15-Feb-10,2010,Unprovoked,FIJI,Off Vanua Levu,Nara Reef,Scuba diving,Henry Usimewa,M,19,FATAL,Y,09h30,,"Fiji Times, 2/17/2010",2010.02.15-Usimewa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.15-Usimewa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.15-Usimewa.pdf,2010.02.15,2010.02.15,5178,, +2010.02.13,13-Feb-10,2010,Unprovoked,AUSTRALIA,Queensland,"Dent Island, Whitsundays",Snorkeling,Patricia Trumbull,F,60,Lacerations to legs & buttocks,N,13h30,2 m shark,"Sydney Morning Herald, 2/14/2010",2010.02.13-Trumbull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.13-Trumbull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.13-Trumbull.pdf,2010.02.13,2010.02.13,5177,, +2010.02.11,11-Feb-10,2010,Unprovoked,AUSTRALIA,New South Wales,"Mona Vale Beach, Sydney",Surfing,Paul Welsh,M,46,"Minor injury, lacerations to left lower leg",N,08h00,"Wobbegong shark, 1.6m","John West, Taronga Zoo",2010.02.11-Welsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.11-Welsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.11-Welsh.pdf,2010.02.11,2010.02.11,5176,, +2010.02.06.R,Reported 06-Feb-2010,2010,Provoked,NEW ZEALAND,South Island,Cosy Nook,Spearfishing,Aaron Muilwyk,M,,"No injury, shark bit his speargun after he used it to prod the shark PROVOKED INCIDENT",N,,2 m to 3 m shark,"Southland Times, 2/6/2010",2010.02.06.R-Muilwyk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.R-Muilwyk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.R-Muilwyk.pdf,2010.02.06.R,2010.02.06.R,5175,, +2010.02.06.b,06-Feb-10,2010,Unprovoked,AUSTRALIA,New South Wales,Turners' Beach,Body boarding,Dean Everson,M,18,"No injury, shark & board collided",N,15h30,"White shark, 2.5m","K. Matthews, Lismore Northern Star, 2/10/2010",2010.02.06.b-Everson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.b-Everson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.b-Everson.pdf,2010.02.06.b,2010.02.06.b,5174,, +2010.02.06.a,06-Feb-10,2010,Provoked,USA,Florida,Riviera Beach,Surf fishing / wading,male,M,,Leg bitten while trying to free a hooked shark PROVOKED INCIDENT,N,15h00,"Spinner shark, 6'","WPTV.com, 2/7/2010",2010.02.06.a-RivieraBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.a-RivieraBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.a-RivieraBeach.pdf,2010.02.06.a,2010.02.06.a,5173,, +2010.02.04,04-Feb-10,2010,Invalid,GUAM,Merizo,Achang Reef,Spearfishing (free diving),Andrew Duenas,M,31,Shark bites were post-mortem,Y,11h00,,"B. Kelman, Pacific Daily News, 2/9/2010",2010.02.04-Duenas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.04-Duenas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.04-Duenas.pdf,2010.02.04,2010.02.04,5172,, +2010.02.03,03-Feb-10,2010,Unprovoked,USA,Florida,"Stuart, Martin County",Kite Boarding,Stephen Howard Schafer,M,38,FATAL,Y,15h44,,"TC Palm, 2/3/2010",2010.02.03-Schafer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.03-Schafer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.03-Schafer.pdf,2010.02.03,2010.02.03,5171,, +2010.02.01,01-Feb-10,2010,Provoked,NEW ZEALAND,South Island,Oreti Beach,Boogie Boarding,Lydia Ward,F,14,Stepped on shark PROVOKED INCIDENT,N,18h30,1.5 m shark,"R.D. Weeks, GSAF; K. Ritchie, ABC News, 2/1/2010",12.26,http://sharkattackfile.net/spreadsheets/pdf_directory/12.26,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.01-Ward.pdf,2010.02.01,2010.02.01,5170,, +2010.01.30,31-Jan-10,2010,Unprovoked,BRAZIL,Rio Grande Do Sul,"Atlantis Beach, near Tramandai",Surfing,Andrei Johann,M,29,Foot bitten,N,,Thought to involve a juvenile hammerhead shark,"C. Eksander, GSAF",2010.01.30-Andrei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.30-Andrei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.30-Andrei.pdf,2010.01.30,2010.01.30,5169,, +2010.01.27,27-Jan-10,2010,Unprovoked,AUSTRALIA,Queensland,Archie's Beach,Surfing,Ashley Ramage,M,,"No injury, surfboard bitten",N,16h30,,"C. Ekstander, GSAF; Bundberg News-Mail, 1/29/2010",2010.01.27-Ramage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.27-Ramage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.27-Ramage.pdf,2010.01.27,2010.01.27,5168,, +2010.01.22.b,22-Jan-10,2010,Unprovoked,UNITED ARAB EMIRATES (UAE),Dubai,"Umm Suqeim Beach, Dubai",Surfing,Michael Geraghty,M,54,Laceration to bottom of foot,N,Evening,,"C. Eksander, GSAF",2010.01.22.b-Geraghty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.22.b-Geraghty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.22.b-Geraghty.pdf,2010.01.22.b,2010.01.22.b,5167,, +2010.01.22.a,22-Jan-10,2010,Unprovoked,AUSTRALIA,Victoria,Geelong,Surfing,Dr. Pat Lockie,M,,Lacerations to right hand ,N,07h30,,"C. Dickens, Geelong Advertiser, 1/25/2010",2010.01.22.a-Lockie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.22.a-Lockie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.22.a-Lockie.pdf,2010.01.22.a,2010.01.22.a,5166,, +2010.01.12,12-Jan-10,2010,Unprovoked,SOUTH AFRICA,Western Province,Fish Hoek,Standing,Lloyd Skinner,M,37,FATAL,Y,15h15,White shark,"L. Cohen, Times Live, 1/12/2010",2010.01.12-Skinner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.12-Skinner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.12-Skinner.pdf,2010.01.12,2010.01.12,5165,, +2010.01.09.d,09-Jan-10,2010,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island,Snorkeling,Reenie Morrissey ,F,9,2 sets of minor lacerations below her right knee,N,,"Whitetip reef shark, 1m","Courier-Mail, 1/10/2009",2010.01.09.d-Morrissey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.d-Morrissey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.d-Morrissey.pdf,2010.01.09.d,2010.01.09.d,5164,, +2010.01.09.c,09-Jan-10,2010,Unprovoked,VIETNAM,Binh Dinh Province,Quy Nhon ,,female,F,,Minor injuries,N,,,"C. Eksander, GSAF",2010.01.09.c-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.c-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.c-woman.pdf,2010.01.09.c,2010.01.09.c,5163,, +2010.01.09.b,09-Jan-10,2010,Unprovoked,VIETNAM,Binh Dinh Province,Quy Nhon ,,Mang Duc Hanh,M,,Right wrist bitten,N,17h00,,"C. Eksander, GSAF",2010.01.09.b-Hanh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.b-Hanh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.b-Hanh.pdf,2010.01.09.b,2010.01.09.b,5162,, +2010.01.09.a,09-Jan-10,2010,Unprovoked,VIETNAM,Binh Dinh Province,Quy Nhon ,Bathing,Nguyen Minh Tuan ,M,,Left arm bitten twice,N,06h45,,"C. Eksander, GSAF",2010.01.09.a-Tuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.a-Tuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.a-Tuan.pdf,2010.01.09.a,2010.01.09.a,5161,, +2010.01.06,06-Jan-10,2010,Unprovoked,USA,Florida,Elliot Key,Spearfishing,Dreice Chirino,M,32,Lacerations to arm,N,10h15,,"WSVN-TV, 1/7/2010",2010.01.06-Chirino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.06-Chirino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.06-Chirino.pdf,2010.01.06,2010.01.06,5160,, +2010.01.05,05-Jan-10,2010,Unprovoked,SOUTH AFRICA,Eastern Province,"Nahoon, East London",Surfing,male,M,,"No injury, reportedly knocked of his board by a shark",N,,,"C. Eksander, GSAF",2010.01.05-Nahoon-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.05-Nahoon-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.05-Nahoon-surfer.pdf,2010.01.05,2010.01.05,5159,, +2009.12.29,29-Dec-09,2009,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port Alfred,Wading,Simon Bruce,M,20,Lacerations to left foot,N,08h30,,"News24.com, 12/31/2009",2009.12.29-Bruce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.29-Bruce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.29-Bruce.pdf,2009.12.29,2009.12.29,5158,, +2009.12.26,26-Dec-09,2009,Provoked,AUSTRALIA,New South Wales,Avoca Beach,Swimming,John Sojoski ,M,55,Lacerations to lower left leg after stepping on the shark PROVOKED INCIDENT,N,11h00,,"Express Advocate, 12/26/2009",2009.12.26-Sojoski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.26-Sojoski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.26-Sojoski.pdf,2009.12.26,2009.12.26,5157,, +2009.12.22,22-Dec-09,2009,Unprovoked,MOZAMBIQUE,Maputo Province,Ponta do Ouro,Swimming,Peter Fraser,M,27,Multiple lacerations to right torso & arm. Defense wounds on hands,N,16h30,"Zambesi shark, 2m ","Beeld, 12/29/2009",2009.12.22-Fraser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.22-Fraser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.22-Fraser.pdf,2009.12.22,2009.12.22,5156,, +2009.12.20.b,20-Dec-09,2009,Boat,AUSTRALIA,Queensland,Mudjimba Island,Kayaking,2 males,M,,"No injury to occupants, kayak bumped by shark",N,11h00,,"C. Eksander, GSAF",2009.12.20.b-Queensland-Kayak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.20.b-Queensland-Kayak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.20.b-Queensland-Kayak.pdf,2009.12.20.b,2009.12.20.b,5155,, +2009.12.20.a,20-Dec-09,2009,Unprovoked,AUSTRALIA,Queensland,Lamont Reef,Spearfishing,John Pengelly,M,18,Lacerations to hand & forearm,N,07h30,"Bull shark, 3m","Brisbane Times, 12/20/2009",2009.12.20.a-Pengelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.20.a-Pengelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.20.a-Pengelly.pdf,2009.12.20.a,2009.12.20.a,5154,, +2009.12.18,18-Dec-09,2009,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Second Beach, Port St. Johns",Paddling on kneeboard,Tshintshekile Nduva,M,22,FATAL,Y,14h30,,"B. Jordan & A. Ferreira, Times Live, 12/21/2009",2009.12.18.a-Nduva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.18.a-Nduva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.18.a-Nduva.pdf,2009.12.18,2009.12.18,5153,, +2009.12.18,18-Dec-09,2009,Invalid,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Surfing,Lance Morris,M,,"Minor lacerations to left leg. nitially reported as a shark bite, but involved a barracuda",N,,No shark involvement,"M. Addison, C. Eckstander, GSAF",2009.12.18.b-Morris-barracuda bite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.18.b-Morris-barracuda bite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.18.b-Morris-barracuda bite.pdf,2009.12.18,2009.12.18,5152,, +2009.12.16,16-Dec-09,2009,Unprovoked,NEW ZEALAND,South Island,Clark Island,Swimming to shore from capsized kayak,Maurice Bede Philips,M,24,FATAL,Y,,"White shark, 2.8 to 3 m ","R.D. Weeks, GSAF",2009.12.16-Philips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.16-Philips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.16-Philips.pdf,2009.12.16,2009.12.16,5151,, +2009.12.13,13-Dec-09,2009,Unprovoked,AUSTRALIA,New South Wales,Coffee Head,Surfing,Nigel Hughes,M,39,Laceration to big toe,N,07h00,,"Northern Star, 12/14/2009",2009.12.13-Hughes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.13-Hughes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.13-Hughes.pdf,2009.12.13,2009.12.13,5150,, +2009.12.12,12-Dec-09,2009,Boat,AUSTRALIA,New South Wales,Hawks Nest Beach,Rowing,Surf boat with 5 lifesavers on board,,,No injury to occupants; shark bit steering oar,N,07h30,White shark,"Herald Sun, 12/13/2009",2009.12.12-Ross-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.12-Ross-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.12-Ross-boat.pdf,2009.12.12,2009.12.12,5149,, +2009.12.06,05-Dec-09,2009,Provoked,USA,New Jersey,"Adventure Aquarium, Camden",Diving,Robert Large,M,58,Lacerations & puncture wounds to right calf & ankle when diver accidentally backed into the shark PROVOKED INCIDENT,N,13h00,"Sandtiger shark, 8'","R. Large; Philadelphia Daily News, 4/22/2010",2009.12.06-Large.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.06-Large.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.06-Large.pdf,2009.12.06,2009.12.06,5148,, +2009.11.25,25-Nov-09,2009,Invalid,USA,California,"Huntington Beach, Orange County",Surfing,Kenneth Hall,M,49,Puncture wounds to right foot,N,15h30,Shark involvement not confirmed,"R. Collier, GSAF",2009.11.25-Hall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.25-Hall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.25-Hall.pdf,2009.11.25,2009.11.25,5147,, +2009.11.24,24-Nov-09,2009,Unprovoked,USA,Florida,"Lori Wilson Park, Cocoa Beach, Brevard County",Wading,Garrett Gollihugh,M,10,Left foot bitten,N,Morning,6' shark,My Fox Orlando,2009.11.24-Gollighugh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.24-Gollighugh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.24-Gollighugh.pdf,2009.11.24,2009.11.24,5146,, +2009.11.16.b,16-Nov-09,2009,Unprovoked,USA,California,"Loch Lomond, Marin County",Fishing,James White,M,31,Puncture wounds and minor lacerations to dorsal surface of his left hand,N,16h45,Thresher shark,"R. Collier, GSAF",2009.11.16.b-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.16.b-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.16.b-White.pdf,2009.11.16.b,2009.11.16.b,5145,, +2009.11.16.a,16-Nov-09,2009,Unprovoked,USA,Florida,"Jupiter, Palm Beach County",Surfing,Steven Burdelski,M,22,Foot bitten,N,09h30,,"A. Pefley, Channel 12 News",2009.11.16.a-Burdelski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.16.a-Burdelski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.16.a-Burdelski.pdf,2009.11.16.a,2009.11.16.a,5144,, +2009.11.13,13-Nov-09,2009,Unprovoked,USA,Florida,"Jupiter, Palm Beach County",Surfing,Melissa Hardcastle,F,27,Foot bitten,N,16h30,,"C. Scofield, WPTV.com",2009.11.13-Hardcastle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.13-Hardcastle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.13-Hardcastle.pdf,2009.11.13,2009.11.13,5143,, +2009.11.11,11-Nov-09,2009,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,18,Foot bitten,N,Afternoon,4' shark,Captain S. Petersohn,2009.11.11-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.11-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.11-NewSmyrnaBeach.pdf,2009.11.11,2009.11.11,5142,, +2009.11.08,08-Nov-09,2009,Unprovoked,AUSTRALIA,South Australia,Second Valley,Kayaking,Dean Brougham,M,25,Ankle bitten,N,10h30,2 m shark,"Adelaide Now, 11/19/2009",2009.11.08-Brougham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.08-Brougham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.08-Brougham.pdf,2009.11.08,2009.11.08,5141,, +2009.11.05,05-Nov-09,2009,Unprovoked,USA,California,"Davenport, Santa Cruz County",Surfing,Eric Geiselman,M,21,"No injury, board broken in half",N,Dusk,,R. Collier,2009.11.05-Geiselman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.05-Geiselman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.05-Geiselman.pdf,2009.11.05,2009.11.05,5140,, +2009.10.30,30-Oct-09,2009,Unprovoked,AUSTRALIA,Victoria,Portland,Kayaking,Rhys Gadsden,M,27,"No injury, shark bit kayak",N,Morning,"White shark, 4m","The Age, 10/31/2009",2009.10.30-Gadsden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.30-Gadsden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.30-Gadsden.pdf,2009.10.30,2009.10.30,5139,, +2009.10.29.R,Reported 29-Oct-2009,2009,Unprovoked,MOZAMBIQUE,Inhambane Province,Off Vilanculo,Spearfishing,Mark Rogotzki ,M,,Left ankle & foot bitten,N,,Zambesi shark,R. Allen; J. Little,2009.10.29.R-Rogotzki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.29.R-Rogotzki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.29.R-Rogotzki.pdf,2009.10.29.R,2009.10.29.R,5138,, +2009.10.28,28-Oct-09,2009,Unprovoked,AUSTRALIA,New South Wales,Lennox Heads,Paddle-boarding,Zahli Lowe,F,17,"No injury, shark bit rear of paddleboard",N,07h00,,"Northern Star, 10/30/2009",2009.10.28-Lowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.28-Lowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.28-Lowe.pdf,2009.10.28,2009.10.28,5137,, +2009.10.24,24-Oct-09,2009,Unprovoked,USA,California,"San Onofre, San Diego County ",Surfing,Scott Barton,M,,"3 puncture wounds to big toe of left foot, and laceration on arch of foot",N,17h30,,R. Collier,2009.10.24-Scott-Barton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.24-Scott-Barton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.24-Scott-Barton.pdf,2009.10.24,2009.10.24,5136,, +2009.10.19,19-Oct-09,2009,Unprovoked,USA,Hawaii,"Kalama Park, Maui",Surfing,Scott Henrich,M,54,Bitten on upper right thigh & right ankle,N,06h00,6' to 8' shark,"Star Bulletin, 10/19/2009",2009.10.19-Henrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.19-Henrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.19-Henrich.pdf,2009.10.19,2009.10.19,5135,, +2009.10.18,18-Oct-09,2009,Unprovoked,PANAMA,Bocas,Playa La Caba�a ,Wading,female,F,10,Arm & torso bitten,N,18h30,,A. Blaker,2009.10.18-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.18-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.18-Panama.pdf,2009.10.18,2009.10.18,5134,, +2009.10.17,17-Oct-09,2009,Provoked,SCOTLAND,Fife,Deep Sea World Aquarium,Diving,male,M,23,15-20 puncture wounds to arm by captive shark PROVOKED INCIDENT ,N,14h45,Angel shark,"Telegraph.co.uk, 10/18/2009",2009.10.17-DeepSeaWorld.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.17-DeepSeaWorld.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.17-DeepSeaWorld.pdf,2009.10.17,2009.10.17,5133,, +2009.10.14.R,Reported 14-Oct-2009,2009,Unprovoked,AUSTRALIA,Western Australia,,Diving,Matt Bowen,M,23,Severe lacerations to lower right leg,N,,"Bull shark, 10'","BBC News, 10/19/2009",2009.10.14.R-Bowen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.14.R-Bowen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.14.R-Bowen.pdf,2009.10.14.R,2009.10.14.R,5132,, +2009.10.09,09-Oct-09,2009,Unprovoked,USA,California,"San Onofre State Beach, San Diego County",Surfing,Bernard Wagor,M,,Laceration to shin of left leg,N,11h00,,R. Collier,2009.10.09-Wagor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.09-Wagor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.09-Wagor.pdf,2009.10.09,2009.10.09,5131,, +2009.10.02,02-Oct-09,2009,Provoked,UNITED KINGDOM,Devon,Mewstone Rock,Fishing,male,M,39,Injury to forearm from shark's spine PROVOKED INCIDENT ,N,12h50,Spurdog,"The Herald, 10/2/2009",2009.10.02-UK.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.02-UK.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.02-UK.pdf,2009.10.02,2009.10.02,5130,, +2009.09.26,26-Sep-09,2009,Unprovoked,USA,Florida,"Key Colony Beach, Monroe County",Swimming,Daniel Callahan,M,,Laceration to right foot,N,17h30,"Bull shark, 8'",keysnet.com,2009.09.26-Callahan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.26-Callahan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.26-Callahan.pdf,2009.09.26,2009.09.26,5129,, +2009.09.18,18-Sep-09,2009,Unprovoked,VIETNAM,,,,Nguyen Quang Vinh ,M,,Lower right leg bitten,N,,,"H. Trong & U. Phuong,.Saigon Daily, 1/13/2010",2009.09.18-Vinh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.18-Vinh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.18-Vinh.pdf,2009.09.18,2009.09.18,5128,, +2009.09.15,15-Sep-09,2009,Provoked,SOMALIA,,300 miles off the coast ,Fishing,a Spanish sailor,M,,Arm bitten PROVOKED INCIDENT ,N,,,"SMCM, 9/20/2009",2009.09.15-SpanishSailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.15-SpanishSailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.15-SpanishSailor.pdf,2009.09.15,2009.09.15,5127,, +2009.09.13,13-Sep-09,2009,Provoked,BRAZIL,Pernambuco,"Piedade, Recife",,Maur�cio da Silva Monteiro,M,34,Cause of death was drowning; his remains were scavenged by sharks,Y,,,"C. Ekstander, GSAF",2009.09.13-Monteiro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.13-Monteiro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.13-Monteiro.pdf,2009.09.13,2009.09.13,5126,, +2009.09.12,12-Sep-09,2009,Invalid,USA,North Carolina,"Corolla, Currituck County",Swimming,Richard A Snead,M,60,FATAL,Y,21h00,Shark involvement prior to death not confirmed,"C. Creswell, GSAF ",2009.09.12-Snead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.12-Snead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.12-Snead.pdf,2009.09.12,2009.09.12,5125,, +2009.09.07,07-Sep-09,2009,Unprovoked,BRAZIL,Pernambuco,"Piedade, Recife","Swimming, attempting to rescue a girl believed to be drowning",Geovanni Tiago Barbosa ,M,15,FATAL,Y,Afternoon,,"C. Eksander, GSAF",2009.09.07-Barbosa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.07-Barbosa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.07-Barbosa.pdf,2009.09.07,2009.09.07,5124,, +2009.09.02,02-Sep-09,2009,Invalid,NEVIS,,Castle Beach,Swimming,Brian Mills,M,,Death was due to drowning. Two days later his remains were recovered from a 12' tiger shark,Y,,,Dr. C. Jacobs; J. Daniel,2009.09.02-Mills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.02-Mills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.02-Mills.pdf,2009.09.02,2009.09.02,5123,, +2009.09.01,01-Sep-09,2009,Provoked,SOLOMON ISLANDS,Makira-Ulawa Province,"Kirakira, Makira Island (formerly San Cristobal)",Fishing,male,M,,Injuries to face & neck PROVOKED INCIDENT,N,,,"Solomon Star, 9/4/2009",2009.09.01-Kirakira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.01-Kirakira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.01-Kirakira.pdf,2009.09.01,2009.09.01,5122,, +2009.08.30,30-Aug-09,2009,Unprovoked,USA,California,"Huntington Beach, Orange County",Surfing,Cory Hedgepeth,M,,No injury,N,18h30,4' shark,"R. Collier, GSAF",2009.08.30-Hedgepeth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.30-Hedgepeth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.30-Hedgepeth.pdf,2009.08.30,2009.08.30,5121,, +2009.08.29,29-Aug-09,2009,Unprovoked,SOUTH AFRICA,Western Cape Province,Glentana,Surfing,Gerhard van Zyl,M,25,FATAL,Y,15h30,White shark,"Cape Argus, 8/30/2009, p.1",2009.08.29-VanZyl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.29-VanZyl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.29-VanZyl.pdf,2009.08.29,2009.08.29,5120,, +2009.08.25,25-Aug-09,2009,Unprovoked,USA,California,"Terramar Beach, Carlsbad, San Diego County",Swimming,Bethany Edmund,F,22,Puncture wounds to left foot & calf,N,16h30,"White shark, 5' to 6' juvenile ","R. Collier, GSAF",2009.08.25-Edmund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.25-Edmund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.25-Edmund.pdf,2009.08.25,2009.08.25,5119,, +2009.08.11,11-Aug-09,2009,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Alkantstrand ,Body boarding,Jeandre Nagel,M,,"No injury, shark bit bodyboard",N,Lunchtime,"White shark, 2m",Zululand Observer,2009.08.11-Nagel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.11-Nagel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.11-Nagel.pdf,2009.08.11,2009.08.11,5118,, +2009.08.10,10-Aug-09,2009,Unprovoked,USA,Florida,"Ponce, Volusia County",Swimming,A visitor from Spain,M,26,Puncture marks on left foot,N,19h00,,S. Petersohn,2009.08.10-Volusia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.10-Volusia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.10-Volusia.pdf,2009.08.10,2009.08.10,5117,, +2009.08.06,06-Aug-09,2009,Unprovoked,USA,Hawaii,Kawa'a ,Surfing,Dylan Crawford,M,,"No injury, surfboard bitten",N,08h45,"Tiger shark, 12","Big Island Weekly, 8/19/2009",2009.08.06-Crawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.06-Crawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.06-Crawford.pdf,2009.08.06,2009.08.06,5116,, +2009.08.01,01-Aug-09,2009,Unprovoked,USA,Louisiana,"Curlew Island, Breton Sound",Wade Fishing,"Chris Haynes, Jr.",M,56,Right ankle & foot bitten,N,10h00,Bull shark?,Clarion Ledger,2009.08.01-Haynes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.01-Haynes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.01-Haynes.pdf,2009.08.01,2009.08.01,5115,, +2009.07.31,31-Jul-09,2009,Unprovoked,BAHAMAS,Abaco Islands,Spanish Cay,Spearfishing,Derek Mitchell,M,14,Lacerations to calf,N,,Bull shark,WPTV.com,2009.07.31-Mitchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.31-Mitchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.31-Mitchell.pdf,2009.07.31,2009.07.31,5114,, +2009.07.30,30-Jul-09,2009,Unprovoked,AUSTRALIA,New South Wales,Broken Head,Surfing,Zac Skyring,M,14,Left forearm grazed & puncture marks in wetsuit,N,06h15,,"Lismore Northern Star, 7/31/2009",2009.07.30-Skyring.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.30-Skyring.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.30-Skyring.pdf,2009.07.30,2009.07.30,5113,, +2009.07.29,29-Jul-09,2009,Unprovoked,VIETNAM,Binh Dinh Province,Quy Nhon ,Swimming,Hoang Thi Thuy Hong ,F,41,Foot bitten,N,17h30,,"CandOnline, 1/15/2020",2009.07.29-Hong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.29-Hong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.29-Hong.pdf,2009.07.29,2009.07.29,5112,, +2009.07.24.R,Reported 24-Jul-2009,2009,Unprovoked,KENYA,Mombasa,Likoni Channel,Washing his feet,male,M,,FATAL,Y,,,"Standard Digital, 7/24/2009",2009.07.24.R-Likoni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.R-Likoni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.R-Likoni.pdf,2009.07.24.R,2009.07.24.R,5111,, +2009.07.24.b,24-Jul-09,2009,Unprovoked,USA,Texas,South Padre Island,Wading,Deidre Casas,F,14,Lacerations to anterior left lower leg,N,Afternoon,,KRGV.com,2009.07.24.b-Casas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.b-Casas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.b-Casas.pdf,2009.07.24.b,2009.07.24.b,5110,, +2009.07.24.a,24-Jul-09,2009,Invalid,SPAIN,Catalunya,Sant Salvador,Swimming,,F,11,Laceration to left foot,N,10h15,Shark involvement questionable,"ABC-Spain, 7/25/2009",2009.07.24.a-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.a-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.a-Spain.pdf,2009.07.24.a,2009.07.24.a,5109,, +2009.07.22.b,22-Jul-09,2009,Unprovoked,USA,North Carolina,Holden Beach. Brunswick County,Swimming,Julia Anne Mittleberg,F,26,Laceration to left foot,N,15h00,,"C. Creswell, GSAF",2009.07.22.b-Mittleberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.22.b-Mittleberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.22.b-Mittleberg.pdf,2009.07.22.b,2009.07.22.b,5108,, +2009.07.22.a,22-Jul-09,2009,Unprovoked,USA,Florida,"Intracoastal Waterway, St. Petersburg",Swimming,Jenna James,F,19,Laceration to lower right leg,N,15h00,,"J. Eager; R. Reyes, Tampa Tribune, 7/22/2009",2009.07.22.a-JennaJames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.22.a-JennaJames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.22.a-JennaJames.pdf,2009.07.22.a,2009.07.22.a,5107,, +2009.07.18,18-Jul-09,2009,Unprovoked,VIETNAM,Binh Dinh Province,Quy Nhon ,Swimming,Nguyen Quang Huynh,M,57,Severe bite to right leg,N,,,"C. Eksander, GSAF",2009.07.18-Haynh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.18-Haynh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.18-Haynh.pdf,2009.07.18,2009.07.18,5106,, +2009.07.11.b,11-Jul-09,2009,Provoked,BAHAMAS,,,Spearfishing,John Cooper,M,,Leg bitten by shark that had been shot in the head by another diver PROVOKED INCIDENT,N,,"Caribbean reef shark, 6'","Fox News, 7/14/2009",2009.07.11.b-Cooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.11.b-Cooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.11.b-Cooper.pdf,2009.07.11.b,2009.07.11.b,5105,, +2009.07.11.a,11-Jul-09,2009,Unprovoked,USA,California,"San Onofre, San Diego County ",Paddle-surfing,Brian Hovnanian,M,,"No injury, shark collided with surfer & board",N,08h30,5' shark,R. Collier,2009.07.11.a-Hovnanian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.11.a-Hovnanian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.11.a-Hovnanian.pdf,2009.07.11.a,2009.07.11.a,5104,, +2009.07.07,07-Jul-09,2009,Unprovoked,SOUTH AFRICA,Western Cape Province,"Jogensfontein, Stilbaai",Surfing,Paul Buckley,M,37,Leg bitten,N,11h15,,"Weekend Post, 7/8/2009",2009.07.07-Buckley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.07-Buckley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.07-Buckley.pdf,2009.07.07,2009.07.07,5103,, +2009.07.05,05-Jul-09,2009,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Boogie Boarding,female,F,12,Right ankle bitten,N,16h00,,S. Petersohn,2009.07.05-Daytona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.05-Daytona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.05-Daytona.pdf,2009.07.05,2009.07.05,5102,, +2009.07.04,04-Jul-09,2009,Provoked,USA,Florida,"Biscayne National Park, Miami",Swimming,Carmen Dominguez ,F,43,Thigh injured by hooked shark PROVOKED INCIDENT,N,15j45,"Nurse shark, 6'","Miami Herald, 7//4/2009",2009.07.04-Miami.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.04-Miami.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.04-Miami.pdf,2009.07.04,2009.07.04,5101,, +2009.06.27,27-Jun-09,2009,Unprovoked,AUSTRALIA,New South Wales,"Seven Mile Beach, Gerroa",Surfing,Les Wade,M,52,2-inch laceration to upper left arm,N,08h45,"Thought to involve a Bronze whale shark, 2m","Brisbane Times, 6/28/2009",2009.06.27-Wade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.27-Wade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.27-Wade.pdf,2009.06.27,2009.06.27,5100,, +2009.06.21,21-Jun-09,2009,Invalid,USA,California,"Shell Beach, San Luis Obispo County",Surfing,male,M,26,Puncture wounds to foot,N,,Shark involvement not confirmed,"San Luis Obispo Tribune, 6/24/2009",2009.06.21-California.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.21-California.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.21-California.pdf,2009.06.21,2009.06.21,5099,, +2009.06.16,16-Jun-09,2009,Invalid,USA,Florida,"Melbourne Beach, Brevard County",Crawling,Kevin Crowley,M,14,2-inch laceration to upper left arm,N,17h30,"Shark involvement probable, but not confirmed","Florida Today, 1/17/2009",2009.06.16-Crowley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.16-Crowley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.16-Crowley.pdf,2009.06.16,2009.06.16,5098,, +2009.06.14.R,Reported 14-Jun-2009,2009,Provoked,VIETNAM,,,Fishing for sharks,Tran Van Quy,M,,Hand bitten by hooked shark PROVOKED INCIDENT,N,,White shark,"Tin Tuc online, 6/14/2009",2009.06.14.R-Quy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.14.R-Quy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.14.R-Quy.pdf,2009.06.14.R,2009.06.14.R,5097,, +2009.06.02.b,02-Jun-09,2009,Unprovoked,EGYPT,St. Johns Reef,Habili Gafar,Scuba diving,"Nil, a dive guide",M,,Lacerations to left hand,N,,Oceanic whitetip shark,"E. Ritter, GSAF",2009.06.02.b-Nil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.02.b-Nil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.02.b-Nil.pdf,2009.06.02.b,2009.06.02.b,5096,, +2009.06.02.a,02-Jun-09,2009,Unprovoked,EGYPT,St. Johns Reef,Habili Gafar,Scuba diving,"Luc, a Belgian diver",M,,3 cm laceration to shoulder,N,,Oceanic whitetip shark,"E. Ritter, GSAF",2009.06.02.a-Luc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.02.a-Luc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.02.a-Luc.pdf,2009.06.02.a,2009.06.02.a,5095,, +2009.06.01,01-Jun-09,2009,Unprovoked,EGYPT,St. Johns Reef,Habili Gafar,Snorkeling,Katrina Tipio,F,50,FATAL,Y,Morning,"Oceanic whitetip shark, 2.5 to 3m","A. Hamada; E.Ritter, GSAF",2009.06.01-Tipio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.01-Tipio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.01-Tipio.pdf,2009.06.01,2009.06.01,5094,, +2009.05.31,31-May-09,2009,Provoked,TAIWAN,Off Green Island,Onboard the fishing vessel Chin Sheng Fa 13 ,Fishing,Zhang Sanqian,M,46,Lacerations to knee & left lower leg by electrocuted captive shark PROVOKED INCIDENT,N,20h30,80 kg shark,"Taiwan News, 5/21/09",2009.05.31-Sangian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.31-Sangian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.31-Sangian.pdf,2009.05.31,2009.05.31,5093,, +2009.05.25,25-May-09,2009,Provoked,USA,Florida,"Clearwater Beach, Pinellas County",Swimming,Dana Joseph,M,,Right foot bitten,N,20h30,5' to 8' shark,"Tampa Bay online, 5/26/2009",2009.05.25-Joseph.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.25-Joseph.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.25-Joseph.pdf,2009.05.25,2009.05.25,5092,, +2009.05.17,17-May-09,2009,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Nolan Provido,M,31,Lacerations to left leg & foot,N,09h35,blacktip or spinner shark,"S. Petersohn, GSAF",2009.05.17-Provido.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.17-Provido.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.17-Provido.pdf,2009.05.17,2009.05.17,5091,, +2009.05.16.b,16-May-09,2009,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Bryan Heath,M,49,Lacerations to right foot,N,10h27,blacktip or spinner shark,"S. Petersohn, GSAF",2009.05.16.b-Heath.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.16.b-Heath.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.16.b-Heath.pdf,2009.05.16.b,2009.05.16.b,5090,, +2009.05.16.a,16-May-09,2009,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,David Bryant,M,55,Lacerations to right hand,N,10h16,blacktip or spinner shark,"S. Petersohn, GSAF",2009.05.16.a-Bryant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.16.a-Bryant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.16.a-Bryant.pdf,2009.05.16.a,2009.05.16.a,5089,, +2009.05.12,12-May-09,2009,Provoked,GUAM,North Region,Ritidian Point,Spearfishing,Jonathan Leon Guerrero,M,27,Speared shark bit his forearm PROVOKED INCIDENT,N,Afternoon,"Blacktip shark, 4'","N. Delgado, Pacific News Center; KUAM.com",2009.05.12-Guerrero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.12-Guerrero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.12-Guerrero.pdf,2009.05.12,2009.05.12,5088,, +2009.05.06,06-Mar-09,2009,Provoked,BAHAMAS,Exuma Islands,,Spearfishing,Luis Hernandez,M,48,Lacerations to right forearm after he poked the shark with his spear PROVOKED INCIDENT ,N,,7' shark,"Sun Sentinel, 5/8/2009",2009.05.06-Hernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.06-Hernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.06-Hernandez.pdf,2009.05.06,2009.05.06,5087,, +2009.04.28,28-Apr-09,2009,Unprovoked,USA,Florida,"St. Augustine, St. John's County",,Alicia,F,,Multiple lacerations to right foot & ankle,N,16h45,,,2009.04.28-Alicia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.28-Alicia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.28-Alicia.pdf,2009.04.28,2009.04.28,5086,, +2009.04.25.R,Reported 25-Apr-2009,2009,Unprovoked,USA,California,"San Onofre State Beach, San Diego County",Surfing,Drew Senner,M,,No injury,N,10h00,,"R. Collier, GSAF",2009.04.25.R-Senner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.25.R-Senner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.25.R-Senner.pdf,2009.04.25.R,2009.04.25.R,5085,, +2009.04.21,21-Apr-09,2009,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,20,3 puncture wounds to posterior right ankle,N,Late afternoon,,"S. Petersohn, GSAF",2009.04.21-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.21-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.21-NSB.pdf,2009.04.21,2009.04.21,5084,, +2009.04.20,20-Apr-09,2009,Unprovoked,PHILIPPINES,Batangas province,Mabini,Swimming,Gerald Perez,M,23,Legs bitten,N,500,,"Abs-cbnNEWS.com, 4/22/2009",2009.04.20-Perez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.20-Perez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.20-Perez.pdf,2009.04.20,2009.04.20,5083,, +2009.04.19,19-Apr-09,2009,Unprovoked,USA,Florida,"Carlin Park, Jupiter Inlet",Surfing,Bruce Klinker,M,52,Left foot bitten,N,16h00,,"UPI, 4/20/2009",2009.04.19-Klinker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.19-Klinker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.19-Klinker.pdf,2009.04.19,2009.04.19,5082,, +2009.04.12,12-Apr-09,2009,Unprovoked,AUSTRALIA,New South Wales,Fingal Bay,Surf skiing ,Heath Milne,M,40,"No injury, catapulted into the water & ski damage",N,08h00,2' to 3' shark,"Port Stephens Examiner, 4/15/2009",2009.04.12-Milne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.12-Milne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.12-Milne.pdf,2009.04.12,2009.04.12,5081,, +2009.04.17.,17-Apr-09,2009,Unprovoked,USA,Florida,"Walton Rocks, St Lucie County",Surfing,Alexander Wagner,M,31,Laceration to forearm,N,13h15,2' to 3' shark,"TC Palm, 4/17/09",2009.04.17-Wagner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.17-Wagner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.17-Wagner.pdf,2009.04.17.,2009.04.17.,5080,, +2009.04.11,11-Apr-09,2009,Invalid,USA,Hawaii,Kona,Spearfishing,Paolo Dominici,M,49,Missing,N,,Shark involvement not confirmed,"CBS, 4/14/2009",2009.04.11-Dominici.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.11-Dominici.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.11-Dominici.pdf,2009.04.11,2009.04.11,5079,, +2009.04.06.b,06-Apr-09,2009,Invalid,SOUTH AFRICA,KwaZulu-Natal,Umtentweni,Swimming,Odwa Hlanganisela,M,24,Body not recovered,Y,Morning,Shark involvement not confirmed,"Daily Dispatch, 4/10/2009",2009.04.06.b-Hlanganisela.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.06.b-Hlanganisela.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.06.b-Hlanganisela.pdf,2009.04.06.b,2009.04.06.b,5078,, +2009.04.06.a,06-Apr-09,2009,Unprovoked,USA,California,San Diego County,Spearfishing,"Raymundo Ayus, Jr.",M,,Shark struck him but the diver was not injured,N,07h45,"White shark, 12' to 15' female",R. Collier,2009.04.06.a-Ayus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.06.a-Ayus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.06.a-Ayus.pdf,2009.04.06.a,2009.04.06.a,5077,, +2009.04.03,03-Apr-09,2009,Unprovoked,USA,Florida,"Sanibel Island, Lee County",Wading,Jack May,M,15,Lacerations to right foot and ankle,N,16h00,,"Cape Coral News, 4/3/2009",2009.04.03-May.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.03-May.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.03-May.pdf,2009.04.03,2009.04.03,5076,, +2009.03.27,27-Mar-09,2009,Provoked,SOUTH AFRICA,Eastern Cape Province,2-3 km north of Sunday's River mouth,Fishing ,Tony Dell,M,59,Calf bitten while helping angler measure the shark during fishing competition PROVOKED INCIDENT,N,,Raggedtooth shark,"The Herald (Port Elizabeth), 3/27/2007",2009.03.27-TonyDell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.27-TonyDell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.27-TonyDell.pdf,2009.03.27,2009.03.27,5075,, +2009.03.21,21-Mar-09,2009,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Second Beach, Port St. John's",Surfing,Luyolo Mangele,M,16,FATAL,Y,Afternoon,,"Daily Dispatch, 3/22/2009",2009.03.21-Mangele.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.21-Mangele.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.21-Mangele.pdf,2009.03.21,2009.03.21,5074,, +2009.03.20,20-Mar-09,2009,Unprovoked,AUSTRALIA,New South Wales,Blue Bay,Surfing,Calvin Galbraith,M,17,"Laceration to right foot, puncture wounds to calf",N,18h45,Bronze whaler shark?,"Madurah Mail, 3/26/2009",2009.03.20-BatemansBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.20-BatemansBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.20-BatemansBay.pdf,2009.03.20,2009.03.20,5073,, +2009.03.19.b,19-Mar-09,2009,Unprovoked,AUSTRALIA,New South Wales,South Broulee,Surfing,male,M,,"No injury, shark damaged surfboard",N,Early morning,,"ABC News, 3/19/2009",2009.03.19.b-SouthBroulee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.19.b-SouthBroulee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.19.b-SouthBroulee.pdf,2009.03.19.b,2009.03.19.b,5072,, +2009.03.19.a,19-Mar-09,2009,Unprovoked,AUSTRALIA,New South Wales,Bateman's Bay,Surfing,Bernadette Davis,F,,"No injury, shark bit nose of surfboard",N,07h45,,"Canberra Times, 3/20/2009",2009.03.19.a-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.19.a-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.19.a-Davis.pdf,2009.03.19.a,2009.03.19.a,5071,, +2009.03.18.a,18-Mar-09,2009,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,female,F,17,Minor bite to ankle,N,17h30,3' to 4' shark,"S. Petersohn, GSAF",2009.03.18.a-PonceInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.18.a-PonceInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.18.a-PonceInlet.pdf,2009.03.18.a,2009.03.18.a,5070,, +2009.03.17.R,Reported 17-Mar-2009,2009,Unprovoked,MALAYSIA,Strait of Malacca,Pulau Payar Island,Feeding fish,female,F,,Minor injury,N,,Blacktip reef shark pup,"C. Johansson, GSAF",2009.03.17.R-Malaysia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.17.R-Malaysia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.17.R-Malaysia.pdf,2009.03.17.R,2009.03.17.R,5069,, +2009.03.17,17-Mar-09,2009,Unprovoked,USA,Hawaii,Alenuihaha Channel,Swimming,Mike Spaulding,M,61,"Minor injury, bite chest and left calf",N,20h00,Thought to involve a cookie cutter shark,"B. Perry, Maui News, 3/18/2009",2009.03.17.a-Spaulding.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.17.a-Spaulding.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.17.a-Spaulding.pdf,2009.03.17,2009.03.17,5068,, +2009.03.16.R,Reported 16-Mar-2009,2009,Provoked,AUSTRALIA,Western Australia,"The Natural Jetty, Rottnest Island",Wading,male,M,21,Thigh bitten when he trod on the shark PROVOKED INCIDENT,N,,"Wobbegong shark, 60cm","The West, 3/16/2009",2009.03.16.R-Rottnest-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.16.R-Rottnest-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.16.R-Rottnest-Island.pdf,2009.03.16.R,2009.03.16.R,5067,, +2009.03.06,06-Mar-09,2009,Unprovoked,NEW CALEDONIA,South Province,Bourail,Surfing,Kevin Hannecart,M,19,FATAL,Y,11h30,,"Les Nouvelles Caledoniennes, 3/7-10/2009",2009.03.06-Hannecart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.06-Hannecart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.06-Hannecart.pdf,2009.03.06,2009.03.06,5066,, +2009.03.02,02-Mar-09,2009,Provoked,SOUTH AFRICA,Western Cape Province,Off Cape Point,Fishing,Gabriel Fernandez,M,40,Lacerations to arm and 2 fingers by hooked shark PROVOKED INCIDENT,N,13h30,"Blue shark, 1m","Cape Times, 3/3/2009",2009.03.02-Fernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.02-Fernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.02-Fernandez.pdf,2009.03.02,2009.03.02,5065,, +2009.03.01.b,01-Mar-09,2009,Boat,NEW ZEALAND,North Island,Taranaki,Fishing,"boat, occupants: Boyd Rutherford & Hamish Roper",M,,"No injury to occupants, shark bit propeller",N,,,"Taranaki Daily News, 3/3/2009",2009.03.01-Taranaki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.01-Taranaki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.01-Taranaki.pdf,2009.03.01.b,2009.03.01.b,5064,, +2009.03.01.a,01-Mar-09,2009,Unprovoked,AUSTRALIA,New South Wales,Avalon,Surfing,Andrew Lindop,M,15,Lacerations to leg,N,06h45,2.6 m shark,"Sunday Telegraph, 3/1/2009",2009.03.01-Lindop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.01-Lindop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.01-Lindop.pdf,2009.03.01.a,2009.03.01.a,5063,, +2009.02.22,22-Feb-09,2009,Unprovoked,AUSTRALIA,Queensland,Batt Reef,Fishing,male,M,,Severe laceration to finger,N,10h15,,"The Australian, 2/22/2009",2009.02.22-BattReef.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.22-BattReef.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.22-BattReef.pdf,2009.02.22,2009.02.22,5062,, +2009.02.18,18-Feb-09,2009,Unprovoked,AUSTRALIA,New South Wales,"Shelly Beach, near Port Macquarie",Surfing,Glen Lockery,M,,"No injury to surfer, but the nose of his board was broken",N,17h00,,"Daily Telegraph, 2/24/2009",2009.02.18-Lockery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.18-Lockery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.18-Lockery.pdf,2009.02.18,2009.02.18,5061,, +2009.02.12,12-Feb-09,2009,Unprovoked,AUSTRALIA,New South Wales,"Bondi Beach, Sydney",Surfing,Glen Orgias,M,33,Severe injury to hand ,N,19h30,"White shark, 2.5m ",The Sydney Morning Herald 2/24/2009,2009.02.12-Orgias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.12-Orgias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.12-Orgias.pdf,2009.02.12,2009.02.12,5060,, +2009.02.11,11-Feb-09,2009,Unprovoked,AUSTRALIA,New South Wales,"Garden Point, Woolloomooloo Sydney Harbour","Diving, but on the surface when bitten by the shark",Paul Degelder,M,31,Severe injuries to right hand & right thigh. Right hand surgically amputated & his right leg a week later,N,Before 07h00,"Bull shark, 2.7 m ","ABC News, 2/11/2009",2009.02.11-Degelder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.11-Degelder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.11-Degelder.pdf,2009.02.11,2009.02.11,5059,, +2009.02.08,08-Feb-09,2009,Sea Disaster,USA,Puerto Rico,Quebradillas,Air Disaster,occupant of a Cessna 206,M,,It is probable that all 5 passengers died on impact. The body of one was scavenged by a shark,Y,,,"C. Ekstander, GSAF",2009.02.08-PuertoRicoAirCrash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.08-PuertoRicoAirCrash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.08-PuertoRicoAirCrash.pdf,2009.02.08,2009.02.08,5058,, +2009.02.07.b,07-Feb-09,2009,Unprovoked,AUSTRALIA,New South Wales,Cellito Beach,Surfing,Durwin Keg,M,41,"No injury, surfboard dented",N,11h00,"White shark, 12' ","D. Keg; Herald Sun, 2/8/2009",2009.02.07.b-Keg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.07.b-Keg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.07.b-Keg.pdf,2009.02.07.b,2009.02.07.b,5057,, +2009.02.07.a,07-Feb-09,2009,Unprovoked,AUSTRALIA,New South Wales,Sandon,Surfing,Joe Kennard,M,,"No injury, flung from surfboard by the shark",N,07h30,,"A. Vlastaras, Daily Examiner, 3/9/2009",2009.02.07.a-Kennard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.07.a-Kennard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.07.a-Kennard.pdf,2009.02.07.a,2009.02.07.a,5056,, +2009.01.27.R,Reported 27-Jan-2009,2009,Provoked,AZORES,,Onboard the fishing vessel Nuevo Cedes ,Fishing,A Spanish fisherman,M,49,Left forearm bitten PROVOKED INCIDENT,N,,,"C. Johansson, GSAF",2009.01.27.R-Azores.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.27.R-Azores.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.27.R-Azores.pdf,2009.01.27.R,2009.01.27.R,5055,, +2009.01.26.R,Reported 26-Jan-2009,2009,Invalid,BRAZIL,,Praia do Olho d'Aqua,,Luciano Guimaraes dos Santos,M,17,Probable drowning with post-mortem bites,Y,,,"Jornal Pequeno, 1/26/2009",2009.01.26.R-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.26.R-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.26.R-Brazil.pdf,2009.01.26.R,2009.01.26.R,5054,, +2009.01.25,25-Jan-09,2009,Unprovoked,CUBA,Guantanamo Province,Guantanamo Bay,Spearfishing,John Emory,M,15,Severe lacerations to lower left leg,N,10h30,Bull shark,"J. Emory; Caribbean Net, 4/142009",2009.01.25-Emory.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.25-Emory.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.25-Emory.pdf,2009.01.25,2009.01.25,5053,, +2009.01.24.c,24-Jan-09,2009,Boat,NEW ZEALAND,North Island,Alderman Islands,Fishing,7.2 m boat. Occupant Kelvin Travers,,,"No injury to occupant, shark removed small auxiliary outboard motor",N,19h00,,"NZ Herald, 1/26/2009",2009.01.24.c-NewZealand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.24.c-NewZealand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.24.c-NewZealand.pdf,2009.01.24.c,2009.01.24.c,5052,, +2009.01.24.b,24-Jan-09,2009,Unprovoked,AUSTRALIA,New South Wales,"Surf Beach, Batemans Bay",Swimming,Jeremy McDonagh,M,19,Hand injured,N,16h30,,"ABC News, 1/28/2009",2009.01.24.b-McDonough.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.24.b-McDonough.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.24.b-McDonough.pdf,2009.01.24.b,2009.01.24.b,5051,, +2009.01.24.a,24-Jan-09,2009,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Second Beach, Port St. John's",Swimming,Sikhanyiso Bangilizwe,M,25,FATAL,Y,14h00,Tiger shark,"Daily Dispatch, 1/26/2009",2009.01.24.a-Bangalizwe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.24.a-Bangalizwe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.24.a-Bangalizwe.pdf,2009.01.24.a,2009.01.24.a,5050,, +2009.01.23,23-Jan-09,2009,Invalid,BRAZIL,Maranh�o,Olho d'�gua ,Swimming,Luciano Guimar�es dos Santos ,M,17,"Drowned, body scavenged by shark",Y,,,"Jornal Pequeno, 1/26/2009",2009.01.23-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.23-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.23-Santos.pdf,2009.01.23,2009.01.23,5049,, +2009.01.18,18-Jan-09,2009,Boat,AUSTRALIA,Victoria,Off Tower Hill,Fishing,Occupants: Scott & John Fulton,M,,"No injury to occupants, shark bit propeller",N,09h20,"White shark, 5.5 m ","The Standard, 1/20/2009",2009.01.18-Fulton-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.18-Fulton-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.18-Fulton-boat.pdf,2009.01.18,2009.01.18,5048,, +2009.01.16,16-Jan-09,2009,Unprovoked,NEW ZEALAND,South Island,Karitane Beach,Surfing,Tane Tokona,M,,"No injury, bumped off board by the shark",N,,,"R. Weeks, GSAF",2009.01.16-Tokana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.16-Tokana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.16-Tokana.pdf,2009.01.16,2009.01.16,5047,, +2009.01.13.R,Reported 13-Jan-2009,2009,Unprovoked,SOUTH AFRICA,Western Cape Province,"Shark Alley, off Gansbaai",,4 poachers ,,,FATAL,Y,,,"ABC News, 1/13/2009",2009.01.13.R-Poachers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.13.R-Poachers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.13.R-Poachers.pdf,2009.01.13.R,2009.01.13.R,5046,, +2009.01.12,12-Jan-09,2009,Unprovoked,AUSTRALIA,New South Wales,"Windang, Lake Illawara",Snorkeling,Steven Fogarty,M,24,Puncture wounds to right calf,N,10h45,"Dusky shark, 2m","T. Peake, GSAF",2009.01.12-Fogarty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.12-Fogarty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.12-Fogarty.pdf,2009.01.12,2009.01.12,5045,, +2009.01.11.b,11-Jan-09,2009,Unprovoked,AUSTRALIA,Tasmania,Binalong Bay,Surfing,Hannah Mighall,F,13,Severe lacerations to right leg,N,15h45,"White shark, 5m","P. Kemp, GSAF; C. Black pp. 169-177",2009.01.11.b-Mighall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.11.b-Mighall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.11.b-Mighall.pdf,2009.01.11.b,2009.01.11.b,5044,, +2009.01.11.a,11-Jan-09,2009,Unprovoked,AUSTRALIA,New South Wales,Fingal Beach,Surfing,Jonathan Beard,M,31,Left thigh severely bitten,N,09h00,"White shark, 3.5m","T. Peake, GSAF",2009.01.11.a-Beard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.11.a-Beard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.11.a-Beard.pdf,2009.01.11.a,2009.01.11.a,5043,, +2009.01.10.R, 10-Jan-2009,2009,Boat,NEW ZEALAND,North Island,Hawkes Bay,Fishing,Bry & David Mossman & 2 friends,,,"No injury to occupants, shark hit boat & bit outboard motor",N,,"Mako shark, 3m","New Zealand Herald, 1/10/2009",2009.01.10.R-Mossman-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.10.R-Mossman-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.10.R-Mossman-boat.pdf,2009.01.10.R,2009.01.10.R,5042,, +2009.01.10.a,10-Jan-09,2009,Unprovoked,ECUADOR,Galapagos Islands,Isla Isabella,Surfing,Gonzalo V�squez Alc�var ,M,22,Right lower leg bitten & defense wounds to hand,N,,,"C. Johansson, GSAF",2009.01.10.a-Alcivar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.10.a-Alcivar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.10.a-Alcivar.pdf,2009.01.10.a,2009.01.10.a,5041,, +2009.01.06,06-Jan-09,2009,Unprovoked,NEW ZEALAND,North Island,Haumoana ,Swimming,Greg Sims,M,49,Posterior thigh bitten,N,17h30,Broadnose sevengill shark,"R. Weeks, GSAF",2009.01.06-Sims.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.06-Sims.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.06-Sims.pdf,2009.01.06,2009.01.06,5040,, +2009.01.00,Jan-09,2009,Unprovoked,CUBA,Guantanamo Province,Guantanamo,Spearfishing,John,,,Lacerations to right calf,N,,Bull shark,"C. Johansson, GSAF",2009.01.00-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.00-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.00-Cuba.pdf,2009.01.00,2009.01.00,5039,, +2008.12.30,30-Dec-08,2008,Invalid,AUSTRALIA,Western Australia,Port Kennedy Beach,Crabbing,5 m aluminum dinghy - occupants Mr. & Mrs. Paul Vickery,,,"Reports said a shark attacked the dinghy, but Vickery said it did not",N,09h30,No shark involvement,"Ninemsn, 12/30/2008",2008.12.30-Vickery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.30-Vickery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.30-Vickery.pdf,2008.12.30,2008.12.30,5038,, +2008.12.27.d,27-Dec-08,2008,Boat,AUSTRALIA,Tasmania,near Schouten Island,Yacht race,Wild Oats XI,,,No injury to occupants - shark became entangled in aft rudder,N,,2 m shark,"Sydney Morning Herald, 12/28/2008",2008.12.27.d-WildOats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.d-WildOats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.d-WildOats.pdf,2008.12.27.d,2008.12.27.d,5037,, +2008.12.27.c,27-Dec-08,2008,Unprovoked,AUSTRALIA,New South Wales,Seal Rocks,Boogie Boarding,Bayden Schumann,M,10,"No injury, shark tore his swim fin",N,,,"T. Peake, GSAF",2008.12.27.c-Schumann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.c-Schumann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.c-Schumann.pdf,2008.12.27.c,2008.12.27.c,5036,, +2008.12.27.b,27-Dec-08,2008,Unprovoked,AUSTRALIA,New South Wales,"Long Reef, north of Sydney",Kayaking,Steve Kulcsar,M,29,"No injury, shark struck kayak, catapulting him into the water",N,11h00,"White shark, 4m to 5m ","Canberra Times, 12/28/2008",2008.12.27.b-Kulcsar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.b-Kulcsar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.b-Kulcsar.pdf,2008.12.27.b,2008.12.27.b,5035,, +2008.12.27.a,27-Dec-08,2008,Unprovoked,AUSTRALIA,Western Australia,Port Kennedy Beach,Snorkeling,Brian Guest,M,51,FATAL,Y,07h00,4 to 5m white shark,"T. Peake, GSAF",2008.12.27.a-Guest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.a-Guest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.a-Guest.pdf,2008.12.27.a,2008.12.27.a,5034,, +2008.12.20,20-Dec-08,2008,Unprovoked,USA,California,"Dillon Beach, Marin County",Kayaking,Tony Johnson,M,,"No injury, shark struck paddle",N,15h00,White shark,R. Collier,2008.12.20-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.20-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.20-Johnson.pdf,2008.12.20,2008.12.20,5033,, +2008.12.14,14-Dec-08,2008,Unprovoked,NEW ZEALAND,North Island,Maraetai,Fishing,Ken Lindberg,M,,Lacerations to left calf and ankle,N,,Bronze whaler shark?,"R.D. Weeks, GSAF",2008.12.14-Lindberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.14-Lindberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.14-Lindberg.pdf,2008.12.14,2008.12.14,5032,, +2008.12.10,10-Dec-08,2008,Provoked,SOUTH AFRICA,Western Cape Province,Plettenberg Bay,Fishing,Luke Parker,M,15,"Lacerations to knees, thigh and hip by hooked shark PROVOKED iNCIDENT ",N,20h00,"Raggedtooth shark, 2m","The Herald, 12/12/2008",2008.12.10-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.10-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.10-Parker.pdf,2008.12.10,2008.12.10,5031,, +2008.12.06,06-Dec-06,2008,Boat,AUSTRALIA,New South Wales,Mowarry Point,Fishing,"6 m Seaduce - Occupants: Allen Roberts, Jason Savage & Rob Lindsay.",,,Shark bit boats sea anchor,N,Morning,"White shark, 4.5 to 5 m ",S. Chenhall,2008.12.06-boat_Seaducer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.06-boat_Seaducer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.06-boat_Seaducer.pdf,2008.12.06,2008.12.06,5030,, +2008.12.00,Dec-08,2008,Unprovoked,MOZAMBIQUE,Inhambane Province,Chidenguele,Spearfishing,Darryl Kriel,M,,FATAL,Y,,Zambesi shark?,J. Little,2008.12.00-Kriel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.00-Kriel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.00-Kriel.pdf,2008.12.00,2008.12.00,5029,, +2008.11.28,28-Nov-08,2008,Unprovoked,EGYPT,Red Sea,Elphinstone Reef,Scuba diving,female diver,F,,Lacerations to fingers,N,Morning,Oceanic whitetip shark,"E. Ritter, GSAF",2008.11.28-ElphinstoneReef.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.28-ElphinstoneReef.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.28-ElphinstoneReef.pdf,2008.11.28,2008.11.28,5028,, +2008.11.25,25-Nov-08,2008,Sea Disaster,PHILIPPINES,Batanes Provine,Luzon Strait,Sinking of the cargo ship Mark Jason,4 crew,M,,"Of the 20 crew, 4 were bitten by shark. None of their iinjuries were life-threatening",N,,,"C. Johansson, GSAF",2008.11.25-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.25-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.25-Philippines.pdf,2008.11.25,2008.11.25,5027,, +2008.11.24,24-Nov-08,2008,Unprovoked,ECUADOR,Galapagos Islands,Santa Cruz,,a Danish tourist,F,,Leg bitten,N,,,ecuadorinmediato.com,2008.11.24-Galapagos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.24-Galapagos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.24-Galapagos.pdf,2008.11.24,2008.11.24,5026,, +2008.11.09.b,09-Nov-08,2008,Boat,AUSTRALIA,South Australia,North Haven,Fishing,,M,,"No injury to occupant, shark bit dinghy & motor",N,,Bronze whaler shark,"C. Johansson, GSAF",2008.11.09.b-dinghy-NorthHaven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.09.b-dinghy-NorthHaven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.09.b-dinghy-NorthHaven.pdf,2008.11.09.b,2008.11.09.b,5025,, +2008.11.09.a,09-Nov-08,2008,Sea Disaster,TAIWAN,,50 miles off Kaohsiung,Fishing boat swamped in storm,Chen Te-hsing,M,45,FATAL,Y,,,"Reuters, 11/10/2008",2008.11.09.a-Taiwan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.09.a-Taiwan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.09.a-Taiwan.pdf,2008.11.09.a,2008.11.09.a,5024,, +2008.11.06,06-Nov-08,2008,Unprovoked,PHILIPPINES,Luzon,"off Paoay, Ilocos Norte Province",Fishing,Joel Bacud,M,39,Torso & righ arm bitten FATAL,Y,10h00 -- 11h00,,"Sun Star, 11/08/2008",2008.11.06-Bacud.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.06-Bacud.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.06-Bacud.pdf,2008.11.06,2008.11.06,5023,, +2008.10.22,22-Oct-08,2008,Provoked,AUSTRALIA,New South Wales,"Oceanworld, Manley",Scuba diving,Steve Cloke,M,34,Small laceration to head from captive shark,N,17h20,"Grey nurse shark, 3m","Herald, 10/22/2008",2008.10.22-Clote.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.22-Clote.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.22-Clote.pdf,2008.10.22,2008.10.22,5022,, +2008.10.21,21-Oct-08,2008,Unprovoked,NEW CALEDONIA,,,Spearfishing,Nicolas Wright,M,24,Legs bitten,N,11h00,Lemon shark,"C. Johansson, GSAF",2008.10.21-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.21-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.21-Wright.pdf,2008.10.21,2008.10.21,5021,, +2008.10.12,12-Oct-08,2008,Provoked,AUSTRALIA,Northern Territory,Darwin,Fishing,Geoff Johnson,M,50,Right leg injured by hook and hooked shark PROVOKED INCIDENT,N,," reef shark, 1.8m","Northern Territory News, 10/14/2008",2008.10.12-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.12-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.12-Johnson.pdf,2008.10.12,2008.10.12,5020,, +2008.10.11,11-Oct-08,2008,Unprovoked,AUSTRALIA,New South Wales,Lake Macquarie,Surfing,male,M,15,"No injury, board damaged",N,15h30,,"Herald, 10/12/2008",2008.10.11-LakeMacquarie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.11-LakeMacquarie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.11-LakeMacquarie.pdf,2008.10.11,2008.10.11,5019,, +2008.10.08,08-Oct-08,2008,Unprovoked,USA,Florida,"Santa Rosa Beach, Walton County",Fishing,Hudson Anthony,M,11,Lacerations,N,12h00,,"L. Garlngton, Memphis Commercial Appeal, 10/9/2008",2008.10.08-Anthony.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.08-Anthony.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.08-Anthony.pdf,2008.10.08,2008.10.08,5018,, +2008.10.06,06-Oct-08,2008,Unprovoked,CROATIA," Split-Dalmatia Count,","Smokvina Bay, Vis Island",Spearfishing,Damjan Pecek ,M,43,Calf bitten,N,12h00,5 m white shark,A. De Maddalena,2008.10.06-Pecek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.06-Pecek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.06-Pecek.pdf,2008.10.06,2008.10.06,5017,, +2008.09.28.b,28-Sep-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,David Logan,M,44,Small puncture wounds to the heel of left foot,N,11h45,,S. Petersohn,2008.09.28.b-Logan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.28.b-Logan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.28.b-Logan.pdf,2008.09.28.b,2008.09.28.b,5016,, +2008.09.28.a,28-Sep-08,2008,Unprovoked,USA,Florida,Bethune Beach,Surfing,David Carr,M,40,Right foot bitten,N,11h00,+3' shark,S. Petersohn,2008.09.28.a-Carr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.28.a-Carr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.28.a-Carr.pdf,2008.09.28.a,2008.09.28.a,5015,, +2008.09.15,15-Sep-08,2008,Provoked,AUSTRALIA,Northern Territory,Near Croker Island,Swimming,Quentin Gorrell,M,43,Right hand lacerated by netted shark PROVOKED INCIDENT,N,14h30,Bronze whaler shark,"Northern Territory News, 9/18/2008",2008.09.15-Gorrell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.15-Gorrell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.15-Gorrell.pdf,2008.09.15,2008.09.15,5014,, +2008.09.14,14-Sep-08,2008,Unprovoked,USA,Florida,"Ormond-by-the-Sea, Volusia County",Swimming,,M,32,Lacerations to foot,N,12h00,2' to 3' juvenile shark,S. Petersohn,2008.09.14-Ormond-by-the-Sea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.14-Ormond-by-the-Sea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.14-Ormond-by-the-Sea.pdf,2008.09.14,2008.09.14,5013,, +2008.09.09,09-Sep-08,2008,Unprovoked,USA,Hawaii,"Ka'a'awa, Oahu",Surfing,Todd Murashige,M,40,Bitten on right thigh & calf,N,16h30,Tiger shark,"Honolulu Advertiser, 9/10/08",2008.09.09-Murashige.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.09-Murashige.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.09-Murashige.pdf,2008.09.09,2008.09.09,5012,, +2008.09.08,08-Sep-08,2008,Unprovoked,USA,California,"Surf Beach, Lompoc, Santa Barbara County",Surfing,Kyle K.,M,,"No injury to surfer, board bitten",N,10h30,"White shark, 14' to 16' ",R. Collier,2008.09.08-Kyle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.08-Kyle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.08-Kyle.pdf,2008.09.08,2008.09.08,5011,, +2008.09.07,07-Sep-08,2008,Unprovoked,AUSTRALIA,New South Wales,"Clarks Beach, Byron Bay",Surfing,John Morgan,M,51,Shark became tangled in his surfboard leash. The surfer was not injured,N,12h00,3 m shark,"Mailonline.com, 9/8/2008",2008.09.07-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.07-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.07-Morgan.pdf,2008.09.07,2008.09.07,5010,, +2008.09.06.b,06-Sep-08,2008,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,male,M,43,Minor injury to foot,N,12h00,,"S. Petersohn, GSAF",2008.09.06.b-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.06.b-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.06.b-NSB.pdf,2008.09.06.b,2008.09.06.b,5009,, +2008.09.06.a,06-Sep-08,2008,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,male,M,15,Minor injury to foot,N,12h00,,"S. Petersohn, GSAF",2008.09.06.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.06.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.06.a-NSB.pdf,2008.09.06.a,2008.09.06.a,5008,, +2008.09.01,01-Sep-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Joe McGauley,M,52,Shark bumped right ankle,N,10h00,4' shark,J. McGauley,2008.09.01-McGauley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.01-McGauley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.01-McGauley.pdf,2008.09.01,2008.09.01,5007,, +2008.09.00,Sep-08,2008,Unprovoked,USA,Florida,Hutchinson Island,Surfing,Daryl Zbar,M,,Right hand bitten,N,Morning,,"C. Johannson, GSAF",2008.09.00-Zbar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.00-Zbar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.00-Zbar.pdf,2008.09.00,2008.09.00,5006,, +2008.08.30.c,30-Aug-08,2008,Unprovoked,AUSTRALIA,New South Wales,"Tallow Beach, Byron Bay",Surfing,Ben Vining,M,29,"No injury, bumped off board by the shark",N,,,"C. Johansson, GSAF",2008.08.30.c-Vining.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.30.c-Vining.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.30.c-Vining.pdf,2008.08.30.c,2008.08.30.c,5005,, +2008.08.30.b,30-Aug-08,2008,Invalid,USA,Hawaii,"McKenzie Beach Park in Pahoa, Hawai'i ",Swimming,Kameron Brown,M,27,Death was probably due to drowning,Y,19h20,Shark involvement not confirmed,"D. Nakaso, Honolulu Advertiser, 8/31/2008",2008.08.30.b-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.30.b-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.30.b-Brown.pdf,2008.08.30.b,2008.08.30.b,5004,, +2008.08.30.a,30-Aug-08,2008,Provoked,ENGLAND,North Devon, Lundy Island,Fishing,Stephen Perkins,M,52,Wrist bitten by hooked shark PROVOKED INCIDENT,N,,Blue shark,"Telegraph.co.uk, 9/1/2008",2008.08.30.a-Perkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.30.a-Perkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.30.a-Perkins.pdf,2008.08.30.a,2008.08.30.a,5003,, +2008.08.28,28-Aug-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Thomas Gold,M,19,Superfical cut to left ankle,N,12h00,,"S. Petersohn, GSAF",2008.08.28-Gold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.28-Gold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.28-Gold.pdf,2008.08.28,2008.08.28,5002,, +2008.08.27,27-Aug-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Alexander Zgura,M,26,Lacerations to lower left leg,N,11h00,6' shark,"S. Petersohn, GSAF",2008.08.27-Zgura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.27-Zgura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.27-Zgura.pdf,2008.08.27,2008.08.27,5001,, +2008.08.24,24-Aug-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County","Swimming, towing surfboard",Jacob Shoup,M,20,Minor injury to left foot,N,15h00,,"S. Petersohn, GSAF",2008.08.24-Shoup.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.24-Shoup.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.24-Shoup.pdf,2008.08.24,2008.08.24,5000,, +2008.08.22,24-Aug-08,2008,Invalid,USA,North Carolina,"Surf City, Topsail Island, Pender County",Surfing,Jessica Brothers,F,20,Calf bitten,N,18h00,Shark involvement not confirmed,"C. Creswell, GSAF",2008.08.22-Brothers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.22-Brothers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.22-Brothers.pdf,2008.08.22,2008.08.22,4999,, +2008.08.20,20-Aug-08,2008,Unprovoked,USA,Florida,"Sanibel Island, Lee County",Swimming,Jack Miller,M,47,3 lacerations to forearm,N,14h45,,News-Press.com ,2008.08.20-JackMiller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.20-JackMiller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.20-JackMiller.pdf,2008.08.20,2008.08.20,4998,, +2008.08.18,18-Aug-08,2008,Invalid,USA,South Carolina,"North Myrtle Beach, Horry County",,male,M,7,Minor injuries,N,,Shark involvement not confirmed,C. Creswell,2008.08.18-boy-SC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.18-boy-SC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.18-boy-SC.pdf,2008.08.18,2008.08.18,4997,, +2008.08.16,16-Aug-08,2008,Unprovoked,USA,US Virgin Islands,Buck Island,Treading water,Elizabeth Riggs,F,38,Severe lacerations to left foot,N,Dusk,8' bull shark or Caribbean reef shark,"M. Levne, GSAF",2008.08.16-Riggs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.16-Riggs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.16-Riggs.pdf,2008.08.16,2008.08.16,4996,, +2008.08.12,12-Aug-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,Emma Klopchin ,F,13,Puncture wounds & 3-inch laceration to right calf,N,12h05,,"S. Petersohn, GSAF",2008.08.12-Klopchin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.12-Klopchin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.12-Klopchin.pdf,2008.08.12,2008.08.12,4995,, +2008.08.11,11-Aug-08,2008,Unprovoked,USA,Hawaii,"Ala Moana Beach Park, Oah'u",Diving,male,M,,"No injury, shark grabbed his bag of fish",N,14h00,"Tiger shark, 12'","Honolulu Advertiser, 8/13/2008",2008.08.11-AlaMoana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.11-AlaMoana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.11-AlaMoana.pdf,2008.08.11,2008.08.11,4994,, +2008.07.30.R,30-Jul-08,2008,Unprovoked,AUSTRALIA,Victoria,Levys Beach,Surfing,Aaron Seare,M,31,"No injury, surfboard leash severed",N,10h30,8' white shark or 7-gill shark,"Herald Sun, 7/31/2008",2008.07.30-Seare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.30-Seare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.30-Seare.pdf,2008.07.30.R,2008.07.30.R,4993,, +2008.07.30,Reported 30-Jul-2008,2008,Unprovoked,SOUTH AFRICA,,,,Michael Rutzen,M,,Lacerations to fingers,N,,White shark,http://www.youtube.com/watch?v=0jVJFXlapWY&feature=related,2008.07.30.R-Rutzen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.30.R-Rutzen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.30.R-Rutzen.pdf,2008.07.30,2008.07.30,4992,, +2008.07.27,27-Jul-08,2008,Unprovoked,PANAMA,San Carlos,Playa Teta,Swimming or surfing,Gerardo Solis ,M,,5 lacerations to left foot,N,18h00,3' shark,"International Herald Tribune, 7/28/2008",2008.07.27-Solis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.27-Solis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.27-Solis.pdf,2008.07.27,2008.07.27,4991,, +2008.07.26.b,26-Jul-08,2008,Unprovoked,MEXICO,Cabo San Lucas,,Swimming,Ryan Seacrest,M,33,3 puncture wounds to toe,N,,2' shark,"Fox News, 7/28/2008",2008.07.26.b-Seacrest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.26.b-Seacrest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.26.b-Seacrest.pdf,2008.07.26.b,2008.07.26.b,4990,, +2008.07.26.a,26-Jul-08,2008,Unprovoked,USA,Hawaii,"Honokowai, Maui",Swimming,U. Mataafa,M,,Minor injury,N,15h30,2' to 3' reef shark,"Maui News, 7/27/2008",2008.07.26.a-Maui,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.26.a-Maui,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.26.a-Maui,2008.07.26.a,2008.07.26.a,4989,, +2008.07.25.b,25-Jul-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Ethan Fulton,M,17,Right foot bitten,N,09h00,,"S. Petersohn, GSAF",2008.07.25.b-Fulton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.25.b-Fulton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.25.b-Fulton.pdf,2008.07.25.b,2008.07.25.b,4988,, +2008.07.25.a,25-Jul-08,2008,Unprovoked,USA,Hawaii,"Lahilahi Point, Oahu",Snorkeling,Kaori Fiack ,F,44,Forearm bitten ,N,08h45,,"Honolulu Star Bulletin, 7/26/2008",2008.07.25.a-Fiack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.25.a-Fiack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.25.a-Fiack.pdf,2008.07.25.a,2008.07.25.a,4987,, +2008.07.24.b,24-Jul-08,2008,Unprovoked,USA,North Carolina,"Surf City, Topsail Island, Pender County",Wading,Jake Martin,M,9,Minor lacerations to toe,N,,3' shark,"C. Creswell, GSAF",2008.07.24.b-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.24.b-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.24.b-Martin.pdf,2008.07.24.b,2008.07.24.b,4986,, +2008.07.24.a,24-Jul-08,2008,Unprovoked,USA,North Carolina,"Topsail Island, Pender County",Wading,Madeline Sinsley ,F,8,Lacerations to dorsum of right foot ,N,13h00,3' to 4' shark,"C. Creswell, GSAF",2008.07.24.a-Sinsley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.24.a-Sinsley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.24.a-Sinsley.pdf,2008.07.24.a,2008.07.24.a,4985,, +2008.07.23,23-Jul-08,2008,Provoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Troy Zettle,M,15,Foot bitten after he stepped on the shark PROVOKED INCIDENT,N,14h30,,"S. Petersohn, GSAF",2008.07.23-Zettle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.23-Zettle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.23-Zettle.pdf,2008.07.23,2008.07.23,4984,, +2008.07.19,19-Jul-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,S.A.,M,16,Lacerations to lower left leg,N,13h55,4' shark,"S. Petersohn, GSAF",2008.07.19-NewSmyrnaBach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.19-NewSmyrnaBach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.19-NewSmyrnaBach.pdf,2008.07.19,2008.07.19,4983,, +2008.07.18,18-Jul-08,2008,Unprovoked,EGYPT,,Daedalus Reef,Diving,Russian male,M,,Leg severed,N,,Oceanic whitetip shark,Ocean7,2008.07.18-RedSea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.18-RedSea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.18-RedSea.pdf,2008.07.18,2008.07.18,4982,, +2008.07.13,13-Jul-08,2008,Invalid,USA,North Carolina,"Carolina Beach, New Hanover County",Body surfing,Donald Griffin,M,52,"Bruises, abrasions and some spinal and nerve damage when collided with marine animal, possibly a shark or dolphin.",N,,Shark involvement not confirmed,"C. Creswell, GSAF",2008.07.13-Griffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.13-Griffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.13-Griffin.pdf,2008.07.13,2008.07.13,4981,, +2008.07.11,11-Jul-08,2008,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Surfing,male,M,24,Laceration to foream,N,14h00,,"C. Creswell, GSAF",2008.07.11-Isle-of-Palms.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.11-Isle-of-Palms.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.11-Isle-of-Palms.pdf,2008.07.11,2008.07.11,4980,, +2008.07.09,09-Jul-08,2008,Unprovoked,USA,North Carolina,"Emerald Isle, Carteret County",Swimming,Bailleigh Foster,F,14,Lacerations to right foot,N,19h30,,"C. Creswell, GSAF",2008.07.09-Foster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.09-Foster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.09-Foster.pdf,2008.07.09,2008.07.09,4979,, +2008.07.05,05-Jul-08,2008,Unprovoked,USA,South Carolina,"Litchfield Beach, Georgetown County",,J.L.,F,17,Lacerations to right foot,N,14h21,,"C. Creswell, GSAF",2008.07.05-Lunti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.05-Lunti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.05-Lunti.pdf,2008.07.05,2008.07.05,4978,, +2008.07.00,Late Jul-2008,2008,Boat,UNITED KINGDOM,Sussex,"Rock-a-Nore, Hastings",Rowing an inflatable dinghy,Occupants: Luke Jones & James Sequin ,M,16,Shark leapt into & damaged the dinghy but no injury to occupants,N,,"Starry smoothhound shark, 1m","Hastings Observer, 8/1/2008",2008.07.00-UK-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.00-UK-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.00-UK-dinghy.pdf,2008.07.00,2008.07.00,4977,, +2008.06.28.c,28-Jun-08,2008,Invalid,USA,Hawaii,"Kamilo Point, Hawai'i",Wading,Nathan Labarios,M,53,Probable drowning with post-mortem bites,Y,Afternoon,Shark involvement prior to death not confirmed,"Honolulu Star Bulletin, 6/30/2008",2008.06.28.c-Labarios.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.28.c-Labarios.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.28.c-Labarios.pdf,2008.06.28.c,2008.06.28.c,4976,, +2008.06.28.b,28-Jun-08,2008,Unprovoked,BAHAMAS,Abaco Islands,,Spearfishing,Max Briggs,M,42,Lacerations to calf,N,11h00,"Bull shark, 6' to 7'","M. Briggs; C. Johansson, GSAF",2008.06.28.b-Briggs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.28.b-Briggs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.28.b-Briggs.pdf,2008.06.28.b,2008.06.28.b,4975,, +2008.06.28.a,28-Jun-08,2008,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Surf skiing ,Kobus Maritz,M,46,"No injury, ski bitten",N,14h00,"White shark, 2m",,2008.06.28.a-Maritz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.28.a-Maritz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.28.a-Maritz.pdf,2008.06.28.a,2008.06.28.a,4974,, +2008.06.26.R,Reported 26-Jun-2008,2008,Unprovoked,SOUTH AFRICA,Western Cape Province,Struis Bay,Spearfishing (free diving),Kevin Macghie ,M,,No injury,N,,"White shark, 4.5m",D. Inggs; Gletwyn Rubidge�s Spearfishing and Freediving blog,2008.06.26.R-Macghie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.R-Macghie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.R-Macghie.pdf,2008.06.26.R,2008.06.26.R,4973,, +2008.06.26.b,26-Jun-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,29,Minor laceration to foot,N,Afternoon,,S. Petersohn,2008.06.26.b-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.b-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.b-NSB.pdf,2008.06.26.b,2008.06.26.b,4972,, +2008.06.26.a,26-Jun-08,2008,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Swimming,Preston Pearman,M,37,Lacerations to hand,N,11h15,4.5 to 5' shark,"P. Pearman; C. Creswell, GSAF",2008.06.26.a-Pearman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.a-Pearman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.a-Pearman.pdf,2008.06.26.a,2008.06.26.a,4971,, +2008.06.24,24-Jun-08,2008,Unprovoked,BRAZIL,Bahia,Guarajuba,Surfing,Ricardo Garcia Santo S� ,M,,"No injury, board bitten",N,Morning,,"O Globo, 6/25/2008",2008.06.24-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.24-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.24-Brazil.pdf,2008.06.24,2008.06.24,4970,, +2008.06.21,21-Jun-08,2008,Unprovoked,USA,California,"West Cove, Catalina Island",Kayaking,Bettina Pereira,F,40," No injury. Shark bumped kayak, flinging her into the water. ",N,09h00,"White shark, 15'","R. Collier, GSAF",2008.06.21-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.21-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.21-Pereira.pdf,2008.06.21,2008.06.21,4969,, +2008.06.20,20-Jun-08,2008,Unprovoked,USA,Florida,"Fernandina Beach, Nassau County",Wading,Jennifer Cation,F,35,Lacerations to lower right calf,N,11h10,,"News-Leader, 6/21/2008",2008.06.20-Cation.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.20-Cation.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.20-Cation.pdf,2008.06.20,2008.06.20,4968,, +2008.06.11,11-Jun-08,2008,Unprovoked,BRAZIL,Pernambuco,"Punta Del Chifre, Olinda",Surfing,Juan Rodrigues Galvao ,M,14,Laceration to left leg & foot,N,,,"O Globo, 6/12/2008",2008.06.11-Rodrigues.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.11-Rodrigues.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.11-Rodrigues.pdf,2008.06.11,2008.06.11,4967,, +2008.06.07,07-Jun-08,2008,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Body surfing,John Vasbinder,M,40,Lacerations & abrasions to right hand,N,,,"TC Palm, 6/20/08",2008.06.07-Vasbinder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.07-Vasbinder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.07-Vasbinder.pdf,2008.06.07,2008.06.07,4966,, +2008.06.02.R,Reported 02-Jun-2008,2008,Boat,SCOTLAND,Easter Ross,Balintore Bay,Fishing,"12' boat, 2 occupants",,,No injury to occupants; shark struck their boat,N,,Basking shark,"C. Johansson, GSAF",2008.06.02.R-Scotland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.02.R-Scotland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.02.R-Scotland.pdf,2008.06.02.R,2008.06.02.R,4965,, +2008.06.01.b,01-Jun-08,2008,Unprovoked,USA,South Carolina,Cherry Grove,Body surfing,Madi Taff,F,15,Foot bitten,N,18h30,5' shark,"C. Creswell, GSAF",2008.06.01.b-Taff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.01.b-Taff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.01.b-Taff.pdf,2008.06.01.b,2008.06.01.b,4964,, +2008.06.01.a,01-Jun-08,2008,Unprovoked,BRAZIL,Pernambuco,"Piedade, Recife",Swimming,Wellington dos Santos ,M,14,"Hand severed, buttocks bitten",N,15h00,Bull shark,Associated Press,2008.06.01-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.01-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.01-Santos.pdf,2008.06.01.a,2008.06.01.a,4963,, +2008.05.26,26-May-08,2008,Unprovoked,USA,North Carolina,"Hammocks Beach State Park, Bear Island, Onslow County",Surfing,William Early,M,9,Biceps & lower arm bitten,N,15h50,,"C. Creswell, GSAF",2008.05.26-Early.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.26-Early.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.26-Early.pdf,2008.05.26,2008.05.26,4962,, +2008.05.24.b,24-May-08,2008,Sea Disaster,BAHAMAS,Grand Bahama Island,Off West End,Sea Disaster,unknown,M,,Boat capsized in squall. 2 bodies scavenged by sharks,N,,Tiger sharks in area,Associated Press,2008.05.24.b-BahamasBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.24.b-BahamasBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.24.b-BahamasBoat.pdf,2008.05.24.b,2008.05.24.b,4961,, +2008.05.24.a,24-May-08,2008,Unprovoked,MEXICO,Guerro,Playa Linda,Surfing,Bruce Grimes,M,49,Lacerations to right forearm and hand,N,Early morning,3 m shark,Associated Press,2008.05.24.a-Grimes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.24.a-Grimes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.24.a-Grimes.pdf,2008.05.24.a,2008.05.24.a,4960,, +2008.05.23,23-May-08,2008,Unprovoked,MEXICO,Guerro,Pantla Beach,Surfing,Osvaldo Mata Valdovinos ,M,21,FATAL,Y,,2 m shark,Reuters,2008.05.23-Mata.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.23-Mata.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.23-Mata.pdf,2008.05.23,2008.05.23,4959,, +2008.05.14,14-May-08,2008,Unprovoked,FIJI,Yasawa Islands,Turtle Island,Night diving,Aisake Sadole,M,28,FATAL,Y,Night,,"Fiji Times, 5/15/2008",2008.05.14-Sidole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.14-Sidole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.14-Sidole.pdf,2008.05.14,2008.05.14,4958,, +2008.05.10,10-May-08,2008,Unprovoked,AUSTRALIA,Western Australia,Albany,Swimming,Jason Cull,M,37,Severe lacerations to left leg,N,07h30,"White shark, 4m","Perth Now, 5/10/2008",2008.05.10-JasonCull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.10-JasonCull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.10-JasonCull.pdf,2008.05.10,2008.05.10,4957,, +2008.05.07.b,07-May-08,2008,Unprovoked,NEW CALEDONIA,North Province,Hiengh�ne,Fishing,male,M,40,Lower legs bitten,N,14h00,2 small bull sharks,"C. Johansson, GSAF",2008.05.07.b-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.07.b-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.07.b-NewCaledonia.pdf,2008.05.07.b,2008.05.07.b,4956,, +2008.05.07.a,07-May-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,Zane Atcha,M,6,2 inch laceration to left lower calf.,N,Just before noon,,"M. Johnson, Daytona News-Journal, 5/8/2008; S. Petersohn",2008.05.07.a-Atcha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.07.a-Atcha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.07.a-Atcha.pdf,2008.05.07.a,2008.05.07.a,4955,, +2008.05.01,01-May-08,2008,Provoked,SOUTH AFRICA,,,Fishing,male,M,24,Leg bitten by shark taken aboard Japanese trawler PROVOKED INCIDENT,N,,,National Sea Rescue Institute,2008.05.01-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.01-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.01-fisherman.pdf,2008.05.01,2008.05.01,4954,, +2008.04.28.b,28-Apr-08,2008,Unprovoked,MEXICO,Guerro,Troncones Beach,Surfing,Adrian Ruiz,M,24,FATAL Severe bite to right thigh,Y,Afternoon,Tiger shark,Surfline.com,2008.04.28.b-Ruiz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.28.b-Ruiz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.28.b-Ruiz.pdf,2008.04.28.b,2008.04.28.b,4953,, +2008.04.28.a,28-Apr-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,David Alger,M,18,3-inch laceration to dorsal surface of left foot,N,11h45,4' shark,S. Petersohn,2008.04.28.a-Alger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.28.a-Alger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.28.a-Alger.pdf,2008.04.28.a,2008.04.28.a,4952,, +2008.04.27,27-Apr-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Adam Tobin,M,24,Calf bitten,N,10h30,,S. Petersohn,2008.04.27-Tobin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.27-Tobin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.27-Tobin.pdf,2008.04.27,2008.04.27,4951,, +2008.04.26.b,26-Apr-08,2008,Unprovoked,NEW CALEDONIA,North Province,Poindimi�,Swimming,Olivier Vilain ,M,32,Lacerations to left foot,N,Morning,"Bull shark, 1.8m","Les Nouvelles Cal�donie, 4/28/2008 & 4/29/2008",2008.04.26.b-Vilain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.26.b-Vilain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.26.b-Vilain.pdf,2008.04.26.b,2008.04.26.b,4950,, +2008.04.26.a,26-Apr-08,2008,Provoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Mark Pattison,M,21,Puncture wounds to right foot PROVOKED INCIDENT,N,09h50,,S. Petersohn,2008.04.26.a-Pattison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.26.a-Pattison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.26.a-Pattison.pdf,2008.04.26.a,2008.04.26.a,4949,, +2008.04.25,25-Apr-08,2008,Unprovoked,USA,California,"Solana Beach, San Diego County",Swimming,Dave Martin,M,66,FATAL,Y,07h00,"White shark, 12' to 15'",R. Collier,2008.04.25-DaveMartin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.25-DaveMartin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.25-DaveMartin.pdf,2008.04.25,2008.04.25,4948,, +2008.04.20.b,20-Apr-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,female,M,14,Cuts & punctures to right foot,N,08h45,,"S. Petersohn, GSAF ",2008.04.20.b-Girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.20.b-Girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.20.b-Girl.pdf,2008.04.20.b,2008.04.20.b,4947,, +2008.04.20.a,20-Apr-08,2008,Unprovoked,AUSTRALIA,New South Wales,Crescent Head,,Jamie Adlington,M,,,UNKNOWN,,"Tiger shark, 2.3m ","T. Peake, GSAF",2008.04.20.a-Adlington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.20.a-Adlington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.20.a-Adlington.pdf,2008.04.20.a,2008.04.20.a,4946,, +2008.04.19.R,Reported 19-Apr-2008,2008,Invalid,SOUTH AFRICA,KwaZulu-Natal,Aliwal Shoal,Free-diving,Jean-Francois Avenier,M,,"As he pushd the shark away from his camera, his finger was cut on a tooth",N,,"Tiger shark, 13' female",J. Avenier,2008.04.19.R-Avenier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.19.R-Avenier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.19.R-Avenier.pdf,2008.04.19.R,2008.04.19.R,4945,, +2008.04.18,18-Apr-08,2008,Invalid,MEXICO,Quintana Roo,"Delfines Beach, Cancun",Swimming,Joram Galleros Villanueva,M,32,Probable drowning with post-mortem bites,Y,Evening,"Reported by media as shark attack, but shark involvement prior to death was not confirmed",C.Johansson,2008.04.18-Villanueva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.18-Villanueva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.18-Villanueva.pdf,2008.04.18,2008.04.18,4944,, +2008.04.17,17-Apr-08,2008,Invalid,AUSTRALIA,Queensland,"Duranbah, Greenmount Beach",Surfing,David Weale,M,19,2 puncture wounds to leg,N,11h00,Shark involvement not confirmed; thought to be a barracuda bite,"C. Johansson, GSAF",2008.04.17-Weale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.17-Weale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.17-Weale.pdf,2008.04.17,2008.04.17,4943,, +2008.04.15,15-Apr-08,2008,Unprovoked,USA,Florida,"Playalinda Beach, Canaveral National Seashore, Brevard County",Surfing,Bobby Phillips,M,30,Puncture wounds to right foot,N,15h00,1.5' to 2' shark,B. Phillips,2008.04.15-Phillips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.15-Phillips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.15-Phillips.pdf,2008.04.15,2008.04.15,4942,, +2008.03.28.a,28-Mar-08,2008,Unprovoked,USA,Florida,"Near Cocoa Beach, Brevard County",Boogie Boarding,Teresa Holloway,M,,Right foot bitten,N,,a small shark,"D. MacAnnally, Eyewitness News ",2008.03.28.a-Holloway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.28.a-Holloway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.28.a-Holloway.pdf,2008.03.28.a,2008.03.28.a,4941,, +2008.04.09.R,Reported 09-Apr-2008,2008,Unprovoked,FIJI,,,Spearfishing,Rutu Meli,M,,Left forearm bitten ,N,,,"C. Johansson, GSAF; Orange County Register 4/9/2009",2008.04.09.R-Meli-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.09.R-Meli-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.09.R-Meli-Fiji.pdf,2008.04.09.R,2008.04.09.R,4940,, +2008.04.08.R,Reported 08-Apr-2008,2008,Unprovoked,USA,Florida,"1.4 miles south of Ponce de Leon Jetty, New Smyrna Beach, Volusia County",Surfing,,,,Foot bitten,N,,,"News 13,4/8/2008",2008.04.08.R-NSB-2.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.08.R-NSB-2.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.08.R-NSB-2.pdf,2008.04.08.R,2008.04.08.R,4939,, +2008.04.08,08-Apr-08,2008,Unprovoked,AUSTRALIA,New South Wales,"Lighthouse Beach, Ballina",Body boarding,Peter Edmonds,M,16,FATAL,Y,08h05,Bull shark,"T. Peake, GSAF; NSW Police Force",2008.04.08.a-Edmonds.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.08.a-Edmonds.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.08.a-Edmonds.pdf,2008.04.08,2008.04.08,4938,, +2008.04.03,03-Apr-08,2008,Unprovoked,USA,Florida,"South of Ponce de Leon Jetty, New Smyrna Beach, Volusia County",Walking out of the water after surfing,Joey Giangrasso,M,18,Right foot & ankle bitten,N,12h00,,"S. Petersohn, GSAF ",2008.04.03-Giangrasso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.03-Giangrasso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.03-Giangrasso.pdf,2008.04.03,2008.04.03,4937,, +2008.03.28.c,28-Mar-08,2008,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Scottburgh,Fishing from surfski,Jacques Peens,M,39,Right leg bitten,N,,,"C. Johansson, GSAF",2008.03.28.c-Peens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.28.c-Peens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.28.c-Peens.pdf,2008.03.28.c,2008.03.28.c,4936,, +2008.03.28.b,28-Mar-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach / Ponce Inlet, Volusia County",Surfing,Mark Lemelin,M,52,Foot bitten,N,18h50,4' to 5' shark,"S. Petersohn, GSAF ",2008.03.28.b-Lemelin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.28.b-Lemelin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.28.b-Lemelin.pdf,2008.03.28.b,2008.03.28.b,4935,, +2008.03.25,25-Mar-08,2008,Unprovoked,USA,Florida,"Palm Beach Shores, Palm Beach County",Wading,Nick Canganelli,M,15,Shin bitten,N,,6' shark,"The Plain Dealer, 4/1/2008",2008.03.25-Canganelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.25-Canganelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.25-Canganelli.pdf,2008.03.25,2008.03.25,4934,, +2008.03.23,23-Mar-08,2008,Unprovoked,USA,Florida,"South of Ponce de Leon Jetty, New Smyrna Beach, Volusia County",Walking out of the water after surfing,male,M,13,Three small lacerations/ punctures to right foot,N,11h30,2.5' shark,"S. Petersohn, GSAF ",2008.03.23-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.23-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.23-NewSmyrnaBeach.pdf,2008.03.23,2008.03.23,4933,, +2008.03.21,21-Mar-08,2008,Unprovoked,USA,Florida,"Beachway Avenue Approach, New Smyrna Beach, Volusia County",Wading,male,M,14,Two 3-inch lacerations to right ankle,N,15h53,,"S. Petersohn, GSAF ",2008.03.21-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.21-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.21-NewSmyrnaBeach.pdf,2008.03.21,2008.03.21,4932,, +2008.03.15,15-Mar-08,2008,Unprovoked,USA,Florida,"Lovers Key State Park, Bonita Springs, Lee County",Jet skiing,male,M,8,Minor injury,N,Afternoon,Shark involvement not confirmed,News-Press.com ,2008.03.15-BonitaSprings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.15-BonitaSprings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.15-BonitaSprings.pdf,2008.03.15,2008.03.15,4931,, +2008.03.07,07-Mar-08,2008,Unprovoked,USA,California," Huntington Beach, Orange County",Surfing,Thomas Larkin,M,27,"No injury to surfer, surfboard bitten by the shark",N,08h00,White shark,R. Collier,2008.03.07-Larkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.07-Larkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.07-Larkin.pdf,2008.03.07,2008.03.07,4930,, +2008.02.24,24-Feb-08,2008,Unprovoked,BAHAMAS,Northern Bahamas,"Dive site known as ""The End of the Map""",Diving,Markus Groh,M,49,"Leg bitten, FATAL",Y,10h00,"A bull shark, according to some of the divers on the boat","Sun-Sentinel, 2/25/2008",2008.02.24-Groh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.24-Groh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.24-Groh.pdf,2008.02.24,2008.02.24,4929,, +2008.02.21.R,Reported 21-Feb-2008,2008,Unprovoked,FRENCH POLYNESIA,Society Islands,Tahiti,Spearfishing,Apia Hauta,M,26,Lacerations to face,N,,,"Independent News Online, 2/21/2008",2008.02.21.R-Hauta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.21.R-Hauta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.21.R-Hauta.pdf,2008.02.21.R,2008.02.21.R,4928,, +2008.02.15,15-Feb-08,2008,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,Harold Bradner,M,25,Lacerations to foot,N,17h00,,"S. Petersohn, GSAF",2008.02.15-Bradner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.15-Bradner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.15-Bradner.pdf,2008.02.15,2008.02.15,4927,, +2008.02.07,07-Feb-08,2008,Unprovoked,AUSTRALIA,New South Wales,Horseshoe Bay,Surfing,Fiona Casey,F,14,Abrasions to elbow; collided with shark,N,,1 m shark,"T. Peake, GSAF",2008.02.07-Casey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.07-Casey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.07-Casey.pdf,2008.02.07,2008.02.07,4926,, +2008.02.06,06-Feb-08,2008,Unprovoked,USA,Florida,"Opposite Patrick Air Force Base, Brevard County",Surf-skiing,Unidentified,M,,Lacerations to foot,N,,3' shark,"Vero Beach Press Journal, 2/7/2008",2008.02.06-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.06-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.06-Surfer.pdf,2008.02.06,2008.02.06,4925,, +2008.01.29,29-Jan-08,2008,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Suncoast Pirates Beach, Durban",Surf-skiing,Wayne Symington,M,42,"No injury to surf-skiier, shark holed ski",N,,"Blacktip shark, 2m","The Mercury, 2/1/2008",2008.01.29-Symington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.29-Symington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.29-Symington.pdf,2008.01.29,2008.01.29,4924,, +2008.01.27,27-Jan-08,2008,Provoked,AUSTRALIA,Queensland,200 km east of Coolangatta ,Accidentally stood on hooked shark's tail before attempting to gut it ,Jarryd Tinson ,M,20,Laceration to left knee PROVOKED INCIDENT,N,07h30,"Mako shark, 90kg",News.com.au,2008.01.27-Tinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.27-Tinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.27-Tinson.pdf,2008.01.27,2008.01.27,4923,, +2008.01.19.R,Reported 19-Jan-2008,2008,Invalid,NEW ZEALAND,South Island,Marfells Beach,Wading,Matthew O'Neill,M,,"Stingray envenomation, not a shark",N,,No shark involvement,"R.D. Weeks, GSAF",2008.01.19.R-O'Neill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.19.R-O'Neill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.19.R-O'Neill.pdf,2008.01.19.R,2008.01.19.R,4922,, +2008.01.14,14-Jan-08,2008,Boat,NEW ZEALAND,North Island,Omaha Beach,Attempting to chase shark out to sea,inflatable rescue boat. Occupants: Lauren Johnson &. Kris O'Neill,,,"No injury to occupants, pontoon punctured",N,14h00,"Bronze whaler shark, 4m","TV3; R.D. Weeks, GSAF",2008.01.14-inflatable-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.14-inflatable-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.14-inflatable-boat.pdf,2008.01.14,2008.01.14,4921,, +2008.01.10,10-Jan-08,2008,Unprovoked,USA,Florida,"Playalinda Beach, Canaveral National Seashore, Brevard County",Surfing,Jordan Marsden,M,20,Left foot bitten,N,,a small shark,"Forida Today, 1/18/2008; Channel 9 News",2008.01.10-Marsden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.10-Marsden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.10-Marsden.pdf,2008.01.10,2008.01.10,4920,, +2008.00.00.b,Fall 2008,2008,Provoked,USA,Florida,"Off Fort Pierce, St. Lucie County",Fishing for snapper,Johnny Silva,M,,Minor injury to hand by hooked shark PROVOKED INCIDENT,N,,"Nurse shark, 10'",Extremecoast.com/ 1/30/2009,2008.00.00.b-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.00.00.b-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.00.00.b-Silva.pdf,2008.00.00.b,2008.00.00.b,4919,, +2008.00.00.a,Summer-2008,2008,Unprovoked,MEXICO,Baja California,Playas de Tijuana,Surfing,Chase Edwards,M,26,Leg bitten,N,,Possibly a hammerhead shark,"San Diego Reader, 1/7/2009",2008.00.00.a-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.00.00.a-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.00.00.a-Edwards.pdf,2008.00.00.a,2008.00.00.a,4918,, +2007.12.21,21-Dec-07,2007,Unprovoked,ECUADOR,Galapagos Islands,San Cristobal Island,Surfing,Sam Judd,M,24,Lacerations & puncture wounds to left thigh,N,,3 m shark,"R. D. Weeks, GSAF; Radio New Zealand",2007.12.21-Judd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.21-Judd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.21-Judd.pdf,2007.12.21,2007.12.21,4917,, +2007.12.19,19-Dec-07,2007,Invalid,BRITISH VIRGIN ISLANDS,Green Bay,,Scuba diving,Wayne Francis Johanning,M,53,Shark bites were post-mortem,Y,,,"C. Johannson, GSAF",2007.12.19-Johanning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.19-Johanning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.19-Johanning.pdf,2007.12.19,2007.12.19,4916,, +2007.12.18,18-Dec-07,2007,Unprovoked,AUSTRALIA,New South Wales,Jimmy's Beach,Surfing,Ben Morcom,M,31,Severe lacerations to right buttock,N,11h00,2 m shark,"Daily Telegraph, 12/18/2007",2007.12.18-Morcom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.18-Morcom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.18-Morcom.pdf,2007.12.18,2007.12.18,4915,, +2007.12.15,15-Dec-07,2007,Unprovoked,AUSTRALIA,Queensland,South Stradbroke Island,Swimming,Josh Edwards,M,teen,Lacerations to hand,N,,"""a small shark""",goldcoast.com.au,2007.12.15-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.15-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.15-Edwards.pdf,2007.12.15,2007.12.15,4914,, +2007.12.14,14-Dec-07,2007,Invalid,AUSTRALIA,New South Wales,Bondi ,Swimming,Scott Wright,M,34,Lacerations to left forearm,N,20h30,Not a shark attack; it was a hoax,"Sydney Morning Herald, 12/16/2007",2007.12.14-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.14-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.14-Wright.pdf,2007.12.14,2007.12.14,4913,, +2007.12.10,10-Dec-07,2007,Unprovoked,USA,Hawaii,"Waialua Bay, O'ahu",Surfing,Valentino Ramirez,M,52,"No injury, shark bit surfboard ",N,"""Just before 11h00""",Tiger shark,"Honolulu Advertiser, 12/12/2007",2007.12.10-Ramirez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.10-Ramirez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.10-Ramirez.pdf,2007.12.10,2007.12.10,4912,, +2007.12.09,09-Dec-07,2007,Unprovoked,NEW ZEALAND,South Island,Kaikoura,Surfing,Olivia Hislop,F,,"No injury, shark bit surfboard & severed leash",N,,,"NZ Herald, 12/11/2007",2007.12.09-Hislop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.09-Hislop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.09-Hislop.pdf,2007.12.09,2007.12.09,4911,, +2007.12.07,07-Dec-07,2007,Unprovoked,BRAZIL,Pernambuco,Itamarac�,Removing fish from a trap,Malvis Cristino de Souza,M,28,20 cm injury to left foot,N,,2.27 m shark,"JC online, 12/8/2007",2007.12.07-Malvis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.07-Malvis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.07-Malvis.pdf,2007.12.07,2007.12.07,4910,, +2007.11.18,18-Nov-07,2007,Provoked,AUSTRALIA,Western Australia,In a tidal creek 5 km from Wickham,Fishing,male,M,32,Minor injury to finger by netted shark PROVOKED INCIDENT,N,,reef shark,"thewest.com.au, 11/19/2007",2007.11.18-WA.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.18-WA.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.18-WA.pdf,2007.11.18,2007.11.18,4909,, +2007.11.08,08-Nov-07,2007,Unprovoked,AUSTRALIA,New South Wales,"Wategos Beach, Byon Bay",Surfing,Craig Evans,M,,"No injury, teethmarks in board & torn wetsuit",N,14h20,,"Northern Star, 11/10/2007",2007.11.08-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.08-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.08-Evans.pdf,2007.11.08,2007.11.08,4908,, +2007.11.07,07-Nov-07,2007,Unprovoked,SOUTH AFRICA,Western Cape Province,The Strand,Surfing,Andrew Smith,M,14,Lacerations to feet,N,17h30,1.5 to 2 m shark,"The Times (Cape Town), 11/9/2007",2007.11.07-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.07-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.07-Smith.pdf,2007.11.07,2007.11.07,4907,, +2007.11.06,06-Nov-07,2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Joseph Fox,M,21,Cut to right knee,N,11h115,4' to 5' shark,"S. Petersohn; GSAF' Central Florida News, 11/7/2006",2007.11.06-Fox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.06-Fox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.06-Fox.pdf,2007.11.06,2007.11.06,4906,, +2007.11.04,04-Nov-07,2007,Unprovoked,USA,Florida,"Round Island Park, Indian River County",Surfing,Jeffrey Nolan,M,42,Lacerations to right leg,N,09h00,5' shark,"T.C. Palm, 11/4/2007 & 11/5/2007",2007.11.04-Nolan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.04-Nolan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.04-Nolan.pdf,2007.11.04,2007.11.04,4905,, +2007.11.03,03-Nov-07,2007,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Bonza Bay,Surfing,Lee Mellin,M,37,Lacerations to thigh,N,08h45,"White shark, 3m to 4m",Daily Dispatch,2007.11.03-Mellin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.03-Mellin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.03-Mellin.pdf,2007.11.03,2007.11.03,4904,, +2007.11.00,Nov-11,2007,Invalid,MEXICO,Baja California,Guadalupe Island,Shark diving,Patrick Walsh & Paul Damgaard ,M,,White shark breached cage. No injury to occupants,N,,,Today Show,2007.11.00-cage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.00-cage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.00-cage.pdf,2007.11.00,2007.11.00,4903,, +2007.10.29,29-Oct-07,2007,Unprovoked,USA,Hawaii,"Wailea, Maui",Floating,Aaron Finley,M,32,Lacerations to left lower leg,N,15h30,Tiger shark,KHNL8.com,2007.10.29-Finley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.29-Finley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.29-Finley.pdf,2007.10.29,2007.10.29,4902,, +2007.10.15,15-Oct-07,2007,Unprovoked,AUSTRALIA,New South Wales,Byron Bay,Surf-skiing,Linda Whitehurst,F,52,small laceration to wrist,N,11h30,"White shark, 2.5m ","Sydney Morning Herald, 10/15/2007",2007.10.15-Whitehurst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.15-Whitehurst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.15-Whitehurst.pdf,2007.10.15,2007.10.15,4901,, +2007.10.13,13-Oct-07,2007,Unprovoked,AUSTRALIA,Queensland,Holmes Reef,Spearfishing,Adam Wood,M,31,Laceration to calf,N,12h00,Bronze whaler shark,"news.com.au, 10/14/2007",2007.10.13-Wood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.13-Wood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.13-Wood.pdf,2007.10.13,2007.10.13,4900,, +2007.10.07,07-Oct-07,2007,Unprovoked,USA,California,"Venice Pier, Venice, Los Angeles County",Surfing,Sam Bendall,M,22,4 scratches on left hand,N,20h30,3' to 4' shark,R. Collier,2007.10.07-Bendall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.07-Bendall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.07-Bendall.pdf,2007.10.07,2007.10.07,4899,, +2007.10.06,06-Oct-07,2007,Unprovoked,USA,Florida,"Playalinda Beach, Canaveral National Seashore, Brevard County",Surfing,E.H.,M,16,Severe lacerations to right hand,N,08h10,"Blacktip shark, 5'",E. H.,2007.10.06-EH.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.06-EH.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.06-EH.pdf,2007.10.06,2007.10.06,4898,, +2007.09.30.c,30-Sep-07,2007,Unprovoked,USA,California,"Santa Monica, Los Angeles County",Surfing,Andrew Sinagra,M,,Puncture wound to foot,N,11h30,,R. Collier,2007.09.30.c-Sinagra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.30.c-Sinagra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.30.c-Sinagra.pdf,2007.09.30.c,2007.09.30.c,4897,, +2007.09.30.b,30-Sep-07,2007,Sea Disaster,PHILIPPINES,Palawan,Off Cagayancillo,"The 426-ton cargo ship Mia, laden with cement, capsized in heavy seas ",,M,,"FATAL Only 4 of the 18 on board were rescued, some of the missing were allegedly killed by sharks",Y,14h40,,"Cebu Daily News, 10/3/2007",2007.09.30.b-Mia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.30.b-Mia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.30.b-Mia.pdf,2007.09.30.b,2007.09.30.b,4896,, +2007.09.30.a,30-Sep-07,2007,Unprovoked,NEW CALEDONIA,Loyalty Islands,"Bay of Luengoni, Lifou Island",Swimming,St�phanie Belliard ,F,23,FATAL,Y,Early morning,Tiger shark,"Les Nouvelles Caledoniennes, 10/1/2007 ",2007.09.30.a-Belliard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.30.a-Belliard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.30.a-Belliard.pdf,2007.09.30.a,2007.09.30.a,4895,, +2007.09.28,28-Sep-07,2007,Unprovoked,BAHAMAS,Grand Bahama Island,Sweetings Cay,Spearfishing,Leslie Gano,F,48,Thigh bitten,N,12h00,Caribbean reef shark,"A. Brenneka, SharkAttackSurvivors.com",2007.09.28-Gano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.28-Gano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.28-Gano.pdf,2007.09.28,2007.09.28,4894,, +2007.09.27.b,27-Sep-07,2007,Unprovoked,USA,California,"Moonstone Beach, Humboldt County",Surfing,Sue Snyder,F,,"No injury to surfer, surfboard bitten",N,08h15,White shark,R. Collier,2007.09.27.b-Snyder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.27.b-Snyder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.27.b-Snyder.pdf,2007.09.27.b,2007.09.27.b,4893,, +2007.09.27.a,27-Sep-07,2007,Unprovoked,EGYPT,Red Sea,Daedalus Reef�,Swimming,Kristina Aleksandrova,F,18 or 20,"Severe lacerations to lower left leg, ankle and foot",N,07h00,Oceanic whitetip sharks were in the vicinity,"E. Ritter & Y. Sobolev, GSAF; M. Salem ",2007.09.27.a-Aleksandrova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.27.a-Aleksandrova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.27.a-Aleksandrova.pdf,2007.09.27.a,2007.09.27.a,4892,, +2007.09.22.b,22-Sep-07,2007,Invalid,USA,Florida,Jupiter Inlet,Scuba diving,Nikki Cuomo,F,,Shark involvement prior to death unconfirmed,Y,,,"Florida Today, 12/14/2007",2007.09.22.b-Cuomo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.22.b-Cuomo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.22.b-Cuomo.pdf,2007.09.22.b,2007.09.22.b,4891,, +2007.09.22.a,22-Sep-07,2007,Unprovoked,USA,Florida,Huguenot Park,Surfing,,F,,Laceration to foot,N,,4' shark,"R.Duffy, First Coast News. 9/23/2007",2007.09.22.a-HuguenotPark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.22.a-HuguenotPark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.22.a-HuguenotPark.pdf,2007.09.22.a,2007.09.22.a,4890,, +2007.09.20,20-Sep-07,2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Tyler Robertson,M,23,Small lacerations to bottom of right big toe,N,18h20,3' shark,"S. Petersohn, GSAF",2007.09.20-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.20-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.20-Robertson.pdf,2007.09.20,2007.09.20,4889,, +2007.09.17,17-Sep-07,2007,Unprovoked,SOLOMON ISLANDS,Marovo Lagoon,Kicha Island,Spearfishing,Corey Howell,M,,Left thigh bitten,N,Dusk,Gray reef shark,L. Choquette,2007.09.17-Corey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.17-Corey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.17-Corey.pdf,2007.09.17,2007.09.17,4888,, +2007.09.16.b,16-Sep-07,2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading?,Jack Calogero,M,56,Laceration to right heel,N,11h15,,"S. Petersohn, GSAF",2007.09.16.b-Calogero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.16.b-Calogero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.16.b-Calogero.pdf,2007.09.16.b,2007.09.16.b,4887,, +2007.09.16.a,16-Sep-07,2007,Unprovoked,USA,Florida,"Flagler Beach, Flagler County",Surfing,Jessica Riley,F,Teen,"No injury, surfboard bitten",N,Early morning,9.5' shark?,wsbtv.com,2007.09.16.a-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.16.a-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.16.a-Riley.pdf,2007.09.16.a,2007.09.16.a,4886,, +2007.09.13,13-Sep-07,2007,Unprovoked,USA,Florida,"Lauderdale-by-the-Sea, Broward County",Snorkeling,Brandon Chapman,M,14,"Minor injury, shark latched onto his abdomen",N,16h00,"Nurse shark, 2' to 3' ","Miami Herald, 9/13/2007; Sun-Sentinel, 9/14/2007",2007.09.13-Chapman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.13-Chapman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.13-Chapman.pdf,2007.09.13,2007.09.13,4885,, +2007.09.08,08-Sep-07,2007,Unprovoked,USA,Florida,"Pepper Park Beach, St. Lucie County",Wading,Carolyn Griffin,F,58,Puncture wounds & 2-inch laceration to calf,N,11h45,,"First Coast News, 9/11/2007",2007.09.08-Griffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.08-Griffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.08-Griffin.pdf,2007.09.08,2007.09.08,4884,, +2007.09.05,05-Sep-07,2007,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Wading,Colette Wilson,F,36,Laceration to right big toe,N,13h42,,"S. Petersohn, GSAF",2007.09.05-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.05-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.05-Wilson.pdf,2007.09.05,2007.09.05,4883,, +2007.09.04,04-Sep-07,2007,Unprovoked,USA,South Carolina,Sullivan's Island,Standing,Rory Corr,M,15,Lacerations to left calf and both feet ,N,18h30,,"C. Creswell, GSAF; J. Johnson, Post and Courier, 9/26/2007",2007.09.04-Corr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.04-Corr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.04-Corr.pdf,2007.09.04,2007.09.04,4882,, +2007.09.03.b,03-Sep-07,2007,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Jumping,female,F,12,Tiny punctures to arm,N,Morning,"18"" to 24"" shark","S. Petersohn, GSAF",2007.09.03.b-Daytona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.03.b-Daytona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.03.b-Daytona.pdf,2007.09.03.b,2007.09.03.b,4881,, +2007.09.03.a,03-Sep-07,2007,Unprovoked,USA,Florida,"Fort Lauderdale, Broward County",Swimming,Dominco Iaciofano,M,58,"3"" laceration to left forearm",N,09h45,Possibly a spinner shark,"S. Wyman, Sun-Sentinel, 9/3/2007; Local10.com",2007.09.03.a-Iaciofano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.03.a-Iaciofano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.03.a-Iaciofano.pdf,2007.09.03.a,2007.09.03.a,4880,, +2007.08.28.b,28-Aug-07,2007,Unprovoked,USA,Hawaii,"Ka'a'awa, Oahu",Body boarding,Joshua Sumait,M,15,Laceration to right heel,N,16h30,"Tiger shark, 10' to 12' ","Honolulu Advertiser, 8/29/2007",2007.08.28.b-Sumait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.28.b-Sumait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.28.b-Sumait.pdf,2007.08.28.b,2007.08.28.b,4879,, +2007.08.28.a,28-Aug-07,2007,Unprovoked,USA,California,"Marina State Beach, Monterey County",Surfing,Todd Endris,M,24,Lacerations to thigh & torso,N,10h45,"White shark, 12'",R. Collier,2007.08.28.a-Endris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.28.a-Endris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.28.a-Endris.pdf,2007.08.28.a,2007.08.28.a,4878,, +2007.08.26,26-Aug-07,2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Joseph Coursey,M,54,Left hand bitten,N,14h00,3' shark,"S. Petersohn, GSAF ",2007.08.26-Coursey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.26-Coursey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.26-Coursey.pdf,2007.08.26,2007.08.26,4877,, +2007.08.25,25-Aug-07,2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Taylor Smith,M,27, 6 lacerations to left hand,N,Morning,3' shark,"S. Petersohn, GSAF; WESH 2 News",2007.08.25-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.25-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.25-Smith.pdf,2007.08.25,2007.08.25,4876,, +2007.08.22,22-Aug-07,2007,Provoked,USA,North Carolina,North Carolina Aquarium at Fort Fisher,Diving,Bruce Pennington,M,,Minor injury from captive shark PROVOKED INCIDENT,N,,Sand shark,"Clay Creswell, GSAF; WECT TV6",2007.08.22-Pennington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.22-Pennington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.22-Pennington.pdf,2007.08.22,2007.08.22,4875,, +2007.08.20,20-Aug-07,2007,Provoked,USA,Delaware,"Indian River Inlet, Rehoboth Beach",Fishing,male,M,,Forearm bitten by hooked shark PROVOKED INCIDENT,N,19h45,Sandtiger shark,"Delaware Coast Press, 8/24/2007",2007.08.20-DelawareFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.20-DelawareFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.20-DelawareFisherman.pdf,2007.08.20,2007.08.20,4874,, +2007.08.19.c,19-Aug-07,2007,Unprovoked,USA,Florida,"Islamorada Founder's Park, Plantation Key, Monroe County",Swimming,Chris Olstad,M,52,Torso bitten,N,20h15,,"Miami Herald, 8/20/2007",2007.08.19.c-Olstad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.19.c-Olstad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.19.c-Olstad.pdf,2007.08.19.c,2007.08.19.c,4873,, +2007.08.19.b,19-Aug-07,2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,16,Foot bitten,N,12h39,4' to 5' shark,"S. Petersohn, GSAF",2007.08.19.b-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.19.b-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.19.b-NewSmyrnaBeach.pdf,2007.08.19.b,2007.08.19.b,4872,, +2007.08.19.a.,19-Aug-07,2007,Unprovoked,USA,South Carolina,"Lakewood Campground, Grand Strand, Horry County",Playing,male,M,7,Right calf bitten,N,10h00,,"C. Creswell, GSAF",2007.08.19.a-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.19.a-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.19.a-boy.pdf,2007.08.19.a.,2007.08.19.a.,4871,, +2007.08.15,15-Aug-07,2007,Unprovoked,USA,Florida,Sarasota Bay,Floating near boat & observing bioluminesce,Andrea Lynch,M,20,Puncture wounds to torso,N,Night,Possibly a 6' bull shark,"Charlotte Observer, 8/18/2007",2007.08.15-Lynch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.15-Lynch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.15-Lynch.pdf,2007.08.15,2007.08.15,4870,, +2007.08.12,12-Aug-07,2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,female,F,15,"Minor injury, small lacerations to right foot",N,17h35, ,"S. Petersohn, GSAF",2007.08.12-girl-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.12-girl-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.12-girl-NewSmyrnaBeach.pdf,2007.08.12,2007.08.12,4869,, +2007.08.11,11-Aug-07,2007,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Walking out of the water after surfing,Matthew Barton,M,19,"Minor injury, lacerations to left ankle & foot ",N,18h00,,"S. Petersohn, GSAF",2007.08.11-Barton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.11-Barton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.11-Barton.pdf,2007.08.11,2007.08.11,4868,, +2007.08.09.b,09-Aug-07,2007,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Swimming,Noah Green,M,30,Lacerations to right foot,N,16h40,,"C. Creswell, GSAF",2007.08.09.b-NoahGreen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.09.b-NoahGreen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.09.b-NoahGreen.pdf,2007.08.09.b,2007.08.09.b,4867,, +2007.08.09.a,09-Aug-07,2007,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Boogie Boarding,Chase Crawford,M,9,Lacerations to lower leg & ankle,N,14h00,,"C. Creswell, GSAF",2007.08.09.a-ChaseCrawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.09.a-ChaseCrawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.09.a-ChaseCrawford.pdf,2007.08.09.a,2007.08.09.a,4866,, +2007.08.07,07-Aug-07,2007,Unprovoked,USA,Florida,"Islamorada, Monroe County",Jumped into the water,Ashley Silverman,F,19,Lacerations to arm,N,Afternoon,Possibly a 10' bull shark,"Miami Herald, 8/8/2007",2007.08.07-Silverman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.07-Silverman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.07-Silverman.pdf,2007.08.07,2007.08.07,4865,, +2007.07.29,29-Jul-07,2007,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,Jeffrey Clark,M,51,Minor injury to shoulder,N,Afternoon,,"S. Petersohn, GSAF",2007.07.29-JeffreyClark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.29-JeffreyClark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.29-JeffreyClark.pdf,2007.07.29,2007.07.29,4864,, +2007.07.28,28-Jul-07,2007,Unprovoked,USA,California,"Imperial Beach, San Diego County",Surfing,Jordan Springer,M,20,"No injury, shark bit surfboard",N,23h00,,R. Collier,2007.07.28-Springer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.28-Springer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.28-Springer.pdf,2007.07.28,2007.07.28,4863,, +2007.07.22,22-Jul-07,2007,Unprovoked,USA,California,"Malibu, Los Angeles County",Surf paddling,Vic Calandra,M,,"No injury, surfboard bumped by shark for 20 minutes",N,,"White shark, 12' ",R. Collier,2007.07.22-Calandra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.22-Calandra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.22-Calandra.pdf,2007.07.22,2007.07.22,4862,, +2007.07.21,21-Jul-07,2007,Boat,USA,California,"Bean Hollow State Beach, San Mateo County",Kayak Fishing,Dan Prather,M,,"No injury, kayak bitten",N,10h15,White shark,"R. Collier; San Francisco Chronicle, 7/23/2007; NorCal Kayak Anglers",2007.07.21-DanPrather.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.21-DanPrather.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.21-DanPrather.pdf,2007.07.21,2007.07.21,4861,, +2007.07.19.b,19-Jul-2007.b,2007,Unprovoked,USA,Hawaii,"Bellows Beach near Wailea Point, O�ahu",Snorkeling,Harvey Miller,M,36,Left calf severely bitten,N,15h15, ,"Honolulu Advertiser, 7/20/2007; Honolulu Star Bulletin, 7/20/2007",2007.07.19.b-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.19.b-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.19.b-Miller.pdf,2007.07.19.b,2007.07.19.b,4860,, +2007.07.19.a,19-Jul-2007.a,2007,Unprovoked,AUSTRALIA,Territory of Cocos (Keeling) Islands,Direction Island,Wading,Angus Chapman,M,15,Calf bitten,N,11h00,"Bronze whaler shark, 1.5 m ","The Western Australian, 7/20/2007",2007.07.19.a-Chapman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.19.a-Chapman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.19.a-Chapman.pdf,2007.07.19.a,2007.07.19.a,4859,, +2007.07.18.b,18-Jul-07,2007,Unprovoked,USA,North Carolina,"North Topsail Beach, Onslow County",Swimming,Matt Baker,M,14,Right calf bitten,N,12h30,2' to 3' shark,"C. Creswell, GSAF",2007.07.18.b-MattBaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.18.b-MattBaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.18.b-MattBaker.pdf,2007.07.18.b,2007.07.18.b,4858,, +2007.07.18.a,18-Jul-07,2007,Provoked,NORWAY,Oslo Fjord,Sj�strand,Scuba diving,Odd Ingebretsen,M,48,PROVOKED INCIDENT No injury. Diver touched 'dead' shark; shark bit his equipment-covered arm,N,,"3' small spotted catshark, Scyliorhinus canicula","Aftenposten, 7/18/2007",2007.07.18.a-Ingelbretsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.18.a-Ingelbretsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.18.a-Ingelbretsen.pdf,2007.07.18.a,2007.07.18.a,4857,, +2007.07.17.b,17-Jul-07,2007,Invalid,USA,California,"Faria Beach, Ventura County",Swimming,Susan Levy,F,43,Foot injured. Shark involvment uncomfirmed,N,11h00,Shark involvement not confirmed,R. Collier,2007.07.17.b-SusanLevy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.17.b-SusanLevy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.17.b-SusanLevy.pdf,2007.07.17.b,2007.07.17.b,4856,, +2007.07.17.a,17-Jul-07,2007,Unprovoked,USA,North Carolina,"Atlantic Beach, Carteret County",Wading,female,F,30,Lacerations to right thigh & left foot,N,13h00,5' shark,"C. Creswell, GSAF",2007.07.17.a-NC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.17.a-NC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.17.a-NC.pdf,2007.07.17.a,2007.07.17.a,4855,, +2007.07.10,10-Jul-07,2007,Unprovoked,BAHAMAS,Abaco Islands,Allan-Pensacola Cay,Spearfishing,Joanie Regan,F,48,"Lacerations to thumb, ring and pinky fingers of right hand ",N,11h00,"Bull shark, 5' ",J. Regan,2007.07.10-Regan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.10-Regan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.10-Regan.pdf,2007.07.10,2007.07.10,4854,, +2007.07.05,05-Jul-07,2007,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,Chaz Cecil,M,18,Right foot bitten,N,16h00,,"S. Petersohn, GSAF",2007.07.05-Cecil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.05-Cecil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.05-Cecil.pdf,2007.07.05,2007.07.05,4853,, +2007.07.04,04-Jul-07,2007,Unprovoked,REUNION,,Boucan Canot,Body boarding,Vincent Bouju,M,17,Minor injuries to thigh & knee ,N,14h30,2 m shark,"clicanoo.com, 7/5/2007",2007.07.04-Bouju.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.04-Bouju.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.04-Bouju.pdf,2007.07.04,2007.07.04,4852,, +2007.07.00,Jul-07,2007,Invalid,SENEGAL,,,Murder,Alex Takyi,,,,UNKNOWN,,,"Daily Guide, 8/20/2007",2007.07.00-Takyi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.00-Takyi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.00-Takyi.pdf,2007.07.00,2007.07.00,4851,, +2007.06.30.b,30-Jun-07,2007,Provoked,USA,Florida,Marques Island,Removing hook from shark,Samuel Gruber,M,,Lacerations to right hand by hooked shark PROVOKED INCIDENT,N,,"Lemon shark, 6' female ",S. Gruber; SharkAttackSurvivors.com,2007.06.30.b-Gruber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.30.b-Gruber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.30.b-Gruber.pdf,2007.06.30.b,2007.06.30.b,4850,, +2007.06.30.a,30-Jun-07,2007,Unprovoked,USA,California,"Will Rogers State Beach, Los Angeles County",Swimming,Katina Zinner,F,,Hand bitten,N,10h00,,R. Collier,2007.06.30.a-Zinner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.30.a-Zinner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.30.a-Zinner.pdf,2007.06.30.a,2007.06.30.a,4849,, +2007.06.25,25-Jun-07,2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Justin Lewis,M,20,6 to 8 puncture wounds to right hand,N,17h30,4' shark,"S. Petersohn, GSAF",2007.06.25-JustinLewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.25-JustinLewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.25-JustinLewis.pdf,2007.06.25,2007.06.25,4848,, +2007.06.24,24-Jun-07,2007,Unprovoked,USA,Hawaii,"Silva's Channel, Mokuleia, O'ahu",Surfing,E. Yamada,M,,"No injury, board damaged",N,07h05,Tiger shark,"G. Lee, KGMB9.com",2007.06.24-Yamada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.24-Yamada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.24-Yamada.pdf,2007.06.24,2007.06.24,4847,, +2007.06.17,17-Jun-07,2007,Invalid,USA,Florida,"Vilano Beach, St. Johns County",Surfing,Kasey Schmidt,F,9,Superficial injuries to upper leg may have been caused by surfboard fin,N,16h30,Shark involvement not confirmed,"St Augustine Record, 6/19/2007",2007.06.17-CaseySchmidt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.17-CaseySchmidt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.17-CaseySchmidt.pdf,2007.06.17,2007.06.17,4846,, +2007.06.12,12-Jun-07,2007,Unprovoked,USA,Florida,"Turtle Beach, Siesta Key, Sarasota County",Swimming,Jeanne Schaefer ,F,,Right foot bitten,N,11h00,3' to 4' shark,"R.B. Hackney, Sun-Sentinel, 7/13/2007",2007.06.12-Schaefer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.12-Schaefer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.12-Schaefer.pdf,2007.06.12,2007.06.12,4845,, +2007.06.05,05-Jun-07,2007,Unprovoked,AUSTRALIA,New South Wales,"Shelly Beach, Crescent Head",Surfing,Jack Moir,M,,Lacerations to leg & ankle,N,Sunset,,"S. Williams, Daily Telegraph, 6/7/2007",2007.06.05-JackMoir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.05-JackMoir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.05-JackMoir.pdf,2007.06.05,2007.06.05,4844,, +2007.05.26,26-May-07,2007,Unprovoked,USA,South Carolina,Garden City,Wading,Susan Dornquast,F,,Lacerations to lower leg,N,17h00,,"C. Creswell, GSAF; Hilton Head Island Packet, 5/27/2007",2007.05.26-Dornquast.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.26-Dornquast.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.26-Dornquast.pdf,2007.05.26,2007.05.26,4843,, +2007.05.24,24-May-07,2007,Provoked,USA,Virginia,"Virginia Aquarium & Marine Science Center, Virginia Beach ",Reviving a sedated shark,Beth Firchau,F,40,Left shin bitten by captive shark PROVOKED INCIDENT,N,Morning,A 10-year-old 94-pound pregnant blacktip reef shark,WAVY-TV10-News,2007.05.24-Firchau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.24-Firchau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.24-Firchau.pdf,2007.05.24,2007.05.24,4842,, +2007.05.17.R,Reported 17-May-2007,2007,Provoked,ENGLAND,Kent,Folkestone,Fishing,Phil Tanner,M,38,Bitten on the nose by a hooked shark PROVOKED INCIDENT,N,Afternoon,"Lesser spotted dogfish, Scyliorhinus canicula, less than 80 cm in length","V. Wheeler, The Sun, 5/17/2007",2007.05.17.R-PhilTanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.17.R-PhilTanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.17.R-PhilTanner.pdf,2007.05.17.R,2007.05.17.R,4841,, +2007.05.16,16-May-07,2007,Unprovoked,AUSTRALIA,Western Australia,"Warra Beach, Coral Bay",Wading,Becky Cooke,F,38,Left heel & calf bitten,N,14h30,2.5 m shark,"The Western Australian, 5/16/2007",2007.05.16-BeckyCooke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.16-BeckyCooke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.16-BeckyCooke.pdf,2007.05.16,2007.05.16,4840,, +2007.05.12,12-May-07,2007,Unprovoked,AUSTRALIA,Victoria,Warrnambool,Surfing,Blake French,M,19,"No injury, shark's fin caught his leg",N,17h45,10' shark,"The Standard, 5/15/2007",2007.05.12-BlakeFrench.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.12-BlakeFrench.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.12-BlakeFrench.pdf,2007.05.12,2007.05.12,4839,, +2007.05.10,10-May-07,2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jennifer Manis,F,21,Knee bitten,N,16h00,4' to 5' shark,J. Manis,2007.05.10-Manis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.10-Manis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.10-Manis.pdf,2007.05.10,2007.05.10,4838,, +2007.05.09.R,Reported 09-May-2007,2007,Unprovoked,SEYCHELLES,Bird Island,,Snorkeling,male,M,,No injury,N,,"White shark, 2m ",Seychelles Forum,2007.05.09.R-Seychelles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.09.R-Seychelles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.09.R-Seychelles.pdf,2007.05.09.R,2007.05.09.R,4837,, +2007.05.08,08-May-07,2007,Invalid,AUSTRALIA,New South Wales,Kingscliff Beach,Swimming,male,M,45,Shark involvement prior to death unconfirmed,Y,12h15,,"NineMSNews, 5/10/2007",2007.05.08-KingscliffBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.08-KingscliffBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.08-KingscliffBeach.pdf,2007.05.08,2007.05.08,4836,, +2007.05.07.b,07-May-07,2007,Unprovoked,USA,Hawaii,"Keawakapu Beach, Maui",Snorkeling,Peller Marion,F,63,Right foot bitten,N,08h30,"Tiger shark, 14' ","G. Kubota, Honolulu Star Bulletin, 5/8/2007",2007.05.07.b-PellerMarion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.07.b-PellerMarion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.07.b-PellerMarion.pdf,2007.05.07.b,2007.05.07.b,4835,, +2007.05.07.a,07-May-07,2007,Unprovoked,USA,Florida,Naples,Swimming,Hans Pruss,M,68,Circular bite on left thigh,N,08h30,6' to 8' shark,"Naples News, 5/10/2007",2007.05.07.a-HansPruss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.07.a-HansPruss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.07.a-HansPruss.pdf,2007.05.07.a,2007.05.07.a,4834,, +2007.05.04,04-May-07,2007,Sea Disaster,TURKS & CAICOS,Providenciales,,Sea Disaster,Haitian refugees perished when their boat capsized in choppy seas,,,Some of the bodies recovered had been bitten by sharks,Y, ,,CNN,2007.05.04-HaitianRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.04-HaitianRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.04-HaitianRefugees.pdf,2007.05.04,2007.05.04,4833,, +2007.05.00,May-07,2007,Provoked,BAHAMAS,Bimini Islands,,Shark tagging,Sabrina Garcia,F,20,Lacerations to right upper arm by captive shark PROVOKED INCIDENT,N,,"Lemon shark, >1 m ",S. Garcia,2007.05.00-Garcia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.00-Garcia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.00-Garcia.pdf,2007.05.00,2007.05.00,4832,, +2007.04.26,26-Apr-07,2007,Unprovoked,AUSTRALIA,Queensland,"Mornington Island, Gulf of Carpentaria",Swimming / jumping off a jetty,Lorraine,F,13,Lower leg & foot injured,N,18h00,"""a small shark""","news.com.au, 4/29/2007",2007.04.26-Lorraine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.26-Lorraine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.26-Lorraine.pdf,2007.04.26,2007.04.26,4831,, +2007.04.22,22-Apr-07,2007,Unprovoked,USA,Florida,"Hutchinson Island, St. Lucie County",Body boarding,Matthew Honyak,M,12,Left foot bitten,N,12h30,blacktip or spinner shark,"Sun-Sentinel, 4/23/2007",2007.04.22-Honyak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.22-Honyak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.22-Honyak.pdf,2007.04.22,2007.04.22,4830,, +2007.04.20,20-Apr-07,2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Chad Guthrie,M,24,Lacerations to left index finger & thumb ,N,17h00,3' to 4' shark,"Florida Today, 4/21/2007",2007.04.20-ChadGuthrie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.20-ChadGuthrie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.20-ChadGuthrie.pdf,2007.04.20,2007.04.20,4829,, +2007.04.13.R,Reported 13-Apr-2007,2007,Boat,USA,Florida,"Florida Keys, Monroe County",Fishing,boat: 48' charter boat GonFishin V ,,,"No injury to occupants, shark holed the transom-mounted livewell ",N,,"Bull shark, 10' ","Florida Today, 4/13/2007; A. Brenneka",2007.04.13.R-GonFishin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.13.R-GonFishin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.13.R-GonFishin.pdf,2007.04.13.R,2007.04.13.R,4828,, +2007.04.09,09-Apr-07,2007,Unprovoked,NEW CALEDONIA,South Province,Dumb�a,Surfing,Olivier Bertholom,M,26,Left foot bitten,N,16h00,Tiger shark,"Les Nouvelles Cal�doniennes, 4/11/2007",2007.04.09-Bertholom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.09-Bertholom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.09-Bertholom.pdf,2007.04.09,2007.04.09,4827,, +2007.04.01,01-Apr-07,2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Playing on a sandbar,Jack LoMedico,M,7,Lacerations & puncture wounds to right calf,N,13h05,,"S. Petersohn, GSAF; WESH 2, 4/1/2007; Local6news.com, 4/3/2007",2007.04.01-Lomedico.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.01-Lomedico.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.01-Lomedico.pdf,2007.04.01,2007.04.01,4826,, +2007.03.31.b,31-Mar-07,2007,Unprovoked,USA,Florida,"Normandy Beach, Hutchinson Island, St. Lucie County",Surfing,Larry Olson,M,27,Lacerations to right ankle ,N,14h20,3' shark,"Palm Beach Post, 3/31/2007; Sun Sentinel, 4/3/2007",2007.03.31.b-Olson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.31.b-Olson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.31.b-Olson.pdf,2007.03.31.b,2007.03.31.b,4825,, +2007.03.31.a,31-Mar-07,2007,Unprovoked,USA,Florida,"Waveland Beach, Hutchinson Island, St. Lucie County",,male,M,9,Minor cuts to right buttock & thigh,N,13h20,,"Palm Beach Post, 3/31/2007",2007.03.31.a-Waveland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.31.a-Waveland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.31.a-Waveland.pdf,2007.03.31.a,2007.03.31.a,4824,, +2007.03.22,22-Mar-07,2007,Unprovoked,YEMEN,Muhafazat Hadramawt,Ras-Alkalb,Murder,At least 29 (and possibly another 71) Somali & Ethiopian refugees,,,"FATAL, beaten & thrown overboard by smugglers, they were killed by sharks",Y,Morning,,"United Nations High Commission for Refugees, 3/26/2007",2007.03.22-EthiopianRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.22-EthiopianRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.22-EthiopianRefugees.pdf,2007.03.22,2007.03.22,4823,, +2007.03.21,21-Mar-07,2007,Unprovoked,USA,Florida,Jupiter Inlet,Surfing,Sam Chief,M,11,Punctures & lacerations to right calf & calf,N,Evening,4' to 5' shark,"TCPalm, 3/23/2007 ",2007.03.21-Chief.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.21-Chief.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.21-Chief.pdf,2007.03.21,2007.03.21,4822,, +2007.03.20,20-Mar-07,2007,Unprovoked,AUSTRALIA,New South Wales,South Golden Beach,Surfing,Jodie Cooper,F,42,Lacerations to 3 fingers of left hand ,N,10h00,1.5 m shark,"Gold Coast Bulletin, 3/21/2007",2007.03.20-JodieCooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.20-JodieCooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.20-JodieCooper.pdf,2007.03.20,2007.03.20,4821,, +2007.03.14.R,Reported 14-Mar-2007,2007,Provoked,USA,Florida,Delray Beach,Shark fishing,Gregory Kuehlewind ,M,,Right hand bitten by hooked shark PROVOKED INCIDENT,N,,5' shark,Associated Press,2007.03.14.R-Kuehlewind.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.14.R-Kuehlewind.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.14.R-Kuehlewind.pdf,2007.03.14.R,2007.03.14.R,4820,, +2007.03.12,12-Mar-07,2007,Unprovoked,AUSTRALIA,Queensland,"Moore Park, north of Bundaberg",Swimming,Mary Jane Ryan,F,59,"Bruises to arm and hand, laceration to lower leg & minor injuries to foot",N,15h30,2 to 2.5 m shark,ABC News Online,2007.03.12-Ryan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.12-Ryan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.12-Ryan.pdf,2007.03.12,2007.03.12,4819,, +2007.03.11,11-Mar-07,2007,Unprovoked,USA,Florida,"Tiger Shores Beach, Martin County",Surfing,Adam McMichael,M,29,Lacerations to right forearm & hand,N,13h00,,"J. Ashton, T.C. Palm, 3/12/2007",2007.03.11-McMichael.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.11-McMichael.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.11-McMichael.pdf,2007.03.11,2007.03.11,4818,, +2007.03.05.R,Reported 05-Mar-2007,2007,Provoked,NEW ZEALAND,Cook islans,Penhryn Island,Spearfishing,Turua William Maretapu,M,16,Leg bitten by shark after he shot at it & missed PROVOKED INCIDENT,N,,Tiger shark,"R. Weeks, GSAF",2007.03.05.R-Maretapu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.05.R-Maretapu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.05.R-Maretapu.pdf,2007.03.05.R,2007.03.05.R,4817,, +2007.02.04,04-Feb-07,2007,Invalid,COSTA RICA,,,Swimming,Jason Cash,M,36,Death due to drowning. Shark bite may have been postmortem,Y,,,"The Argus, 3/2/2007",2007.02.04-Cash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.02.04-Cash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.02.04-Cash.pdf,2007.02.04,2007.02.04,4816,, +2007.02.03,03-Feb-07,2007,Unprovoked,AUSTRALIA,New South Wales,Shelly Beach,Boogie Boarding,Matthew McIntosh,M,26,Lacerations to lower left leg & ankle ,N,08h00,,"P. Immerz, SharkProject; P. Kemp, GSAF",2007.02.03-McIntosh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.02.03-McIntosh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.02.03-McIntosh.pdf,2007.02.03,2007.02.03,4815,, +2007.02.00,Feb-07,2007,Unprovoked,NEW CALEDONIA,Loyalty Islands,Ouv�a,Spearfishing,male,M,,Survived,N,,,"Les Nouvelles Caledoniennes, ",2007.02.00-Ouvea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.02.00-Ouvea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.02.00-Ouvea.pdf,2007.02.00,2007.02.00,4814,, +2007.01.25.b,25-Jan-07,2007,Unprovoked,NEW CALEDONIA,North Province,Kaala-Gomen ,Spearfishing (free diving),Jesse Jizdny,M,30,Leg bitten,N,14h00,Tiger shark,"Les Nouvelles Caledoniennes, 1/29/2007",2007.01.25.b-Jizdny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.25.b-Jizdny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.25.b-Jizdny.pdf,2007.01.25.b,2007.01.25.b,4813,, +2007.01.25.a,25-Jan-07,2007,Boat,USA,Florida,100 miles off Ft. Myers Beach,Shrimping,boat: 69.5' trawler Christy Nichole ,,,"A large shark rammed boat, breaking prop shaft. No injury to occupants but boat sank several hours later",N,03h30,14' shark,"P. Morales, News-Press, 2/5/2007",2007.01.25.a-ChristyNichole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.25.a-ChristyNichole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.25.a-ChristyNichole.pdf,2007.01.25.a,2007.01.25.a,4812,, +2007.01.23,23-Jan-07,2007,Unprovoked,AUSTRALIA,New South Wales,Cape Howe,Diving,Eric Nerhus,M,41,Head & torso bitten,N,10h30,"White shark, 3m","NZ Herald, 1/23/2007",2007.01.23-Nerhus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.23-Nerhus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.23-Nerhus.pdf,2007.01.23,2007.01.23,4811,, +2007.01.19,19-Jan-07,2007,Invalid,AUSTRALIA,New South Wales,Brunswick Heads,Swimming,Thomas Houghton,M,20,Shark involvement prior to death unconfirmed,Y,,,"Northern Star, 1/24/2007",2007.01.19-Houghton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.19-Houghton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.19-Houghton.pdf,2007.01.19,2007.01.19,4810,, +2007.01.14,14-Jan-07,2007,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Second Beach, Port St. John's",Swimming / Body Surfing,Sibulele Masiza,M,24,"Presumed FATAL, body not recovered",Y,Afternoon,Tiger shark,"G. Cliff, Natal Sharks Board; East London Dispatch, 1/18/2007",2007.01.14-Masiza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.14-Masiza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.14-Masiza.pdf,2007.01.14,2007.01.14,4809,, +2007.01.09,09-Jan-07,2007,Unprovoked,AUSTRALIA,New South Wales,Sandbar Beach,Surfing,David Sparkes,M,,"No injury, shark damaged surfboard",N,06h30,2.4 m shark,"J. Watson, Great Lakes Your Guide",2007.01.09-Sparkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.09-Sparkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.09-Sparkes.pdf,2007.01.09,2007.01.09,4808,, +2007.01.07,07-Jan-07,2007,Invalid,USA,New York,"Smith Point, Long Island",Surfing,Wayne Brodsky,M,54,No injury,N,14h00,"24"" to 30"" shark",W. Brodsky,2007.01.07-Brodsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.07-Brodsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.07-Brodsky.pdf,2007.01.07,2007.01.07,4807,, +2007.01.05,01-Jan-07,2007,Unprovoked,USA,Hawaii,"Majors Bay, Kaua'i",Surfing,Rich Reed,M,24,"No injury, shark removed piece of surfboard",N,10h15,"6' to 8' shark, possibly a tiger shark","P. Immerz, SharkProject.org; J. TenBruggencate, Honolulu Advertiser, 1/5/2007",2007.01.05-Reed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.05-Reed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.05-Reed.pdf,2007.01.05,2007.01.05,4806,, +2006.12.18,18-Dec-06,2006,Unprovoked,AUSTRALIA,Victoria,"Winki Pop, Bells Beach",Surfing,Peter Galvin,M,25,Left leg bitten,N,20h00,2.5 to 3 m shark,"P. Kemp, GSAF",2006.12.18-Galvin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.18-Galvin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.18-Galvin.pdf,2006.12.18,2006.12.18,4805,, +2006.12.11,11-Dec-06,2006,Unprovoked,NEW ZEALAND,North Island,"Raglan, Manu Bay",Surfing,Elliot Paerata-Reid ,M,10,Foot bitten,N,11h00,2 to 3 m shark,"R.D. Weeks, GSAF",2006.12.11-Reid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.11-Reid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.11-Reid.pdf,2006.12.11,2006.12.11,4804,, +2006.12.10,10-Dec-06,2006,Unprovoked,USA,California,"Dillon Beach, Marin County",Surfing,Royce Fraley,M,43,"Minor injuries, surfboard bitten",N,11h50,"White shark, 12' to 15' ","P. Immerz; R. Collier; San Francisco Chronicle, 12/11/2006 ",2006.12.10-Frailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.10-Frailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.10-Frailey.pdf,2006.12.10,2006.12.10,4803,, +2006.12.06,06-Dec-06,2006,Provoked,SOUTH AFRICA,KwaZulu-Natal,Cape Vidal,Fishing,Peter Willoughby,M,25,"Hand, thigh & calf bitten by hooked shark PROVOKED INCIDENT",N,"""Evening""","Raggedtooth shark, 150-kg","C. Johansson; Pretoria News, 12/8/2006",2006.12.06-Willoughby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.06-Willoughby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.06-Willoughby.pdf,2006.12.06,2006.12.06,4802,, +2006.12.02,02-Dec-06,2006,Unprovoked,AUSTRALIA,Western Australia,Wharton Beach,Body boarding,Zac Golebiowski,M,15,"Right leg severed, left leg lacerated",N,07h30,"White shark, 5m ","P. Kemp, GSAF, Sunday Mail, 12/3/2006",2006.12.02-Golebiowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.02-Golebiowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.02-Golebiowski.pdf,2006.12.02,2006.12.02,4801,, +2006.11.25,25-Nov-06,2006,Sea Disaster,PHILIPPINES,Surigao del Norte,"Off Bilisan Point, Hinatuarn Island",Sea Disaster,Sinking of the m.v.Leonida,,,15 perished but shark involvement prior to death was not confirmed,Y,14h20,,"Manila Bulletin Online, 11/27/2006",2006.11.25-Leonida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.11.25-Leonida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.11.25-Leonida.pdf,2006.11.25,2006.11.25,4800,, +2006.11.11,11-Nov-06,2006,Unprovoked,USA,Hawaii,"Kihei, Maui",Swimming,Kyle Gruen,M,29,Laceration to left thigh & left hand,N,12h30,2 m to 3 m shark,"Honolulu Advertiser, 11/12/2006; B. Nicholson",2006.11.11-Gruen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.11.11-Gruen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.11.11-Gruen.pdf,2006.11.11,2006.11.11,4799,, +2006.11.09,09-Nov-06,2006,Provoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon, East London",Canoeing,Richard Tebutt,M,,Left arm lacerated when he grabbed shark by its tail PROVOKED INCIDENT,N,Afternoon,"Bull shark, 1.5m ","P. Immerz, SharkProject",2006.11.09-Tebutt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.11.09-Tebutt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.11.09-Tebutt.pdf,2006.11.09,2006.11.09,4798,, +2006.10.31,31-Oct-06,2006,Unprovoked,USA,Oregon,"Siletz River mouth, Lincoln County",Surfing,Tony Perez,M,22,"No injury, surfboard bitten",N,Just before sundown,"White shark, 16' ",R. Collier,2006.10.31-Perez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.31-Perez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.31-Perez.pdf,2006.10.31,2006.10.31,4797,, +2006.10.16,16-Oct-06,2006,Unprovoked,USA,Florida,Sebastian Inlet,Fishing,"Blaise Castellano, Jr.",M,15,Lower right leg and foot bitten,N,,,"K. Kridel, Herald Tribune, 10/21/2006",2006.10.16-Castellano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.16-Castellano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.16-Castellano.pdf,2006.10.16,2006.10.16,4796,, +2006.10.10,10-Oct-06,2006,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Surfing,Kyle Cody,M,20,Left ankle bitten,N,11h30,,"S. Petersohn, GSAF",2006.10.10-Cody.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.10-Cody.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.10-Cody.pdf,2006.10.10,2006.10.10,4795,, +2006.10.07,07-Oct-06,2006,Unprovoked,USA,Texas,"Isla Blanca Park, South Padre Island",Surfing,Freddy Torres,M,,Lacerations to lower left leg,N,,1' to 4' shark,"M. Martinez, KGBT4",2006.10.07-Torres.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.07-Torres.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.07-Torres.pdf,2006.10.07,2006.10.07,4794,, +2006.10.05,05-Oct-06,2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Playing soccer in the water,Stephen M�noz,M,18,Lacerations to foot,N,12h00,3' to 3.5' shark,"S. Petersohn, GSAF",2006.10.05-Munoz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.05-Munoz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.05-Munoz.pdf,2006.10.05,2006.10.05,4793,, +2006.10.00.b,Oct-06,2006,Unprovoked,BAHAMAS,New Providence Island,Nassau,Free diving / modeling,Renata Foucre,F,26,Puncture wounds to left foot,N,,,"J. Lambiet, Palm Beach Post, 10/22/2006",2006.10.00.b-Foucre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.00.b-Foucre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.00.b-Foucre.pdf,2006.10.00.b,2006.10.00.b,4792,, +2006.10.00.a,Oct-06,2006,Unprovoked,GULF OF ADEN,Between Somalia & Yemen,,Murder,5 Ethiopian refugees,,,"FATAL, beaten & thrown overboard by smugglers, they were killed by sharks",Y,,,"United Nations High Commission for Refugees, 10/20/2006",2006.10.00.a-EthiopianRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.00.a-EthiopianRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.00.a-EthiopianRefugees.pdf,2006.10.00.a,2006.10.00.a,4791,, +2006.09.30,30-Sep-06,2006,Invalid,SOUTH AFRICA,Western Cape Province,Miller's Point,Spearfishing,Joseph Johnston,M,36,No injury; 4m white shark made a threat display,N,,,"Cape Argus, 10/2/2006",2006.09.30-Johnston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.30-Johnston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.30-Johnston.pdf,2006.09.30,2006.09.30,4790,, +2006.09.29,29-Sep-06,2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Chris Andrews ,M,19,Big toe bitten,N,,,"S. Petersohn, GSAF",2006.09.29-Andrews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.29-Andrews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.29-Andrews.pdf,2006.09.29,2006.09.29,4789,, +2006.09.18.R,Reported 18-Sep-2006,2006,Provoked,USA,Florida,"Off Key Largo, Monroe County",Diving / Kissing the shark,Dave Marcel,M,,Lacerations to upper lip PROVOKED INCIDENT,N,,Nurse shark,"CBS-4, 9/18/2006",2006.09.18.R-DaveMarcel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.18.R-DaveMarcel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.18.R-DaveMarcel.pdf,2006.09.18.R,2006.09.18.R,4788,, +2006.09.16,16-Sep-06,2006,Unprovoked,USA,North Carolina,Onslow Beach,Surfing,Jake Poland,M,16,Laceration to left thigh,N,Morning,,"C. Creswell, GSAF",2006.09.16-JakePoland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.16-JakePoland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.16-JakePoland.pdf,2006.09.16,2006.09.16,4787,, +2006.09.14,14-Sep-06,2006,Unprovoked,USA,Florida,"Singer Island, Riviera Beach",Swimming,William Carol,M,55,Minor injury to left hand,N,14h00,Spinner shark,WFTV.com,2006.09.14-Carol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.14-Carol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.14-Carol.pdf,2006.09.14,2006.09.14,4786,, +2006.09.11,11-Sep-06,2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Dennis Macy,M,52,Left torso grazed,N,,5' shark,"S. Petersohn, GSAF",2006.09.11-Macy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.11-Macy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.11-Macy.pdf,2006.09.11,2006.09.11,4785,, +2006.09.04,04-Sep-06,2006,Invalid,AUSTRALIA,Queensland,Great Barrier Reef ,Diving,Steve Irwin,M,44,"Killed by a stingray, not a shark - a tragedy for his family and marine wildlife",Y,11h00,No shark involvement,"Sydney Morning Herald, CNN & internet",2006.09.04-SteveIrwin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.04-SteveIrwin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.04-SteveIrwin.pdf,2006.09.04,2006.09.04,4784,, +2006.09.03.b,03-Sep-06,2006,Unprovoked,BRAZIL,,,,Darlan dos Santos Luz ,M,20,FATAL,Y,13h00,,"JC Online, 6/26/2023",2006.09.03.b-Darlan-dos-Santos-Luz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.03.b-Darlan-dos-Santos-Luz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.03.b-Darlan-dos-Santos-Luz.pdf,2006.09.03.b,2006.09.03.b,4783,, +2006.09.03.a,03-Sep-06,2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Standing,Christopher Duncan,M,33,Puncture wounds and cuts to right thigh,N,17h30,3' shark,"S. Petersohn, GSAF",2006.09.03.a-Duncan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.03.a-Duncan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.03.a-Duncan.pdf,2006.09.03.a,2006.09.03.a,4782,, +2006.09.02,02-Sep-06,2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,male,M,12 or 13,Arm bitten,N,17h55,,"S. Petersohn, GSAF",2006.09.02.b-Child-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.02.b-Child-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.02.b-Child-NSB.pdf,2006.09.02,2006.09.02,4781,, +2006.09.02,02-Sep-06,2006,Unprovoked,SOUTH AFRICA,Western Cape Province,Noordhoek,Surfing,Steven Harcourt-Wood,M,37,"No injury, shark rammed surfboard",N,,"White shark, 3.5m ","Cape Times, 9/3/2006",2006.09.02.a-Harcourt-Wood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.02.a-Harcourt-Wood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.02.a-Harcourt-Wood.pdf,2006.09.02,2006.09.02,4780,, +2006.08.29.b,29-Aug-06,2006,Unprovoked,USA,Oregon,"Florence, Lane County",Surfing,Tom Larson,M,23,Laceration & puncture wounds to foot,N,Sunset,,"R. Collier, GSAF; Register-Guard, 8/31/2006",2006.08.29.b-Larson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.29.b-Larson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.29.b-Larson.pdf,2006.08.29.b,2006.08.29.b,4779,, +2006.08.29.a,29-Aug-06,2006,Unprovoked,AUSTRALIA,South Australia,"Pennington Bay, Kangaroo Island",Surfing,Brad Jamieson ,M,,"No injury, shark towed surfer & board",N,16h00,"Bronze whaler shark, 6'","P. Kemp, GSAF; S. Black, The Islander, 9/7/2006",2006.08.29.a-Jamieson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.29.a-Jamieson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.29.a-Jamieson.pdf,2006.08.29.a,2006.08.29.a,4778,, +2006.08.27,27-Aug-06,2006,Unprovoked,REUNION,Saint-Gilles-les-Bains,"Les Aigrettes, near Boucan-Canot",Body boarding,G�rald Pr�au,M,27,Laceration to right calf & heel,N,18h00,,"G. Vitry; G. Holt, scubaradio; Clicanoo, 8/28/2006 & 8/29/2006",2006.08.27-Gerald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.27-Gerald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.27-Gerald.pdf,2006.08.27,2006.08.27,4777,, +2006.08.22.b,22-Aug-06,2006,Invalid,BRAZIL,Pernambuco,Pina,,Tatiano Silva de Melo,M,17,Shark bites may have been post mortem,Y,,,JC Oline 8/24/2006,2006.08.22.b-Melo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.22.b-Melo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.22-IsaulCoba.pdf,2006.08.22.b,2006.08.22.b,4776,, +2006.08.22.a,22-Aug-06,2006,Invalid,BELIZE,Ambergris Caye,Near Ramon's Village,Spearfishing,Isaul Coba,M,34,Shark involvement prior to death not confirmed,Y,,,C. Johansson,2006.08.22.a-Coba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.22.a-Coba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.22.b-Brazil-incomplete.pdf,2006.08.22.a,2006.08.22.a,4775,, +2006.08.20.b,20-Aug-06,2006,Sea Disaster,ITALY,,Lampedusa Island,Sea Disaster,a refugee,M,,FATAL,Y,,,IM/LR,2006.08.20.b-Lampedusa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.20.b-Lampedusa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.20.b-Lampedusa.pdf,2006.08.20.b,2006.08.20.b,4774,, +2006.08.20.a,20-Aug-06,2006,Unprovoked,REUNION,Saint-Pierre,Pointe du Diable,Surfing,S�bastien �mond,M,34,FATAL,Y,11h00,,P. Immerz ,2006.08.20-Emond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.20-Emond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.20-Emond.pdf,2006.08.20.a,2006.08.20.a,4773,, +2006.08.15,15-Aug-06,2006,Unprovoked,SOUTH AFRICA,Western Cape Province,Danger Reef,Surfing,Richard Whitaker,M,,"No injury, surfboard leash severed",N,,5 m shark,A. Brenneka,2006.08.15-RichardWhitaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.15-RichardWhitaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.15-RichardWhitaker.pdf,2006.08.15,2006.08.15,4772,, +2006.08.13,13-Aug-06,2006,Unprovoked,SOUTH AFRICA,Western Cape Province,"Sunrise Beach, Muizenberg",Lifesaving drill,Achmat Hassiem,M,24,Foot severed,N,11h00,White shark,P. Immerz ,2006.08.13-Hassiem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.13-Hassiem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.13-Hassiem.pdf,2006.08.13,2006.08.13,4771,, +2006.08.00.b,Aug-06,2006,Unprovoked,USA,North Carolina,"Masonboro Island, New Hanover County",Wading,Miriam Picklesimer,F,59,Lacerations & punctures to left foot,N,12h00,,"C. Creswell, GSAF",2006.08.00.b-Picklesimer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.00.b-Picklesimer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.00.b-Picklesimer.pdf,2006.08.00.b,2006.08.00.b,4770,, +2006.08.00.a,Early Aug-2006,2006,Unprovoked,REUNION,,Le Port,Spearfishing,male,M,,Thigh bitten,N,,"Bull shark, 1.5m ","Clicanoo, 8/29/2006",2006.08.00.a-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.00.a-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.00.a-Reunion.pdf,2006.08.00.a,2006.08.00.a,4769,, +2006.07.31.R,31-Jul-06,2006,Provoked,USA,Kentucky,"Newport Aquarium, Newport",Touching sharks,12 people,,,"Minor injuries, similar to paper cuts from the captive sharks PROVOKED INCIDENTS",N,,small catsharks,"Cincinatti News, 7/31/2006",2006.07.31.R-NewportAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.31.R-NewportAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.31.R-NewportAquarium.pdf,2006.07.31.R,2006.07.31.R,4768,, +2006.07.31.a,31-Jul-06,2006,Unprovoked,USA,Oregon,Oswald State Park,Surfing,Robert Martin,M,41,Minor injury,N,16h00,White shark?,"R. Collier, GSAF",2006.07.31.a-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.31.a-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.31.a-Martin.pdf,2006.07.31.a,2006.07.31.a,4767,, +2006.07.29.b,29-Jul-06,2006,Invalid,USA,California,"Broad Beach, Malibu, Los Angeles County",Boogie Boarding,Bruce Lurie,M,,"Bruises, laceration to head, spinal cord injury & neck broken at C5/C6 ",N,Afternoon,"Thought to involve a mako shark, but possibly a sea lion","R. Colier, GSAF",2006.07.29.b-Lurie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.29.b-Lurie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.29.b-Lurie.pdf,2006.07.29.b,2006.07.29.b,4766,, +2006.07.29.a,29-Jul-06,2006,Unprovoked,USA,Florida,"Playalinda Beach, Canaveral National Seashore, Brevard County",Surfing,Matt Wishengrad,M,15,Foot bitten,N,,,WFTV.com,2006.07.29.a-Wishengrad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.29.a-Wishengrad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.29.a-Wishengrad.pdf,2006.07.29.a,2006.07.29.a,4765,, +2006.07.28,28-Jul-06,2006,Unprovoked,SOUTH AFRICA,Western Cape Province,Fish Hoek,Surf-skiing,Lyle Maarsdorp,M,19,"No injury, surf ski bitten",N,16h30,"White shark, 3m to 4m","Cape Argus, 7/29/2006",2006.07.28-Maasdorp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.28-Maasdorp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.28-Maasdorp.pdf,2006.07.28,2006.07.28,4764,, +2006.07.25,25-Jul-06,2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,14,Minor lacerations to right foot,N,13h45, ,"S. Petersohn, GSAF",2006.07.25-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.25-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.25-NSB.pdf,2006.07.25,2006.07.25,4763,, +2006.07.23,23-Jul-06,2006,Unprovoked,USA,Texas,"Sargent Beach, Matagorda County",Surf fishing,R.K. Halbert,M,,Right foot bitten,N,,"Bull shark, 4' to 5' ",KHOU.com,2006.07.23-Halbert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.23-Halbert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.23-Halbert.pdf,2006.07.23,2006.07.23,4762,, +2006.07.17.R,Reported 17-Jul-2006,2006,Invalid,AUSTRALIA,Torres Strait,Western Province,,,,,8 shark-bitten bodies washed ashore,N,,,"The Torres News, 7/17/2006",2006.07.17.R-TorresStrait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.17.R-TorresStrait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.17.R-TorresStrait.pdf,2006.07.17.R,2006.07.17.R,4761,, +2006.07.17,17-Jul-06,2006,Unprovoked,USA,South Carolina,"Singleton Beach, Hilton Head Island, Beaufort County",Standing,Dallas Jackson,M,49,Left ankle & foot bitten,N,10h00,"Angel shark, 1.2m "," C. Creswell, GSAF",2006.07.17.a-DallasJackson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.17.a-DallasJackson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.17.a-DallasJackson.pdf,2006.07.17,2006.07.17,4760,, +2006.07.13,13-Jul-06,2006,Invalid,SPAIN,Alicante,San Juan Beach ,Swimming,female,F,7,Hand & wrist severely bitten,N,,"Shark involvement not confirmed, injury may have been caused by a bluefish",C. Johansson,2006.07.13-girl-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.13-girl-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.13-girl-Spain.pdf,2006.07.13,2006.07.13,4759,, +2006.07.12,12-Jul-06,2006,Unprovoked,USA,South Carolina,"Kiawah Island, Charleston County",Swimming,female,F,21,Ankle & foot bitten,N,13h30,," C. Creswell, GSAF",2006.07.12-KiawahIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.12-KiawahIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.12-KiawahIsland.pdf,2006.07.12,2006.07.12,4758,, +2006.07.10,10-Jul-06,2006,Unprovoked,BRAZIL,Pernambuco,Body recovered at Goiana,,Unidentified,M,,FATAL,Y,,Bull or tiger shark,"Qualittas; F. Hazin; N. Souza; Folho de Pernambuco, 7/12/2006",2006.07.10-Goiana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.10-Goiana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.10-Goiana.pdf,2006.07.10,2006.07.10,4757,, +2006.07.09.b,09-Jul-06,2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,male,M,40,Dorsum of left foot bitten,N,17h00,,"S. Petersohn, GSAF",2006.07.09.b-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.09.b-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.09.b-NewSmyrnaBeach.pdf,2006.07.09.b,2006.07.09.b,4756,, +2006.07.09.a,09-Jul-2006.,2006,Unprovoked,USA,Florida,"Ponte Vedra Beach, St Johns County",Walking,male,M,11,Lower leg & ankle bitten,N,13h00,,"Orlando Sentinel, 7/9/2006",2006.07.09.a-PontaVedra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.09.a-PontaVedra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.09.a-PontaVedra.pdf,2006.07.09.a,2006.07.09.a,4755,, +2006.07.08.b,08-Jul-06,2006,Unprovoked,USA,South Carolina,"Debordieu Beach, Georgetown County",Body boarding,Caelin Lacy ,F,14,Foot bitten,N,11h00,5' to 6' spinner or bull shark,"C. Creswell, GSAF",2006.07.08.b-Lacy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.08.b-Lacy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.08.b-Lacy.pdf,2006.07.08.b,2006.07.08.b,4754,, +2006.07.08.a,08-Jul-06,2006,Unprovoked,USA,Florida,"Playalinda Beach, Canaveral National Seashore, Brevard County",Swimming,male,M,13,Right calf bitten,N,13h00,,Orlando Sentinel,2006.07.08.a-Playalinda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.08.a-Playalinda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.08.a-Playalinda.pdf,2006.07.08.a,2006.07.08.a,4753,, +2006.06.30.b,Jul-06,2006,Unprovoked,USA,Florida,"Florida Keys, Monroe County",Spearfishing,Bebe Hall,F,28,Lacerations & puncture wound to arm,N,,"1.8 m blacktip ""reef"" shark","Swimming World Magazine, 2 July 2006",2006.06.30.b-Bebe-Hall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.30.b-Bebe-Hall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.30.b-Bebe-Hall.pdf,2006.06.30.b,2006.06.30.b,4752,, +2006.06.30.a,Jul-06,2006,Unprovoked,USA,Florida,"Florida Keys, Monroe County",Spearfishing,Gary Hall,M,35,Minor injuries,N,,"1.8 m blacktip ""reef"" shark","Swimming World Magazine, 2 July 2006",2006.06.30.a-GaryHall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.30.a-GaryHall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.30.a-GaryHall.pdf,2006.06.30.a,2006.06.30.a,4751,, +2006.06.27,27-Jun-06,2006,Unprovoked,USA,Florida,"Hutchinson Island, St. Lucie County",Body boarding,Juliette Shipp,F,9,Right calf bitten,N,11h10,, P. Immerz,2006.06.27-Shipp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.27-Shipp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.27-Shipp.pdf,2006.06.27,2006.06.27,4750,, +2006.06.26,26-Jun-06,2006,Provoked,USA,Florida,Fort Myers,Fishing,male,M,,Non-swimmer pulled off pier& into the water by a hooked shark PROVOKED INCIDENT,N,Afternoon,,"News Press, 6/27/2006",2006.06.26-FtMyers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.26-FtMyers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.26-FtMyers.pdf,2006.06.26,2006.06.26,4749,, +2006.06.24,24-Jun-06,2006,Unprovoked,BAHAMAS,Andros Islands,Mangrove Cay,Spearfishing,Whitefield Rolle,M,25,Right arm severely bitten,N,13h00,,"A. Brenneka; Nassau Guardian, 6/30/2006",2006.06.24-Rolle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.24-Rolle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.24-Rolle.pdf,2006.06.24,2006.06.24,4748,, +2006.06.20,20-Jun-06,2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Elizabeth Schelk,F,22,2-inch puncture wounds on right foot,N,13h00,Possibly a 1' to 3' blacktip or spinner shark," S. Petersohn, GSAF; P. Immerz",2006.06.20-Schelk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.20-Schelk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.20-Schelk.pdf,2006.06.20,2006.06.20,4747,, +2006.06.18,18-Jun-06,2006,Unprovoked,BRAZIL,Pernambuco,"Punta Del Chifre Beach, Olinda",Body boarding,Humberto Pessoa Batista,M,27,Left thigh bitten FATAL,Y,09h00,,globalsurfnews.com,2006.06.18-Batista.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.18-Batista.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.18-Batista.pdf,2006.06.18,2006.06.18,4746,stopped here, +2006.06.17,17-Jun-06,2006,Unprovoked,USA,California,"Monterey, Monterey County",Scuba diving,Jon Piatt,M,43,"No injury, shark bit scuba tank boot",N,11h10,,R. Collier,2006.06.17-Piatt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.17-Piatt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.17-Piatt.pdf,2006.06.17,2006.06.17,4745,, +2006.06.15,15-Jun-06,2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Mike Milea,M,24,Four 1-inch puncture wounds on left foot ,N,15h30,2' to 3' shark,"S. Petersohn, GSAF",2006.06.15-Milea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.15-Milea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.15-Milea.pdf,2006.06.15,2006.06.15,4744,, +2006.06.07,07-Jun-06,2006,Unprovoked,USA,South Carolina,"Coligny Beach, Hilton Head, Beaufort County",Playing,Megan Wallis,F,7,Lacerations & puncture wounds to left foot & buttocks,N,13h45,3' to 4' shark,"C. Creswell, GSAF; Islandpacket.com, 6/7/2006",2006.06.07-Wallis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.07-Wallis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.07-Wallis.pdf,2006.06.07,2006.06.07,4743,, +2006.06.05,05-Jun-06,2006,Unprovoked,AUSTRALIA,South Australia,Waitpinga,Surfing,Peter Dunn,M,40,"No injury, knocked off surfboard",N,11h30,14' white shark,"P.Kemp, GSAF; Sunday Mail (Adelaide), 6/11/2006, p.17",2006.06.05-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.05-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.05-Dunn.pdf,2006.06.05,2006.06.05,4742,, +2006.05.31,31-May-06,2006,Unprovoked,USA,Hawaii,O'ahu,Spearfishing,Ron Deguilmo,M,26,"4"" laceration to left forearm",N,13h30,"Tiger shark, 8' to 12'","P. Immerz; Honolulu Advertiser, 6/1/2006",2006.05.31-Deguilmo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.31-Deguilmo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.31-Deguilmo.pdf,2006.05.31,2006.05.31,4741,, +2006.05.28,28-May-06,2006,Provoked,USA,Hawaii,French Frigate Shoals,Tagging sharks,"25' rigid-hulled inflatable boat, HI-2",,,"No injury to occupants, boat damaged by hooked shark PROVOKED INCIDENT",N,Afternoon,"Tiger shark, 15' female","Honolulu Advertiser, 5/29/2006",2006.05.28-HI-2.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.28-HI-2.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.28-HI-2.pdf,2006.05.28,2006.05.28,4740,, +2006.05.27,27-May-06,2006,Unprovoked,USA,Hawaii,"North Shore, O'ahu",Surfing,Bret Desmond,M,31,"No injury, shark bumped surfboard",N,16h00,,R. Collier,2006.05.27-Desmond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.27-Desmond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.27-Desmond.pdf,2006.05.27,2006.05.27,4739,, +2006.05.24,24-May-06,2006,Provoked,USA,Hawaii,Lanai,Spearfishing,Andres Balmacda,M,15,Knee bitten after diver poked shark PROVOKED INCIDENT,N,16h30,"Grey reef shark, 5' to 8' ","Maui News, 5/26/2006",2006.05.24-Balmacda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.24-Balmacda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.24-Balmacda.pdf,2006.05.24,2006.05.24,4738,, +2006.05.21,21-May-06,2006,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Surfing,Rog�rio Ant�nio de Carvalho,M,33,"Injuries to left thigh, calf & foot",N,11h30,,"Avisa Nordland, 5/22/2006",2006.05.21-Carvalho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.21-Carvalho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.21-Carvalho.pdf,2006.05.21,2006.05.21,4737,, +2006.05.19,19-May-06,2006,Unprovoked,USA,Guam,Gun Beach,Scuba diving,Japanese female,F,30s,Laceration to leg,N,15h30,"Tiger shark, 10' to 12'",R. Segal,2006.05.19-Guam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.19-Guam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.19-Guam.pdf,2006.05.19,2006.05.19,4736,, +2006.05.10,05-May-06,2006,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",,male,M,,Small lacerations to arm,N,12h15,,"Florida Today, 5/10/2006",2006.05.10-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.10-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.10-CocoaBeach.pdf,2006.05.10,2006.05.10,4735,, +2006.05.04,04-May-06,2006,Unprovoked,USA,Florida,"Hutchinson Island, St. Lucie County",Swimming,Rachel King,F,20s,2 lacerations on lower right leg,N,16h30,,"TCPalm.com, 5/4/2006 ",2006.05.04-King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.04-King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.04-King.pdf,2006.05.04,2006.05.04,4734,, +2006.05.02,02-May-06,2006,Provoked,AUSTRALIA,Queensland,"Moffat Beach, Caloundra",Snorkeling,male,M,46,Abrasion & 6 puncture wounds on chest after grabbing the shark by its tail PROVOKED INCIDENT,N,16h30,"Wobbegong shark, 2 m ","Sunshine Coast Daily, 5/4/2006",2006.05.02-Caloundra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.02-Caloundra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.02-Caloundra.pdf,2006.05.02,2006.05.02,4733,, +2006.04.23.R,Reported 23-Apr-2006,2006,Invalid,USA,Florida,"Alligator Reef off Islamorada, Monroe County",,male,M,,Shark bites post mortem,Y,,,"KRT Wire, 4/24/2006",2006.04.23.R-Islamorada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.23.R-Islamorada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.23.R-Islamorada.pdf,2006.04.23.R,2006.04.23.R,4732,, +2006.04.21,21-Apr-06,2006,Unprovoked,USA,Florida,"Sebastian Inlet, Brevard County",Surfing,T. Davis Bunn,M,54,Feet bitten,N,,,Local 6 News,2006.04.21-Bunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.21-Bunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.21-Bunn.pdf,2006.04.21,2006.04.21,4731,, +2006.04.19,19-Apr-06,2006,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Standing,Megan Prescott,F,13,3 tiny punctures & small lacerations on right ankle,N,15h00,,"Orlando Sentinel, 4/20/2006; Yahoo News; S. Petersohn",2006.04.19-Prescott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.19-Prescott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.19-Prescott.pdf,2006.04.19,2006.04.19,4730,, +2006.04.13,13-Apr-06,2006,Provoked,USA,Florida,"Port of the Islands, Collier County",Fishing,a sport fisherman,M,35,3 to 4 cm laceration on foot from hooked shark brought on board PROVOKED INCIDENT,N,Afternoon,"Bull shark, 4' to bull shark","Naples News, 4/13/2006",2006.04.13-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.13-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.13-fisherman.pdf,2006.04.13,2006.04.13,4729,, +2006.04.11,11-Apr-06,2006,Unprovoked,AUSTRALIA,New South Wales,Newcastle Beach,Surfing,Luke Cook,M,15,Minor laceration to left foot,N,13h30,"Bronze whaler shark, a juvenile ","Daily Telegraph, 4/12/2006",2006.04.11-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.11-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.11-Cook.pdf,2006.04.11,2006.04.11,4728,, +2006.04.09.b,09-Apr-06,2006,Unprovoked,SOUTH AFRICA,Eastern Cape Province,St. Francis Bay,Body boarding,Stuart Duffie,M,15,Leg bitten,N,17h30,"Raggedtooth shark, 2.5 m to 3 m ",J. Visser,2006.04.09.b-Duffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.09.b-Duffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.09.b-Duffin.pdf,2006.04.09.b,2006.04.09.b,4727,, +2006.04.09.a,09-Apr-06,2006,Unprovoked,BRAZIL,Pernambuco,Piedade,Swimming,Jos� Ivair Pereira,M,35,Left leg bitten,N,Afternoon,Tiger shark,"Diario de Pernambuco, 4/10/2006",2006.04.09.a-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.09.a-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.09.a-Pereira.pdf,2006.04.09.a,2006.04.09.a,4726,, +2006.04.03,03-Apr-06,2006,Unprovoked,USA,Florida,"Marco Island, Collier County",Wading,Paul Ausum,M,11,Minor injury to right hand & thigh,N,12h30,,CBS Broadcasting,2006.04.03-Ausum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.03-Ausum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.03-Ausum.pdf,2006.04.03,2006.04.03,4725,, +2006.03.28.R,Reported 28-Mar-2006,2006,Unprovoked,Sierra Leone,Western Area,"Lumely Beach, Freetown",Fishing,4 fishermen,M,,Reportedly FATAL but few details,Y,,"3 m, 600-kg shark",Reuters,2006.03.28.R-SierraLeone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.28.R-SierraLeone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.28.R-SierraLeone.pdf,2006.03.28.R,2006.03.28.R,4724,, +2006.03.23,23-Mar-06,2006,Unprovoked,USA,Hawaii,"Leftovers, near Waimea Bay, O'ahu",Surfing,Elizabeth Dunn,F,28,5 puncture wounds in left calf,N,11h30,"Tiger shark, 10' ",Honolulu Advertiser,2006.03.23-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.23-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.23-Dunn.pdf,2006.03.23,2006.03.23,4723,, +2006.03.22,22-Mar-06,2006,Invalid,SOUTH AFRICA,Eastern Cape Province,Port Alfred,Swimming,Lorenzo Kroutz ,M,17,"FATAL, but shark involvement prior to death unconfirmed",Y,,,"Cape Times, 3/24/2006, p.3",2006.03.22-Koutz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.22-Koutz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.22-Koutz.pdf,2006.03.22,2006.03.22,4722,, +2006.03.19,18-Mar-06,2006,Unprovoked,FIJI,Vitu Levu,Sigatoka,Surfing,Paul Sue,M,21,Lacerations to right hand,N,18h00,"Tiger shark, 5' ","R.D. Weeks, GSAF; Fiji Sun, 3/19/2006",2006.03.19-PaulSue.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.19-PaulSue.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.19-PaulSue.pdf,2006.03.19,2006.03.19,4721,, +2006.03.15,15-Mar-06,2006,Unprovoked,AUSTRALIA,New South Wales,"Bondi, Sydney",Surfing,Blake Mohair,M,15,"No injury, shark nudged surfboard",N,17h00,"Bronze whaler shark, 2 m","The Australian, 3/15/2006",2006.03.15-Moclair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.15-Moclair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.15-Moclair.pdf,2006.03.15,2006.03.15,4720,, +2006.02.27,27-Feb-06,2006,Unprovoked,USA,Hawaii,"Makena, Maui",Standing,Nikky Raleigh,F,15,Deep laceration to right calf,N,16h30,5' to 7' shark,"G.T. Kubota, Star Bulletin, 2/28/2006",2006.02.27-Raleigh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.27-Raleigh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.27-Raleigh.pdf,2006.02.27,2006.02.27,4719,, +2006.02.23,23-Feb-06,2006,Invalid,USA,Hawaii,"Makena, Maui",Free diving,Anthony Moore,M,45,Forensic examination suggested diver drowned & afterwards his body was bitten by a shark/s,Y,Late afternoon,,http://www.kesq.com,2006.02.23-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.23-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.23-Moore.pdf,2006.02.23,2006.02.23,4718,, +2006.02.13,13-Feb-06,2006,Unprovoked,AUSTRALIA,Queensland,"Golden Beach, Caloundra",Wading,male,M,18,Lacerations to foot,N,11h00,,"G. Stolz, Courier-Mail, 2/14/2006",2006.02.13-GoldenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.13-GoldenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.13-GoldenBeach.pdf,2006.02.13,2006.02.13,4717,, +2006.02.12.b,12-Feb-06,2006,Unprovoked,AUSTRALIA,Queensland,"Point Vernon, Hervey Bay",Swimming,male,M,,Puncture wound on arm,N,,,"G. Stolz, Courier-Mail, 2/14/2006",2006.02.12.b-HerveyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.12.b-HerveyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.12.b-HerveyBay.pdf,2006.02.12.b,2006.02.12.b,4716,, +2006.02.12.a,12-Feb-06,2006,Boat,AUSTRALIA,South Australia,"Brighton Beach, Adelaide",Fishing,"Josh Francou, Michael Brister & Paul Bahr",M,,No injury to occupants; shark nudged the 5.3 m boat,N,12h00,4.5 m white shark,Port Adelaide Football Club,2006.02.12.a-Franco_boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.12.a-Franco_boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.12.a-Franco_boat.pdf,2006.02.12.a,2006.02.12.a,4715,, +2006.02.08,08-Feb-06,2006,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon, East London",Surfing,Jason Noades,M,15,2 bite marks on right calf,N,Late afternoon,Raggedtooth shark,"M. Kabeli, Dispatch Online.com; G. Brett & K. Cole, EL Museum",2006.02.08-Noades.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.08-Noades.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.08-Noades.pdf,2006.02.08,2006.02.08,4714,, +2006.02.01.b,01-Feb-06,2006,Unprovoked,TONGA,Vava'u,Tu�anuku,Swimming,Tessa Horan,F,24,Severe bite to right leg FATAL,Y,18h00,Tiger shark,D. Clem; www.matangitonga.to,2006.02.01.b-Horan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.01.b-Horan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.01.b-Horan.pdf,2006.02.01.b,2006.02.01.b,4713,, +2006.02.01.a,01-Feb-06,2006,Boat,USA,Hawaii,"Off Pu'u Ola'l, Makena, Maui",Kayaking,Dan Lankheit,M,57,No injury to occupant; shark bumped the kayak repeatedly for 15 minutes,N,Afternoon,12' to 18' shark,"R. Collier, GSAF; Honolulu Advertiser, 2/1/2006",2006.02.01.a-Lankheit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.01.a-Lankheit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.01.a-Lankheit.pdf,2006.02.01.a,2006.02.01.a,4712,, +2006.01.28.R,Reported 28-Jan-2006,2006,Boat,ATLANTIC OCEAN,300 miles from Antigua,,Competing in the Woodvale Atlantic Rowing Race,"Mayabrit, an ocean rowing boat. Occupants: Andrew Barnett & J.C.S. Brendana",M,46 & 34,No injury to occupants; shark rammed boat repeatedly,N,,12' shark,"N. Bevan, icwales.icnetwork.co.uk, 1/28/2006",2006.01.28.R-Mayabrit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.28.R-Mayabrit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.28.R-Mayabrit.pdf,2006.01.28.R,2006.01.28.R,4711,, +2006.01.25,25-Jan-06,2006,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Coffee Bay,Spearfishing,Michael Vriese,M,34,Right arm bitten,N,14h00,,"Geremy Cliff, NSB",2006.01.25-Vriese.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.25-Vriese.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.25-Vriese.pdf,2006.01.25,2006.01.25,4710,, +2006.01.23,23-Jan-06,2006,Boat,ATLANTIC OCEAN,800 miles from land,,Competing in the Woodvale Atlantic Rowing Race,"Rowgirls, an ocean rowing boat. Occupants: Sally Kettle, Claire Mills & Sue McMillan",F,"28, 23 & 30","No injury to occupants; a shark, accidentally caught in a line, threatened to rip out the transom",N,,,"Northants News, 1/25/2006",2006.01.23-Rowgirls.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.23-Rowgirls.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.23-Rowgirls.pdf,2006.01.23,2006.01.23,4709,, +2006.01.18,18-Jan-06,2006,Unprovoked,USA,California,"Santa Cruz, Santa Cruz County",Night Surfing,Mario Lari,M,,"No injury, but 2 small nicks on wetsuit",N,22h30,,R. Collier,2006.01.18-Lari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.18-Lari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.18-Lari.pdf,2006.01.18,2006.01.18,4708,, +2006.01.15,15-Jan-06,2006,Unprovoked,AUSTRALIA,Western Australia,"Off City Beach, Perth",Scuba diving,Bernie Williams,M,52,Lacerations to left elbow,N,11h00,3.5 m white shark,"T. Peake, GSAF",2006.01.15-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.15-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.15-Williams.pdf,2006.01.15,2006.01.15,4707,, +2006.01.11,11-Jan-06,2006,Invalid,BAHAMAS,Grand Bahama Island,Sandy Cay,Diving for lobsters,Hayward Thomas & Shalton Barr,M,,"No injury, divers felt threatened by 10' pregnant female tiger shark & killed the shark",N,Morning,,"Bahama Journal, 1/13/2006",2006.01.11-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.11-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.11-Bahamas.pdf,2006.01.11,2006.01.11,4706,, +2006.01.07,07-Jan-06,2006,Unprovoked,AUSTRALIA,Queensland,"Amity Point, North Stradbroke Island",Swimming,Sarah Whiley,F,21,FATAL,Y,17h15,Bull shark,"T. Peake, GSAF",2006.01.07-Whiley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.07-Whiley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.07-Whiley.pdf,2006.01.07,2006.01.07,4705,, +2006.01.04,04-Jan-06,2006,Unprovoked,USA,Florida,"Round Island Park, Indian River County",Surfing,male,M,21,3 puncture wounds in right wrist & hand,N,16h45,4' shark,"A. Neal, scripps.com",2006.01.04-IndianRiverSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.04-IndianRiverSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.04-IndianRiverSurfer.pdf,2006.01.04,2006.01.04,4704,, +2006.01.01,01-Jan-06,2006,Unprovoked,SOUTH AFRICA,Western Cape Province,Soetwater,Diving for crayfish,John Williams,M,49,Lacerations to little finger,N,,Said to involve a 1.5 m shark,"J.P. Botha, GSAF",2006.01.01-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.01-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.01-Williams.pdf,2006.01.01,2006.01.01,4703,, +2005.12.24,24-Dec-05,2005,Unprovoked,USA,Oregon,"Tillamook Head, Clatsop County",Surfing,Brian Anderson,M,30,Lacerations to ankle & calf,N,12h00,White shark,"R. Collier, GSAF; L.A. Times, 12/25/2005",2005.12.24-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.24-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.24-Anderson.pdf,2005.12.24,2005.12.24,4702,, +2005.12.21,21-Dec-05,2005,Unprovoked,USA,Hawaii,"Keawakapu Beach, Maui",Swimming,Jonathan Genant,M,29,Left hand bitten,N,11h45,Tiger shark, San Francisco Gate 2/21/2005,2005.12.21-Genant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.21-Genant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.21-Genant.pdf,2005.12.21,2005.12.21,4701,, +2005.12.20,20-Dec-05,2005,Boat,ATLANTIC OCEAN,600 nm west of the Canary Islands,,Competing in the Woodvale Atlantic Rowing Race,"7 m boat, occupants: Tara Remington & Iain Rudkin",,,"No injury to occupants, shark rammed boat for 15 minutes",N,13h30,3 m shark,"R.D. Weeks, GSAF; NZ Herald, 12/21/2005",2005.12.20-rowboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.20-rowboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.20-rowboat.pdf,2005.12.20,2005.12.20,4700,, +2005.12.11,11-Dec-05,2005,Unprovoked,AUSTRALIA,Queensland,St. Crispin Reef,Spearfishing,Glenn Simpson,M,44,Right forearm & elbow bitten,N,11h00,Whitetip reef shark,"Courier-Mail, 12/12/2005",2005.12.11-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.11-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.11-Simpson.pdf,2005.12.11,2005.12.11,4699,, +2005.12.05.R,Reported 06-Dec-2005,2005,Boat,AUSTRALIA,South Australia,"Middle Beach, 40 km north of Adelaide",Fishing,"5.4 m fibreglass boat, occupants: Robert & James Hogg",,,"No injury to occupants, hydrofoil of outboard motor bitten ",N,15h30,4 m white shark,"Melbourne Herald Sun, 12/5/2005",2005.12.05.R-HoggBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.05.R-HoggBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.05.R-HoggBoat.pdf,2005.12.05.R,2005.12.05.R,4698,, +2005.11.29.R,Reported 29-Nov-2005,2005,Unprovoked,USA,Florida,"Cape San Blas, Gulf County",Surfing,John Larsen,M,teen,Left foot bitten,N,,,wpmi.com,2005.11.29.R-Larsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.29.R-Larsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.29.R-Larsen.pdf,2005.11.29.R,2005.11.29.R,4697,, +2005.11.27,27-Nov-05,2005,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Blake Perry,M,23,Right thumb & palm lacerated,N,13h00,4' shark,"S. Petersohn, GSAF",2005.11.27-Perry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.27-Perry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.27-Perry.pdf,2005.11.27,2005.11.27,4696,, +2005.11.25.c,25-Nov-05,2005,Boat,AUSTRALIA,Victoria,"6 km off Collendina, south of Melbourne",Fishing,"4.5 m boat, occupant: Rodney Lawn",,,"No injury to occupant, shark bit outboard motor",N,,3 m white shark,"Sunday Mail (QLD), 11/27/2005, p.30",2005.11.25.c-boat-Lawn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.25.c-boat-Lawn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.25.c-boat-Lawn.pdf,2005.11.25.c,2005.11.25.c,4695,, +2005.11.25.b,25-Nov-05,2005,Unprovoked,AUSTRALIA,Victoria,Flinders,Surfing,Tom Burke,M,18,"2 lacerations on leg, each 4"" to 5"" long",N,18h00,1.8 m shark,"Sydney Morning Herald, 11/25/2005",2005.11.25.b-Burke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.25.b-Burke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.25.b-Burke.pdf,2005.11.25.b,2005.11.25.b,4694,, +2005.11.25.a,25-Nov-05,2005,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon, East London",Surfing,Ashley Milford,M,26,"Cut on finger, board bitten",N,11h30,,Dispatch online,2005.11.25.a-Milford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.25.a-Milford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.25.a-Milford.pdf,2005.11.25.a,2005.11.25.a,4693,, +2005.11.24,24-Nov-2005-,2005,Unprovoked,NEW CALEDONIA,Loyalty Islands,Mar�,Spearfishing,Emile,,,Arm bitten,N,20h30,,"Les Nouvelles Caledoniennes, 11/29/2005",2005.11.24-Emile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.24-Emile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.24-Emile.pdf,2005.11.24,2005.11.24,4692,, +2005.11.21,21-Nov-05,2005,Unprovoked,USA,Florida,"Jensen Beach, Martin County ",Surfing,a male from Miami,M,30s,Left foot bitten,N,Afternoon,4' shark,Stuart News,2005.11.21-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.21-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.21-JensenBeach.pdf,2005.11.21,2005.11.21,4691,, +2005.11.20,20-Nov-05,2005,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Kevin Spradlin,M,17,Lacerations to right thigh,N,14h30,,"S. Petersohn, GSAF",2005.11.20-Spradlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.20-Spradlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.20-Spradlin.pdf,2005.11.20,2005.11.20,4690,, +2005.11.16.R,Reported 16-Nov-2005,2005,Boat,NEW CALEDONIA,,,,3.8-m boat with 3 people on board,,,"No injury to occupants, shark lifted bow of boat 3 times",N,,4.5 m white shark,"Le Quotidien, 11/16/2005, p.62",2005.11.16.R-boat-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.16.R-boat-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.16.R-boat-NewCaledonia.pdf,2005.11.16.R,2005.11.16.R,4689,, +2005.11.15,15-Nov-05,2005,Provoked,SOUTH AFRICA,Eastern Cape Province,Aston Bay,Fishing for sharks,Ivan Gerger,M,32,Lacerations to hands & right leg when he tried to pull shark from the water PROVOKED INCIDENT,N,14h00,"Raggedtooth shark, 2.5m ",J. Visser,2005.11.15-Gerger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.15-Gerger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.15-Gerger.pdf,2005.11.15,2005.11.15,4688,, +2005.11.12,12-Nov-05,2005,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Lance Cameron,M,18,Puncture wounds to right foot,N,13h00,6' shark,"S. Petersohn, GSAF",2005.11.12-Cameron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.12-Cameron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.12-Cameron.pdf,2005.11.12,2005.11.12,4687,, +2005.11.02.b,02-Nov-05,2005,Unprovoked,USA,California,"Mavericks, Half Moon Bay, San Mateo County",Surfing,Tim West,M,25,"No injury, board bitten",N,16h45,,"R. Collier, GSAF",2005.11.02.b-West.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.02.b-West.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.02.b-West.pdf,2005.11.02.b,2005.11.02.b,4686,, +2005.11.02.a,02-Nov-05,2005,Unprovoked,USA,California,"Ocean Beach, San Francisco, San Francisco County",Surfing,Jake Daneman,M,26,"No injury, board bumped",N,07h15,12' to 14' white shark,"R. Collier, GSAF",2005.11.02.a-Daneman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.02.a-Daneman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.02.a-Daneman.pdf,2005.11.02.a,2005.11.02.a,4685,, +2005.10.29,29-Oct-05,2005,Unprovoked,USA,Florida,"Ponce de Leon Inlet, Volusia County ",Wading,male,M,15,Puncture wounds to foot,N,,2' to 3' shark,"Sentinel, 1-/30/2005",2005.10.29-PonceInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.29-PonceInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.29-PonceInlet.pdf,2005.10.29,2005.10.29,4684,, +2005.10.25,25-Oct-05,2005,Unprovoked,ST. MAARTIN,Simpson Bay,Sunterra Beach,Standing,James Bumpers,M,55,Lower right leg lacerated,N,08h00,2' shark,"M. Levine, GSAF",2005.10.25-Bumpers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.25-Bumpers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.25-Bumpers.pdf,2005.10.25,2005.10.25,4683,, +2005.10.22,22-Oct-05,2005,Unprovoked,SOUTH AFRICA,Western Cape Province,Uilenkraalsmond (near Gansbaai),Standing / Surfing,Christiaan van Zyl,M,20,Right foot bitten,N,Morning,3 m shark,Cape Times,2005.10.22-vanZyl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.22-vanZyl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.22-vanZyl.pdf,2005.10.22,2005.10.22,4682,, +2005.10.21,21-Oct-05,2005,Unprovoked,USA,California,"Klamath River mouth, Del Norte County",Surfing,Chad Reiker,M,36,No injury,N,11h00,White shark,"R. Collier, GSAF",2005.10.21-Reiker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.21-Reiker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.21-Reiker.pdf,2005.10.21,2005.10.21,4681,, +2005.10.19,19-Oct-05,2005,Unprovoked,USA,California,"Salmon Beach, Sonoma County",Surfing,Megan Halavais,F,20,Leg bitten,N,10h30,18' white shark,"R. Collier, GSAF; Bay City Newswire",2005.10.19-Halavais.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.19-Halavais.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.19-Halavais.pdf,2005.10.19,2005.10.19,4680,, +2005.10.15,15-Oct-05,2005,Provoked,USA,Florida,"Ponce Inlet, Volusia County",Wading,N.W.,M,15,Minor cuts to dorsum & sole of left foot when he stepped on shark PROVOKED INCIDENT,N,17h55,,"S. Petersohn, GSAF; Florida Today, 10/16/2005 ",2005.10.15-NW.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.15-NW.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.15-NW.pdf,2005.10.15,2005.10.15,4679,, +2005.10.13,13-Oct-05,2005,Unprovoked,USA,Hawaii,"Honokowai, Maui",Surfing,Clayton Sado,M,22,"No injury, surfboard bitten",N,18h00,"Tiger shark, less than 10'",Hawaii Department of Land and Natural Resources,2005.10.13-Sado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.13-Sado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.13-Sado.pdf,2005.10.13,2005.10.13,4678,, +2005.10.11,11-Oct-05,2005,Unprovoked,GRAND CAYMAN,East Wall,Jack McKenney's Canyon,Scuba diving,Lea Ann Hughes,F,57,No injury ,N,15h00,Caribbean reef sharks,"L.A.Hughes; G. Holt, Scubaradio.com",2005.10.11-Hughes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.11-Hughes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.11-Hughes.pdf,2005.10.11,2005.10.11,4677,, +2005.10.06,06-Oct-05,2005,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Treading water/ Surfing,Charles Hutson,M,48,Five 1-inch lacerations to left foot,N,16h05,,"S. Petersohn, GSAF",2005.10.06-Hutson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.06-Hutson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.06-Hutson.pdf,2005.10.06,2005.10.06,4676,, +2005.10.03,03-Oct-05,2005,Unprovoked,BAHAMAS,Abaco Islands,Grand Cay,Diving,Nixon Pierre,M,35,Lacerations to right side of face,N,,,"E. Ritter, GSAF; A. Armbrister, Freeport News, 10/3/2005",2005.10.03-Nixon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.03-Nixon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.03-Nixon.pdf,2005.10.03,2005.10.03,4675,, +2005.10.01,01-Oct-05,2005,Unprovoked,SOUTH AFRICA,Western Cape Province,"Sunny Cove, Fish Hoek",Surf-skiing,Trevor Wright,M,52,"No injury, shark bit ski",N,15h00,White shark,"Cape Argus, Cape Times, 10/3/2005",2005.10.01-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.01-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.01-Wright.pdf,2005.10.01,2005.10.01,4674,, +2005.09.27.R,Reported 27-Sep-2005,2005,Unprovoked,AUSTRALIA,New South Wales,Arakoon's Little Bay,Surfing,Wal Lewis,M,28,"No injury, knocked off board",N,,"Tiger shark, 3 m ","Macleay Argues, 9/27/2005",2005.09.27.R- Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.27.R- Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.27.R- Lewis.pdf,2005.09.27.R,2005.09.27.R,4673,, +2005.09.24,24-Sep-05,2005,Unprovoked,AUSTRALIA,South Australia,Kangaroo Island,Surfing,Josh Berris,M,26,Lacerations to legs,N,12h05,14' to 16' white shark,"T. Peake, GSAF",2005.09.24-Berris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.24-Berris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.24-Berris.pdf,2005.09.24,2005.09.24,4672,, +2005.09.23,23-Sep-05,2005,Unprovoked,AUSTRALIA,Western Australia,"Scarborough Beach, Perth",Surfing,Brad Satchell,M,44, No injury,N,Morning,Bronze whaler shark,"T. Peake, GSAF",2005.09.23-Satchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.23-Satchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.23-Satchell.pdf,2005.09.23,2005.09.23,4671,, +2005.09.22,22-Sep-05,2005,Invalid,USA,Florida,"Tigertail Beach, Collier County",Surfing,Charlie Corrado,M,,Lacerations to dorsum of left foot,N,07h30,Shark involvement not confirmed,"A. Galabinski, Marco Island Sun Times, 9/22/2005",2005.09.22-Corrado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.22-Corrado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.22-Corrado.pdf,2005.09.22,2005.09.22,4670,, +2005.09.20,20-Sep-05,2005,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Body surfing,Clair Parrett,F,68,"Injuries to fingers, calf & heel",N,16h30,3' to 4' shark,"C. Creswell, GSAF; K. Galliard, Sun News, 9/21/2005",2005.09.20-Parrett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.20-Parrett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.20-Parrett.pdf,2005.09.20,2005.09.20,4669,, +2005.09.11,11-Sep-05,2005,Unprovoked,USA,South Carolina,Folly Beach,Surfing,"Greg Norton, Jr.",M,18,FATAL,Y,14h00,,"Post & Courier, 9/12/2005",2005.09.11-Norton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.11-Norton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.11-Norton.pdf,2005.09.11,2005.09.11,4668,, +2005.09.07,07-Sep-05,2005,Unprovoked,AUSTRALIA,New South Wales,"Park Beach, Coff's Harbour",Standing,Blake Garnett,M,15,Left foot & ankle lacerated,N,Dusk,,"Sydney Morning Herald, 9/9/2005",2005.09.07-Garnett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.07-Garnett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.07-Garnett.pdf,2005.09.07,2005.09.07,4667,, +2005.09.05,05-Sep-05,2005,Unprovoked,USA,North Carolina,"North Topsail Beach, Onslow County",Wading,Elizabeth Gardner,F,18,Calf severely lacerated,N,15h20,Bull shark,"Clay Creswell, GSAF",2005.09.05-Gardner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.05-Gardner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.05-Gardner.pdf,2005.09.05,2005.09.05,4666,, +2005.09.04.a,04-Sep-05,2005,Unprovoked,AUSTRALIA,South Australia,"Fishery Bay, Eyre Peninsula",Surfing,Jake Heron,M,40,Lacerations to right arm & thigh,N,15h00,4 m [13'] white shark,"C.Jenkin, Courier-Mail, 9/5/2005",2005.09.04-Heron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.04-Heron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.04-Heron.pdf,2005.09.04.a,2005.09.04.a,4665,, +2005.09.02.b,02-Sep-05,2005,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Standing / Surfing,Frances Grause,M,62,Right foot bitten,N,11h10,,"S. Petersohn, GSAF",2005.09.02.b-Grause.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.02.b-Grause.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.02.b-Grause.pdf,2005.09.02.b,2005.09.02.b,4664,, +2005.09.02.a,02-Sep-05,2005,Provoked,THAILAND,,On deck of fishing trawler 100 nautical miles offshore,Removing shark from net,"Ham, a Cambodian migrant worker",M,21,FATAL PROVOKED INCIDENT,Y,,"2 m [6.75'] shark, 200-kg shark T","Africa online, citing the Bangkok Post",2005.09.02.a-Ham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.02.a-Ham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.02.a-Ham.pdf,2005.09.02.a,2005.09.02.a,4663,, +2005.08.24.b,24-Aug-05,2005,Unprovoked,AUSTRALIA,South Australia,Glenelg ,Scuba diving,Jarrod Stehbens,M,23,FATAL,Y,16h10,White shark,"Adelaide Advertiser, 8/26/2005",2005.08.24.b-Stehbens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.24.b-Stehbens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.24.b-Stehbens.pdf,2005.08.24.b,2005.08.24.b,4662,, +2005.08.24.a,24-Aug-05,2005,Unprovoked,USA,California,"Scripps, LaJolla, San Diego County",Surfing,Tony Simmonson,M,37,Lower right leg lacerated,N,11h00,juvenile white shark,"R. Collier, GSAF ",2005.08.24.a-Simmonson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.24.a-Simmonson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.24.a-Simmonson.pdf,2005.08.24.a,2005.08.24.a,4661,, +2005.08.22,22-Aug-05,2005,Invalid,USA,South Carolina,"6th Avenue North, Myrtle Beach, Horry County","Boogie boarding, kicked at object in the water",Nicholas House,M,17,Laceration to knee,N,Afternoon,possibly a small blacktip shark,"Clay Creswell, GSAF",2005.08.22-House.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.22-House.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.22-House.pdf,2005.08.22,2005.08.22,4660,, +2005.08.21,21-Aug-05,2005,Unprovoked,USA,South Carolina,"34th Avenue North, Myrtle Beach, Horry County",Swimming,Jacob Kolessar,M,8,Bitten underneath left arm,N,Morning,Possibly a sandbar shark or small blacktip shark,"Clay Creswell, GSAF",2005.08.21-Kolessar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.21-Kolessar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.21-Kolessar.pdf,2005.08.21,2005.08.21,4659,, +2005.08.19,19-Aug-05,2005,Unprovoked,USA,Texas,Crystal Beach (east of Galveston),Walking,Julian Elizondo,M,12,Left foot bitten,N,20h00,,"Clay Creswell, GSAF; Houston Chronicle, 8/20/2005",2005.08.19-Elizondo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.19-Elizondo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.19-Elizondo.pdf,2005.08.19,2005.08.19,4658,, +2005.08.14,14-Aug-05,2005,Invalid,SOUTH AFRICA,Western Cape Province,"Milnerton Lagoon, Cape Town",,,,,Human foot recovered from the water,N,,,"J. Eager, scubaradio.com; Cape Times, 8/15/2005",2005.08.14-foot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.14-foot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.14-foot.pdf,2005.08.14,2005.08.14,4657,, +2005.08.12,12-Aug-05,2005,Unprovoked,USA,North Carolina,"Carolina Beach off Texas Avenue, New Hanover County",Surfing,Chris O'Connor,M,16,Laceration on right wrist & crescent of puncture wounds on forearm ,N,11h30,1.8 m [6'] shark,"C. Creswell, GSAF",2005.08.12-ChrisO'Connor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.12-ChrisO'Connor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.12-ChrisO'Connor.pdf,2005.08.12,2005.08.12,4656,, +2005.08.06,06-Aug-05,2005,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Swimming,Michael Lamb,M,14,Puncture wounds on left foot ,N,09h45,,"C. Creswell, GSAF",2005.08.06-Lamb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.06-Lamb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.06-Lamb.pdf,2005.08.06,2005.08.06,4655,, +2005.08.01,01-Aug-05,2005,Invalid,Seychelles,Inner Islands,Off North Island,Fishing,Rolly Lesperance,M,,"FATAL, shark involvement prior to death is unconfirmed",Y,,Bull shark,D. Rowat,2005.08.01-Lesperance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.01-Lesperance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.01-Lesperance.pdf,2005.08.01,2005.08.01,4654,, +2005.07.27,27-Jul-05,2005,Unprovoked,USA,Florida,"Off Zelda Boulevard, Daytona Beach, Volusia Countyy",Wading,Nicole Carlos,F,13,Laceration on the back of left hand & toothmarks on wrist,N,18h00,,"D. Salamone, GSAF",2005.07.27-Carlos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.27-Carlos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.27-Carlos.pdf,2005.07.27,2005.07.27,4653,, +2005.07.23,23-Jul-05,2005,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",Surfing,Bob Thompson,M,61,"Right foot: Toes and back of foot, minor injury",N,11h30,,"D. Salamone, GSAF",2005.07.23-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.23-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.23-Thompson.pdf,2005.07.23,2005.07.23,4652,, +2005.07.22,22-Jul-05,2005,Invalid,USA,Florida,"Quarter mile south of Ponce de Leon Inlet, Volusia County",Surfing,Matthew Pearce,M,25,"Straight 2.5"" laceration on top of left ankle",N,11h15,Shark involvement not confirmed,"D. Salamone, GSAF",2005.07.22-Pearce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.22-Pearce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.22-Pearce.pdf,2005.07.22,2005.07.22,4651,, +2005.07.17.b,17-Jul-05,2005,Invalid,LIBERIA,,,Swimming,Valentyn Onuk,M,,Presumed to have drowned until his body washed ashore 2 weeks later with shark bites,Y,,,"R.D. Weeks, GSAF",2005.07.17.b-Onuk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.17.b-Onuk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.17.b-Onuk.pdf,2005.07.17.b,2005.07.17.b,4650,, +2005.07.17.a,17-Jul-05,2005,Provoked,CHINA,Shanghai,"Ocean World, Changfeng Park",Scuba diving in aquarium tank,Zhang Liang ,M,24,2 small cuts on right ear & head when he collided with the captive shark. PROVOKED INCIDENT,N,,3.5 m [11.5']shark,"Shanghai Star, 7/21/2005",2005.07.17.a-Liang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.17.a-Liang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.17.a-Liang.pdf,2005.07.17.a,2005.07.17.a,4649,, +2005.07.15.R,Reported 15-Jul-2005,2005,Invalid,AUSTRALIA,,,,"Jeff Wells claimed he rescued his ""daughter"" from a 4 m tiger shark",,,"A hoax - No shark was involved and Wells' ""daughter"" was his business partner Eileen Purchase who injured her finger on his boat",N,,No shark involvement,"Sunday Mail, 15/7/2005",2005.07.15.R- Hoax.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.15.R- Hoax.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.15.R- Hoax.pdf,2005.07.15.R,2005.07.15.R,4648,, +2005.07.15,15-Jul-05,2005,Unprovoked,USA,North Carolina,"Holden Beach, Brunswick County",Swimming,Chris Humphrey,M,22,Lacerations of left forearm,N,16h40,[4.5' to 5'] shark,"C. Creswell, GSAF",2005.07.15.a-Humphrey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.15.a-Humphrey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.15.a-Humphrey.pdf,2005.07.15,2005.07.15,4647,, +2005.07.13,13-Jul-05,2005,Unprovoked,USA,Texas,"Port Bolivar, Galveston County",Holding onto an inflatable boat,Lydia Paulk,F,14,Left foot bitten,N,13h00,[4' to 5'],"C. Creswell, GSAF",2005.07.13-Paulk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.13-Paulk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.13-Paulk.pdf,2005.07.13,2005.07.13,4646,, +2005.07.01,01-Jul-05,2005,Unprovoked,USA,Florida,"Boca Grande, Lee County",Standing,Armin Trojer,M,19,Ankle bitten,N,11h30,,"E. Ritter, GSAF",2005.07.01-Trojer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.01-Trojer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.01-Trojer.pdf,2005.07.01,2005.07.01,4645,, +2005.06.27,27-Jun-05,2005,Unprovoked,USA,Florida,"Cape San Blas, Gulf County",Fishing,Craig Adam Hutto,M,16,"Leg severely bitten, surgically amputated",N,11h30,Bull shark,"E. Ritter, GSAF",2005.06.27-Hutto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.27-Hutto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.27-Hutto.pdf,2005.06.27,2005.06.27,4644,, +2005.06.25,25-Jun-05,2005,Unprovoked,USA,Florida,"Destin, Walton County",Swimming with boogie board,Jamie Marie Daigle ,F,14,"FATAL, leg bitten",Y,11h15,1.8 m [6'] bull shark,"E. Ritter, GSAF",2005.06.25-Daigle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.25-Daigle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.25-Daigle.pdf,2005.06.25,2005.06.25,4643,, +2005.06.22,22-Jun-05,2005,Unprovoked,VANUATU,Malampa Province,Atchin Island off Malakula,Swimming,Alysha Margaret Webster,F,7,FATAL,Y,Afternoon,"On 8/13/2005 anglers from New Zealand caught a 2.8 m [9'3""], 140-kg [309-lb] shark at the same spot. It was believed this was the same shark that killed Alysha","R.D. Weeks, GSAF; New Zealand Herald, 6/23/2005",2005.06.22-Webster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.22-Webster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.22-Webster.pdf,2005.06.22,2005.06.22,4642,, +2005.06.21,20-Jun-05,2005,Unprovoked,MEXICO ,Baja California,San Luis beach,Surfing,Frank Johnson,M,,Left foot bitten,N,07h00,,http://www.signonsandiego.com/news/mexico/20050622-1621-mexico-sharkattack.html,2005.06.21-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.21-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.21-Johnson.pdf,2005.06.21,2005.06.21,4641,, +2005.06.18,18-Jun-05,2005,Invalid,USA,Hawaii,Maui,Swimming,Brad Grissom,M,49,"No injury, 2.1m [7'] tiger shark approached swimmer who repelled it with his fist",N,08h00,,www.mauinews.com,2005.06.18-Grissom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.18-Grissom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.18-Grissom.pdf,2005.06.18,2005.06.18,4640,, +2005.06.16,16-Jun-05,2005,Unprovoked,USA,Florida,"Howard E. Futch Memorial Park at Paradise Beach, Brevard County",Swimming,male,M,20,Foot bitten,N,Afternoon,"Unknown, but it was reported that a shark tooth was recovered from the wound",Local6.com,2005.06.16-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.16-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.16-male.pdf,2005.06.16,2005.06.16,4639,, +2005.06.13,13-Jun-05,2005,Unprovoked,SOUTH KOREA,South Ch'ungch'ong Province,Dando/Kaeui Island ,Diving,Lee,F,38,Knee bitten,N,,3 m [10'] white shark,"Korea Times, 6/13/2005 ",2005.06.13-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.13-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.13-Lee.pdf,2005.06.13,2005.06.13,4638,, +2005.06.07,07-Jun-05,2005,Unprovoked,USA,South Carolina,"Kiawah Island, Charleston County",Boogie boarding,Catherine Cochrane,F,11,Foot lacerated,N,11h30 ,,"C. Creswell, GSAF; N. Kenney, NewsChannel 19",2005.06.07-Cochrane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.07-Cochrane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.07-Cochrane.pdf,2005.06.07,2005.06.07,4637,, +2005.06.05,05-Jun-05,2005,Invalid,USA,New Jersey,"Surf City, Long Beach Island, Ocean County",Surfing,Ryan Horton,M,17,Dorsum of foot/ankle injured by surfboard skeg or other inanimate object.,N,11h00,"Mr. Burgess of ISAF announced the injury was the bite of a 1.8 m [6'], 2- to 3-year old white shark. Subsequent investigation revealed there was no shark involvement in this incident","Mr. Horton; R. Collier, R. Fernicola; M. Levine, E. Ritter, GSAF ",2005.06.05-Horton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.05-Horton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.05-Horton.pdf,2005.06.05,2005.06.05,4636,, +2005.06.04,04-Jun-05,2005,Unprovoked,SOUTH AFRICA,Western Cape Province,Miller's Point,Spearfishing (Free diving),Henri Murray,M,22,FATAL,Y,15h45,White shark,News24.com; SABC; H. Steele,2005.06.04-HenriMurray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.04-HenriMurray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.04-HenriMurray.pdf,2005.06.04,2005.06.04,4635,, +2005.06.02,02-Jun-05,2005,Unprovoked,USA,Texas,"Mustang Island, Corpus Christi",Wading,male,M,6,Two 2-inch lacerations on right foot,N,Morning,,KRIS6 News,2005.06.02-Texas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.02-Texas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.02-Texas.pdf,2005.06.02,2005.06.02,4634,, +2005.05.28,28-May-05,2005,Unprovoked,USA,Florida,Daytona Beach Shores,Swimming,Alfonso Garcia,M,33,Left foot bitten,N,17h30,"""small shark""","Daytona Beach News Journal, 5/29/2005; Orlando Sentinel, 5/30/2005, p.B3",2005.05.28-Garcia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.28-Garcia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.28-Garcia.pdf,2005.05.28,2005.05.28,4633,, +2005.05.27,27-May-05,2005,Unprovoked,USA,Florida,"Sand Key Beach, Clearwater, Pinellas County",Crouching in 2' of water,Michelle Smith,F,,Right arm & torso bitten,N,18h30,"18"" to 36"" shark","D.Wilhoit, The Ledger, 5/29/ 2005",2005.05.27-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.27-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.27-Smith.pdf,2005.05.27,2005.05.27,4632,, +2005.05.25,25-May-05,2005,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kei River Mouth,Surfing,Jay Catherall ,M,32,Left buttock & legs lacerated ,N,11h00,Raggedtooth shark,"C. Prince, East London Daily Dispatch, 5/26/2005; SABC News",2005.05.25-Catherall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.25-Catherall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.25-Catherall.pdf,2005.05.25,2005.05.25,4631,, +2005.05.15,15-May-05,2005,Unprovoked,AUSTRALIA,Queensland,50 km east of Townsville,Spearfishing,Ben Edelstein,M ,,Severe injury to lower leg,N,,Blacktip shark,"J. Anderson, Townsville Bulletin, 5/21/2005 ",2005.05.15-Edelstein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.15-Edelstein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.15-Edelstein.pdf,2005.05.15,2005.05.15,4630,, +2005.05.14,14-May-05,2005,Unprovoked,USA,Hawaii,"North Kihei, Maui",Kayaking,J. Bailey,,,"No injury, shark bit kayak",N,11h00,"Tiger shark, 8' to 9' ",Hawaii Department of Land and Natural Resources,2005.05.14-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.14-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.14-Bailey.pdf,2005.05.14,2005.05.14,4629,, +2005.05.03,03-May-05,2005,Unprovoked,MADAGASCAR,,,Fishing,Sochidjin,M,,Thigh bitten,N,,2.5 m shark,"Clicanoo, 5/6/2005, 5/7/2005",2005.05.03-Sochodjin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.03-Sochodjin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.03-Sochodjin.pdf,2005.05.03,2005.05.03,4628,, +2005.05.02.R,02-May-05,2005,Sea Disaster,USA,South Carolina,Off Sullivans Island,Sea Disaster,Boat: 14' Sunfish. Occupants Josh Long & Troy Driscoll,M,Teens,No injury,N,,,"Gaffney Ledger, 5/2/2005",2005.05.02.R-NC-boysAdrift.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.02.R-NC-boysAdrift.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.02.R-NC-boysAdrift.pdf,2005.05.02.R,2005.05.02.R,4627,, +2005.05.02,02-May-05,2005,Unprovoked,USA,Hawaii,"Noreiga's, Maui",Surfing,Scott Hoyt,M,47,"No injury, board damaged",N,10h30,"Tiger shark, 3 m [10']","T. Hurley, Honolulu Advertiser; L. Fujimoto, Maui News, 5/3/2005 ",2005.05.02.a-Hoyt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.02.a-Hoyt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.02.a-Hoyt.pdf,2005.05.02,2005.05.02,4626,, +2005.04.25,25-Apr-05,2005,Provoked,AUSTRALIA,New South Wales,Bermagui,Fishing,male,M,25,Laceration on left thigh PROVOKED INCIDENT,N,23h00,"Mako shark, 1.5 m [5'] ","Brisbane Courier Mail, 4/26/2005",2005.04.25-deckhand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.25-deckhand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.25-deckhand.pdf,2005.04.25,2005.04.25,4625,, +2005.04.17.R,17-Apr-05,2005,Unprovoked,AUSTRALIA,New South Wales,Crookhaven,,,,,Shark-bitten surfboard found adrift,N,,,"Illawarra Mercury, 4/17/2005",2005.04.17.a-Crookhaven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.17.a-Crookhaven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.17.a-Crookhaven.pdf,2005.04.17.R,2005.04.17.R,4624,, +2005.04.16.b,16-Apr-05,2005,Unprovoked,AUSTRALIA,Northern Territory,Bremer Island,Spearfishing,Clayton Deane,M,20,Minor cuts above his right eye,N,,2 m [6.75'] copper shark,"G. McLean, Northern Territory News; Sunday Territorian, 4/17/2005, p.6",2005.04.16.b-Deane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.16.b-Deane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.16.b-Deane.pdf,2005.04.16.b,2005.04.16.b,4623,, +2005.04.16.a,16-Apr-05,2005,Unprovoked,AUSTRALIA,New South Wales,Bronte Beach,Surfing,Simon Letch,M,40,"No injury, board bitten",N,06h10,Bronze whaler shark,The Sun; Illwarra Mercury; Yahoo News,2005.04.16.a-Letch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.16.a-Letch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.16.a-Letch.pdf,2005.04.16.a,2005.04.16.a,4622,, +2005.04.13,13-Apr-05,2005,Unprovoked,USA,Florida,"Crescent Beach, Sarasota County",Wading,Jessica Lynch,F,70,Right lower leg bitten,N,,1.8 m [6'] blacktip shark,Herald Tribune.com,2005.04.13-Lynch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.13-Lynch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.13-Lynch.pdf,2005.04.13,2005.04.13,4621,, +2005.04.09,09-Apr-05,2005,Invalid,USA,Florida,"Central Gulf Coast, St. John County",Surfing,Glenn Henderson,M,52,Foot injured ,N,,Shark involvement not confirmed,"WTSP TampaBays10.com; First Coast News, April 10, 2005 ",2005.04.09-Henderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.09-Henderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.09-Henderson.pdf,2005.04.09,2005.04.09,4620,, +2005.04.07,07-Apr-05,2005,Unprovoked,USA,Texas,"Isla Blanca Park, South Padre Island, Cameron County",Surfing,Gianluca Ferrario ,M,37,Left foot bitten ,N,19h00,,"G. Ferrario; J. Mendoza, Cameron County Parks; The Herald (Brownsville), 4/11/2005",2005.04.07-GianlucaFerrario.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.07-GianlucaFerrario.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.07-GianlucaFerrario.pdf,2005.04.07,2005.04.07,4619,, +2005.04.06,06-Apr-05,2005,Unprovoked,USA,Florida,"Jacksonville Beach, Duval County",,Jessica Abe,F,,Left calf injured,N,,small hammerhead shark,WJXT News4Jax.com,2005.04.06.a-Abe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.06.a-Abe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.06.a-Abe.pdf,2005.04.06,2005.04.06,4618,, +2005.04.06,06-Apr-05,2005,Invalid,HONDURAS,Bay Islands,Utila,SCUBA Diving,female,F,,"Laceration on siide of calf, small laceration on thigh, large bruise on other leg inside the knee, knuckle of hand abraded",N,,Shark involvement not confirmed,"J. Engel, SRI & S. Fox, Deep Blue",2005.04.06.b-Utila.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.06.b-Utila.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.06.b-Utila.pdf,2005.04.06,2005.04.06,4617,, +2005.03.28,28-Mar-05,2005,Unprovoked,SOUTH AFRICA,Western Cape Province,Noordhoek,Surfing,Chris Sullivan,M,32,"Lacerations to right calf, puncture wounds on right foot",N,09h45,4 m [13'] shark,"ITN, 3/30/2005",2005.03.28-Sullivan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.28-Sullivan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.28-Sullivan.pdf,2005.03.28,2005.03.28,4616,, +2005.03.27.R,Reported 27-Mar-2005,2005,Unprovoked,AUSTRALIA,New South Wales,,Surfing,Chris Parker,M,,"No injury, shark rammed surfboard",N,,,"Sunday Age, 3/27/2005",2005.03.27.R-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.27.R-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.27.R-Parker.pdf,2005.03.27.R,2005.03.27.R,4615,, +2005.03.25,25-Mar-05,2005,Unprovoked,VENEZUELA,,Punta Caracas,Surfing,Jokin Leizaola,M,,Right leg bitten,N,17h30,,"A. Brenneka, GSAF",2005.03.25-Leizaola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.25-Leizaola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.25-Leizaola.pdf,2005.03.25,2005.03.25,4614,, +2005.03.19,19-Mar-05,2005,Unprovoked,AUSTRALIA,Western Australia,"Wreck Point, Abrolhos Islands",Snorkeling,Geoffrey Brazier,M,26,FATAL,Y,14h00,6 m [20'] white shark,"T. Peake, GSAF",2005.03.19-Brazier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.19-Brazier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.19-Brazier.pdf,2005.03.19,2005.03.19,4613,, +2005.03.12,12-Mar-05,2005,Provoked,USA,New Mexico,"Albuquerue Aquarium, Albuquerue",Diving in aquarium display tank,Ken Pitts,M,45,2 punctures on forearm as captive shark collided with diver PROVOKED INCIDENT,N,15h30,"Sandtiger shark, 2.1 m [7'] ","H. Casman; T. Dukart, KOBTV",2005.03.12-Pitts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.12-Pitts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.12-Pitts.pdf,2005.03.12,2005.03.12,4612,, +2005.03.10,10-Mar-05,2005,Invalid,SOUTH AFRICA,KwaZulu-Natal,Isipingo,,Anthony Arnachallan ,M,51,Shark bites post mortem,N,,"Tiger shark, 2.5 m [8.25']","J. Govander, Nokia Sea Rescue, SAPA",2005.03.10-Arnachallan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.10-Arnachallan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.10-Arnachallan.pdf,2005.03.10,2005.03.10,4611,, +2005.03.09,09-Mar-05,2005,Provoked,NEW ZEALAND,North Island,"Waiapu River mouth , East Cape",Fishing,"Chris Haenga, Wayne Rangihuna & Tamahau Tibble",M,,"No injury, netted shark dragged them 350 metres out to sea PROVOKED INCIDENT",N,14h00,"Bronze whaler shark, 4.3 m [14'] ","R.D. Weeks, GSAF",2005.03.09-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.09-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.09-fishermen.pdf,2005.03.09,2005.03.09,4610,, +2005.03.05,05-Mar-05,2005,Unprovoked,SOLOMON ISLANDS,Santa Isabel Province,,Diving,male,M,,Thighs bitten,N,,,"Solomon Star, 3/9/2005",2005.03.05-SolomonIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.05-SolomonIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.05-SolomonIslands.pdf,2005.03.05,2005.03.05,4609,, +2005.02.26,26-Feb-05,2005,Unprovoked,AUSTRALIA,Queensland,Brisbane River,Swimming,Nathan Shaxson,M,18,Finger bitten,N,,Bull shark,Queensland Times,2005.02.26-Shaxson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.26-Shaxson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.26-Shaxson.pdf,2005.02.26,2005.02.26,4608,, +2005.02.22,22-Feb-05,2005,Provoked,USA,Florida,"Long Key, Monroe County",Spearfishing,Alex Mumzhiu,M,,Speared shark bit his chest PROVOKED INCIDENT,N,,"Nurse shark, 3' ",http://www.foldabikes.com/CurrentEvents/Story/Florida.html,2005.02.22-AlexMumzhiu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.22-AlexMumzhiu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.22-AlexMumzhiu.pdf,2005.02.22,2005.02.22,4607,, +2005.02.16,16-Feb-05,2005,Unprovoked,USA,Hawaii,"Rocky Point, north shore of O'ahu",Surfing,Greg Long,M,,"No injury, knocked off board, shark bit board",N,14h30,"Tiger shark, 2.4 m [8']"," R. Collier, GSAF; T. Winters, Honolulu Advertiser, 2/17/2005 ",2005.02.16-Long.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.16-Long.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.16-Long.pdf,2005.02.16,2005.02.16,4606,, +2005.02.13,13-Feb-05,2005,Unprovoked,USA,Florida,Fort Lauderdale,Spearfishing,male,M,,Hand bitten,N,,1.8 m [6'] Caribbean reef shark,J. Herrera,2005.02.13-FtLauderdale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.13-FtLauderdale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.13-FtLauderdale.pdf,2005.02.13,2005.02.13,4605,, +2005.02.04,04-Feb-05,2005,Unprovoked,BRAZIL,Bahia,Ilh�us,Surfing,Antonio de Carvalho Miguel Pereira ,M,12,Right thigh & ankle injured,N,,,"Orlando Sentinel, 2/5/2005, p.A6",2005.02.04-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.04-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.04-Pereira.pdf,2005.02.04,2005.02.04,4604,, +2005.01.20,20-Jan-05,2005,Unprovoked,CUBA,Santiago de Cuba Province,Uvero,Swimming,Hurdenis J�rez ,M,19,Left foot severed,N,,3 m [10'] shark,Cuba News,2005.01.20-Jerez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.20-Jerez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.20-Jerez.pdf,2005.01.20,2005.01.20,4603,, +2005.01.19,19-Jan-05,2005,Provoked,AUSTRALIA,Victoria,Port Phillip Bay,Spearfishing,Julian McLaughlin,M,,No injury. Towed by speared shark PROVOKED INCIDENT,N,,3 m shark,Herald Sun News,2005.01.19-McLaughlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.19-McLaughlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.19-McLaughlin.pdf,2005.01.19,2005.01.19,4602,, +2005.01.14,14-Jan-05,2005,Provoked,AUSTRALIA,Victoria,Blairgowrie,Attempting to drive shark away from sailing regatta,dinghy,,,"No injury to occupants, one of the boat's flotation tanks holed PROVOKED INCIDENT",N,14h00,"Bronze whaler shark, 2 m to 3 m [6.75' to 10'] ",Herald Sun News,2005.01.14-raceboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.14-raceboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.14-raceboat.pdf,2005.01.14,2005.01.14,4601,, +2005.01.08,08-Jan-05,2005,Unprovoked,NEW ZEALAND,North Island,Taupiri Bay,Fishing from a kayak,Paul Morris,M,39,"No injury, kayak bumped repeatedly",N,12h00,White shark,"R. Collier & R.D. Weeks, GSAF ",2005.01.08-PaulMorris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.08-PaulMorris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.08-PaulMorris.pdf,2005.01.08,2005.01.08,4600,, +2004.12.26,26-Dec-04,2004,Invalid,SRI LANKA,Eastern Province,Pasikudha,"Swept out to sea by the tsunami, she clung to a log for 24 hours",Sylvia Lucas,F,11,No injury,N,,No shark involvement,"R.D. Weeks, GSAF",2004.12.26-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.12.26-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.12.26-Lucas.pdf,2004.12.26,2004.12.26,4599,, +2004.12.16,16-Dec-04,2004,Unprovoked,AUSTRALIA,South Australia,"West Beach, Adelaide",Scurfing (surfboard being towed behind a boat),Nick Peterson,M,18,FATAL,Y,15h15,4.5 m & 5 m white shark ,"P. Kemp & T. Peake, GSAF",2004.12.16-Peterson-draft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.12.16-Peterson-draft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.12.16-Peterson-draft.pdf,2004.12.16,2004.12.16,4598,, +2004.12.11,11-Dec-04,2004,Unprovoked,AUSTRALIA,Queensland,Opal Reef,Spearfishing,Mark Thompson,M,38,"FATAL, leg bitten",Y,13h00,Bull shark,"Weekend Australian, 2/17/2005, et al.",2004.12.11-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.12.11-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.12.11-Thompson.pdf,2004.12.11,2004.12.11,4597,, +2004.11.27,27-Nov-04,2004,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon, East London",Surfing,Llewellyn Maske,M,20,3 lacerations on foot,N,18h00,Raggedtooth shark,J. Eager,2004.11.27-Maske.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.27-Maske.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.27-Maske.pdf,2004.11.27,2004.11.27,4596,, +2004.11.26,26-Nov-04,2004,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Gonubie,Playing,Arno de Bruyn,M,16,Lacerations on lower leg & foot,N,,Raggedtooth shark,J. Eager,2004.11.26-ArnoDeBruyn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.26-ArnoDeBruyn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.26-ArnoDeBruyn.pdf,2004.11.26,2004.11.26,4595,, +2004.11.15,15-Nov-04,2004,Unprovoked,SOUTH AFRICA,Western Cape Province,"Fish Hoek, False Bay",Swimming,Tyna Webb,F,77,FATAL,Y,07h00,6 m [20'] white shark,"J.P. Botha, GSAF",2004.11.15-TynaWebb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.15-TynaWebb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.15-TynaWebb.pdf,2004.11.15,2004.11.15,4594,, +2004.11.11.b,11-Nov-04,2004,Unprovoked,USA,California,"Bunkers, Humboldt Bay, Eureka, Humboldt County",Surfing,Brian Kang,lli,38,"Lacerations to hand, knee & thigh ",N,13h30,5.5 m [18'] white shark,"R. Collier, GSAF ",2004.11.11.b-Kang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.11.b-Kang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.11.b-Kang.pdf,2004.11.11.b,2004.11.11.b,4593,, +2004.11.11.a,11-Nov-04,2004,Unprovoked,VANUATU,Malampa Province,Malakula (Malakula Island),Snorkeling,a German tourist (male),M,30s,Thigh bitten,N,09h00,,"R. Harris, M.D., T. Peake, GSAF",2004.11.11.a-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.11.a-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.11.a-Vanuatu.pdf,2004.11.11.a,2004.11.11.a,4592,, +2004.11.00,Nov-04,2004,Unprovoked,NEW CALEDONIA,North Province,Koumac,Diving,Unknown,,,Forearm bitten,N,,3 m shark,"Les Nouvelles Caledoniennes, 11/19/2004",2004.11.00-Koumac.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.00-Koumac.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.00-Koumac.pdf,2004.11.00,2004.11.00,4591,, +2004.10.31,31-Oct-04,2004,Unprovoked,CUBA,Camaguey Province,Santa Lucia,Diving,male,M,40,Left forearm bitten,N,14h00,2.5 m [8.25'] bull shark,"E. Ritter, GSAF",2004.10.31-CubanSharkFeed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.31-CubanSharkFeed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.31-CubanSharkFeed.pdf,2004.10.31,2004.10.31,4590,, +2004.10.30.x,30-Oct-04,2004,Invalid,NEW ZEALAND,North Island,Whangarei,,,,,No injury,N,,3 m white shark,"New Zealand Herald, 11/24/2004/15/2004",2004.10.30.x-NewZealand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.30.x-NewZealand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.30.x-NewZealand.pdf,2004.10.30.x,2004.10.30.x,4589,, +2004.10.30.a,30-Oct-04,2004,Unprovoked,SOUTH AFRICA,Western Cape Province,Gansbaai,Chumming for white sharks,Andre Hartman,M,52,Right ankle & foot lacerated,N,Morning,2 m [6.75'] white shark,"J.P. Botha, GSAF",2004.10.30.a-Hartman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.30.a-Hartman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.30.a-Hartman.pdf,2004.10.30.a,2004.10.30.a,4588,, +2004.10.21,21-Oct-04,2004,Unprovoked,AUSTRALIA,New South Wales,Stockton Beach,Surfing,John Gresham,M,59,Right foot lacerated,N,Afternoon,"Bronze whaler shark, 2.4 m [8'] ","The Border Mail, 10/23/2004",2004.10.21-Gresham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.21-Gresham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.21-Gresham.pdf,2004.10.21,2004.10.21,4587,, +2004.10.10,10-Oct-04,2004,Unprovoked,USA,California,"Limantour Beach, Point Reyes National Seashore",Surfing,Paul de Jung,M,,Lower leg bitten,N,09h30,1.8 m to 2.4 m [6' to 8'] white shark,"R. Collier, GSAF",2004.10.10-deJung.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.10-deJung.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.10-deJung.pdf,2004.10.10,2004.10.10,4586,, +2004.10.09.b,09-Oct-04,2004,Unprovoked,USA,Hawaii,Moloka'i,Spearfishing,Davy Sanada,M,34,Left shoulder bitten,N,12h40,"Tiger shark, 2.4 m to 3.7 m [8' to 12'] ","The Maui News, 10/10/2004 ",2004.10.09.b-Sanada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.09.b-Sanada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.09.b-Sanada.pdf,2004.10.09.b,2004.10.09.b,4585,, +2004.10.09.a,09-Oct-04,2004,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Jeffrey�s Bay,Surfing,Wayne Monk,M,34,Puncture wounds on right foot,N,Morning,"Raggedtooth shark, 1.5 to 2 m [5' to 6.75']","Sunday Argus, 10/10/2004; W. Steenkamp, Cape Times 10/9/2004",2004.10.09.a-Monk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.09.a-Monk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.09.a-Monk.pdf,2004.10.09.a,2004.10.09.a,4584,, +2004.10.06,06-Oct-04,2004,Unprovoked,REUNION,Conservat�ria District,"P' tit Paris, Saint-Pierre",Body boarding,Vincent Motais ,M,15,"Leg severely bitten, surgically amputated",N,16h15,Thought to involve a 2.5 m bull or tiger shark,Federation Francaise de Surf,2004.10.06-Motais.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.06-Motais.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.06-Motais.pdf,2004.10.06,2004.10.06,4583,, +2004.10.02,02-Oct-04,2004,Unprovoked,USA,California,"Pismo Beach, San Luis Obispo County",Surfing,Ben Ikola,M,16,"No injury, knocked off surfboard",N,15h30,,"R. Collier, GSAF",2004.10.02-Ikola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.02-Ikola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.02-Ikola.pdf,2004.10.02,2004.10.02,4582,, +2004.10.01,01-Oct-04,2004,Unprovoked,USA,California,"Lifeguard Tower 16, Huntington Beach, Orange County",Surfing,Chuck Wilson,M,40,"No injury, shark struck board & spun it around",N,14h00,,"R. Collier, GSAF",2004.10.01-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.01-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.01-Wilson.pdf,2004.10.01,2004.10.01,4581,, +2004.09.25,25-Sep-04,2004,Boat,AUSTRALIA,Queensland,Batt Reef,Spearfishing/ filming,"inflatable dinghy, occupants: Ben Cropp, J. Harding & T. Fleischman",,,"No injury to occupants, boat damaged",N,12h00,"Tiger shark, 3 m [10'] ","R. Collier, GSAF",2004.09.25-CroppBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.25-CroppBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.25-CroppBoat.pdf,2004.09.25,2004.09.25,4580,, +2004.09.20,20-Sep-04,2004,Unprovoked,USA,Oregon,Gold Beach,Surfing,Seth Mead,M,26,Leg bitten,N,09h00,White shark,"S. Mead, R. Collier, J. Eager, B. Middleton",2004.09.20-Mead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.20-Mead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.20-Mead.pdf,2004.09.20,2004.09.20,4579,, +2004.09.10,10-Sep-04,2004,Invalid,USA,Texas,South Padre Island,Surf fishing,male,M,,Minor scratch on calf,N,Between 05h00 and 08h00,Shark involvement questionable,M. Shields,2004.09.10-SouthPadreIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.10-SouthPadreIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.10-SouthPadreIsland.pdf,2004.09.10,2004.09.10,4578,, +2004.09.08,08-Sep-04,2004,Unprovoked,BRAZIL,Pernambuco,"Pina, Recife",Swimming,Unidentified,,,FATAL,Y,,,JCOnline,2004.09.08-Pina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.08-Pina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.08-Pina.pdf,2004.09.08,2004.09.08,4577,, +2004.09.04,04-Sep-04,2004,Unprovoked,USA,South Carolina ,"North of Apache Pier, Myrtle Beach, Horry County",Jumping,Megan Durham,F,17,Left knee & leg bitten,N,15h40,2.4 m [8'] shark,"C. Creswell, GSAF",2004.09.04-Durham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.04-Durham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.04-Durham.pdf,2004.09.04,2004.09.04,4576,, +2004.08.29,29-Aug-04,2004,Unprovoked,USA,Florida,"New Smyrna Beach / Cape Canaveral National Seashore, Brevard County",Walking,Debbie Salamone,F,38,Heel bitten,N,17h30,,"T. Jerome, GSAF; Daytona Beach News Journal, 8/31/2004",2004.08.29-Salamone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.29-Salamone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.29-Salamone.pdf,2004.08.29,2004.08.29,4575,, +2004.08.21,21-Aug-04,2004,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Bathing,Wagner da Silva,M,24,Calf bitten & both hands injured,N,13h00,"Tiger shark, 1.5 m ","P. M. Lopes, GSAF, 8/22/2004",2004.08.21-daSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.21-daSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.21-daSilva.pdf,2004.08.21,2004.08.21,4574,, +2004.08.20,20-Aug-04,2004,Unprovoked,USA,California,"204s, San Clemente, Orange County",Surfing,Shannon Lehman,M,,Foot bitten,N,17h30,0.9 m to 1.2 m [3' to 4'] white shark,"R. Collier, GSAF",2004.08.20-Lehmann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.20-Lehmann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.20-Lehmann.pdf,2004.08.20,2004.08.20,4573,, +2004.08.15,15-Aug-04,2004,Unprovoked,USA,California,"Kibesillah, Mendocino County",Diving,Randy Fry,M,50,FATAL,Y,16h00,4.9 m to 5.5 m [16' to 18'] white shark,"R. Collier & L. Levine, GSAF",2004.08.15-Fry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.15-Fry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.15-Fry.pdf,2004.08.15,2004.08.15,4572,, +2004.08.06,06-Aug-04,2004,Unprovoked,USA,Florida,"Big Bayou, St. Petersburg, Pinellas County ",Swimming,James Tiffee,M,47,"Back, buttocks, left hand & left side of face bitten",N,20h30,1.2 m [4'] shark,"T. Jerome, GSAF",2004.08.06-Tiffee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.06-Tiffee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.06-Tiffee.pdf,2004.08.06,2004.08.06,4571,, +2004.08.03,03-Aug-04,2004,Unprovoked,AUSTRALIA,New South Wales,Byron Bay,Spearfishing,male,M,30,Minor puncture wounds to leg,N,14h00,,"T. Peake, GSAF",2004.08.03-ByronBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.03-ByronBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.03-ByronBay.pdf,2004.08.03,2004.08.03,4570,, +2004.08.00,Aug-04,2004,Boat,SOUTH AFRICA,KwaZulu-Natal,Park Rynie,Fishing,boat x 2,,,No injury to occupants; boat damaged,N,,3 m to 4 m [10' to 13'] white shark,"J. Eager, scubaradio.com",2004.08.00-SAboats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.00-SAboats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.00-SAboats.pdf,2004.08.00,2004.08.00,4569,, +2004.07.31,31-Jul-04,2004,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,Kelly Getzfread,F,20,Right foot bitten,N,13h00,,"C. Creswell, GSAF",2004.07.31-Getzfread.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.31-Getzfread.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.31-Getzfread.pdf,2004.07.31,2004.07.31,4568,, +2004.07.30,30-Jul-04,2004,Unprovoked,RUSSIA,Kuril Islands in the Pacific,"Kunashir Island, 70 km from northern Japan",Diving & fishing with net,Vladimir Skutelnik,M,,Thigh & calf bitten,N,,White shark,"M. Gozum & J. Eager, scubaradio.com",2004.07.30-Skutelnik.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.30-Skutelnik.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.30-Skutelnik.pdf,2004.07.30,2004.07.30,4567,, +2004.07.28,28-Jul-04,2004,Unprovoked,USA,North Carolina,"Rodanthe, Dare County",Surfing,Catherine Delneo,F,28,Right calf bitten,N,17h30,,"C.Delneo, C. Creswell, M. Levine, R. Collier, GSAF",2004.07.28-Delneo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.28-Delneo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.28-Delneo.pdf,2004.07.28,2004.07.28,4566,, +2004.07.27.b,27-Jul-04,2004,Unprovoked,USA,North Carolina,"Carolina Beach, New Hanover County",Swimming,Alexis Huesgen,F,13,Right forearm & wrist lacerated,N,17h00,1.8 m [6'] shark,"C. Creswell, GSAF",2004.07.27.b-Huesgen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.27.b-Huesgen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.27.b-Huesgen.pdf,2004.07.27.b,2004.07.27.b,4565,, +2004.07.27.a,27-Jul-04,2004,Unprovoked,USA,Texas,Galveston Island,Swimming,Erika Hailey,F,19,Right foot bitten,N,16h30,1.2 m to 1.5 m [4' to 5'] shark,KETK56 News,2004.07.27.a-Hailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.27.a-Hailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.27.a-Hailey.pdf,2004.07.27.a,2004.07.27.a,4564,, +2004.07.25,25-Jul-04,2004,Unprovoked,USA,Texas,"Bryan Beach, Brazoria County",Wading / fishing & carrying a bag of fish,Aaron Perez,M,11,Right forearm nearly severed and bites above & below the right knee,N,19h30,Bull shark,KRISTV.com,2004.07.25-AaronPerez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.25-AaronPerez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.25-AaronPerez.pdf,2004.07.25,2004.07.25,4563,, +2004.07.19.R," 19-Jul-2004 Reported to have happened ""on the weekend""",2004,Boat,AUSTRALIA,Western Australia,"7 km off Trigg surf beach, Perth",Fishing,"boat, occupants: Mike Taylor & his son, Jack, age 9 ",,,"No injury to occupants; shark mouthed motor, severed anchor line",N,,4 m [13'] white shark,"Channel 9; Northern Territory News, 7/20/2004, p.10 ",2004.07.19.R-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.19.R-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.19.R-boat.pdf,2004.07.19.R,2004.07.19.R,4562,, +2004.07.15,15-Jul-04,2004,Unprovoked,JAPAN,Wakayama Prefecture,Susami,Fishing for squid aboard the trawler Shikishima-Maru when the shark leapt into the boat,Yuji Torimi,M,51,Suffered broken ribs when the shark's tail fin slammed into his chest,N,,"Longfin mako shark, 3.5 m [11.5'], 350-kg [772-lb] ","Mainichi Shimbun, 7/17/2004 ",2004.07.15-Torimi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.15-Torimi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.15-Torimi.pdf,2004.07.15,2004.07.15,4561,, +2004.07.10,10-Jul-04,2004,Unprovoked,AUSTRALIA,Western Australia,"Lefthanders Beach, Margaret River",Surfing,Bradley Adrian Smith,M,30,"FATAL, abdomen, pelvis & leg bitten ",Y,14h10,"2 sharks, 4.5 m & 3 m ","T. Peake, GSAF",2004.07.10-BradSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.10-BradSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.10-BradSmith.pdf,2004.07.10,2004.07.10,4560,, +2004.07.02.b,02-Jul-04,2004,Unprovoked,EGYPT,Sinai Peninsula,The lagoon at Dahab,Snorkeling,"Mirjam Buser, a Swiss tourist",F,Teen,Hand severed,N,,"""black tipped"" shark","E. Ritter, GSAF; iwindsurf.co.uk",2004.07.02.b-MiriamBuser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.02.b-MiriamBuser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.02.b-MiriamBuser.pdf,2004.07.02.b,2004.07.02.b,4559,, +2004.07.02.a,02-Jul-04,2004,Unprovoked,USA,Alabama,"Gulf Shores Beach, Baldwin County",Wading,Trenton Martin,M,7,Right foot lacerated,N,16h40,4' to 5' shark,"C. Creswell, GSAF",2004.07.02.a-TrentonMartin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.02.a-TrentonMartin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.02.a-TrentonMartin.pdf,2004.07.02.a,2004.07.02.a,4558,, +2004.06.26.b,26-Jun-04,2004,Unprovoked,USA,California,"San Onofre State Beach, San Diego County",Surfing,Kelly French,M,45,"No injury, shark struck his board",N,09h00,"9'2"" white shark",R. Collier; GSAF,2004.06.26.b-French.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.26.b-French.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.26.b-French.pdf,2004.06.26.b,2004.06.26.b,4557,, +2004.06.26.a,26-Jun-04,2004,Invalid,AUSTRALIA,Western Australia,Floreat Beach,Crayfishing,Gavin Duncan,M,,"No injury, shark made threat displays & diver fended it off with his speargun",N,,,"T. Peake, GSAF; Sunday Times (Perth) 6/27/2004, p.11",2004.06.26.a-Duncan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.26.a-Duncan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.26.a-Duncan.pdf,2004.06.26.a,2004.06.26.a,4556,, +2004.06.14,14-Jun-04,2004,Unprovoked,USA,Florida,"Disney / Vero Beach, Indian River County",In water with diving seabirds,girl,F,,Foot bitten,N,,,Global Lifeguards,2004.06.14-Disney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.14-Disney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.14-Disney.pdf,2004.06.14,2004.06.14,4555,, +2004.06.10.b,10-Jun-04,2004,Unprovoked,AUSTRALIA,Western Australia,Bunbury,Body boarding,Tom O'Brien,M,17,Ankle & foot lacerated,N,Late afternoon,"Bronze whaler shark, 2.5 m [8.25'] ","T. Peake, GSAF",2004.06.10.b-O'Brien.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.10.b-O'Brien.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.10.b-O'Brien.pdf,2004.06.10.b,2004.06.10.b,4554,, +2004.06.10.a,10-Jun-04,2004,Unprovoked,USA,Florida,"Daytona Beach Shores, Volusia County",Swimming,Mitchell Anderson,M,8,Right wrist & left arm lacerated,N,18h00,1.2 m [4'] shark,"T. Jerome, GSAF; Daytona Beach News Journal,, 6/11/2004, p.1C",2004.06.10.a-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.10.a-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.10.a-Anderson.pdf,2004.06.10.a,2004.06.10.a,4553,, +2004.06.02,02-Jun-04,2004,Unprovoked,SOUTH AFRICA,Western Cape Province,Dyer Island,"Swimming, poaching perlemoen",Nkosinathi Mayaba,M,21,"FATAL, leg severed ",Y,15h00,White shark,"J. Smetherham & B. Ndenze, Cape Times",2004.06.02-Mayabai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.02-Mayabai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.02-Mayabai.pdf,2004.06.02,2004.06.02,4552,, +2004.05.29,29-May-04,2004,Unprovoked,USA,Texas,"Pirate's Beach, Galveston Island",Wading,Ryan Eckstrum,M,16,Puncture wounds on shin,N,19h45,0.9 m to 1.5 m [3' to 5'] shark,J. David,2004.05.29-Eckstrum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.29-Eckstrum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.29-Eckstrum.pdf,2004.05.29,2004.05.29,4551,, +2004.05.23.b,23-May-04,2004,Unprovoked,BRAZIL,Pernambuco,Piedade Beach,Swimming,Walmir Pereira da Silva,M,17,"Left hand, foot severed & left calf & arm bitten",N,14h30,Bull shark,"P. M. Lopes, GSAF; JC, 5/24/2004",2004.05.23.b-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.23.b-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.23.b-Silva.pdf,2004.05.23.b,2004.05.23.b,4550,, +2004.05.28,28-May-04,2004,Unprovoked,USA,California,"Salmon Creek, Sonoma County",Surfing,"Bernard 'Butch' Connor, Jr.",M,44,No injury,N,11h00,2.4 m to 3.7 m [8' to 12'] shark,"R. Collier, GSAF; B. Connor, Jr.",2004.05.28-Connor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.28-Connor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.28-Connor.pdf,2004.05.28,2004.05.28,4549,, +2004.05.23.a,23-May-04,2004,Unprovoked,USA,Florida,"St. Augustine, St. John's County",Boogie-boarding / swimming,male,M,9,Calf & foot lacerated,N,12h30,,News4Jax,2004.05.23.a - St.Augustine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.23.a - St.Augustine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.23.a - St.Augustine.pdf,2004.05.23.a,2004.05.23.a,4548,, +2004.05.22.c,22-May-04,2004,Invalid,USA,Florida,St. Augustine St. Johns County,Swimming,male,M,9,Single puncture wound on the foot,N,,Shark involvement not confirmed,"T. Jerome, GSAF",2004.05.22.c-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.22.c-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.22.c-male.pdf,2004.05.22.c,2004.05.22.c,4547,, +2004.05.22.b,22-May-04,2004,Unprovoked,USA,Florida,"Jacksonville Beach, Duval County",,Michaela Grogan,F,9,Foot bitten,N,Afternoon,,First Coast News,2004.05.22.b-Grogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.22.b-Grogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.22.b-Grogan.pdf,2004.05.22.b,2004.05.22.b,4546,, +2004.05.22.a,22-May-04,2004,Unprovoked,BRAZIL,Pernambuco,"Piedade Beach, Recife",Wading,Naiane Barbosa Bringel,F,24,Hips & thighs bitten,N,16h00,,"P.M. Lopes, GSAF, JC, 5/23/2004",2004.05.22.a-Bringel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.22.a-Bringel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.22.a-Bringel.pdf,2004.05.22.a,2004.05.22.a,4545,, +2004.05.18,18-May-04,2004,Provoked,BAHAMAS,Abaco Islands,Green Turtle Cay,Free diving & spearfishing,Wolfgang Leander,M,63,Left forearm bitten PROVOKED INCIDENT,N,15h00,"1,5 m [5'] Caribbean reef shark (Carcharhinus perezi)","W. Leander, M. Levine, GSAF",2004.05.18-Leander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.18-Leander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.18-Leander.pdf,2004.05.18,2004.05.18,4544,, +2004.05.04,04-May-04,2004,Unprovoked,USA,Texas,Channel between South Padre Island & Padre Island National Seashore,Tandem surfing,Rachel Gore,M,28,"No injury, board bitten",N,16h30,"Mako shark, 1.8 m [6']",G. Gore & M. Sturdevant,2004.05.04-Gore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.04-Gore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.04-Gore.pdf,2004.05.04,2004.05.04,4543,, +2004.05.01,01-May-04,2004,Unprovoked,BRAZIL,Pernambuco,Piedade ,Swimming,Orlando Oscar da Silva,M,22,FATAL,Y,Afternoon,,"JCOnline, 5/2/2004",2004.05.01-Orlando.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.01-Orlando.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.01-Orlando.pdf,2004.05.01,2004.05.01,4542,, +2004.04.26,26-Apr-04,2004,Unprovoked,AUSTRALIA,New South Wales,"Latitude Reef, near Forster",Diving,Chai Griffin,M,,Puncture wounds on wrist,N,Morning,"Wobbegong shark, 1.2 m [4'] k","T. Peake, GSAF",2004.04.26-Griffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.26-Griffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.26-Griffin.pdf,2004.04.26,2004.04.26,4541,, +2004.04.22,22-Apr-04,2004,Boat,NEW ZEALAND,North Island,Motunui,Fishing,boat Live N Hope,,,"No injury to occupants, boat scratched by shark",N,,"White shark, 5.5 m [18']","T. Peake, GSAF",2004.04.22-boatLive'N-Hope.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.22-boatLive'N-Hope.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.22-boatLive'N-Hope.pdf,2004.04.22,2004.04.22,4540,, +2004.04.13.b,13-Apr-04,2004,Unprovoked, TONGA,Nuku'alofa,30 nautical miles offshore,Five men on makeshift raft after their 10 m fishing boat capsized and sank in rough seas. Survivors rescued after 7.5 hours in the water, male 2,M,,"Bitten on feet, legs, back & abdomen but survived. Survivors rescued after 7.5 hours in the water",Y,,small sharks,"New Zealand Herald, 4/15/2004",2004.04.13.b-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.13.b-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.13.b-Tonga.pdf,2004.04.13.b,2004.04.13.b,4539,, +2004.04.13.a,13-Apr-04,2004,Invalid, TONGA,Nuku'alofa,30 nautical miles offshore,Five men on makeshift raft after their 10 m fishing boat capsized and sank in rough seas. Survivors rescued after 7.5 hours in the water,male 1,M,,"He was was bitten on the arm by small sharks & died, but it was not clear if he died as result of the bite or death resulted from drowing",Y,,,"New Zealand Herald, 4/15/2004",2004.04.13.a-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.13.a-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.13.a-Tonga.pdf,2004.04.13.a,2004.04.13.a,4538,, +2004.04.07,07-Apr-04,2004,Unprovoked,USA,Hawaii,"Kahana Beach, Maui",Surfing,Willis McInnis,M,57,FATAL Severe wound to right thigh & calf,Y,07h08,Tiger shark,"L. Fujimoto, B. Perry & M. Tanji, Maui News ",2004.04.07-McInnis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.07-McInnis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.07-McInnis.pdf,2004.04.07,2004.04.07,4537,, +2004.04.05,05-Apr-04,2004,Unprovoked,SOUTH AFRICA,Western Cape Province,"Surfers' Corner, Muizenberg, False Bay",Surfing,J.P. Andrew,M,16,"Left leg lacerated, right leg severed above the knee ",N,14h00,5 m [16.5'] white shark,"L. Compagno & E. Ritter, GSAF",2004.04.05-JP-Andrew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.05-JP-Andrew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.05-JP-Andrew.pdf,2004.04.05,2004.04.05,4536,, +2004.04.04,04-Apr-04,2004,Invalid,USA,Hawaii,Velzyland,Surfing,Courtney Marcher,F,22,"Disappeared, surfboard washed ashore, marks on leash suggested shark involvement ",Y,,,"R. Antone, Honolulu Star Bulletin",2004.04.04-CourtneyMarcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.04-CourtneyMarcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.04-CourtneyMarcher.pdf,2004.04.04,2004.04.04,4535,, +2004.03.31.b,31-Mar-04,2004,Unprovoked,USA,Florida,"Ocean Reef Park, Singer Island, Palm Beach County",,Todd Rapp,M,26,Right foot bitten,N,,,"D. Davies, Palm Beach Post, 6/3/2004",2004.03.31.b-Rapp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.31.b-Rapp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.31.b-Rapp.pdf,2004.03.31.b,2004.03.31.b,4534,, +2004.03.31.a,31-Mar-04,2004,Unprovoked,USA,Florida,"Stuart Rocks, Martin County",Surfing,Chance Dean,M,20,15 puncture wounds on foot,N,09h00,1.2 m [4'] bull shark,"T. Jerome, GSAF; Palm Beach Post, 4/1/2004",2004.03.31.a-Dean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.31.a-Dean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.31.a-Dean.pdf,2004.03.31.a,2004.03.31.a,4533,, +2004.03.29,29-Mar-04,2004,Unprovoked,BRAZIL,Pernambuco,Piedade Beach,Body boarding,Alcindo de Souza Le�o J�nior,M,22,"Lower left leg bitten, surgically amputated",N,07h30,bull shark,"P.M. Lopes, GSAF; Diaro, 3/30/2004",2004.03.29-Souza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.29-Souza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.29-Souza.pdf,2004.03.29,2004.03.29,4532,, +2004.03.28,28-Mar-04,2004,Unprovoked,USA,Florida,"Pelican Beach Park, Satellite Beach, Brevard County",Surfing,male,M,,Heel bitten,N,15h00,bull shark,"J.D. Gallop, Florida Today",2004.03.28-PelicanBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.28-PelicanBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.28-PelicanBeach.pdf,2004.03.28,2004.03.28,4531,, +2004.03.27.b,27-Mar-04,2004,Unprovoked,REUNION,Saint-Beno�t,Spot de la gare,Surfing,R�my Lorion,M,20,Right thigh bitten,N,17h00 or 17h40,2.5 m shark,"Clicanoo, le journal de l'Ile de la R�union",2004.03.27.b-Lorion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.27.b-Lorion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.27.b-Lorion.pdf,2004.03.27.b,2004.03.27.b,4530,, +2004.03.27.a,27-Mar-04,2004,Unprovoked,USA,Florida,"Sanibel Island, Lee County",Swimming,Peter G. Hoffman,M,61,Minor lacerations & abrasions on forearm,N,08h30,,"T. Jerome, GSAF",2004.03.27.a-Hoffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.27.a-Hoffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.27.a-Hoffman.pdf,2004.03.27.a,2004.03.27.a,4529,, +2004.03.24,14-Mar-04,2004,Unprovoked,USA,Hawaii,Punaluu,Snorkeling,C. Mooney,F,,Lacerations to left foot,N,10h00,1.8 m [6'] shark,Hawaii Department of Land and Natural Resources,2004.03.24-Mooney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.24-Mooney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.24-Mooney.pdf,2004.03.24,2004.03.24,4528,, +2004.03.22,22-Mar-04,2004,Unprovoked,NEW ZEALAND,North Island,Te Arai Point,Spearfishing,Marc Fraser & Blair Fraser,M,,No injury,N,12h30,Bronze whaler shark,J. Edgar,2004.03.22-Fraser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.22-Fraser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.22-Fraser.pdf,2004.03.22,2004.03.22,4527,, +2004.03.16,16-Mar-04,2004,Unprovoked,USA,Hawaii,"Kalihiwai Beach, Kauai",Surfing,Bruce Orth,M,51,"No injury, board bitten",N,07h45,"Tiger shark, 2.4 m to 3 m [8' to 10'] ",The Hawaii Channel,2004.03.16-Orth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.16-Orth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.16-Orth.pdf,2004.03.16,2004.03.16,4526,, +2004.03.06,06-Mar-04,2004,Unprovoked,AUSTRALIA,Western Australia,5 nm off Cervantes,Spearfishing,Greg Pickering,M,47,Shin & calf bitten,N,,"Bronze whaler shark, 1.5 m [5'] ","T. Peake, GSAF; Sunday Times (Perth) 3/7/2004, p.19",2004.03.06-Pickering.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.06-Pickering.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.06-Pickering.pdf,2004.03.06,2004.03.06,4525,, +2004.02.29,29-Feb-04,2004,Unprovoked,BRAZIL,Pernambuco,"Piedade Beach, Recife",Swimming,Edimilson Henrique dos Santos,M,29,"FATAL, right thigh & hip bitten ",Y,15h00,,"P. M. Lopez, GSAF; Northern Territory News, 3/2/2004, p.11",2004.02.29-dosSantos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.29-dosSantos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.29-dosSantos.pdf,2004.02.29,2004.02.29,4524,, +2004.02.26,26-Feb-04,2004,Unprovoked,NEW ZEALAND,"South Island, near Karitane north of Dunedin",South Beach,Surfing,Chris Blair,M,15,Thigh lacerated,N,19h00,2 m [6.75'] sevengill shark,"R.D. Weeks, GSAF; NZ Herald",2004.02.26-Blair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.26-Blair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.26-Blair.pdf,2004.02.26,2004.02.26,4523,, +2004.02.21,21-Feb-04,2004,Unprovoked,AUSTRALIA,New South Wales,"Taree, Old Bar Beach",Swimming,male,M,,Three toes lacerated,N,,,Manning River Times,2004.02.21-Taree.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.21-Taree.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.21-Taree.pdf,2004.02.21,2004.02.21,4522,, +2004.02.16,16-Feb-04,2004,Invalid,AUSTRALIA,Queensland,"Fido's Reef, 300 m east of Cook Island. Cook Island is 2 miles from Tweed Heads, Gold Coast",Free diving & spearfishing,Mark Bryant,M,31,"Disappeared while diving, may have suffered shallow water blackout. Searchers observed large tiger sharks & whaler sharks in the area",N,11h00,Shark involvement not confirmed,"news.com.au; Northern Territory News, 2/18/2004, p.10; Sunday Territorian, 2/22/2004, p.9; ",2004.02.16-Bryant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.16-Bryant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.16-Bryant.pdf,2004.02.16,2004.02.16,4521,, +2004.02.14,14-Feb-04,2004,Unprovoked,EGYPT,,"Coral Bay, Sharm-el-Sheikh",Snorkeling, male,M,,FATAL,Y,,,divernet.com,2004.02.14-Sinai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.14-Sinai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.14-Sinai.pdf,2004.02.14,2004.02.14,4520,, +2004.02.11,11-Feb-04,2004,Unprovoked,AUSTRALIA,New South Wales,Caves Beach,Snorkeling,Luke Tresoglavic,M,22,Leg bitten,N,,"60 cm [23.6""] blind or brown shark","T. Peake, GSAF",2004.02.11-Tresoglavic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.11-Tresoglavic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.11-Tresoglavic.pdf,2004.02.11,2004.02.11,4519,, +2004.01.25,25-Jan-04,2004,Unprovoked,AUSTRALIA,Western Australia,Binningup,Scuba diving,Allan Oppert,M,46,Left leg bitten,N,11h05,4 m to 5 m [13' to 16.5'] white shark,"T. Peake, GSAF",2004.01.25-Oppert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.25-Oppert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.25-Oppert.pdf,2004.01.25,2004.01.25,4518,, +2004.01.23,23-Jan-04,2004,Unprovoked,URUGUAY,Rocha,Ensenada de la Coronilla,Surfing,Marcos Gonz�lez Selayaran ,M,21,Puncture wounds to dorsum of right foot,N,,Possibily a 1.5 to 2 m sandtiger shark,C.M. Prigioni el al,2004.01.23-Uruguay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.23-Uruguay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.23-Uruguay.pdf,2004.01.23,2004.01.23,4517,, +2004.01.22,22-Jan-04,2004,Invalid,NEW ZEALAND,Northlands,90 Mile Beach,Boogie boarding,male,M,,"No injury, swim fin damaged",N,,Shark involvement doubtful,The Northlands,2004.01.22.R-90MileBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.22.R-90MileBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.22.R-90MileBeach.pdf,2004.01.22,2004.01.22,4516,, +2004.01.21.b,21-Jan-04,2004,Unprovoked,VENEZUELA,Anzoategui,"Playa Colorada Beach, Mochima National Park, only 200 m west of Santa Cruz Beach",Swimming,Stefan Moeller,M,,Lower back & hand bitten,N,14h30,"Bull shark, 1.65 m [5'5""] was speared & killed","D. Ramierez, GSAF ",2004.01.21.b-Moeller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.21.b-Moeller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.21.b-Moeller.pdf,2004.01.21.b,2004.01.21.b,4515,, +2004.01.21.a,21-Jan-04,2004,Unprovoked,VENEZUELA,Anzoategui,"Santa Cruz Beach, Mochima National Park, 250 km from Caracas",Spearfishing,Alside Raphael Morales Gonzalez,M,40,Right leg bitten,N,11h00,"Bull shark, 132-kg [291-lb] ","D. Ramierez, GSAF ",2004.01.21.a-Gonzalez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.21.a-Gonzalez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.21.a-Gonzalez.pdf,2004.01.21.a,2004.01.21.a,4514,, +2004.01.15.R,Reported 15-Jan-2004 ,2004,Boat,SOUTH AFRICA,KwaZulu-Natal,Ballito,Surf skiing,Dave Hamilton-Brown & Ant Rowan,M,,"No injury to occupants, stern of ski bitten",N,,"Mako shark, 3 m to 4 m [10' to 13'] ",surfski.co.nz,2004.01.15.R-Ballito.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.15.R-Ballito.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.15.R-Ballito.pdf,2004.01.15.R,2004.01.15.R,4513,, +2004.01.12,12-Jan-04,2004,Unprovoked,AUSTRALIA,New South Wales,Bushrangers Pass at Bass Point,Diving,Bruce Flynn & his dive buddy,M,,"No injury, swim fin ripped off",N,Midday,"Raggedtooth shark, 3.5 m [11.5'] ","T. Peake, GSAF",2004.01.12-Flynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.12-Flynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.12-Flynn.pdf,2004.01.12,2004.01.12,4512,, +2004.01.07,07-Jan-04,2004,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"West Beach, Port Alfred",Surfing,Alan Horsfield,M,22,Foot lacerated,N,,Raggedtooth shark,"A. Cobb & E. Ritter, GSAF",2004.01.07-Horsfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.07-Horsfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.07-Horsfield.pdf,2004.01.07,2004.01.07,4511,, +2004.01.03.b,03-Jan-04,2004,Invalid,NEW ZEALAND,North Island,"Whiritoa, Eastern Cormandel",Kayaking (returning from spearfishing),a male from Waikato,M,,"No injury, no attack, shark took fish from back of kayak",N,Afternoon,,"R.D. Weeks, GSAF; Waikto Times, 1/4/2004 ",2004.01.03.b-WaikatoMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.03.b-WaikatoMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.03.b-WaikatoMale.pdf,2004.01.03.b,2004.01.03.b,4510,, +2004.01.03.a,03-Jan-04,2004,Sea Disaster,EGYPT,Sinai Peninsula,Off Sharm El-Sheikh,Air disaster. Flash Airlines Boeing 737 crashed into the Red Sea,135 passengers & 13 crew,,,"No survivors, sharks scavenged on remains",Y,03h00,,"Scotsman, 1/4/2004",2004.01.03.a-RedSeaAirDisaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.03.a-RedSeaAirDisaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.03.a-RedSeaAirDisaster.pdf,2004.01.03.a,2004.01.03.a,4509,, +2004.00.00,2004,2004,Unprovoked,AUSTRALIA,Western Australia,Redgate Beach,Surfing,Jack Carlsen,M,,No inury,N,Morning,,J. Carlsen,2004.00.00-Carlsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.00.00-Carlsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.00.00-Carlsen.pdf,2004.00.00,2004.00.00,4508,, +2003.12.31,31-Dec-03,2003,Boat,SOUTH AFRICA,KwaZulu-Natal,Salt Rock ,,skiboat,,,No injury to occupants,N,,Shortfin mako shark,Natal Sharks Board,2003.12.31-SaltRock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.31-SaltRock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.31-SaltRock.pdf,2003.12.31,2003.12.31,4507,, +2003.12.26,26-Dec-03,2003,Invalid,USA,Florida,"Miami, Dade County",Swimming,Richard Hansell,M,28,Knee lacerated,N,,Questionable Incident,"The Times (London), 12/27/2003, p.4",2003.12.26-Hansell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.26-Hansell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.26-Hansell.pdf,2003.12.26,2003.12.26,4506,, +2003.12.13.b,13-Dec-03,2003,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Swimming,male,M,13,Foot bitten,N,13h15,,"Florida Today (Melbourne), 12/14/2003",2003.12.13.b-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.13.b-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.13.b-boy.pdf,2003.12.13.b,2003.12.13.b,4505,, +2003.12.13.a,13-Dec-03,2003,Unprovoked,NEW ZEALAND,Cook Islands,Pukapuka Northern Group,Swimming / shipwreck,Teta Vaotiare,M,45,FATAL,Y,Night,,R. Weeks; Cook Islands Government News Release,2003.12.13.a-Vaotiare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.13.a-Vaotiare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.13.a-Vaotiare.pdf,2003.12.13.a,2003.12.13.a,4504,, +2003.12.08,08-Dec-03,2003,Unprovoked,AUSTRALIA,Victoria,Collendina Beach east of Ocean Grove,Surfing amid a shoal of sharks,Sam Myer,M,36,"No inury, shark caught leash attached to surfer's ankle & towed him a short distance",N,09h30,,"J. Eager, scubaradio.com",2003.12.08-Myer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.08-Myer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.08-Myer.pdf,2003.12.08,2003.12.08,4503,, +2003.11.30.b,30-Nov-03,2003,Unprovoked,AUSTRALIA,Western Australia,Perth? (Margaret River District),Swimming,Shane Scott,M,,"After biting Halverson, it bit Scott's thigh",N,11h30,"Wobbegong shark, 1.2 m [4'] ","J. Eager, scubaradio.com",2003.11.30.b-Scott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.30.b-Scott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.30.b-Scott.pdf,2003.11.30.b,2003.11.30.b,4502,, +2003.11.30.a,30-Nov-03,2003,Unprovoked,AUSTRALIA,Western Australia,Perth? (Margaret River District),Swimming,Josh Halverson ,M,,Hand & foot bitten,N,11h30,"Wobbegong shark, 1.2 m [4'] ","J. Eager, scubaradio.com",2003.11.30.a-Halverson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.30.a-Halverson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.30.a-Halverson.pdf,2003.11.30.a,2003.11.30.a,4501,, +2003.11.27,27-Nov-03,2003,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Sodwana,Spearfishing,Seldon Jee,M,21,"Presumed FATAL, severed hand recovered",Y,>08h00,"Tiger shark, 4 m [13'] ?","E. Ritter, GSAF",2003.11.27-Jee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.27-Jee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.27-Jee.pdf,2003.11.27,2003.11.27,4500,, +2003.11.22,22-Nov-03,2003,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Surfing,Taylor Trumbauer,F,35,Severe abrasion to left lateral calf,N,15h30,4' shark,T. Trumbauer,2003.11.22-Trumbauer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.22-Trumbauer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.22-Trumbauer.pdf,2003.11.22,2003.11.22,4499,, +2003.11.12.b,12-Nov-03,2003,Unprovoked,INDIA,Tamilnadu,"Mahabalipuram beach, 37 km south of Chennai",Swimming or surfing,Mark Moquin,M,35,Left index finger lacerated,N,,Tiger shark?," P.C.V. Kumar; A. Patil, GSAF ",2003.11.12-Moquin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.12-Moquin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.12-Moquin.pdf,2003.11.12.b,2003.11.12.b,4498,, +2003.11.12.a,12-Nov-03,2003,Unprovoked,USA,Florida,"South Jetty, New Smyrna Beach, Volusia County",Surfing,Josh Crawford,M,24,Lacerations to hand,N,,,"S. Petersohn, GSAF",2003.11.12.a-NV-Crawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.12.a-NV-Crawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.12.a-NV-Crawford.pdf,2003.11.12.a,2003.11.12.a,4497,, +2003.11.06.b,06-Nov-03,2003,Unprovoked,EGYPT,Sinai Peninsula,"Sha�ab Mahmud, Ras Mohamed Park",Snorkeling,Igor Fedorov ,M,,Hand/elbow injured,N,,2.5 oceanic whitetip shark,N. Pankratov,2003.11.06.b-Fedorov.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.06.b-Fedorov.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.06.b-Fedorov.pdf,2003.11.06.b,2003.11.06.b,4496,, +2003.11.06.a,06-Nov-03,2003,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Karridene,Surf skiing,2 people on ski,,,"No injury to occupants, hull of ski bitten",N,,White shark,Natal Sharks Board,2003.11.06.a-Karridene.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.06.a-Karridene.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.06.a-Karridene.pdf,2003.11.06.a,2003.11.06.a,4495,, +2003.11.01,01-Nov-03,2003,Unprovoked,AUSTRALIA,New South Wales,"Seal Rocks, north of Newcastle",Standing,male,M,,Minor lacerations to leg & foot,N,Dusk,,"The Sun; 11/2/2003, p.9",2003.11.01-SealRocks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.01-SealRocks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.01-SealRocks.pdf,2003.11.01,2003.11.01,4494,, +2003.11.00,Nov-03,2003,Provoked,PANAMA,Pearl Islands,,Spearfishing,Richard Hatch,M,,Left forearm bitten PROVOKED INCIDENT,N,,"Nurse shark, 60 cm to 90 cm [2' to 3'] ","J. Eager, scubaradio.com",2003.11.00-RichardHatch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.00-RichardHatch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.00-RichardHatch.pdf,2003.11.00,2003.11.00,4493,, +2003.10.31.c,31-Oct-03,2003,Unprovoked,USA,Florida,"Ponte Vedra Beach, St. Johns County",Surfing,Adam Gray,M,18,Left foot (sole) bitten,N,15h00,1.2 m to 1.5 m [4' to 5'] shark,"D. Dixon, Florida Times-Union, 11/8/2003 ",2003.10.31.c-Gray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.31.c-Gray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.31.c-Gray.pdf,2003.10.31.c,2003.10.31.c,4492,, +2003.10.31.b,31-Oct-03,2003,Unprovoked,AUSTRALIA,New South Wales,"Lighthouse Beach, Seal Rocks",Surfing,Nick Anthony,M,22,Left ankle & foot lacerated,N,17h30,"1.5 m [5'] shark, either a bronze whaler or a grey nurse shark",ABC News Australia,2003.10.31.b-Anthony.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.31.b-Anthony.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.31.b-Anthony.pdf,2003.10.31.b,2003.10.31.b,4491,, +2003.10.31.a,31-Oct-03,2003,Unprovoked,USA,Hawaii,"Tunnels surf break off Makua Beach, Kaua'i",Surfing,Bethany Hamilton,F,13,Left arm severed below shoulder,N,07h30,"Tiger shark, 14' "," E. Ritter, GSAF ",2003.10.31.a-BethanyHamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.31.a-BethanyHamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.31.a-BethanyHamilton.pdf,2003.10.31.a,2003.10.31.a,4490,, +2003.10.27,27-Oct-03,2003,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jeffrey Hauser,M,46,Laceration on right ankle & heel,N,12h20,,"S. Petersohn, GSAF",2003.10.27-Hauser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.27-Hauser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.27-Hauser.pdf,2003.10.27,2003.10.27,4489,, +2003.10.24,24-Oct-03,2003,Invalid,USA,Hawaii,Honolua Bay,Snorkeling,Don Keener,M,56,Left forearm lacerated,N,12h20,Shark involvement not confirmed,"Timothy Hurley, Advertiser Maui County Bureau",2003.10.24-DonKeener.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.24-DonKeener.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.24-DonKeener.pdf,2003.10.24,2003.10.24,4488,, +2003.10.14,14-Oct-03,2003,Unprovoked,USA,Florida,Near Patrick Air Force Base Brevard County,Surfing,male,M,19,Foot bitten,N,--,1.2 m [4'] shark,WFTV.com,2003.10.14-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.14-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.14-male.pdf,2003.10.14,2003.10.14,4487,, +2003.10.06,06-Oct-03,2003,Invalid,USA,Florida,Palm Beach?,Swimming to shore from boat or kayak,male,M,,"Fatal, drowning or scavenging. Two hours later his body, with bite marks, washed ashore.",Y,--,,"E. Pace, FSAF",2003.10.06-NV-PalmBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.06-NV-PalmBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.06-NV-PalmBeach.pdf,2003.10.06,2003.10.06,4486,, +2003.10.05.e,05-Oct-03,2003,Unprovoked,USA,Florida,"Ocean Reef Park, Singer Island, Palm Beach County",Surfing,female,F,,Minor puncture wounds in hand,N,15h00,,"J. Eager, scubaradio.com",2003.10.05.e-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.e-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.e-female.pdf,2003.10.05.e,2003.10.05.e,4485,, +2003.10.05.d,05-Oct-03,2003,Unprovoked,USA,Florida,"Stuart Park Beach, Martin County",Surfing,male,M,18,5 to 6 lacerations on right foot & ankle,N,14h30,,"Vero Beach Press Journal (FL) 10/6/2003; Stuart News, 10/6/2003",2003.10.05.d-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.d-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.d-surfer.pdf,2003.10.05.d,2003.10.05.d,4484,, +2003.10.05.c,05-Oct-03,2003,Provoked,USA,Florida,"South Jetty, New Smyrna Beach, Volusia County",Surfing,Rick Eckstein,M,30,Left ankle bitten when he stepped on the shark PROVOKED INCIDENT,N,14h00,,"S. Petersohn, GSAF",2003.10.05.c-Eckstein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.c-Eckstein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.c-Eckstein.pdf,2003.10.05.c,2003.10.05.c,4483,, +2003.10.05.b,05-Oct-03,2003,Unprovoked,USA,Florida,"Crawford Road beach approach at New Smyrna Beach, Volusia County",Sitting on surfboard,John Demartino,M,50,Left foot bitten,N,12h02,,"S. Petersohn, GSAF; J. Eager, scubaradio.com",2003.10.05.b-DeMartino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.b-DeMartino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.b-DeMartino.pdf,2003.10.05.b,2003.10.05.b,4482,, +2003.10.05.a,05-Oct-03,2003,Unprovoked,USA,Hawaii,"Cove Beach / Kalama Beach, Kihei, Maui",Wading near a fishing net,Clara Alo,F,41,"Left thigh abraded, right knee and right index finger injured",N,12h55,"1.2 m [4'] ""grey-colored shark""","G. Kubota, Star Bulletin",2003.10.05.a-Clara-Alo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.a-Clara-Alo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.a-Clara-Alo.pdf,2003.10.05.a,2003.10.05.a,4481,, +2003.09.29,29-Sep-03,2003,Unprovoked,FIJI,Taveuni,Welagi coastal reef off Drekeniwai,Wading to shore from his boat,Epeli Mate,M,40,FATAL abdomen bitten,Y,Night,,"R. Weeks, GSAF; Fiji Times, 10/2/2003; Fiji TV",2003.09.29-Mate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.29-Mate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.29-Mate.pdf,2003.09.29,2003.09.29,4480,, +2003.09.28,28-Sep-03,2003,Unprovoked,USA,Florida,"North Hutchinson Island, St. Lucie Couny",Surfing,Stephen Johnson,M,16,Arm lacerated,N,07h45,,"7News Online; Vero Beach Press Journal, Fort Pierce Tribune, Stuart News, 10/1/2003",2003.09.28-S.Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.28-S.Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.28-S.Johnson.pdf,2003.09.28,2003.09.28,4479,, +2003.09.21,21-Sep-03,2003,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Jimmy Arnold,M,21,Left foot bitten,N,11h45,,"S. Petersohn, GSAF; Daytona Beach News Journal, 9/22/2003, p.1C",2003.09.21-Jimmy-Arnold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.21-Jimmy-Arnold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.21-Jimmy-Arnold.pdf,2003.09.21,2003.09.21,4478,, +2003.09.19,19-Sep-03,2003,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,David Cales,M,19,Left heel lacerated,N,16h30,,"S. Petersohn, GSAF",2003.09.19-DavidCales.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.19-DavidCales.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.19-DavidCales.pdf,2003.09.19,2003.09.19,4477,, +2003.09.17,17-Sep-03,2003,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,A.B.,M,17,3 puncture wounds on left foot,N,14h00,,"S. Petersohn, GSAF",2003.09.17-AB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.17-AB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.17-AB.pdf,2003.09.17,2003.09.17,4476,, +2003.09.14.c,14-Sep-03,2003,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jason Williams,M,30,Left foot: lacerations on heel and sole,N,16h14,3' shark,"S. Petersohn, GSAF",2003.09.14.c-JasonWilliams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.14.c-JasonWilliams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.14.c-JasonWilliams.pdf,2003.09.14.c,2003.09.14.c,4475,, +2003.09.14.b,14-Sep-03,2003,Boat,SOUTH AFRICA,Western Cape Province,Melkbosstrand,Fishing ,"inflatable boat, occupants: Rudolf Bokelmann and Sakkie Vermeulen",,36 & 26,"No injury to occupants, shark bit boat",N,09h40,2 m cow shark,"E. Ritter, GSAF ",2003.09.14.b-CowShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.14.b-CowShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.14.b-CowShark.pdf,2003.09.14.b,2003.09.14.b,4474,, +2003.09.14.a,14-Sep-03,2003,Invalid,USA,Florida,"Bathtub Reef Beach, Martin County",Swimming,female,F,8 or 10,Puncture wounds on inner thigh,N,13h30,Shark involvement doubtful,"Fort Pierce Tribune, 9/15/2003",2003.09.14.a-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.14.a-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.14.a-girl.pdf,2003.09.14.a,2003.09.14.a,4473,, +2003.09.13.b,13-Sep-03,2003,Unprovoked,USA,Florida,"Daytona Beach, Volusia County ",Body boarding,Aaron Edelson,M,18,Left calf avulsion,N,17h11,6' shark,"S. Petersohn, GSAF; News Journal Online; Orlando Sentinel, 9/15/2003, p.B2; R. Weiss, Daytona Beach News Journal, 9/15/2001, p.3C",2003.09.13.b-Edelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.13.b-Edelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.13.b-Edelson.pdf,2003.09.13.b,2003.09.13.b,4472,, +2003.09.13.a,13-Sep-03,2003,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County","Standing, stepped on shark",Joe Davis,M,15,Ankle lacerated,N,Afternoon,7' shark,"P. Caston, Post & Courier",2003.09.13.a-JoeDavis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.13.a-JoeDavis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.13.a-JoeDavis.pdf,2003.09.13.a,2003.09.13.a,4471,, +2003.09.12,12-Sep-03,2003,Unprovoked,SOUTH AFRICA,Western Cape Province,Near the wreck of the Kakapo off Noordhoek Beach,Body boarding,David Bornman,M,19,"FATAL, left thigh, buttocks, back of spine, abdomen & chest bitten ",Y,14h30,White shark,"E. Ritter, GSAF; http://www.wavescape.co.za/top_bar/locals_only9.htm ",2003.09.12-Bornman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.12-Bornman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.12-Bornman.pdf,2003.09.12,2003.09.12,4470,, +2003.09.00,Sep-03,2003,Unprovoked,USA,Florida,"Boca Grande, Lee County",Wade-fishing,male,M,,2 lacerations on each side of Achilles tendon,N,,,"B. Stout, News-Press, 9/24/2003",2003.09.00-wade-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.00-wade-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.00-wade-fisherman.pdf,2003.09.00,2003.09.00,4469,, +2003.08.29,29-Aug-03,2003,Provoked,USA,Texas,1.5 miles off Surfside ,Fishing,Saul Gonzalez,M,,PROVOKED INCIDENT Hooked shark pulled onboard bit his arm ,N,12h20,1.2 m [4'] bull shark,http://www.dfw.com/mld/startelegram/news/state/6656592.htm?1c,2003.08.29-Gonzalez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.29-Gonzalez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.29-Gonzalez.pdf,2003.08.29,2003.08.29,4468,, +2003.08.19,19-Aug-03,2003,Unprovoked,USA,California,"Avila Beach, San Luis Obispo County","Swimming, wearing black wetsuit & swim fins",Deborah Franzman,F,50,"FATAL Hip & upper thigh bitten, femoral artery severed ",Y,08h15,4.5 m to 5.5 m [15' to 18'] white shark,"R. Collier, GSAF ",2003.08.19-Franzman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.19-Franzman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.19-Franzman.pdf,2003.08.19,2003.08.19,4467,, +2003.08.12,12-Aug-03,2003,Invalid,USA,California,"Venice Beach, Los Angeles County",Swimming,male,M,31,Left ankle lacerated,N,00h30,Shark involvement not confirmed,ABC News,2003.08.12-VeniceBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.12-VeniceBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.12-VeniceBeach.pdf,2003.08.12,2003.08.12,4466,, +2003.08.08,08-Aug-03,2003,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Jeffrey�s Bay,Sitting on surfboard,Joseph Krone,M,16,"No injury, wetsuit torn & board bitten",N,08h00,3.5 m [11.5'] white shark,"E. Ritter, GSAF http://sport.iafrica.com/news/261271.htm ",2003.08.08-Krone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.08-Krone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.08-Krone.pdf,2003.08.08,2003.08.08,4465,, +2003.07.26.R,Reported 26-Jul-2003,2003,Unprovoked,AUSTRALIA,Northern Territory,Nhulunbuy,Surf skiing,Martin Gunda,M,37,"No injury, flung into water when shark bit rudder of ski",N,,,"Northern Territory News, 7/26/2003, p.1",2003.07.26.R-Gunda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.26.R-Gunda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.26.R-Gunda.pdf,2003.07.26.R,2003.07.26.R,4464,, +2003.07.20,20-Jul-03,2003,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,John McGovern,M,18,Laceration to little finger of right hand,N,15h45,,"S. Petersohn, GSAF",2003.07.20-McGovern.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.20-McGovern.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.20-McGovern.pdf,2003.07.20,2003.07.20,4463,, +2003.07.15,15-Jul-03,2003,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Wading,C.K.,F,15,Heel & sole of left foot,N,14h37,,"S. Petersohn, GSAF",2003.07.15-CK.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.15-CK.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.15-CK.pdf,2003.07.15,2003.07.15,4462,, +2003.07.09,10-Jul-03,2003,Unprovoked,BAHAMAS,Abaco Islands,Bakers Bay,Spearfishing,Richard Horton,M,58,Right thigh bitten,N,14h30,Unidentified species,"M. Levine, GSAF; Associated Press, 7/12/03",2003.07.09-Horton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.09-Horton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.09-Horton.pdf,2003.07.09,2003.07.09,4461,, +2003.07.05.b,05-Jul-03,2003,Provoked,USA,Florida,"Near New Smyrna Jetty, Volusia County","Walking, carrying surfboard & stepped on shark",P.L.,M,10,3 puncture wounds on right lateral ankle PROVOKED INCIDENT,N,10h07,2' shark,"S. Petersohn, GSAF",2003.07.05.b-PL.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.05.b-PL.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.05.b-PL.pdf,2003.07.05.b,2003.07.05.b,4460,, +2003.07.05.a,05-Jul-03,2003,Unprovoked,USA,Florida,"Canova Beach, Brevard County",Surfing,James Ingram,M,21,Left foot bitten,N,,1.5 m to 1.8 m [5' to 6'] shark,Vero Beach Press Journal (FL) 7/9/2003,2003.07.05.a-Ingram.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.05.a-Ingram.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.05.a-Ingram.pdf,2003.07.05.a,2003.07.05.a,4459,, +2003.07.04,04-Jul-03,2003,Unprovoked,BAHAMAS,Abaco Islands,10 miles west of Walker�s Cay,Spearfishing,Benjamin Brown,M,39,Left calf bitten,N,14h45,2.1 m [7'] bull shark,"Associated Press, 7/12/03; Palm Beach Post, 7/7/2003 ",2003.07.04-BenBrown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.04-BenBrown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.04-BenBrown.pdf,2003.07.04,2003.07.04,4458,, +2003.07.00.c,Jul-03,2003,Unprovoked,USA,Florida,"Fort Lauderdale, Broward County",Spearfishing,Mark Marks,M,,Laceration to toe,N,,8' great hammerhead shark,M. Marks,2003.07.00.c-MarkMarks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.00.c-MarkMarks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.00.c-MarkMarks.pdf,2003.07.00.c,2003.07.00.c,4457,, +2003.07.00.b,Late Jul-2003,2003,Unprovoked,FRENCH POLYNESIA,Society Islands,Moorea,Spearfishing,male,M,,Leg bitten,N,,,Noonsite.com,2003.07.00.b-Moorea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.00.b-Moorea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.00.b-Moorea.pdf,2003.07.00.b,2003.07.00.b,4456,, +2003.07.00.a,Jul-03,2003,Unprovoked,NEW ZEALAND,Cook Islands,Beveridge Reef,Snorkeling,Allen --,M,,Chest & buttocks bitten,N,,Grey reef shark,R. & J. Zorro; Noonsite.com,2003.07.00.a-BeveridgeReef.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.00.a-BeveridgeReef.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.00.a-BeveridgeReef.pdf,2003.07.00.a,2003.07.00.a,4455,, +2003.06.30,30-Jun-03,2003,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,E.W.,M,17,Right foot & toes lacerated,N,13h53,Unidentified species,"S. Petersohn, GSAF",2003.06.30-EW..pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.30-EW..pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.30-EW..pdf,2003.06.30,2003.06.30,4454,, +2003.06.26,26-Jun-03,2003,Unprovoked,USA,Florida,St Augustine Beach. St. Johns County,Surfing,Shelby Tostevin,M,15,Ankle lacerated,N,Morning,106 cm [3.5'] shark,Local6.com,2003.06.26-Tostevin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.26-Tostevin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.26-Tostevin.pdf,2003.06.26,2003.06.26,4453,, +2003.06.24.c,24-Jun-03,2003,Unprovoked,BRAZIL,Pernambuco,"Piedade, Recife",,Moses Nunes de Albuquerque Junior,M,,FATAL,Y,,,"JCOnline, 6/23/2012",2003.06.24.c-MosesAlbuquerque.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.24.c-MosesAlbuquerque.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.24.c-MosesAlbuquerque.pdf,2003.06.24.c,2003.06.24.c,4452,, +2003.06.24.b,24-Jun-03,2003,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Standing,Hannah Hathaway,F,12,2 lacerations to the thigh,N,Afternoon,�small brown shark�,"Florida Today, 6/26/ 2003; WKMG Local 6",2003.06.24.b-Hathaway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.24.b-Hathaway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.24.b-Hathaway.pdf,2003.06.24.b,2003.06.24.b,4451,, +2003.06.24.a,24-Jun-03,2003,Unprovoked,USA,Hawaii,"Makua Beach, Oahu",Swimming with pod of dolphins,John Marrack,M,60,Right foot bitten,N,08h00,3.7 m to 4.3 m [12' to 14'] shark,Honolulu Advertiser,2003.06.24.a-Marrack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.24.a-Marrack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.24.a-Marrack.pdf,2003.06.24.a,2003.06.24.a,4450,, +2003.06.22,22-Jun-03,2003,Unprovoked,USA,Johnston Atoll,,Swimming,George Fahey,M,51,Left leg bitten,N,Afternoon,Unidentified species,"H. Edwards, GSAF; The Hawaai Channel",2003.06.22-Fahey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.22-Fahey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.22-Fahey.pdf,2003.06.22,2003.06.22,4449,, +2003.06.19,19-Jun-03,2003,Unprovoked,USA,North Carolina,"Masonboro Island, New Hanover County",Surfing ,Chris White,M,33,Hand bitten ,N,Late afternoon,"""sand shark""","C. Creswell, GSAF",2003.06.19-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.19-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.19-White.pdf,2003.06.19,2003.06.19,4448,, +2003.06.08,08-Jun-03,2003,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,J.D.,,15,6 puncture wounds to left ankle,N,11h55,,"S. Petersohn, GSAF",2003.06.08-JD.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.08-JD.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.08-JD.pdf,2003.06.08,2003.06.08,4447,, +2003.06.00,Jun-03,2003,Invalid,USA,South Carolina,"Pawleys Island, Georgetown County",Swimming,female,F,22,Foot lacerated,N,,Shark involvement not confirmed,J. Eager,2003.06.00-PawleysIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.00-PawleysIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.00-PawleysIsland.pdf,2003.06.00,2003.06.00,4446,, +2003.05.25,25-May-03,2003,Unprovoked,USA,Florida,"Coral Cove Park, Jupiter Inlet, Palm Beach County",Surfing,"Kris ""Cutty"" Kildosher",M,18,Left foot lacerated,N,10h00,,Local 6 News,2003.05.25-Kildosher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.25-Kildosher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.25-Kildosher.pdf,2003.05.25,2003.05.25,4445,, +2003.05.14,14-May-03,2003,Unprovoked,USA,Florida,"Ponce de Leon Inlet, Volusia County ",Wading,Joshua Brust,M,22,Left foot bitten,N,13h23,3' to 5' shark,"S. Petersohn, GSAF; Orlando Sentinel, 5/16;2003, p.C3",2003.05.14-Brust.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.14-Brust.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.14-Brust.pdf,2003.05.14,2003.05.14,4444,, +2003.05.10,10-May-03,2003,Unprovoked,USA,Hawaii,Between Magic Sands Beach and Kahaluu Beach on the Kona coast,Swimming,Koa Paulo,M,20,Right calf & heel bitten,N,11h45,1.8 m [6'] reef shark - or a 2.1 m to 2.4 m [7' to 8'] grey-colored shark,WestHawaiiToday.com,2003.05.10-Paulo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.10-Paulo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.10-Paulo.pdf,2003.05.10,2003.05.10,4443,, +2003.05.07,07-May-03,2003,Provoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Gerald Gaskins,M,34,Multiple bites to foot after jumping off surfboard onto shark PROVOKED INCIDENT,N,11h40,4' to 5' shark,"S. Petersohn, GSAF; M. I. Johnson, Daytona Beach News Journal. 5/8/2003, p.1C; Tampa Tribune, 5/8/2003",2003.05.07-Gaskins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.07-Gaskins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.07-Gaskins.pdf,2003.05.07,2003.05.07,4442,, +2003.05.03,03-May-03,2003,Unprovoked,USA,Florida,"Daytona Beach Shores, Volusia County",Walking,A.J.,F,9,Laceration to right lower leg,N,12h20,,"S. Petersohn, GSAF",2003.05.03-AJ.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.03-AJ.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.03-AJ.pdf,2003.05.03,2003.05.03,4441,, +2003.05.00,May-03,2003,Unprovoked,PHILIPPINES,Baatan,Limay,,a resident of Barangay Luz,,,Arm severed,N,,White shark,"D. Cervantes, Star",2003.05.00-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.00-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.00-Philippines.pdf,2003.05.00,2003.05.00,4440,, +2003.04.26,26-Apr-03,2003,Provoked,BRAZIL,Rio de Janeiro,"Copacabana Beach, Rio de Janiero",Killing sharks,male,M,,Shallow lacerations to left thigh PROVOKED INCIDENT,N,,,"P.M. Lopes, GSAF",2003.04.26-Rio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.26-Rio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.26-Rio.pdf,2003.04.26,2003.04.26,4439,, +2003.04.25,25-Apr-03,2003,Unprovoked,BRAZIL,Rio de Janeiro,"Copacabana Beach, Rio de Janiero",Swimming ,Felipe Tavares Marinho,M,16,Bitten on finger,N,18h30,,Web ProWire,2003.04.25-Marinho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.25-Marinho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.25-Marinho.pdf,2003.04.25,2003.04.25,4438,, +2003.04.23.b,23-Apr-03,2003,Unprovoked,BRAZIL,Pernambuco,"Pau Amarelo Beach, Paulista District (17 km from Recife)",Surfing,Tiago Augusto da Silva Machado,M,17,"Hand & foot lacerated, lower left leg severely bitten, necessitating surgical amputation",N,17h00,Bull shark,"P. M. Lopes, GSAF; N. Souza da Silva; JC, 4/24/2003",2003.04.23.b-Machado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.23.b-Machado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.23.b-Machado.pdf,2003.04.23.b,2003.04.23.b,4437,, +2003.04.23.a,23-Apr-03,2003,Unprovoked,BRAZIL,Rio de Janeiro,"Copacabana Beach, Rio de Janiero",Swimming,male,M,7,Right hand lacerated,N,,,Local 6 News,2003.04.23.a-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.23.a-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.23.a-boy.pdf,2003.04.23.a,2003.04.23.a,4436,, +2003.04.21.b,21-Apr-03,2003,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County ",Surfing,Ralph Sammis,M,36,Right leg bitten,N,14h30,Unidentified species,"Local 6 News; St. Petersburg Times, 4/22/2003; The Eagle, 4/24/2003 ",2003.04.21.b-Sammis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.21.b-Sammis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.21.b-Sammis.pdf,2003.04.21.b,2003.04.21.b,4435,, +2003.04.21.a,21-Apr-03,2003,Unprovoked,USA,Florida,"Shepard Park, Cocoa Beach, Brevard County ",Surfing,male,M,17,Survived,N,13h30,Unidentified species,"Orlando Sentinel, 4/22/2003, B3",2003.04.21.a-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.21.a-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.21.a-surfer.pdf,2003.04.21.a,2003.04.21.a,4434,, +2003.04.20.c,20-Apr-03,2003,Unprovoked,USA,Florida,"Playalinda Beach, Brevard County",Surfing,Tommy Ryan,M,30,Left foot bitten,N,Afternoon,Unidentified species,"Orlando Sentinel, 4/22/2003, B3 + ",2003.04.20.c-Ryan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.20.c-Ryan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.20.c-Ryan.pdf,2003.04.20.c,2003.04.20.c,4433,, +2003.04.20.b,20-Apr-03,2003,Unprovoked,USA,Florida,"Sunglow Pier, Daytona Beach Shores, Volusia County",Surfing,Jeff Albright,M,23,Small lacerations to foot,N,09h00,0.9 m to 1.2 m [3' to 4'] shark,"S. Petersohn, GSAF; Local6.com; Daytona Beach News-Journal . 4/21/2003, p.1C",2003.04.20.b-Albright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.20.b-Albright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.20.b-Albright.pdf,2003.04.20.b,2003.04.20.b,4432,, +2003.04.20.a,20-Apr-03,2003,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Stephen Flowers,M,18,Left ankle bitten or right foot,N,14h20,Unidentified species,"S. Petersohn, GSAF; Local 6 News; S. Frederick, Daytona Beach News Journal, 4/28/2003, p.1C; Orlando Sentinel, 4/22/2003, p.B3",2003.04.20.a-StephenFlowers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.20.a-StephenFlowers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.20.a-StephenFlowers.pdf,2003.04.20.a,2003.04.20.a,4431,, +2003.04.19,19-Apr-03,2003,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County ",Jumping,S.D.,M,11,Left foot bitten,N,13h20,A �small� shark,"S. Petersohn, GSAF; S. Frederick, Daytona Beach News Journal, 4/21/2003, p.1C; J. Waymer, Florida Today (Melbourne), 4/19/2003",2003.04.19-SD.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.19-SD.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.19-SD.pdf,2003.04.19,2003.04.19,4430,, +2003.04.18,18-Apr-03,2003,Unprovoked,USA,Florida,"North Beach, Patrick AFB, Brevard County",Surfing,male,M,12,2 lacerations on left thigh,N,08h50,Unidentified species,"Local 6 News; Tallahassee Democrat (FL) 4/19/2003; J. Waymer, Florida Today (Melbourne), 4/19/2003 ",2003.04.18-PatrickAFB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.18-PatrickAFB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.18-PatrickAFB.pdf,2003.04.18,2003.04.18,4429,, +2003.04.15,15-Apr-03,2003,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Swimming (using a float),"male, a tourist from Venezuela",M,20,Left calf lacerated,N,13h00,"15 cm to 20 cm [6"" to 8""] bite diameter just below left knee","Florida Today (Melbourne), 4/16/2003; Orlando Sentinel, 4/16/2003, p.B3",2003.04.15-Venezuela.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.15-Venezuela.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.15-Venezuela.pdf,2003.04.15,2003.04.15,4428,, +2003.04.11,11-Apr-03,2003,Unprovoked,VENEZUELA,Nueva Esparta,"El Yaqu, Isla de Margarita",Surfing,Yann Perras,M,28,"Right foot bitten, left leg severed",N,--,"Mako shark, 3 m [10']","E. Ritter & M. Levine, GSAF",2003.04.11-YannPerras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.11-YannPerras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.11-YannPerras.pdf,2003.04.11,2003.04.11,4427,, +2003.04.09,09-Apr-03,2003,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,Damien Share,M,,Arm lacerated,N,Dusk,,D. Share,2003.04.09-Share.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.09-Share.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.09-Share.pdf,2003.04.09,2003.04.09,4426,, +2003.04.04,04-Apr-03,2003,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,"Frederick Jordan, Jr.",M,50,Left hand and wrist bitten,N,08h00,4' to 5' shark,"S. Petersohn, GSAF",2003.04.04-Jordan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.04-Jordan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.04-Jordan.pdf,2003.04.04,2003.04.04,4425,, +2003.03.10,10-Mar-03,2003,Provoked,USA,Florida,"Petting Tank, Florida Aquarium, Tampa, Hillsborough County",Petting captive sharks,Julie Menke,F,,Hand nipped PROVOKED INCIDENT,N,,60 cm [2'] captive shark,"Florida Aquarium; Miami Herald, 3/13/2002 ",2003.03.10-Menke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.03.10-Menke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.03.10-Menke.pdf,2003.03.10,2003.03.10,4424,, +2003.02.27,27-Feb-03,2003,Unprovoked,NEW ZEALAND,Southland,East side of Bench Island in the Foveaux Strait,Scuba diving,Alistair Kerr,M,44,Arm lacerated (shark made 3 strikes),N,11h45,2.5 m [8.25'] white shark,"R.D. Weeks & Mark Marks, GSAF; New Zealand Herald",2003.02.27-Kerr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.27-Kerr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.27-Kerr.pdf,2003.02.27,2003.02.27,4423,, +2003.02.15.b,15-Feb-03,2003,Unprovoked,AUSTRALIA,South Australia,"Goolwa Beach, Fleurieu Peninsula",Wading,Damien Smith,M,37,Ankle lacerated,N,Dusk,"""a small shark""","T. Peake, GSAF, surfsouthoz.com, 3/38/2003",2003.02.15.b-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.15.b-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.15.b-Smith.pdf,2003.02.15.b,2003.02.15.b,4422,, +2003.02.15.a,15-Feb-03,2003,Unprovoked,USA,Florida,"Jupiter, Palm Beach County",Swimming,James Bailey,M,54,Left hand bitten,N,12h10,Species unidentified,"J. Eager, scubaradio.com",2003.02.15.a-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.15.a-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.15.a-Bailey.pdf,2003.02.15.a,2003.02.15.a,4421,, +2003.02.11,11-Feb-03,2003,Unprovoked,AUSTRALIA,New South Wales,"Coogee Bay, near Sydney",Swimming,Tom Plumridge,M,24,"Puncture wounds on heel, legs and buttocks",N,--,Thought to involve a 2 m [6.75'] grey nurse shark,"T. Peake, GSAF",2003.02.11-Plumridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.11-Plumridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.11-Plumridge.pdf,2003.02.11,2003.02.11,4420,, +2003.02.08,08-Feb-03,2003,Unprovoked,AUSTRALIA,Queensland,Burleigh Lake on the Gold Coast,Swimming,Bob Purcell,M,84,FATAL,Y,Morning,Thought to involve a >2 m [6.75'] bull shark,"T. Peake, GSAF; Sunday Territorian, 2/9/2003, p.9",2003.02.08-Purcell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.08-Purcell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.08-Purcell.pdf,2003.02.08,2003.02.08,4419,, +2003.01.17,17-Jan-03,2003,Invalid,SOUTH AFRICA,Western Cape Province,"Near the lagoon at Table View, Cape Peninsula",Unknown,male,M,14,Probable scavenging. The boy disappeared while at the beach on January 1st. His decomposed shark-bitten body washed ashore January 17th,Y,--,,IOL.co.za,2003.01.17-scavenging.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.01.17-scavenging.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.01.17-scavenging.pdf,2003.01.17,2003.01.17,4418,, +2003.01.03,03-Jan-03,2003,Unprovoked,COSTA RICA,North Pacific coast,Playa Tamarindo ,Surfing,Ross Menking,M,,Lower right leg lacerated,N,,"Bull shark, 7'",A.M. Costa Rica,2003.01.03-Menking.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.01.03-Menking.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.01.03-Menking.pdf,2003.01.03,2003.01.03,4417,, +2003.01.02,02-Jan-03,2003,Unprovoked,AUSTRALIA,Western Australia,Left break at the �Hot Spot� at Sheringa Beach,Surfing,Gabrielle Eason,F,N/A,"No injury, but her surfboard was bitten",N,13h00,"Bronze whaler shark, 2.5 m [8.25'] ","T. Peake, GSAF",2003.01.02-Eason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.01.02-Eason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.01.02-Eason.pdf,2003.01.02,2003.01.02,4416,, +2002.12.29,29-Dec-02,2002,Unprovoked,AUSTRALIA,Queensland,Great Barrier Reef (near Upolu Bay),Snorkeling,"Lienne Schellekens, ",F,18,Left arm lacerated,N,,Reported to involve a hammerhead shark,"T. Peake, GSAF; Mercury (Hobart), 12/30/2002, p.10",2002.12.29-Schellekens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.29-Schellekens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.29-Schellekens.pdf,2002.12.29,2002.12.29,4415,, +2002.12.24,24-Dec-02,2002,Unprovoked,SOUTH AFRICA,Western Cape Province,Scarborough,Snorkeling,Craig Bovim,M,25,Forearms lacerated,N,Just after 12h00,"White shark, 4 m white shark",IOL.co.za,2002.12.24-Bovim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.24-Bovim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.24-Bovim.pdf,2002.12.24,2002.12.24,4414,, +2002.12.21,21-Dec-02,2002,Unprovoked,AUSTRALIA,Queensland,Depth of 40 m on the wreck of the St. Paul off Brisbane,Scuba diving,Jai Hennessey,M,26,Groin bitten,N,,"Wobbegong shark, 1m",GC Online. Note: same diver's swim fin was bitten 3 weeks earlier by a 2 m [6.75'] wobbegong shark,2002.12.21-Hennessey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.21-Hennessey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.21-Hennessey.pdf,2002.12.21,2002.12.21,4413,, +2002.12.20,20-Dec-02,2002,Invalid,AUSTRALIA,Queensland,Golden Beach,Swimming,Bayne Doyle,M,11,Foot lacerated,N,,"Shark involvement not confirmed, injury may be due to a stingray","T. Peake, GSAF",2002.12.20-Doyle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.20-Doyle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.20-Doyle.pdf,2002.12.20,2002.12.20,4412,, +2002.12.16,16-Dec-02,2002,Unprovoked,AUSTRALIA,Queensland,Miami Lake,Swimming,Beau Martin,M,23,FATAL,Y,02h30,Bull shark,"T. Peake, GSAF; Northern Territory News, 12/20/2002, p.9",2002.12.16-BeauMartin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.16-BeauMartin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.16-BeauMartin.pdf,2002.12.16,2002.12.16,4411,, +2002.12.01,01-Dec-02,2002,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Surfing,Aylson Gadelha,M,19,FATAL,Y,,,O. Gadig,2002.12.01-Gadelha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.01-Gadelha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.01-Gadelha.pdf,2002.12.01,2002.12.01,4410,, +2002.11.28.b,28-Nov-02,2002,Unprovoked,MICRONESIA,Caroline Islands,"Pision Reef, Truk",Scuba diving,Kevin --,M,,Minor injury to right calf,N,Afternoon,Blacktip shark,J. Connick,2002.11.28.b-Kevin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.28.b-Kevin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.28.b-Kevin.pdf,2002.11.28.b,2002.11.28.b,4409,, +2002.11.28.a,28-Nov-02,2002,Unprovoked,USA,California,"Salmon Creek, Sonoma County",Body boarding,Michael Casey,M,48,Both legs severely lacerated,N,09h45,3 m to 4.5 m [10' to 15'] white shark,"R. Collier, GSAF; Press Report: Santa Rosa Press Democrat ",2002.11.28.a-Casey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.28.a-Casey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.28.a-Casey.pdf,2002.11.28.a,2002.11.28.a,4408,, +2002.11.17,17-Nov-02,2002,Unprovoked,USA,Hawaii,Ka'anapali,Swimming,Julie Glance ,F,34,Right shoulder forarm & wrist bitten,N,10h45,2.4 m to 3 m [8' to 10'] grey colored shark,San Francisco Gate,2002.11.17-Glance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.17-Glance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.17-Glance.pdf,2002.11.17,2002.11.17,4407,, +2002.11.14,14-Nov-02,2002,Unprovoked,TURKS & CAICOS,Caicos Bank,French Cay,Snorkeling,Michelle Glenn,F,41,"Right upper am, shoulder & back severely bitten",N,08h40,1.8 m to 2.1 m [6' to 7']� Caribbean Reef Shark ,"M. Glenn, Local 10 News; Miami Herald, 11/28/2002",2002.11.14-Glenn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.14-Glenn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.14-Glenn.pdf,2002.11.14,2002.11.14,4406,, +2002.11.11,11-Nov-02,2002,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Joshua Johnson,M,21,1.5-inch laceration,N,13h40,6' shark,"S. Petersohn, GSAF",2002.11.11-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.11-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.11-Johnson.pdf,2002.11.11,2002.11.11,4405,, +2002.11.02,02-Nov-02,2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Boogie boarding,A.H.,M,16,Puncture wounds on right foot,N,13h25,3' to 4' shark,"S. Petersohn, GSAF",2002.11.02-AH.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.02-AH.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.02-AH.pdf,2002.11.02,2002.11.02,4404,, +2002.11.00.a,Nov-02,2002,Unprovoked,FRENCH POLYNESIA,Society Islands,Tetiaroa,"Fishing, standing in 2' of water",Scott Heywood,M,52,Shin bruised,N,,,S. Heywood,2002.11.00-Heywood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.00-Heywood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.00-Heywood.pdf,2002.11.00.a,2002.11.00.a,4403,, +2002.10.30,30-Oct-02,2002,Unprovoked,USA,Hawaii,"Kama'ole Beach Park I, Kihei, Maui",Swimming,Karen Miller,F,60,Left foot bitten ,N,11h56,A �small� shark,J. Crites,2002.10.30-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.30-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.30-Miller.pdf,2002.10.30,2002.10.30,4402,, +2002.10.14,14-Oct-02,2002,Unprovoked,BRAZIL,Pernambuco,"Piedade Beach, Jaboat�o dos Guararapes City, Recife",Swimming,Luis Soares de Arruda,M,36,"FATAL, body not recovered",Y,16h00,Possibly a bull shark or tiger shark,"P.M. Lopes, GSAF",2002.10.14-Arruda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.14-Arruda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.14-Arruda.pdf,2002.10.14,2002.10.14,4401,, +2002.10.11,11-Oct-02,2002,Unprovoked,USA,Florida,"Opposite main gate at Patrick Air Force Base, Cape Canaveral, Brevard County",Surfing,male,M,21,Left foot bitten,N,Sunset,,"Florida Today, 10/12/2002 ",2002.10.11-CapeCanaveral.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.11-CapeCanaveral.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.11-CapeCanaveral.pdf,2002.10.11,2002.10.11,4400,, +2002.10.05.b,05-Oct-02,2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Darren Harrity,M,14,Abrasions on right hand & deep laceration on middle finger,N,12h00,Blacktip or spinner shark,"D. Harrity; S. Petersohn, GSAF; L. Lelis, Orlando Sentinel",2002.10.05.b-DarrenHarrity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.05.b-DarrenHarrity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.05.b-DarrenHarrity.pdf,2002.10.05.b,2002.10.05.b,4399,, +2002.10.05.a,05-Oct-02,2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Ivan Rios ,M,35,Heel & back of right knee lacerated,N,13h30,3.5' to 4.5' shark,"S. Petersohn, GSAF; Daytona Beach News Journal, 9/22/2003, p.1C",2002.10.05.a-Rios.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.05.a-Rios.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.05.a-Rios.pdf,2002.10.05.a,2002.10.05.a,4398,, +2002.10.03,03-Oct-02,2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Cheyne Kehoe ,M,18,Left hand lacerated and abraded,N,14h35,3.5' to 4' shark,"S. Petersohn, GSAF; Local 6 News; Orlando Sentinel, 10/4/2002, p.B3",2002.10.03-Kehoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.03-Kehoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.03-Kehoe.pdf,2002.10.03,2002.10.03,4397,, +2002.09.30,30-Sep-02,2002,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",Surfing,Matt Crawford,M,47,Right hand severely lacerated,N,16h20,4' to 5' shark,"S. Petersohn, GSAF; J. Eager, scubaradio.com; P.Balona, Vero Beach Press Journal, 5/10/2003, p.1C",2002.09.30-Crawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.30-Crawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.30-Crawford.pdf,2002.09.30,2002.09.30,4396,, +2002.09.29,29-Sep-02,2002,Unprovoked,USA,Florida,"Sebastian Inlet, Brevard County",Surfing,Dave Fogelberg,M,32,Left hand bitten,N,07h30,,"Local 6 News; P. Balona, Vero Beach Press Journal, 10/2/2002",2002.09.29-Fogelberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.29-Fogelberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.29-Fogelberg.pdf,2002.09.29,2002.09.29,4395,, +2002.09.27.c,27-Sep-02,2002,Unprovoked,USA,Hawaii,"Kahala, O'ahu",Fishing from Surfboard,Arnold Lum,M,55,"No injury, surfboard bitten ",N,15h35,1.2 m [4'] blacktip shark,"C. Lum & J. Widner, Honolulu Advertiser",2002.09.27.c-Lum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.27.c-Lum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.27.c-Lum.pdf,2002.09.27.c,2002.09.27.c,4394,, +2002.09.27.b,27-Sep-02,2002,Provoked,USA,Florida,"Key Largo, Monroe County",Fishing,Jose Diaz,M,� ,Left thumb lacerated PROVOKED INCIDENT,N,Afternoon,1.8 m [6'] blacktip shark,"J. Eager, scubaradio.com",2002.09.27.b-Diaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.27.b-Diaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.27.b-Diaz.pdf,2002.09.27.b,2002.09.27.b,4393,, +2002.09.27.a,27-Sep-02,2002,Provoked,TONGA,Vava'u,Swimming with humpback whales,Swimming,Felipe Tonga ,M, ,Thigh lacerated PROVOKED INCIDENT,N,15h00,"Tiger shark, 1.5 m [5']k",C. Butterfield,2002.09.27.a-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.27.a-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.27.a-Tonga.pdf,2002.09.27.a,2002.09.27.a,4392,, +2002.09.21.b,21-Sep-02,2002,Unprovoked,USA,Oregon,Cape Kiwanda,Boogie boarding or Surfing,Garry Turner,M,24, Ankle lacerated,N, ,2.4 m [8'] shark,"R. Collier, GSAF ",2002.09.21.b-GarryTurner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.21.b-GarryTurner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.21.b-GarryTurner.pdf,2002.09.21.b,2002.09.21.b,4391,, +2002.09.21.a,21-Sep-02,2002,Unprovoked,USA,California,"Moonstone Beach, Humboldt County",Surfing,Reed Richards,M,35,No injury,N,Early Morning,3 m to 3.7 m [10' to 12'] shark,"R. Collier , GSAF",2002.09.21.a-Richards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.21.a-Richards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.21.a-Richards.pdf,2002.09.21.a,2002.09.21.a,4390,, +2002.09.16.b,16-Sep-02,2002,Unprovoked,BRAZIL,Pernambuco,"Piedade Beach, Jaboat�o dos Guararapes City",Swimming,Fabr�cio Jos� de Carvalho,M,19,"Left thigh bitten, leg surgically amputated",N,15h00,Bull or tiger shark,"P.M. Lopes, GSAF",2002.09.16.b-Carvalho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.16.b-Carvalho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.16.b-Carvalho.pdf,2002.09.16.b,2002.09.16.b,4389,, +2002.09.16.a,16-Sep-02,2002,Unprovoked,USA,Hawaii,"Hideaways Beach, Princeville, Kaua'i",Body boarding,,,,"No injury, shark fin seen just before board ripped away & dragged out to sea",N,07h50,,Hawaii Department of Land and Natural Resources,2002.09.16.a-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.16.a-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.16.a-Hawaii.pdf,2002.09.16.a,2002.09.16.a,4388,, +2002.09.13,13-Sep-02,2002,Unprovoked,SOUTH AFRICA,Western Cape Province,"Glencairn, False Bay",Surf skiing,Paul Mauger (or Major),M,47,No injury,N,16h00,White shark,Multiple internet sources,2002.09.13-Mauger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.13-Mauger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.13-Mauger.pdf,2002.09.13,2002.09.13,4387,, +2002.09.09,09-Sep-02,2002,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Boogie boarding,Sean M. Erwin,M,20,Bitten above & below right knee,N,15h55,4' to 6' shark,"S. Petersohn, GSAF; Orlando Sentinel, 9/10/2002, p.B3; Daytona Beach News Journal, 9/10/2002, p.1C ",2002.09.09-Erwin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.09-Erwin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.09-Erwin.pdf,2002.09.09,2002.09.09,4386,, +2002.09.05,05-Sep-02,2002,Provoked,USA,Florida,"Daytona Beach Shores, Volusia County","Wading, when he stepped on the shark",Alex Lancaster,M,36,2 small puncture wounds on left foot PROVOKED INCIDENT,N,17h45,1' to 2' hammerhead or bonnethed shark,"S. Petersohn, GSAF",2002.09.05-Lancaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.05-Lancaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.05-Lancaster.pdf,2002.09.05,2002.09.05,4385,, +2002.08.28,28-Aug-02,2002,Unprovoked,USA,Hawaii,"Kewalo Basin Channel, O'ahu",Surfing,Shawn Farden,M,16,Left foot lacerated ,N,15h45,"Tiger shark, 2.4 m to 3 m [8' to 10'] ","G. Kubota, Honolulu Star Bulletin",2002.08.28-Farden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.28-Farden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.28-Farden.pdf,2002.08.28,2002.08.28,4384,, +2002.08.17,17-Aug-02,2002,Unprovoked,USA,Alabama,"Gulf of Mexico, 65 miles offshore from Mobile",Swimming,Kimberly McClain,F,29,Both arms & leg bitten,N,17h00,,"J. Eager, scubaradio.com",2002.08.17-McLean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.17-McLean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.17-McLean.pdf,2002.08.17,2002.08.17,4383,, +2002.08.14,14-Aug-02,2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Paxton Vinyard,M,27,Big toe bitten,N,14h45,0.9 m to 1.2 m [3' to 4'] shark,"S. Petersohn, GSAF; Orlando Sentinel, 8/15/2002, p.B3",2002.08.14-Vinyard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.14-Vinyard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.14-Vinyard.pdf,2002.08.14,2002.08.14,4382,, +2002.08.11,11-Aug-02,2002,Unprovoked,USA,Florida,"Vero Beach, Indian River County",Surfing,Brad Milliken,M,15,Lacerations on heel & dorsum of right foot,N,15h30,"Nurse shark, 1.5 m [5'] ","Stuart News, 8/12/2002",2002.08.11-Milliken.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.11-Milliken.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.11-Milliken.pdf,2002.08.11,2002.08.11,4381,, +2002.08.07,07-Aug-02,2002,Unprovoked,USA,Florida,"Ponce De Leon Inlet, Volusia County",Standing,David Brennen Smith,M,15,Ankle & leg lacerated,N,12h30,,"S. Petersohn, GSAF; J. Eager; A. Caldwell, Orlando Sentinel, 8/8/2002, p.B1",2002.08.07-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.07-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.07-Smith.pdf,2002.08.07,2002.08.07,4380,, +2002.08.06.R,Reported 06-Aug-2002,2002,Provoked,UNITED KINGDOM,Cheshire,"Blue Planet Aquarium, Ellesmere Port",Diving,Rob Bennett,M,30,Hand bitten by captive shark PROVOKED INCIDENT,N,,"Sandtiger shark, 3 m [10'] ","Evening Standard (London, England)",2002.08.06-Bennet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.06-Bennet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.06-Bennet.pdf,2002.08.06.R,2002.08.06.R,4379,, +2002.08.05,05-Aug-02,2002,Unprovoked,USA,North Carolina,"Topsail Beach, Pender County",Standing,Robert Pollan,M,14,Leg lacerated,N,11h00,1.2 m to 1.5 m [4' to 5'] shark,"Wisconsin State Journal; C. Creswell, GSAF",2002.08.05-Pollan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.05-Pollan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.05-Pollan.pdf,2002.08.05,2002.08.05,4378,, +2002.07.26,26-Jul-02,2002,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Surfing,T.J. Nimmons,M,13,Heel bitten,N,19h00,1.2 m [4'] blacktip or sandbar shark,"C. Creswell, GSAF; The State (Columbia, SC) 7/28/2002 ; Sun News (Myrtle Beach), 7/28/2002",2002.07.26-Nimmons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.26-Nimmons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.26-Nimmons.pdf,2002.07.26,2002.07.26,4377,, +2002.07.20,20-Jul-02,2002,Unprovoked,USA,North Carolina,"Emerald Isle, Carteret County",Swimming,Mary Katherine Strong,F,15,Calf bitten,N,17h00,"Bull shark, 1.8 m to 2.1 m [6' to 7'] ","C. Creswell, GSAF",2002.07.20-Strong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.20-Strong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.20-Strong.pdf,2002.07.20,2002.07.20,4376,, +2002.07.10,10-Jul-02,2002,Provoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Josh Nichtro,M,19,2 small lacerations on left lower leg when he jumped off board and landed on the shark PROVOKED INCIDENT,N,18h45,,"S. Petersohn, GSAF",2002.07.10-Nichtro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.10-Nichtro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.10-Nichtro.pdf,2002.07.10,2002.07.10,4375,, +2002.07.09.b,09-Jul-02,2002,Provoked,USA,Maryland,"100 miles off Ocean City, Maryland, in 7000' of water",Shark Fishing,Captain Billy Verbanas,M,41,Drowned when caught in line and pulled overboard by hooked shark PROVOKED INCIDENT,Y,Shortly after midnight,"Mako shark, 400-lb ",Life in Legacy ,2002.07.09.b-Verbanas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.09.b-Verbanas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.09.b-Verbanas.pdf,2002.07.09.b,2002.07.09.b,4374,, +2002.07.09.a,10-Jul-02,2002,Unprovoked,BRAZIL,Pernambuco,"Piedade Beach, Recife",Surfing,M�rio C�sar Carneiro da Silva,M,22,Right hand severed,N,15h00,Bull or tiger shark,"P.M. Lopes, GSAF",2002.07.09.a-daSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.09.a-daSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.09.a-daSilva.pdf,2002.07.09.a,2002.07.09.a,4373,, +2002.07.04,04-Jul-02,2002,Unprovoked,USA,North Carolina,"Wrightsville Beach, New Hanover County",Standing,Avery Olearczyk,F,9,"Calf, foot & hand bitten",N,17h15,"1.2 m to 1.5 m [4' to 5'] shark, possibly a bull shark","Miami Herald, 7/7/2002 ",2002.07.04-Olearczyk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.04-Olearczyk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.04-Olearczyk.pdf,2002.07.04,2002.07.04,4372,, +2002.06.20.b,20-Jun-02,2002,Unprovoked,AUSTRALIA,Queensland,Sunshine Beach,Surfing,male,M,30,minor injury to foot,N,10h00,,"AAP, 6/20/2002",2002.06.20.b-surfer-QLD.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.20.b-surfer-QLD.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.20.b-surfer-QLD.pdf,2002.06.20.b,2002.06.20.b,4371,, +2002.06.20.a,20-Jun-02,2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,female,F,11,Small lacerations on right lower leg,N,14h25,,"S. Petersohn, GSAF",2002.06.20.a-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.20.a-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.20.a-female.pdf,2002.06.20.a,2002.06.20.a,4370,, +2002.06.16,16-Jun-02,2002,Invalid,INDONESIA,,"Shark caught in Indonesia, offloaded to trawler that docked at Samut Prakan, 20 miles south of Bangkok, Thailand",,,,,Human remains (right forearm & leg) recovered from 3.7m [12'] tiger shark�s gut. Forensic examination suggested the remains had been consumed by the shark one to two weeks earlier,Y,,,espn.go.com,2002.06.16-Indonesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.16-Indonesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.16-Indonesia.pdf,2002.06.16,2002.06.16,4369,, +2002.06.13.R2,Reported 13-Jun-2002,2002,Unprovoked,PAPUA NEW GUINEA,Louisiade Archipelago,"Brooker Island , Calvados Chain",,,,,"Arm severely lacerated, surgically amputated",N,,,"PNG Post-Courier, 6/13/2002, p.5",2002.06.13-R.2-beche-de-mer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.13-R.2-beche-de-mer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.13-R.2-beche-de-mer.pdf,2002.06.13.R2,2002.06.13.R2,4368,, +2002.06.13.R1,Reported 13-Jun-2002,2002,Unprovoked,PAPUA NEW GUINEA,Louisiade Archipelago,"Gawa Reefs, Sudest Island",Attempting to retreive a dinghy,an elementary school teacher,,,FATAL,Y,,,"PNG Post-Courier, 6/13/2002, p.5",2002.06.13.R.1-schoolteacher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.13.R.1-schoolteacher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.13.R.1-schoolteacher.pdf,2002.06.13.R1,2002.06.13.R1,4367,, +2002.06.11.b,11-Jun-02,2002,Unprovoked,USA,Hawaii,"Anini Beach, Kaua'i",Sitting on surfboard,C. Levin,,,"No injury, shark bit side of surfboard",N,13h345,"Tiger shark, 2.4 m to 2.7 m [8' to 9'] ",Hawaii Department of Land and Natural Resources,2002.06.11.b-Levin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.11.b-Levin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.11.b-Levin.pdf,2002.06.11.b,2002.06.11.b,4366,, +2002.06.11.a,10-Jun-02,2002,Unprovoked,USA,Florida,"St Augustine Beach, St Johns County",Surfing,Jason Smith,M,28,Right hand lacerated,N,13h00,0.9 m to 1.2 m [3' to 4'] shark; Tooth fragment recovered from hand,"Orlando Sentinel, 6/12/2002, pp. B2 & B5; Florida Times-Union, 6/10/2002",2002.06.11.a-JasonSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.11.a-JasonSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.11.a-JasonSmith.pdf,2002.06.11.a,2002.06.11.a,4365,, +2002.06.09.b,09-Jun-02,2002,Unprovoked,USA,Florida,"South of Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Craig Taylor,M,50,6-inch gash on right foot,N,10h40,� ,"S. Petersohn, GSAF; S. Pedicini, Orlando Sentinel, 6/13/2002., p.B1 & 6/12/2002, p.B2",2002.06.09.b-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.09.b-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.09.b-Taylor.pdf,2002.06.09.b,2002.06.09.b,4364,, +2002.06.09.a,09-Jun-02,2002,Unprovoked,USA,Florida,"Jensen Beach, Martin County ",Swimming,Corey Brooks,M,10,Right calf lacerated,N,13h00,,"ESPN; Orlando Sentinel, 6/12/2002, p.B2",2002.06.09.a-Brooks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.09.a-Brooks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.09.a-Brooks.pdf,2002.06.09.a,2002.06.09.a,4363,, +2002.06.03,03-Jun-02,2002,Unprovoked,SOUTH AFRICA,KwaZulu-Natal between Port Edward and Port St Johns,Off Mkhambati ,Snorkeling (filming the sardine run),Tony White,M,50,Upper arm bitten,N,� ,1.5 to 2.5 m [5' to 8.25'] copper shark,T. White,2002.06.03-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.03-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.03-White.pdf,2002.06.03,2002.06.03,4362,, +2002.05.31.b,31-May-02,2002,Unprovoked,USA,California,"Stinson Beach, Marin County",Surfing,Lee Fontan,M,24,Lacerated leg & back,N,14h15,3.7 m to 4.3 m [12' to 14'] white shark,San Francisco Gate,2002.05.31.b-Fontan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.31.b-Fontan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.31.b-Fontan.pdf,2002.05.31.b,2002.05.31.b,4361,, +2002.05.31.a,31-May-02,2002,Unprovoked,USA,Florida,"St. George Island (near Apachicola), Franklin County",Floating on a raft,Matt Tichenor,M,16,Lacerated foot,N,16h15,1 m shark,"South Florida Sun-Sentinel; Orlando Sentinel, 6/3/2002, p.B.2; Miami Herald, 6/3/2002",2002.05.31.a-Tichenor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.31.a-Tichenor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.31.a-Tichenor.pdf,2002.05.31.a,2002.05.31.a,4360,, +2002.05.22.b,22-May-02,2002,Provoked,USA,Florida,"a pier at the end of Caxambas Drive, Marco Island ","Fishing, removing the shark from his line",male,M,55,Leg bitten by hooked shark PROVOKED INCIDENT,N,17h15,3' blacktip shark,"News-Press, 5/23/2002",2002.05.22.b-MarcoIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.22.b-MarcoIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.22.b-MarcoIsland.pdf,2002.05.22.b,2002.05.22.b,4359,, +2002.05.22.a,22-May-02,2002,Unprovoked,USA,Florida,"Atlantic Avenue, Palm Beach County",Playing in the surf with his 2 dogs,Sean Oliver,M,35,"2-inch wound on dorsum of right foot, 1-inch wound on sole",N,06h47,,"Palm Beach Post, 5/24 & 26/2002",2002.05.22.a-Oliver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.22.a-Oliver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.22.a-Oliver.pdf,2002.05.22.a,2002.05.22.a,4358,, +2002.05.21.R,Reported 21-May-2002,2002,Unprovoked,COSTA RICA,Guanacaste,Playa Grande,Surfing,Nick Wallace,M,,Toothmarks in board & his swim trunks,N,,"Bull shark, 1.8 m to 2.1 m [6' to 7'] ",Surfline.com,2002.05.21.R-Wallace.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.21.R-Wallace.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.21.R-Wallace.pdf,2002.05.21.R,2002.05.21.R,4357,, +2002.05.21,21-May-02,2002,Unprovoked,PAPUA NEW GUINEA,Milne Bay Province,Tewatewa Island,Collecting beche-de-mer,Billy Leonard,M,14,Wrist lacerated,N,,,"PNG Post-Courier, 6/13/2002, p.5",2002.05.21.a-Leonard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.21.a-Leonard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.21.a-Leonard.pdf,2002.05.21,2002.05.21,4356,, +2002.05.13,13-May-02,2002,Unprovoked,USA,Florida,"Ten Thousand Islands National Wildlife Refuge, Collier County",Fishing,Fermin Gallegos,M,31,Laceration to arm.,N,,2.1 m to 2.4 m [7' to 8'] shark,South Florida Sun-Sentinel; Southwest Florida Digest,2002.05.13-Gallegos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.13-Gallegos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.13-Gallegos.pdf,2002.05.13,2002.05.13,4355,, +2002.05.10,10-May-02,2002,Unprovoked,BRAZIL,Pernambuco,"Pina, Recife",Surfing,Paulo Fernandes Alves Ferreira,M,40,Leg injured,N,17h00,,"JCOnline, 5/11/2002",2002.05.10-PauloFernandesAlvesFerreira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.10-PauloFernandesAlvesFerreira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.10-PauloFernandesAlvesFerreira.pdf,2002.05.10,2002.05.10,4354,, +2002.05.07,07-May-02,2002,Provoked,AUSTRALIA,Northern Territory,Darwin,Fishing from prawn trawler,Richard Morris,M,20,Netted shark injured his am & 6 fingers PROVOKED INCIDENT,N,,,"Northern Territory News, 5/29/2002, p.7",2002.05.07-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.07-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.07-Morris.pdf,2002.05.07,2002.05.07,4353,, +2002.04.30,30-Apr-02,2002,Unprovoked,AUSTRALIA,South Australia,"Smoky Bay, near Ceduna, on the Eyre Peninsula",Scallop diving (using surface-supplied air & a POD) ,Paul Buckland,M,23,"FATAL, torso & leg bitten ",Y,12h40,"White shark, 6m [20']","T. Peake, GSAF",2002.04.30-Buckland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.30-Buckland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.30-Buckland.pdf,2002.04.30,2002.04.30,4352,, +2002.04.21,21-Apr-02,2002,Invalid,AUSTRALIA,New South Wales,26 nautical miles out to sea off Lake Macquarie,Fishing (Drowned 2-Apr-2002),Mr. Kang Suk Lee,M,52,"Drowned, his remains were found in a 3m [10'], 368 kg [811-lb] tiger shark",Y,,,Newcastle Herald. 10/3/2002,2002.04.21-KangSukLee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.21-KangSukLee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.21-KangSukLee.pdf,2002.04.21,2002.04.21,4351,, +2002.04.20,20-Apr-02,2002,Unprovoked,USA,Florida,"St. Augustine Beach, St. Johns County","Surfing, but standing in water alongside board",Robert Stinson,M,34,Left foot bitten,N,10h30,1.2 m [4'] shark,"Miami Herald, 4/25/2002; Florida Times-Union, 4/23/2002",2002.04.20-Stinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.20-Stinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.20-Stinson.pdf,2002.04.20,2002.04.20,4350,, +2002.04.18,18-Apr-02,2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Nolan Sutliff,M,28,Left foot bitten,N,11h10,,"S. Petersohn, GSAF; Orlando Sentinel, 4/19/2002, p.G1; Daytona Beach News Journal, 4/19/2002, p.1C",2002.04.18-Sutliff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.18-Sutliff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.18-Sutliff.pdf,2002.04.18,2002.04.18,4349,, +2002.04.12,12-Apr-02,2002,Unprovoked,AUSTRALIA,New South Wales,"Bar Beach, Newcastle",Swimming,John Schneider,M,45,Foot bitten,N,18h30,,"T. Peake, GSAF",2002.04.12-Schneider.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.12-Schneider.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.12-Schneider.pdf,2002.04.12,2002.04.12,4348,, +2002.04.09,09-Apr-02,2002,Unprovoked,BAHAMAS,Abaco Islands,Walkers Cay,Standing,Erich Ritter,M,43,Calf bitten,N,10h45,"Bull shark, 400-lb ","E. Ritter, GSAF",2002.04.09-Ritter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.09-Ritter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.09-Ritter.pdf,2002.04.09,2002.04.09,4347,, +2002.04.02,02-Apr-02,2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,male,M,41,Two half-inch lacerations on right heel and one near small toe,N,15h00,3' shark,"S. Petersohn, GSAF",2002.04.02-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.02-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.02-male.pdf,2002.04.02,2002.04.02,4346,, +2002.04.01,01-Apr-02,2002,Unprovoked,USA,Florida,"Lauderdale-By-The-Sea, Broward County",Swimming / Wading,Matthew May,M,29,Upper left arm bitten,N,11h30,0.9 m [3'] shark,"Orlando Sentinel, 4/2/2002, p.B3; Miami Herald, 4/2/2002",2002.04.01-May.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.01-May.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.01-May.pdf,2002.04.01,2002.04.01,4345,, +2002.03.25.b,25-Mar-02,2002,Unprovoked,USA,Hawaii,"Brenecke Beach, Po'ipu, Kaua'i",Body-boarding,Hoku Aki,M,17,Left leg severed below knee,N,12h00,Tiger shark,"G. Kubota, Honolulu Star Bulletin",2002.03.25.b-HokuAki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.25.b-HokuAki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.25.b-HokuAki.pdf,2002.03.25.b,2002.03.25.b,4344,, +2002.03.25.a,25-Mar-02,2002,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Wading,Ms Tori Lawrence,F,11,Foot bitten,N,10h10,� ,"Orlando Sentinel, 3/26/2002, p.B2; Miami Herald, 3/26/2002",2002.03.25.a-Lawrence.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.25.a-Lawrence.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.25.a-Lawrence.pdf,2002.03.25.a,2002.03.25.a,4343,, +2002.03.24,24-Mar-02,2002,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Swimming,F�bio Fernandes Silva,M,16,"Severe kacerations, FATAL",Y,17h00,,JCOnline,2002.03.24-FabioFernandesSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.24-FabioFernandesSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.24-FabioFernandesSilva.pdf,2002.03.24,2002.03.24,4342,, +2002.03.19,19-Mar-02,2002,Unprovoked,USA,Florida,"Daytona Beach Shores, Volusia County",Swimming / boogie boarding,John Sadler,M,20,Punctures on left foot and foot ,N,15h45,4' shark,"S. Petersohn, GSAF; Orlando Sentinel, 3/20/2002, p.B2",2002.03.19-Sadler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.19-Sadler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.19-Sadler.pdf,2002.03.19,2002.03.19,4341,, +2002.03.15.b,15-Mar-02,2002,Unprovoked,USA,Florida,"Deerfield Beach (near Boca Raton), Broward County",Snorkeling,Robert Land,M,39,Arm bitten,N,Morning,"Nurse shark, 1m ",ezboard.com,2002.03.15.b-Land.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.15.b-Land.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.15.b-Land.pdf,2002.03.15.b,2002.03.15.b,4340,, +2002.03.15.a,15-Mar-02,2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,31,Several puncture wounds on lower right leg,N,10h55,"Spinner shark, 3' to 4' ","S. Petersohn, GSAF; Orlando Sentinel, 3/16/2002, p.C.2",2002.03.15.a-male-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.15.a-male-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.15.a-male-surfer.pdf,2002.03.15.a,2002.03.15.a,4339,, +2002.03.03,03-Mar-02,2002,Invalid,NEW CALEDONIA,Loyalty Islands,Lifou,Spearfishing,Yves Koidrin,M,44,"PRESUMED FATAL, body not recovered",Y,,Shark involvement prior to death unconfired,"Les Nouvelles Caledoniennes, 3/11/2002",2002.03.03-Yves-Koidrin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.03-Yves-Koidrin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.03-Yves-Koidrin.pdf,2002.03.03,2002.03.03,4338,, +2002.02.23,23-Feb-02,2002,Unprovoked,TURKS & CAICOS,,,Capsized fishing boat,John Sutton,M,,FATAL,Y,,,sharkattacks.com,2002.02.23-Sutton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.23-Sutton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.23-Sutton.pdf,2002.02.23,2002.02.23,4337,, +2002.02.16,16-Feb-02,2002,Unprovoked,AUSTRALIA,Queensland,Sunshine Beach,Surfing,Kirk Koster,M,30 or 36,Heel / foot bitten,N,09h00 -10h00,"1.5 m [5'] ""whaler shark""","Sunday Mail (QLD), 2/17/2002, p.13; T. Peake, GSAF; AAP (Australia)",2002.02.16-Koster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.16-Koster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.16-Koster.pdf,2002.02.16,2002.02.16,4336,, +2002.02.11,11-Feb-02,2002,Unprovoked,FIJI,Cikobia Island (north of Vanua Levu),,,Jokini Rasoki,M,15,"FATAL, lower thigh & knee severely lacerated ",Y,20h00,,Press Report dated 2-14-2002,2002.02.11-Rasoki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.11-Rasoki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.11-Rasoki.pdf,2002.02.11,2002.02.11,4335,, +2002.02.07,07-Feb-02,2002,Unprovoked,AUSTRALIA,New South Wales,Paramatta River (near Sydney),Kayaking,Paul McNamara,M,35,Stern of kayak bitten/chest bruised ,N,19h15,C. leucas tooth fragment recovered from kayak,"T. Peake, GSAF",2002.02.07-McNamara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.07-McNamara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.07-McNamara.pdf,2002.02.07,2002.02.07,4334,, +2002.01.30.b,30-Jan-02,2002,Unprovoked,AUSTRALIA,New South Wales,Just north of Fingal Spit,Surfing,Andrew Cribb,M,20,Bruises & minor cuts,N,20h45 (Sunset),"Tiger shark, 3 m [10']","T. Peake, GSAF",2002.01.30.b-Cribb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.30.b-Cribb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.30.b-Cribb.pdf,2002.01.30.b,2002.01.30.b,4333,, +2002.01.30.a,30-Jan-02,2002,Unprovoked,AUSTRALIA,Western Australia,Collie River ,Swimming,Shayne Calliss,M,32,15 cm wound on inner thigh,N,,,"T. Peake, GSAF; D. Green",2002.01.30.a-Calliss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.30.a-Calliss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.30.a-Calliss.pdf,2002.01.30.a,2002.01.30.a,4332,, +2002.01.04,04-Jan-02,2002,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban Harbor,Fishing,Imraan Sheik,M,16,Leg bitten & surgically amputated,N,02h00,Zambesi shark?,"G. Gifford, GSAF",2002.01.04-Sheik.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.04-Sheik.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.04-Sheik.pdf,2002.01.04,2002.01.04,4331,, +2002.01.03,03-Jan-02,2002,Unprovoked,BRAZIL,Pernambuco,Candeias,Swimming,Unidentified,,,FATAL,Y,,,JCOnline,2002.01.03-Candeias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.03-Candeias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.03-Candeias.pdf,2002.01.03,2002.01.03,4330,, +2002.01.01.b,01-Jan-02,2002,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Mtunzini,Surf skiing,Michael van Niekerk,M,26,Foot & calf bitten,N,Sunset,Unidentified,ioL.co.za,2002.01.01.b-vanNiekerk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.01.b-vanNiekerk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.01.b-vanNiekerk.pdf,2002.01.01.b,2002.01.01.b,4329,, +2002.01.01.a,01-Jan-02,2002,Unprovoked,USA,Hawaii,"Olowalu, Maui",Snorkeling,Thomas Holmes,M,35,Lacerations to buttocks & thigh,N,13h00,"Tiger shark, 1.8 m [6'] ","G. Kubota, Star Bulletin",2002.01.01.a-Holmes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.01.a-Holmes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.01.a-Holmes.pdf,2002.01.01.a,2002.01.01.a,4328,, +2001.12.21,21-Dec-01,2001,Invalid,AUSTRALIA,Western Australia,"Honeycombs, 250 km south of Perth",Surfing,Shane Dickson,M,36,"No injury, 2 m to 2.5 m [6.75' to 8.25'] shark made a threat display",N,Morning,,sharkattacks.com,2001.12.21-Dickson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.12.21-Dickson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.12.21-Dickson.pdf,2001.12.21,2001.12.21,4327,, +2001.11.23,23-Nov-01,2001,Unprovoked,AUSTRALIA,New South Wales,"Flat Rock Beach, Lennox Head",Surfing,Roger Frankland,M,49,"No Injury, shark hit board",N,,Bronze whaler shark,"T. Peake, GSAF",2001.11.23-Frankland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.11.23-Frankland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.11.23-Frankland.pdf,2001.11.23,2001.11.23,4326,, +2001.11.14,14-Nov-01,2001,Unprovoked,USA,Hawaii,"Kapalua, Maui",Surfing,M. Schweitzer,,,"No injury, portion of board's lower surface removed",N,17h00,,Hawaii Department of Land and Natural Resources,2001.11.14-Schweitzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.11.14-Schweitzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.11.14-Schweitzer.pdf,2001.11.14,2001.11.14,4325,, +2001.11.07,07-Nov-01,2001,Invalid,AUSTRALIA,Western Australia,"Leighton Beach, south of North Cottesloe",Surf-skiing,male,M,,"No injury, fell off ski after possibly colliding with a shark",N,,,"T. Peake, GSAF",2001.11.07-LeightonBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.11.07-LeightonBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.11.07-LeightonBeach.pdf,2001.11.07,2001.11.07,4324,, +2001.10.07,07-Oct-01,2001,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Salt Rock ,Kite-Boarding,Alwin van Breda,M,,No injury,N,,"Mako shark, 2 m [6.75'] ",NSB,2001.10.07-vanBreda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.10.07-vanBreda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.10.07-vanBreda.pdf,2001.10.07,2001.10.07,4323,, +2001.10.02,02-Oct-01,2001,Unprovoked,AUSTRALIA,Queensland,200 miles offshore,Snorkeling,Katherine Jones,F,20,Lacerations to right forearm & shoulder injured,N,13h00,Bronze whaler shark?,K. Jones,2001.10.02-Katherine-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.10.02-Katherine-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.10.02-Katherine-Jones.pdf,2001.10.02,2001.10.02,4322,, +2001.09.30.b,30-Sep-01,2001,Unprovoked,MEXICO,Guerrero,Ixtapa,Body surfing,Brian Lavelle,M,26,Hand injured,N,Late morning,"Tiger shark, 1.8 m [6']",T. Carlson,2001.09.30.b-Lavelle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.30.b-Lavelle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.30.b-Lavelle.pdf,2001.09.30.b,2001.09.30.b,4321,, +2001.09.30.a,30-Sep-01,2001,Boat,AUSTRALIA,Queensland,"Moreton Bay, NE of Brisbane ",,"boat: inflatable boat, occupant: Matt George, owner",M,31,No injury from shark,N,P.M.,4 m [13'] white shark,"T. Peake, GSAF ",2001.09.30.a-MattGeorge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.30.a-MattGeorge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.30.a-MattGeorge.pdf,2001.09.30.a,2001.09.30.a,4320,, +2001.09.24,24-Sep-01,2001,Provoked,USA,Florida,"Ponce Inlet, Volusia County","Surfing, fell off surfboard & stepped on the shark.",male,M,21,PROVOKED INCIDENT Several small lacerations on left foot ,N,16h20,4' shark,"S. Petersohn, GSAF",2001.09.24-male_Ponce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.24-male_Ponce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.24-male_Ponce.pdf,2001.09.24,2001.09.24,4319,, +2001.09.18,18-Sep-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Blaise Mosler,M,14,"1"" to 2"" cuts on right ankle & foot",N,15h00,,"Orlando Sentinel, 9/20/2001, p.D2; S. Frederick, Daytona Beach News Journal, 9/19/2001, p.1C",2001.09.18-Mosler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.18-Mosler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.18-Mosler.pdf,2001.09.18,2001.09.18,4318,, +2001.09.16,16-Sep-01,2001,Invalid,USA,Florida,"2 miles off Pompano Beach, Broward County",Wreck / Technical diving,Eric Reichardt,M,42,FATAL or drowning & scavenging,Y,13h20,Questionable incident - shark bite may have precipitated drowning,D. Fleshler,2001.09.16-Reichardt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.16-Reichardt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.16-Reichardt.pdf,2001.09.16,2001.09.16,4317,, +2001.09.15.b,15-Sep-01,2001,Unprovoked,USA,Florida,A quarter mile north of Fort Pierce Inlet,Boogie boarding,Cory Hock,M,6�,"2 lacerations on lower back, punctures on buttock",N,15h00,2' to 3.5' shark,"G. Hock, M. Levine, GSAF; Orlando Sentinel, 9/18/2001, p.D2",2001.09.15.b-Hock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.15.b-Hock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.15.b-Hock.pdf,2001.09.15.b,2001.09.15.b,4316,, +2001.09.15.a,15-Sep-01,2001,Unprovoked,USA,North Carolina,"North Topsail Beach, Onslow County",Surfing,"Dale Fulcher, Jr.",M,16,Foot bitten,N,13h45,,"Clay Creswell, GSAF; Topsail Voice, 9/19/2001",2001.09.15.a-Fulcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.15.a-Fulcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.15.a-Fulcher.pdf,2001.09.15.a,2001.09.15.a,4315,, +2001.09.13,13-Sep-01,2001,Provoked,UNITED KINGDOM,Cheshire,"Blue Planet Aquarium, Ellesmere Port",Diving,,M,,Head bitten by captive shark PROVOKED INCIDENT,N,,12' sandtiger shark,"Daily Post, 9/14/2001",2001.09.13-Aquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.13-Aquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.13-Aquarium.pdf,2001.09.13,2001.09.13,4314,, +2001.09.08,08-Sep-01,2001,Provoked,USA,Florida,"Everglades National Park, Monroe County",Fishing,male,M,44,Fingers & leg lacerated by hooked shark PROVOKED INCIDENT,N,,,"Orlando Sentinel, 9/9/2001",2001.09.08-angler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.08-angler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.08-angler.pdf,2001.09.08,2001.09.08,4313,, +2001.09.07.b,07-Sep-01,2001,Unprovoked,USA,Florida,"Key Biscayne, Dade County",Walking in shallows,Patrick Homer,M,13,Minor injury to left leg,N,18h40,,"Miami Herald, 9/8/2001",2001.09.07.b-Homer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.07.b-Homer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.07.b-Homer.pdf,2001.09.07.b,2001.09.07.b,4312,, +2001.09.07.a,07-Sep-01,2001,Invalid,USA,South Carolina,"Waites Island, Horry County",Swimming,Jackie Boyce,F,,Left hand injured,N,,Shark involvement not confirmed,"Sun News (Myrtle Beach, SC) , 9/11/2001; The State (Columbia, SC), 9/12/2001",2001.09.07.a-Boyce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.07.a-Boyce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.07.a-Boyce.pdf,2001.09.07.a,2001.09.07.a,4311,, +2001.09.03.b,03-Sep-01,2001,Unprovoked,USA,North Carolina,"Avon, Hatteras Island, Outer Banks, Dare County",Swimming ,Sergi Zaloukaev,M,28,FATAL,Y,18h00,A large white shark was filmed by divers on a local wreck 2 days prior to the incident.,"M. Levine, GSAF ",2001.09.03.b-Sergei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.03.b-Sergei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.03.b-Sergei.pdf,2001.09.03.b,2001.09.03.b,4310,, +2001.09.03.a,03-Sep-01,2001,Unprovoked,USA,North Carolina,"Avon, Hatteras Island, Outer Banks, Dare County",Swimming,Natalia (Natasha) Slobonskaya,F,23,Left buttock & foot severed,N,18h00,A large white shark was filmed by divers on a local wreck 2 days prior to the incident.,"M. Levine, GSAF ",2001.09.03.a-Natasha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.03.a-Natasha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.03.a-Natasha.pdf,2001.09.03.a,2001.09.03.a,4309,, +2001.09.02,02-Sep-01,2001,Unprovoked,USA,Florida,"Mayport Naval Station, Jacksonville, Duval Country",Wading,William Moseley,M,20,Right calf lacerated,N,Afternoon,1.5 m [5'] shark,"Orlando Sentinel, 9/4/2001, p.B2; Florida Times-Union, 9/5/2001",2001.09.02-Moseley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.02-Moseley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.02-Moseley.pdf,2001.09.02,2001.09.02,4308,, +2001.09.01,01-Sep-01,2001,Unprovoked,USA,Virginia,"Sandbridge Beach, Princess Anne County",Swimming ,David Peltier,M,10,"FATAL, thigh bitten ",Y,18h00,bull shark,"M. Levine, GSAF ",2001.09.01-Peltier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.01-Peltier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.01-Peltier.pdf,2001.09.01,2001.09.01,4307,, +2001.08.31,31-Aug-01,2001,Unprovoked,BAHAMAS,Abaco Islands,North of Grand Cay,Spearfishing,Nick Raich,M,44,Torso lacerated,N,13h30,3 m [10'] bull shark,G. Atkinson,2001.08.31-Raich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.31-Raich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.31-Raich.pdf,2001.08.31,2001.08.31,4306,, +2001.08.29,29-Aug-01,2001,Unprovoked,USA,Florida,"Coquina Beach, Anna Maria Island, Manatee County",Standing,Kristi Herzberg,F,29,Punctures & lacerations on elbow & forearm,N,13h30,,"Sarasota Herald-Tribune, 8/31/2001",2001.08.29-Herzberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.29-Herzberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.29-Herzberg.pdf,2001.08.29,2001.08.29,4305,, +2001.08.27,27-Aug-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,William Goettel,M,69,Heel lacerated,N,16h20,,"S. Petersohn, GSAF; CNN; M.I. Johnson, Daytona Beach News Journal, 8/28/2001, p.1A",2001.08.27-Goettel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.27-Goettel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.27-Goettel.pdf,2001.08.27,2001.08.27,4304,, +2001.08.26,26-Aug-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Boogie Boarding,Ben Gibbs,M,18,Thigh & foot bitten,N,16h00,,"Miami Herald, 8/26/2001; S. Mussenden, Orlando Sentinel, 8/26/2002, p.B1",2001.08.26-Gibbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.26-Gibbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.26-Gibbs.pdf,2001.08.26,2001.08.26,4303,, +2001.08.25,25-Aug-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Boogie Boarding,male,M,18,Upper left thigh & right foot bitten,N,14h00,,"S. Petersohn, Miami Herald, 8/26/2001",2001.08.25-boogie-boarder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.25-boogie-boarder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.25-boogie-boarder.pdf,2001.08.25,2001.08.25,4302,, +2001.08.22,22-Aug-01,2001,Unprovoked,USA,Florida,"Daytona, Volusia County ",Surfing,Lowell Lutz,M,17,Foot lacerated,N,16h20,a small shark,"M. Giusti, Daytona Beach News Journal, 8/23/2001, p.1A",2001.08.22-Lutz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.22-Lutz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.22-Lutz.pdf,2001.08.22,2001.08.22,4301,, +2001.08.21,21-Aug-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Omar Oyarce,M,27,Thigh lacerated,N,16h00,,"S. Petersohn, GSAF; L.Lelis, Orlando Sentinel, 8/22/2001, p.D.1",2001.08.21-Oyarce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.21-Oyarce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.21-Oyarce.pdf,2001.08.21,2001.08.21,4300,, +2001.08.19.c,19-Aug-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Robert Kurrek,M,32,Cuts on right foot,N,13h14,,"S. Petersohn, GSAF; Orlando Sentinel, 8/20/2001, p.B1; Daytona Beach News Journal, 8/20/2001, p.1A",2001.08.19.c-Kurrek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.19.c-Kurrek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.19.c-Kurrek.pdf,2001.08.19.c,2001.08.19.c,4299,, +2001.08.19.b,19-Aug-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Becky Chapman,F,17,Lacerations to lower leg,N,13h06,,"E. Ritter & S. Petersohn, GSAF; Orlando Sentinel, 8/20/2001, p.B1; L.Lelis, Orlando Sentinel, 8/22/2001, p.D.1",2001.08.19.b-Chapman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.19.b-Chapman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.19.b-Chapman.pdf,2001.08.19.b,2001.08.19.b,4298,, +2001.08.19.a,19-Aug-01,2001,Unprovoked,USA,Florida,"Wilbur-by-the-Sea, Volusia County",Surfing,female,F,17,Left foot lacerated,N,11h20,,"S. Petersohn, GSAF; Orlando Sentinel, 8/20/2001, p.B1; Daytona Beach News Journal, 8/20/2001, p.1A",2001.08.19.a-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.19.a-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.19.a-girl.pdf,2001.08.19.a,2001.08.19.a,4297,, +2001.08.18.c,18-Aug-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jeff White,M,20,Cuts on right foot,N,12h30,Possibly a blacktip or spinner shark,"S. Petersohn, GSAF; Orlando Sentinel, 8/20/2001, p.B1; Daytona Beach News Journal, 8/20/2001, p.1A",2001.08.18.c-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.18.c-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.18.c-White.pdf,2001.08.18.c,2001.08.18.c,4296,, +2001.08.18.b,18-Aug-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jaison Valentin,M,19,Back of left hand gashed,N,12h05,"3' shark, possibly a blacktip or spinner shark","S. Petersohn, GSAF; Orlando Sentinel, 8/20/2001, p.B1; Daytona Beach News Journal, 8/20/2001, p.1A",2001.08.18.b-Valentine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.18.b-Valentine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.18.b-Valentine.pdf,2001.08.18.b,2001.08.18.b,4295,, +2001.08.18.a,18-Aug-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Dylan Feindt,M,19,Left ankle bitten,N,10h00,"Blacktip shark, 5' to 6' ","S. Petersohn, GSAF; Orlando Sentinel, 8/20/2001, p.B1; Daytona Beach News Journal, 8/20/2001, p.1A",2001.08.18.a-Feindt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.18.a-Feindt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.18.a-Feindt.pdf,2001.08.18.a,2001.08.18.a,4294,, +2001.08.16,16-Aug-01,2001,Unprovoked,BAHAMAS,Grand Bahama Island,"High Rock, 25 to 30 miles east of Freeport",Spearfishing,Kent Bonde,M,43,Calf bitten,N,16h00,1.9 m [6.5'] bull shark,"E. Ritter, GSAF; 8/17/2001, p.A9",2001.08.16-Bonde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.16-Bonde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.16-Bonde.pdf,2001.08.16,2001.08.16,4293,, +2001.08.12,12-Aug-01,2001,Unprovoked,THAILAND,Rayong Province,Laem Mae Pim Beach,Fell off banana boat,O. Jaimaung & friend,M,21 & ?,Legs bitten,N,,3 m [10'] shark,O. Jaimuang,2001.08.12-Jaimuang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.12-Jaimuang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.12-Jaimuang.pdf,2001.08.12,2001.08.12,4292,, +2001.08.05,05-Aug-01,2001,Unprovoked,USA,South Carolina,"Near 70th Avenue, Myrtle Beach, Horry County",,female,F,,Toe bitten,N,,,"C. Creswell, GSAF",2001.08.05-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.05-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.05-female.pdf,2001.08.05,2001.08.05,4291,, +2001.08.04,04-Aug-01,2001,Unprovoked,BAHAMAS,Grand Bahama Island,Freeport,Swimming,Krishna Thompson,M,36,"Leg bitten, later surgically amputated above the knee",N,10h20,,"Orlando Sentinel, 8/7/2001, p.D3; 8/8/2001, p.D2",2001.08.04-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.04-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.04-Thompson.pdf,2001.08.04,2001.08.04,4290,, +2001.08.03,03-Aug-01,2001,Boat,ITALY,,Rimini,Fishing,boat; occupants: T & G Longhi,,,No Injury to occupants,N,,,MEDSAF,2001.08.03-Longhi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.03-Longhi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.03-Longhi.pdf,2001.08.03,2001.08.03,4289,, +2001.07.26,26-Jul-01,2001,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",,female,F,,Survived,N,,,SAF,2001.07.26-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.26-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.26-female.pdf,2001.07.26,2001.07.26,4288,, +2001.07.25,25-Jul-01,2001,Unprovoked,USA,Florida,"Taverniier, Monroe County",,male,M,,Minor injury,N,16h00,,"Key West Citizen, 7/26/2001",2001.07.25-FloridaKeys-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.25-FloridaKeys-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.25-FloridaKeys-male.pdf,2001.07.25,2001.07.25,4287,, +2001.07.24,24-Jul-01,2001,Unprovoked,USA,Florida,"Marathon , Monroe County",,female,F,,2 bites behind knee,N,,Nurse shark,"Key West Citizen, 7/26/2001",2001.07.24-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.24-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.24-female.pdf,2001.07.24,2001.07.24,4286,, +2001.07.21,21-Jul-01,2001,Boat,USA,Massachusetts,Chatham Island,Fishing,"boat, occupants: Joseph Fitzback & 6 passengers",,,No Injury to occupants; shark bumped the boat ,N,,"Mako shark, 14' ",GSAF,2001.07.21-Massachusetts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.21-Massachusetts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.21-Massachusetts.pdf,2001.07.21,2001.07.21,4285,, +2001.07.15.b,15-Jul-01,2001,Unprovoked,USA,Florida,"Santa Rosa Island, Escambia County",Surfing,Michael Waters ,M,48,Left foot & heel lacerated,N,14h30,,"CNN; Pensacola News Journal; R. Suriano, Otlando Sentinel, 7/17/2001, p.D.1",2001.07.15.b-Waters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.15.b-Waters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.15.b-Waters.pdf,2001.07.15.b,2001.07.15.b,4284,, +2001.07.15.a,15-Jul-01,2001,Unprovoked,USA,Florida,"Amelia Island, Nassau County",Boogie boarding,Tim Flanigan,M,18,Foot lacerated,N,14h30,0.9 m [3'] shark,"The Enquirer (Cincinnati), 7/17/2001 ",2001.07.15.a-Flanigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.15.a-Flanigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.15.a-Flanigan.pdf,2001.07.15.a,2001.07.15.a,4283,, +2001.07.06.b,06-Jul-01,2001,Unprovoked,MEXICO,Baja California,Ensenada,Surfing,Tim Fabel,M,42,Foot bitten,N,Evening,,KGTV,2001.07.06.b-Fabel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.06.b-Fabel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.06.b-Fabel.pdf,2001.07.06.b,2001.07.06.b,4282,, +2001.07.06.a,06-Jul-01,2001,Unprovoked,USA,Florida,Gulf Islands National Seashore,Swimming,Jesse Arbogast,M,8,"Arm severed, surgically reattached",N,Dusk,"Bull shark, 2.3 m [7.5'] ","E. Ritter, GSAF",2001.07.06.a-Arbogast.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.06.a-Arbogast.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.06.a-Arbogast.pdf,2001.07.06.a,2001.07.06.a,4281,, +2001.07.03,03-Jul-01,2001,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County ",,,,,Hand bitten,N,,,"C. Creswell, GSAF",2001.07.03-SouthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.03-SouthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.03-SouthCarolina.pdf,2001.07.03,2001.07.03,4280,, +2001.07.00,Jul-01,2001,Unprovoked,USA,Georgia,"Jekyll Island, Glynn County",Floating face-down in knee-deep water,John Davis,M,35,2-inch cut on dorsum of left foot,N,18h30,,"Atlanta Journal-Constitution, 9/5/2001; Florida Times-Union, 9/5/2001",2001.07.00-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.00-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.00-Davis.pdf,2001.07.00,2001.07.00,4279,, +2001.06.12,12-Jun-01,2001,Unprovoked,USA,Texas,Padre Island National Seashore,Swimming,Jared Black,M,14,Leg lacerated,N,,1.5 m [5'] shark,"Houston Chronicle, 6/17/2001",2001.06.12-Black.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.12-Black.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.12-Black.pdf,2001.06.12,2001.06.12,4278,, +2001.06.10,10-Jun-01,2001,Provoked,USA,California,Catalina Island,Spearfishing,Bill McNair,M,52,"No injury. Shark made threat display, then diver shot the shark PROVOKED INCIDENT",N,09h00,"White shark, 2.4 m to 3 m [8' to 10'] ","R. Collier, GSAF",2001.06.10-McNair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.10-McNair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.10-McNair.pdf,2001.06.10,2001.06.10,4277,, +2001.06.09,09-Jun-01,2001,Invalid,AUSTRALIA,New South Wales,Lord Howe Island (island group 440 miles northeast of Sydney),Hiking on the beach,Arthur Applet,M,75,Remains recovered from gut of a 3.7 m [12'] tiger shark,Y,,,Times Online,2001.06.09-Applet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.09-Applet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.09-Applet.pdf,2001.06.09,2001.06.09,4276,, +2001.06.03,03-Jun-01,2001,Unprovoked,USA,South Carolina,"Off 21st Avenue, Isle of Palms, Charleston County",Wading,Mary Pound,F,29,3 puncture wounds on each side of her left hand,N,Shortly before 13h00,2' shark,"C. Creswell, GSAF, Charleston Post & Courier, 6/4/2001",2001.06.03-MaryPound.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.03-MaryPound.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.03-MaryPound.pdf,2001.06.03,2001.06.03,4275,, +2001.05.29,29-May-01,2001,Unprovoked,USA,Texas,Galveston Island,,male,M,16,Survived,N,,,sharkattacks.com,2001.05.29-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.29-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.29-Galveston.pdf,2001.05.29,2001.05.29,4274,, +2001.05.23 ,23-May-01,2001,Unprovoked,USA,South Carolina,"Coligny Beach, Hilton Head, Beaufort County",Swimming,Tripp Choate,M,11,Shin lacerated,N,,1.2 m to 1.5 m [4.5' to 5'] shark,"C. Creswell, GSAF",2001.05.23-Choate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.23-Choate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.23-Choate.pdf,2001.05.23 ,2001.05.23 ,4273,, +2001.05.20,20-May-01,2001,Unprovoked,USA,South Carolina,"Fripp Island, Beaufort County",Swimming,Michael Heidenreich,M,,5.5-inch laceration on calf,N,19h00,,"Charlotte Observer, 5/23/2001, p.5B; Greenville News, 5/26/2001",2001.05.20-Heidenreich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.20-Heidenreich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.20-Heidenreich.pdf,2001.05.20,2001.05.20,4272,, +2001.05.18,18-May-01,2001,Provoked,PHILIPPINES,Zamboanga del Sur Province,,Shark fishing,Amir Badi,M,24,Arm bitten PROVOKED INCIDENT,N,,,AFP,2001.05.18-Badi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.18-Badi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.18-Badi.pdf,2001.05.18,2001.05.18,4271,, +2001.05.11,11-May-01,2001,Invalid,MADAGASCAR,,Shipwrecked Ferry M/V Samsonnette,,French national,M,,Fatal or drowned & remains scavenged by shark,Y,,,GDACS (Global Disaster Alert & Coordination System),2001.05.11-Madagascar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.11-Madagascar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.11-Madagascar.pdf,2001.05.11,2001.05.11,4270,, +2001.05.08,08-May-01,2001,Unprovoked,SOUTH AFRICA,Eastern Cape Province,East London,Surfing,David van Staden,M,26,Leg bitten,N,,"White shark, 2.7 m to 3 m [9' to 10'] ","East London Daily Dispatch, 5/9/2001",2001.05.08-Van Staden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.08-Van Staden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.08-Van Staden.pdf,2001.05.08,2001.05.08,4269,, +2001.05.04,04-May-01,2001,Unprovoked,AUSTRALIA,New South Wales,Noraville,Surfing,Michael Valentine,M,33 or 37,"Chest lacerated, surfboard bitten",N,17h45,,"Newcastle Herald; Sunday Mail (QLD), 5/6/2001, p.46; Sunday Territorian, 5/6/2001, p.8",2001.05.04-Valentine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.04-Valentine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.04-Valentine.pdf,2001.05.04,2001.05.04,4268,, +2001.05.03,03-May-01,2001,Unprovoked,USA,Florida,"Jacksonville, Duval County",Surfing,John McCall,M,45,Foot lacerated ,N,19h00,1.2 m to 1.5 m [4' to 5'] shark,"J. Eager, scubaradio.com; J. Gaudin, GSAF",2001.05.03-McCall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.03-McCall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.03-McCall.pdf,2001.05.03,2001.05.03,4267,, +2001.05.00,May-01,2001,Unprovoked,FIJI,Taveuni,,"Spearfishing, carrying his catch",male,M,,FATAL,Y,,,FijiTV,2001.05.00-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.00-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.00-Fiji.pdf,2001.05.00,2001.05.00,4266,, +2001.04.28,28-Apr-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Boogie boarding,male,M,14,4 small lacerations on lower right leg,N,15h49,,"S. Petersohn, GSAF",2001.04.28-NV-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.28-NV-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.28-NV-NewSmyrnaBeach.pdf,2001.04.28,2001.04.28,4265,, +2001.04.13.b,13-Apr-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jonathan Bush,M,16,Foot & ankle lacerated,N,11h00,,"J. Eager, scubaradio.com; Orlando Sentinel, April 14, 2001, p.A1",2001.04.13.b-Bush.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.13.b-Bush.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.13.b-Bush.pdf,2001.04.13.b,2001.04.13.b,4264,, +2001.04.13.a,13-Apr-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Andrew Barron,M,12,Right foot & ankle lacerated,N,10h55,Possibly a juvenile blacktip or spinner shark,"S. Petersohn, GSAF; Orlando Sentinel, 4/14/2001, p.A1",2001.04.13.a-Barron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.13.a-Barron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.13.a-Barron.pdf,2001.04.13.a,2001.04.13.a,4263,, +2001.04.12.e,12-Apr-01,2001,Unprovoked,USA,Florida,"Waveland Beach, Hutchinson Island, St Lucie County",,male,M,mid-30s,Right ankle & lower leg lacerated,N,16h00,,"M. Large, Stuart News, 4/13/2001 ",2001.04.12.e-WavelandBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.e-WavelandBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.e-WavelandBeach.pdf,2001.04.12.e,2001.04.12.e,4262,, +2001.04.12.d,12-Apr-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Richard Spence,M,38,Foot & ankle lacerated,N,16h45,,"S. Petersohn, GSAF; Orlando Sentinel, 4/14/2001, p.A1",2001.04.12.d-Spence.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.d-Spence.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.d-Spence.pdf,2001.04.12.d,2001.04.12.d,4261,, +2001.04.12.c,12-Apr-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Emmet Browning,M,21,Small cuts on big & pinky toes of left foot,N,16h05,Possibly a juvenile blacktip or spinner shark,"S. Petersohn, GSAF; Orlando Sentinel, 4/14/2001, p.A1",2001.04.12.c-Browning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.c-Browning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.c-Browning.pdf,2001.04.12.c,2001.04.12.c,4260,, +2001.04.12.b,12-Apr-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Body boarding,"John Fasio, Jr ",M,12,Foot & ankle lacerated,N,12h34,Possibly a juvenile blacktip or spinner shark,"S. Petersohn, GSAF; Orlando Sentinel, 4/14/2001, p.A1",2001.04.12.b-Fasio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.b-Fasio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.b-Fasio.pdf,2001.04.12.b,2001.04.12.b,4259,, +2001.04.12.a,12-Apr-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach / Waveland, Volusia County",Surfing,Richard Lloyd,M,22,Foot lacerated,N,11h53,Possibly a 1.5 m [5'] blacktip or spinner shark,"S. Petersohn, GSAF; Orlando Sentinel, 4/14/2001, p.A1",2001.04.12.a-Lloyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.a-Lloyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.a-Lloyd.pdf,2001.04.12.a,2001.04.12.a,4258,, +2001.04.11.d,11-Apr-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Elren Thresher,M,19,Minor cuts on right heel & foot,N,8:04 PM,Possibly a juvenile blacktip or spinner shark,"S. Petersohn, GSAF; scubaradio.com; Orlando Sentinel, 4/14/2001, p.A1",2001.04.11.d-Thresher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.11.d-Thresher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.11.d-Thresher.pdf,2001.04.11.d,2001.04.11.d,4257,, +2001.04.11.c,11-Apr-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach / Waveland, Volusia County",Surfing,Jordan Carter,M,22,Lacerations to top & bottom of left foot,N,12h46,,"S. Petersohn, GSAF",2001.04.11.c-NV-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.11.c-NV-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.11.c-NV-Carter.pdf,2001.04.11.c,2001.04.11.c,4256,, +2001.04.11.a,11-Apr-01,2001,Unprovoked,USA,Hawaii,"Ewa Beach, O'ahu",Surfing,Gilbert Dano,M,,Minor punctures & lacerations on left hand ,N,07h00,"1 m shark, possibly whitetip reef shark",Honolulu Star Bulletin,2001.04.11.a-Dano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.11.a-Dano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.11.a-Dano.pdf,2001.04.11.a,2001.04.11.a,4255,, +2001.04.10,10-Apr-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,a surfer from Port Orange,,16,Foot lacerated,N,,Possibly a juvenile blacktip or spinner shark,"Orlando Sentinel, 4/14/2001, p.A1",2001.04.10-PortOrangeSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.10-PortOrangeSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.10-PortOrangeSurfer.pdf,2001.04.10,2001.04.10,4254,, +2001.04.08.b,08-Apr-01,2001,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Cape St. Francis,Surfing,Dunstan Hogan,M,46,"Thigh, hip & buttock bitten",N,09h30,"White shark, 2.7 m [9'] ","M. Smale, P.E. Museum ",2001.04.08.b-Hogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.08.b-Hogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.08.b-Hogan.pdf,2001.04.08.b,2001.04.08.b,4253,, +2001.04.08.a,08-Apr-01,2001,Provoked,AUSTRALIA,New South Wales,Bronte Beach,Snorkeling,Andranik Markossian,M,,Wrist lacerated PROVOKED INCIDENT,N,,Wobbegong shark,"ABC News; Northern Territory News, 4/9/2001, p.2",2001.04.08.a-Markossian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.08.a-Markossian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.08.a-Markossian.pdf,2001.04.08.a,2001.04.08.a,4252,, +2001.04.05,05-Apr-01,2001,Unprovoked,USA,Florida,"Bethune Beach, south of New Smyrna Beach, Volusia County",Standing alongside surfboard,Jason Bartholem,M,26,Minor lacerations to dorsum of left foot,N,14h45,"""small shark""","S. Petersohn, GSAF",2001.04.05-Bartholem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.05-Bartholem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.05-Bartholem.pdf,2001.04.05,2001.04.05,4251,, +2001.04.02.b,02-Ap-2001,2001,Unprovoked,BRAZIL,Rio Grande de Norte,"Praia de Camapum, Macau",Batin,A.C.C.,F,12,Left thigh bitten,N,,,M. Szpilman,2001.04.02.b-ACC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.02.b-ACC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.02.b-ACC.pdf,2001.04.02.b,2001.04.02.b,4250,, +2001.04.02.a,02-Apr-01,2001,Unprovoked,AUSTRALIA,New South Wales,Nambucca River Entrance,Surfing,Richard Ellis,M,40,Calf bitten,N,10h00,Bronze whaler shark,"T. Peake, GSAF",2001.04.02.a-Ellis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.02.a-Ellis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.02.a-Ellis.pdf,2001.04.02.a,2001.04.02.a,4249,, +2001.03.23,23-Mar-01,2001,Unprovoked,USA,Hawaii,"Sandy Beach, Oahu",Body-boarding,Michael Mendez,M,,"Minor cuts on left hand, body board bitten",N,14h40,,Hawaii Department of Land and Natural Resources,2001.03.23-Mendez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.23-Mendez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.23-Mendez.pdf,2001.03.23,2001.03.23,4248,, +2001.03.09,09-Mar-01,2001,Unprovoked,USA,Florida,"Coral Cove Park, Jupiter Island, Martin County",Surfing,Chad Hooker,M,,Fingers & hand lacerated,N,,"Spinner shark, 1.2 m to 1.5 m [4' to 5'] ",Shark Survivor. Inc.,2001.03.09-Hooker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.09-Hooker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.09-Hooker.pdf,2001.03.09,2001.03.09,4247,, +2001.03.08,08-Mar-01,2001,Invalid,BRAZIL,Bahia,Nova Vicosa,Attempting to catch a crocodile,V.A.F.,M,12,Lacerations below the knee,N,,Shark involvement not confirmed,M. Szpilman,2001.03.08-VAF.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.08-VAF.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.08-VAF.pdf,2001.03.08,2001.03.08,4246,, +2001.03.03,03-Mar-01,2001,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Swimming,Carlo Alberto Brasileiro,M,20,FATAL,Y,,,"JC, 3/7/2001; Orlando Sentinel, 3/9/2001, p.A13",2001.03.03-Brasileiro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.03-Brasileiro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.03-Brasileiro.pdf,2001.03.03,2001.03.03,4245,, +2001.03.00,Mar-01,2001,Sea Disaster,CARIBBEAN SEA,,Between St. Maarten & Anguilla,Sinking of the 40' Esperanza off St. Maartin with 36 refugees on board,Unknown,,,"Human remains recovered in shark caught off Anguilla, probable scavenging on drowned body",Y,,"Tiger shark, 8' ","C. Johansson, GSAF",2001.03.00-Anguilla.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.00-Anguilla.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.00-Anguilla.pdf,2001.03.00,2001.03.00,4244,, +2001.02.26,26-Feb-01,2001,Boat,AUSTRALIA,Western Australia,Albany (incident took place 200 metres from swimmers),Fishing for whiting,"5 m boat, occupants: Don & Margaret Stubbs",,,No injury to occupants,N,,"White shark, 5 m [16.5'] ",Illwara Mercury,2001.02.26-BOAT.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.02.26-BOAT.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.02.26-BOAT.pdf,2001.02.26,2001.02.26,4243,, +2001.02.11,11-Feb-01,2001,Invalid,MALAYSIA,Off the western coast of peninsular Malaysia,Pulau Pangkor (Pangkor Island),Unknown,female,F,,Bones recovered by fishermen in 300-kg [662-lb] white shark�s gut,Y,,,Associated Press,2001.02.11-Pangkor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.02.11-Pangkor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.02.11-Pangkor.pdf,2001.02.11,2001.02.11,4242,, +2001.02.04,04-Feb-01,2001,Unprovoked,AUSTRALIA,New South Wales,Broome Head,Surfing,Mark Butler,M,40,Leg bitten,N,16h15,"Bronze whaler shark, 2.5 m [8.25'] k","Daily Dispatch, 2/6/2001",2001.02.04-Butler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.02.04-Butler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.02.04-Butler.pdf,2001.02.04,2001.02.04,4241,, +2001.01.24.R,Reported 24-Jan-2001,2001,Boat,AUSTRALIA,New South Wales,South West Rocks,Kayaking,Mark Elkinton,M,35,"No injury, shark ramme d & bit kayak",N,,5 m shark,"Daily Telegraph 1/24/2001, p.19",2001.01.24.R-Elkinton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.24.R-Elkinton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.24.R-Elkinton.pdf,2001.01.24.R,2001.01.24.R,4240,, +2001.01.24,24-Jan-01,2001,Unprovoked,CUBA,Holquin Province,Off Blau Costa Verde resort,Swimming,Mrs. Soile Hamalainen,F,55,Left arm bitten,N,,2 m [6.75'] shark,"Trip Advisor, et al.",2001.01.24.a-Hamalainen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.24.a-Hamalainen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.24.a-Hamalainen.pdf,2001.01.24,2001.01.24,4239,, +2001.01.21 ,21-Jan-01,2001,Boat,AUSTRALIA,South Australia,Adelaide,Fishing,"6 m boat, occupants John Winslet & customers",,,No injury to occupants,N,,"White shark, 4.3 m [14'] ","Northern Territory News, 1/22/2001, p.8",2001.01.21-FishingBoats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.21-FishingBoats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.21-FishingBoats.pdf,2001.01.21 ,2001.01.21 ,4238,, +2001.01.09,09-Jan-01,2001,Unprovoked,USA,California,"Sunset Cliffs, San Diego",Surfing,Larry McCash,M,,"Foot bruised, board dinged",N,,"1.8 m to 2.4 m [6' to 8'] ""black finned shark""",M. Sanders,2001.01.09-McCash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.09-McCash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.09-McCash.pdf,2001.01.09,2001.01.09,4237,, +2001.01.06,06-Jan-01,2001,Boat,NEW ZEALAND,North Island,Sandy Bay/Whananaki,Kayaking,Dr. Michael Hogan ,M,,"No injury, kayak bitten",N,,White shark,C. Duffy,2001.01.06-MikeHogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.06-MikeHogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.06-MikeHogan.pdf,2001.01.06,2001.01.06,4236,, +2000.12.24,24-Dec-00,2000,Unprovoked,AUSTRALIA,Queensland,Flinders Cay,Scuba diving,male,M,23,Hand bitten,N,,,"Daily Telegraph, 12/26/2000, p.7",2000.12.24-FlindersDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.24-FlindersDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.24-FlindersDiver.pdf,2000.12.24,2000.12.24,4235,, +2000.12.12,12-Dec-00,2000,Unprovoked,FIJI,Taveuni,Garden Island Resort,Swimming back from anchored sailboat,Michael Loxton,M,47,"FATAL, leg severed ",Y,14h30,6 m [20'] shark,multiple internet sources,2000.12.12-Loxton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.12-Loxton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.12-Loxton.pdf,2000.12.12,2000.12.12,4234,, +2000.12.11,11-Dec-00,2000,Boat,AUSTRALIA,South Australia,"3 km off Port Victoria, Yorke Peninsula",Fishing for whiting,"3.5 -metre fibreglass boat, occupants: Harry Ulbrich and another fisherman",,,No injury to occupants,N,,"White shark, 4.5 m [14'9""] ","The Dominion, 12/13/2000; Northern Territory News, 12/13/2000, p.9",2000.12.11- boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.11- boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.11- boat.pdf,2000.12.11,2000.12.11,4233,, +2000.12.05,05-Dec-00,2000,Unprovoked,CANADA,New Brunswick,Bay of Fundy,Diving for sea urchins,Daniel MacDonald,M,30,No injury,N,,"Porbeagle shark, 3 m [10']rk","A. Martin; Telegraph-Journal, 12/8/2000",2000.12.05-MacDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.05-MacDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.05-MacDonald.pdf,2000.12.05,2000.12.05,4232,, +2000.12.03,03-Dec-00,2000,Unprovoked,AUSTRALIA,Queensland,"Sykes Reef, Great Barrier Reef",Spearfishing,Chris Hogan,M,38,Left elbow and forearm bitten,N,09h30,"Bronze whaler shark, 2.5 m [8.25'] ","N. Leys; Daily Telegraph, 12/4/2000.p.3",2000.12.03-ChrisHogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.03-ChrisHogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.03-ChrisHogan.pdf,2000.12.03,2000.12.03,4231,, +2000.12.00,Dec-00,2000,Unprovoked,NEW ZEALAND,Cook Islands,"Arorangi, Rarotonga",Surfing,female,F,,FATAL,Y,,,"C. Tini, R.D. Weeks, GSAF",2000.12.00 - Arorangi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.00 - Arorangi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.00 - Arorangi.pdf,2000.12.00,2000.12.00,4230,, +2000.11.21,21-Nov-00,2000,Unprovoked,AUSTRALIA,Queensland,Orpheus Island,Diving (shell maintenance),George Lyons,M,28,"No injury, wetsuit & swimfin torn",N,,"Tiger shark, 4 m ","Courier-Mail, 11/24/2000, p.3",2000.11.21-Lyons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.21-Lyons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.21-Lyons.pdf,2000.11.21,2000.11.21,4229,, +2000.11.20,20-Nov-00,2000,Invalid,AUSTRALIA,South Australia,Ceduna,Shipwrecked,Danny Thorpe,M,47,"Missing, thought to have been taken by a shark",Y,,Shark involvement not confirmed,"T. Peake, GSAF",2000.11.20-Thorpe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.20-Thorpe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.20-Thorpe.pdf,2000.11.20,2000.11.20,4228,, +2000.11.18,17-Nov-00,2000,Unprovoked,USA,Florida,"Bonita Springs, Lee County",Swimming,Colin Shadforth,M,73,Right calf lacerated,N,12h00,1.2 m to 1.8 m [4' to 6'] shark,"South Florida Sun Sentinel, 11/19/2000, p.6B",2000.11.18-Shadforth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.18-Shadforth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.18-Shadforth.pdf,2000.11.18,2000.11.18,4227,, +2000.11.10,10-Nov-00,2000,Invalid,USA,Florida,"Vaughn Beach, Flagler County",Walking,Eileen Skeie,F,27,No injury,N,,"Bull shark, 1.5 m to 1.8 m [5' to 6'] ",E. Skeie,2000.11.10-Skeie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.10-Skeie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.10-Skeie.pdf,2000.11.10,2000.11.10,4226,, +2000.11.06.b,06-Nov-00,2000,Unprovoked,AUSTRALIA,Western Australia,"Cottesloe Beach, Perth",Swimming,Dirk Avery,M,52,Leg & feet lacerated,N,06h30,"White shark, 4.9 m [16'] ","B. May, AAP; G. Thiel",2000.11.06.b-Avery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.06.b-Avery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.06.b-Avery.pdf,2000.11.06.b,2000.11.06.b,4225,, +2000.11.06.a,06-Nov-00,2000,Unprovoked,AUSTRALIA,Western Australia,"Cottesloe Beach, Perth",Swimming,Ken Crew,M,49,"FATAL, torso bitten, leg severed ",Y,06h30,"White shark, 5 m [16.5'] ","B. May, AAP; G. Thiel",2000.11.06.a-KenCrew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.06.a-KenCrew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.06.a-KenCrew.pdf,2000.11.06.a,2000.11.06.a,4224,, +2000.11.04,04-Nov-00,2000,Unprovoked,USA,California,"1/4 to 1/2 m north of the jetty at Bunkers, Eureka, Humboldt County",Surfing,Casey Stewman,M,27,Both thighs bitten,N,16h30,"White shark, 2.4 m to 3 m [8' to 10'] ","J. Ramsay, California Fish & Game; R. Collier",2000.11.04-Stewman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.04-Stewman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.04-Stewman.pdf,2000.11.04,2000.11.04,4223,, +2000.10.29,29-Oct-00,2000,Boat,AUSTRALIA,Queensland,Peel Island,Fishing ,"boat, occupant: Paul Kelly",,31,"No Injury to occupant, shark holed and sank boat",N,22h00,White shark,"T. Peake, GSAF",2000.10.29-Kelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.29-Kelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.29-Kelly.pdf,2000.10.29,2000.10.29,4222,, +2000.10.20,20-Oct-00,2000,Unprovoked,USA,Florida,"Fort Pierce Inlet State Park, St Lucie County",Surfing,Jason Licamele,M,23,Leg lacerated,N,18h00,,"Stuart News, 10/21/2000",2000.10.20-Licamele.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.20-Licamele.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.20-Licamele.pdf,2000.10.20,2000.10.20,4221,, +2000.10.18,18-Oct-00,2000,Unprovoked,USA,Hawaii,Olowalu,Swimming / snorkeling,Henrietta Musselwhite,F,56,Right side of back / torso lacerated,N,11h20,"Tiger shark, 1.8 m to 2.4 m [6' to 8'] ",GSAF,2000.10.18-Musselwhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.18-Musselwhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.18-Musselwhite.pdf,2000.10.18,2000.10.18,4220,, +2000.10.14,14-Oct-00,2000,Unprovoked,USA,Florida,"South Beach, Sebastian, Indian River County",Swimming,Norman Payne,M,69,Right hand lacerated,N,15h30,,"D. Robinson, Vero Beach Press Journal, 10/17/2000, p.A4",2000.10.14-Payne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.14-Payne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.14-Payne.pdf,2000.10.14,2000.10.14,4219,, +2000.10.09,09-Oct-00,2000,Unprovoked,USA,Florida,"Lake Worth Inlet/West Palm Beach, Palm Beach County",Surfing,Matt Kraskiewicz,M,17,Foot lacerated,N,Morning,2.1 to 2.4 m [7' to 8'] shark,"South Florida Sun-Sentinel, 10/11/2000",2000.10.09-Kraskiecwicz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.09-Kraskiecwicz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.09-Kraskiecwicz.pdf,2000.10.09,2000.10.09,4218,, +2000.10.06.b,06-Oct-00,2000,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Austin White,M,23,Fingers lacerated,N,14h30,"Blacktip shark, 2' ","SharkSurvivor.com; M.I.Johnson, Daytona Beach News Journal, 10/7/2000, p.1A; Daytona News Journal, 10/8/2000, p.4B",2000.10.06.b-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.06.b-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.06.b-White.pdf,2000.10.06.b,2000.10.06.b,4217,, +2000.10.06.a,06-Oct-00,2000,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Body surfing,Taylor Holley,M,11,Right foot & heel lacerated,N,12h48,,"S. Petersohn, GSAF; M.I.Johnson, Daytona Beach News Journal, 10/7/2000, p.1A; Bradenton Herald 10/8/2000, ",2000.10.06.a-Holley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.06.a-Holley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.06.a-Holley.pdf,2000.10.06.a,2000.10.06.a,4216,, +2000.10.02,02-Oct-00,2000,Unprovoked,USA,North Carolina,"Wrightsville Beach, New Hanover County",Surfing,Mark Taylor,M,24,Upper left arm lacerated,N,16h30,,"The State (Columbia), 10/6/2000, p.A6",2000.10.02-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.02-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.02-Taylor.pdf,2000.10.02,2000.10.02,4215,, +2000.09.29,29-Sep-00,2000,Unprovoked,USA,California,"Mavericks, Half Moon Bay, San Mateo County",Sitting on surfboard,Peck Euwer,M,,No injury,N,09h00,"White shark, 4.3 m [14']","P. Euwer, Ocean.com; D.W. Cole & M. DesJardins, Santa Cruz Sentinel",2000.09.29-Euwer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.29-Euwer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.29-Euwer.pdf,2000.09.29,2000.09.29,4214,, +2000.09.25,25-Sep-00,2000,Unprovoked,AUSTRALIA,South Australia,"Black Point, Eyre Peninsula",Surfing,Jevan Wright,M,17,FATAL,Y,13h00,White shark,"T. Peake, GSAF",2000.09.25-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.25-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.25-Wright.pdf,2000.09.25,2000.09.25,4213,, +2000.09.24,24-Sep-00,2000,Unprovoked,AUSTRALIA,South Australia,Cactus Beach near Penong,Surfing,Cameron Bayes,M,25,FATAL,Y,07h30,"White shark, 4 m to 5 m [13' to 16.5'] ","T. Peake, GSAF",2000.09.24-Bayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.24-Bayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.24-Bayes.pdf,2000.09.24,2000.09.24,4212,, +2000.09.18,19-Sep-00,2000,Provoked,AUSTRALIA,New South Wales,Wollongong,Fell onto dead shark,boy,M,12,Foot lacerated from toe to heel when he tripped on shark during fishing competition PROVOKED INCIDENT,N,,100-kg [221-lb] dead blue shark,Illwara Mercury. 9/19/2000,2000.09.18-boy_provoked.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.18-boy_provoked.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.18-boy_provoked.pdf,2000.09.18,2000.09.18,4211,, +2000.09.16.b,16-Sep-00,2000,Unprovoked,OKINAWA,Miyako Island,Sunayama Beach,Surfing,Takayuki Miura,M,31, FATAL,Y,17h00,"White shark, 2.5 m ",M. Shimbun; japanupdate.com,2000.09.16.b-Miura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.16.b-Miura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.16.b-Miura.pdf,2000.09.16.b,2000.09.16.b,4210,, +2000.09.16.a,16-Sep-00,2000,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",,,,,Non-fatal,N,,,"C. Creswell, GSAF",2000.09.16.a-NV-IsleOfPalms.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.16.a-NV-IsleOfPalms.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.16.a-NV-IsleOfPalms.pdf,2000.09.16.a,2000.09.16.a,4209,, +2000.09.15,15-Sep-00,2000,Unprovoked,USA,Florida,"Fort Pierce Inlet, St Lucie County",Standing / surfing,Gary Smith,M,49,Right lower leg & ankle lacerated,N,18h00,,"SharkSurvivor.com.; The Stuart (FL) News, 9/19/2000",2000.09.15-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.15-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.15-Smith.pdf,2000.09.15,2000.09.15,4208,, +2000.09.12,12-Sep-00,2000,Unprovoked,USA,Florida,"Sebastian Inlet, Indian River or Brevard County",Surfing,Brenda Fried,F,26,Puncture wounds on knee,N,12h00,,"SharkSurvivor.com; Florida Today, 9/13/2000",2000.09.12-Fried.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.12-Fried.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.12-Fried.pdf,2000.09.12,2000.09.12,4207,, +2000.09.11,11-Sep-00,2000,Unprovoked,USA,Florida,"Daytona Beach Shores, Volusia County",Swimming / Body surfing,Jason Armstrong,M,25,Finger lacerated,N,13h20,60 cm to 90 cm [2' to 3'] shark,"S. Petersohn, GSAF; Daytona Beach News Journal, 9/12/2000, p.1.A; Orlando Sentinel, 9/12/2000, p.D2",2000.09.11-Armstrong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.11-Armstrong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.11-Armstrong.pdf,2000.09.11,2000.09.11,4206,, +2000.09.10.b,10-Sep-00,2000,Unprovoked,USA,Florida,"Vero Beach, Indian River County",Swimming,male,M,8,Minor injury to arm and hand,N,17h42,,"Fort Pierce Tribune, 9/12/2000",2000.09.10.b-Boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.10.b-Boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.10.b-Boy.pdf,2000.09.10.b,2000.09.10.b,4205,, +2000.09.10.a,10-Sep-00,2000,Unprovoked,SOUTH AFRICA,Western Cape Province,Dyer Island,Free diving,Gary Adkison,M,48,Swim fin bitten,N,11h00,"White shark, 3.5 m [11.5'] male ","E. Ritter, GSAF",2000.09.10.a-Adkinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.10.a-Adkinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.10.a-Adkinson.pdf,2000.09.10.a,2000.09.10.a,4204,, +2000.09.08.c,08-Sep-00,2000,Unprovoked,TANZANIA,,"Coco Beach, Dar-es-Salaam (Reported as the 5th fatality in 3 months at Coco Beach)",Swimming,Godfrey Msemwa,M,28,FATAL,Y,,Thought to involve a Zambesi shark,E. Matechi; A. Mbogora ,2000.09.08.c-Msemwa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.08.c-Msemwa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.08.c-Msemwa.pdf,2000.09.08.c,2000.09.08.c,4203,, +2000.09.08.b,08-Sep-00,2000,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,Terrill Crane,M,40,Left foot lacerated ,N,11h45,1.5 m [5'] shark,"S. Petersohn, GSAF; M. I. Johnson, Daytona Beach News Journal, 9/19/2000, p.1A; Orlando Sentinel, 9/9/2000 , p.D2",2000.09.08.b-Crane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.08.b-Crane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.08.b-Crane.pdf,2000.09.08.b,2000.09.08.b,4202,, +2000.09.08.a,08-Sep-00,2000,Unprovoked,REUNION,Saint-Pierre,Pic du Diable ,Surfing,Karim Maan,M,27,Left arm bitten,N,18h05,"Tiger shark, 3 m [10'] ","Clicanoo, le journal de l'Ile de la R�union; Northern Territory News, 9/12/2000, p.6",2000.09.08.a-KarimMaan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.08.a-KarimMaan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.08.a-KarimMaan.pdf,2000.09.08.a,2000.09.08.a,4201,, +2000.09.00.b,Early Sep-2000,2000,Unprovoked,TANZANIA,,"Coco Beach, Dar-es-Salaam",Swimming,,,,FATAL,Y,,Thought to involve a Zambesi shark,T. Thierry,2000.09.00-CocoBeach4.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.00-CocoBeach4.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.00-CocoBeach4.pdf,2000.09.00.b,2000.09.00.b,4200,, +2000.08.31,31-Aug-00,2000,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,Rickey Johnson,M,47,Punctures & lacerations on right foot,N,12h35,A 2' shark was seen in the area by witnesses,"S. Petersohn, GSAF",2000.08.31-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.31-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.31-Johnson.pdf,2000.08.31,2000.08.31,4199,, +2000.08.30,30-Aug-00,2000,Unprovoked,USA,Florida,"Boca Ciega Bay, Tampa, Pinellas County",Jumped into the water,Thaddeus Kubinski,M,69,FATAL,Y,16h00,"Thought to involve a 2.7 m [9'], 400-lb bull shark","E. Ritter, GSAF; Charlotte Observer, 9/1/2000, p.4A; Orlando Sentinel, 8/31/2000, p.A19",2000.08.30-Kubinski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.30-Kubinski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.30-Kubinski.pdf,2000.08.30,2000.08.30,4198,, +2000.08.27.R,Reported 27-Aug-2000,2000,Provoked,USA,Alaska,Prince William Sound,Conducting research,Bruce Wright,M,,Leg bitten by netted shark PROVOKED INCIDENT,N,,Salmon shark,B.A. Wright,2000.08.27.R-BruceWright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.27.R-BruceWright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.27.R-BruceWright.pdf,2000.08.27.R,2000.08.27.R,4197,, +2000.08.21,21-Aug-00,2000,Unprovoked,USA,North Carolina,"Bouges Bank, Emerald Isle, Carteret County",Swimming out to porpoises ,male,M,,"Severe gash to left hand above wrist, almost severing hand",N,,,"C. Creswell, GSAF; Wilmington Morning Star; Charlotte Observer, 8/23/2000, p.2B",2000.08.21-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.21-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.21-male.pdf,2000.08.21,2000.08.21,4196,, +2000.08.15,15-Aug-00,2000,Unprovoked,USA,Hawaii,"Kanaha Beach, Maui","Windsurfing, but sitting on his board",Jean Alain Goenvec,M,53,Left calf lacerated,N,11h50,"Tiger shark, 3.7 m to 4.5 m [12' to 14'9""] ",Maui.net,2000.08.15-Goenvec.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.15-Goenvec.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.15-Goenvec.pdf,2000.08.15,2000.08.15,4195,, +2000.08.13,13-Aug-00,2000,Unprovoked,USA,Florida,"South Jacksonville Beach, Duval County",Surfing / Wading,Jason Wuss,M,27,Minor lacerations to the dorsum of the right foot,N,16h30,juvenile shark,"Florida Times-Union, 8/14/2000; Orlando Sentinel, 8/15/2000, p.D3",2000.08.13-JasonWuss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.13-JasonWuss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.13-JasonWuss.pdf,2000.08.13,2000.08.13,4194,, +2000.08.12,12-Aug-00,2000,Unprovoked,USA,Florida,"St. Augustine, St. Johns County",Standing,Margaret White,F,44,Severely bitten on lower leg ,N,16h45,"Blacktip shark, 2.4 m to 3 m [8' to 10'] ",M. White,2000.08.12-MargaretWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.12-MargaretWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.12-MargaretWhite.pdf,2000.08.12,2000.08.12,4193,, +2000.08.11,11-Aug-00,2000,Invalid,USA,North Carolina,"Emerald Isle, Carteret County",Swimming ,Daniel Macatee,M,,Non-fatal,N,Possibly same incident as 2000.08.21,Shark involvement not confirmed, F. Schwartz,2000.08.11-Macatee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.11-Macatee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.11-Macatee.pdf,2000.08.11,2000.08.11,4192,, +2000.08.10,10-Aug-00,2000,Invalid,USA,Florida,Florida Keys,Attempting to illegally enter the USA,Juan & Alex Bueno,M,23 & 20,Shark involvement probably post-mortem,Y,,,Press clippings,2000.08.10-BuenoBrothers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.10-BuenoBrothers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.10-BuenoBrothers.pdf,2000.08.10,2000.08.10,4191,, +2000.08.00,Aug-00,2000,Unprovoked,TANZANIA,,"Coco Beach, Dar-es-Salaam",Swimming,,,,FATAL,Y,,Thought to involve a Zambesi shark,T. Thierry,2000.08.00-NV-Tanzania.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.00-NV-Tanzania.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.00-NV-Tanzania.pdf,2000.08.00,2000.08.00,4190,, +2000.07.25,25-Jul-00,2000,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",,male,M,5,Minor laceration on left leg,N,,,"M. Johnson, Daytona Beach News Journal",2000.07.25-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.25-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.25-male.pdf,2000.07.25,2000.07.25,4189,, +2000.07.22,22-Jul-00,2000,Unprovoked,USA,Florida,"Big Pine Key, Monroe County ",Snorkeling,Andrea Nani,F,45,Leg pinched,N,,"Nurse shark, 1.5 m [5']","E. Ritter, GSAF",2000.07.22-Nani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.22-Nani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.22-Nani.pdf,2000.07.22,2000.07.22,4188,, +2000.07.17,17-Jul-00,2000,Unprovoked,USA,North Carolina,"Oceanic Pier, Wrightsville Beach, New Hanover County",Surfing,Patrick G. Bruff,M,16,Foot lacerated,N,,,"C. Creswell, GSAF; Charlotte Observer, 7/20/2000, p.1A & 8/23/2000, p.2B; F. Schwartz, p.23",2000.07.17-Bruff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.17-Bruff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.17-Bruff.pdf,2000.07.17,2000.07.17,4187,, +2000.07.16.b,16-Jul-00,2000,Unprovoked,USA,North Carolina,"Holden Beach, Brunswick County",Surfing,Tim Poynter,M,14,Minor lacerations on foot,N,,1.8 m [6'] grey-colored shark,"C. Creswell, GSAF; Charlotte Observer, 7/20/2000, p.1A",2000.07.16.b-Poynter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.16.b-Poynter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.16.b-Poynter.pdf,2000.07.16.b,2000.07.16.b,4186,, +2000.07.16.a,16-Jul-00,2000,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon, East London",Surfing,Shannon Ainslie,M,15,Hand lacerated,N,,,"A. Gifford, GSAF; Orlando Sentinel, 7/19/2000, p.A11 ",2000.07.16.a-Ainslie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.16.a-Ainslie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.16.a-Ainslie.pdf,2000.07.16.a,2000.07.16.a,4185,, +2000.07.15.b,15-Jul-00,2000,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Cape Recife,Surfing,male,M,18,"No injury, flung off board",N,,,"A. Gifford, GSAF",2000.07.15.b-NV-CapeRecife.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.15.b-NV-CapeRecife.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.15.b-NV-CapeRecife.pdf,2000.07.15.b,2000.07.15.b,4184,, +2000.07.15.a,15-Jul-00,2000,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,South of Durban,Surfing,Ian Barnes,M,,No Injury,N,After Dusk,,"A. Gifford, GSAF",2000.07.15.a-Barnes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.15.a-Barnes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.15.a-Barnes.pdf,2000.07.15.a,2000.07.15.a,4183,, +2000.07.12,12-Jul-00,2000,Unprovoked, TONGA,Minerva Reef,Treated at Nuku-alofa,Scuba diving,Christian Eckoff,M,69,Left arm bitten,N,,"Grey reef shark, 2 m [6.75'] ",www.spearfishingsa.co.za,2000.07.12-Eckoff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.12-Eckoff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.12-Eckoff.pdf,2000.07.12,2000.07.12,4182,, +2000.07.10,10-Jul-00,2000,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Wading,M.A.,M,13,Minor laceration & 3 punctures to right foot,N,15h45,,"S. Petersohn, GSAF; M. I. Johnson; H. Frederick, Daytona Beach News Journal, 7/11/2000, p.1A",2000.07.10-MA.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.10-MA.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.10-MA.pdf,2000.07.10,2000.07.10,4181,, +2000.07.09,09-Jul-00,2000,Unprovoked,USA,Florida,"Neptune Avenue, Ormond Beach, Volusia County",Swimming ,Anthony Zent,M,41,Knee & calf lacerated,N,18h00,,"S. Petersohn, GSAF: H. Frederick, Daytona Beach News Journal, 7/11/2000, p.1A; Orlando Sentinel, 7/10/2000, p.C3; A. Givens, Orlando Sentinel, 7/11/2000, p.D1",2000.07.09-Zent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.09-Zent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.09-Zent.pdf,2000.07.09,2000.07.09,4180,, +2000.07.07,07-Jul-00,2000,Unprovoked,USA,Texas,"Mustang Island, Corpus Christi",Jumping,Robby Doolittle,M,5,Ankle & foot lacerated,N,,"Lemon shark, 2.1 m to 2.4 m [7' to 8'] ","K. Hastings, Dallas Morning News",2000.07.07-Doolittle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.07-Doolittle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.07-Doolittle.pdf,2000.07.07,2000.07.07,4179,, +2000.07.06,06-Jul-00,2000,Unprovoked,USA,North Carolina,"Pine Island, Corolla, Currituck County",Playing,Ashley Walker,F,12,Calf lacerated,N,16h30,"Tiger shark, 0.9 m to 1.5 m [3' to 5'] ?","Charlotte Observer, 7/20/2000, p.1A",2000.07.06-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.06-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.06-Walker.pdf,2000.07.06,2000.07.06,4178,, +2000.07.04.b,04-Jul-00,2000,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Wading,Niesha Peterson,F,20,Left inner thigh,N,18h00,,"S. Petersohn, GSAF",2000.07.04.b-Peterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.04.b-Peterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.04.b-Peterson.pdf,2000.07.04.b,2000.07.04.b,4177,, +2000.07.04.a,04-Jul-00,2000,Unprovoked,USA,Florida,"Artifical reef 3 miles off Manatee Beach, Manatee County","Spearfishing, holding mesh bag with speared fish",Beverly Comstock,F,55,Lower right calf lacerated,N,12h00,"Nurse shark, 1.2 m [4'] ","V. Mannix, Bradenton Herald, 8/3/2000, p.1 ",2000.07.04.a-Comstock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.04.a-Comstock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.04.a-Comstock.pdf,2000.07.04.a,2000.07.04.a,4176,, +2000.07.02.b,02-Jul-00,2000,Unprovoked,USA,Florida,"Smyrna Dunes Park, New Smyrna Beach, Volusia County",Wading,Amber Benningfield,F,13,Left calf & hand lacerated,N,17h00,0.9 m [3'] shark,"S. Petersohn, GSAF; M.Guisti, Daytona Beach News Journal, 7/3/2000, p.6C; Orlando Sentinel, 7/3/2000,p.C3",2000.07.02.b-Benningfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.02.b-Benningfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.02.b-Benningfield.pdf,2000.07.02.b,2000.07.02.b,4175,, +2000.07.02.a,02-Jul-00,2000,Unprovoked,USA,Florida,"Smyrna Dunes Park, New Smyrna Beach, Volusia County",Standing,Danielle Shidemantle,F,19,Left thigh lacerated,N,14h45,"0.9 m [3'] shark, probably a blacktip or spinner shark","S. Petersohn; M.Guisti, Daytona Beach News Journal, 7/3/2000, p.6C; Orlando Sentinel, 7/3/2000,p.C3",2000.07.02.a-Shidemantle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.02.a-Shidemantle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.02.a-Shidemantle.pdf,2000.07.02.a,2000.07.02.a,4174,, +2000.07.00,Jul-00,2000,Unprovoked,TANZANIA,,"Coco Beach, Dar-es-Salaam",Swimming,,,,FATAL,Y,,Thought to involve a Zambesi shark,T. Thierry,2000.07.00-NV-Tanzania.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.00-NV-Tanzania.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.00-NV-Tanzania.pdf,2000.07.00,2000.07.00,4173,, +2000.06.30,30-Jun-00,2000,Unprovoked,PAPUA NEW GUINEA,Madang Province,"Long Island near Madang, about 500 km (310 miles) north of the South Pacific nation's capital of Port Moresby",,male,M,,FATAL,Y,,,Squali.org,2000.06.30-NV-PNG.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.30-NV-PNG.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.30-NV-PNG.pdf,2000.06.30,2000.06.30,4172,, +2000.06.29,29-Jun-00,2000,Boat,NEW ZEALAND,North Island,"Papamoa Beach, Bay of Plenty",Fishing,"inflatable dinghy, occupants: Craig Ward & Gavin John Halse",M,,"No injury, shark bit the dinghy",N,,"Mako shark, 2 m [6.75'] ","R. D. Weeks, GSAF",2000.06.29-Halse-Ward.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.29-Halse-Ward.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.29-Halse-Ward.pdf,2000.06.29,2000.06.29,4171,, +2000.06.19,19-Jun-00,2000,Unprovoked,USA,Florida,"Seminole Avenue, Ormond Beach, Volusia County",Standing,Jacob Alegood,M,52,Right ankle lacerated,N,07h50,,"S. Petersohn, GSAF; M. I. Johnson, Daytona Beach News Journal; Orlando Sentinel, 6/20/2000, p.D3",2000.06.19-Alegood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.19-Alegood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.19-Alegood.pdf,2000.06.19,2000.06.19,4170,, +2000.06.13,13-Jun-00,2000,Boat,USA,Florida,"Pensacola Bay, Escambia County",Sailing,22' pleasure boat,,,"No injury to occupants, boat's rear platform bitten",N,14h30,"Bull shark, 2.4 m [8']","Mobile Register 6/14/2000; Charlotte Observer, 6/15/2000, p.8A",2000.06.13-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.13-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.13-boat.pdf,2000.06.13,2000.06.13,4169,, +2000.06.10,10-Jun-00,2000,Unprovoked,USA,Texas,"J.P. Luby Surf Park, Corpus Christi",Surfing,Kenny Alexander,M,17,Foot lacerated,N,16h00,"Blacktip shark, 1.2 m to 1.8 m [4' to 6'] ",GSAF,2000.06.10-Alexander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.10-Alexander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.10-Alexander.pdf,2000.06.10,2000.06.10,4168,, +2000.06.09.b,09-Jun-00,2000,Unprovoked,USA,Alabama,"Gulf Shores, Baldwin County",Swimming,Richard Whatley,M,55,Puncture wounds on right hip and arm,N,06h45,Bull shark?,"Orlando Sentinel, 6/10/2000, p.A20 & 6/11/2000, p.A22; T. Allen, pp.74-75Jun 10, 2000. pg. A.20",2000.06.09.b-Watley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.09.b-Watley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.09.b-Watley.pdf,2000.06.09.b,2000.06.09.b,4167,, +2000.06.09.a,09-Jun-00,2000,Unprovoked,USA,Alabama,"Gulf Shores, Baldwin County",Swimming ,Chuck Anderson,M,44,Right forearm severed surgically amputated above elbow,N,06h45,Bull shark,"Orlando Sentinel, 6/10/2000, p.A20 & 6/11/2000, p.A22; T. Allen, pp.74-75Jun 10, 2000. pg. A.20",2000.06.09.a-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.09.a-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.09.a-Anderson.pdf,2000.06.09.a,2000.06.09.a,4166,, +2000.06.02,02-Jun-00,2000,Unprovoked,USA,Florida,"27th Avenue, New Smyrna Beach, Volusia County",Snorkeling,Brian Alcorn,M,13,Right forearm lacerated,N,14h55,,"S. Petersohn, GSAF; D. Brannon; M.I. Johnson, Daytona Beach News Journal, 6/3/2000, p.1C",2000.06.02-Alcorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.02-Alcorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.02-Alcorn.pdf,2000.06.02,2000.06.02,4165,, +2000.06.00,Early Jun-2000,2000,Unprovoked,TANZANIA,,"Coco Beach in Oyster Bay, 7 km north of Dar-es-Salaam",Swimming,male,M,,"FATAL, legs severed ",Y,,Thought to involve a Zambesi shark,T. Thierry,2000.06.00-CocoBeach1.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.00-CocoBeach1.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.00-CocoBeach1.pdf,2000.06.00,2000.06.00,4164,, +2000.05.13,13-May-00,2000,Sea Disaster,NEW CALEDONIA,South Province,Mont Dore,"Air Disaster - Piper aircraft crashed into the sea, killing all on board",3 people,,,Sharks prevented recovery of remains,Y,,Tiger sharks & bull sharks (20 sharks in all),"W. Leander; Les Nouvelles Caledoniennes, 5/15/2000",2000.05.13-aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.13-aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.13-aircraft.pdf,2000.05.13,2000.05.13,4163,, +2000.05.09,09-May-00,2000,Invalid,AUSTRALIA,Victoria,"Koonya Beach, Melbourne",,Severed human foot washed ashore (in sneaker with 2 Velcro closures),,,Probable drowning,Y,,,"T. Peake, GSAF",2000.05.09-foot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.09-foot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.09-foot.pdf,2000.05.09,2000.05.09,4162,, +2000.05.07.b,07-May-00,2000,Unprovoked,PAPUA NEW GUINEA,Madang Province,"Long Island near Madang, about 500 km (310 miles) north of the South Pacific nation's capital of Port Moresby",Standing,Adam,M,9,Left leg & ankle bitten,N,,,Reuters; Papua New Guinea Post-Courier,2000.05.07.b-Adam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.07.b-Adam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.07.b-Adam.pdf,2000.05.07.b,2000.05.07.b,4161,, +2000.05.07.a,07-May-00,2000,Unprovoked,PAPUA NEW GUINEA,Madang Province,"Long Island near Madang, about 500 km (310 miles) north of the South Pacific nation's capital of Port Moresby",Diving,male,M,,FATAL,Y,,,Reuters; Papua New Guinea Post-Courier,2000.05.07.a-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.07.a-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.07.a-diver.pdf,2000.05.07.a,2000.05.07.a,4160,, +2000.04.14,14-Apr-00,2000,Unprovoked,USA,Florida,"On the south side of Ponce Inlet, Volusia County",Walking,Adam Metz,M,34,Left foot lacerated,N,11h57,,"Scott Petersohn, GSAF; M. Johnson; Daytona Beach News-Journal, 4/16/2000, p.3B",2000.04.14-Metz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.04.14-Metz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.04.14-Metz.pdf,2000.04.14,2000.04.14,4159,, +2000.04.09,09-Apr-00,2000,Unprovoked,USA,Florida,"Municipal Beach, Riviera Beach, Palm Beach County",Boogie boarding / wading,teen,M,,Puncture marks on right thigh,N,14h30,,"The Palm Beach Post, 4/11/2000, p.4B ",2000.04.09-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.04.09-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.04.09-boy.pdf,2000.04.09,2000.04.09,4158,, +2000.03.31,31-Mar-00,2000,Unprovoked,USA,Florida,Santa Rosa Sound Escambia County,Fishing,Dave Edwards,M,,"No Injury, bumped by shark",N,,,"R. Aiden Martin, GSAF; Pensacola News Journal & Orlando Sentinel, 5/9/2000, p.D.5",2000.03.31-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.31-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.31-Edwards.pdf,2000.03.31,2000.03.31,4157,, +2000.03.30,30-Mar-00,2000,Unprovoked,AUSTRALIA,Queensland,"Main Beach, Gold Coast",Swimming,Anrija (Andy) Rojcezic,M,26,Left calf bitten,N,14h00,2.5 m shark,"T. Peake, GSAF",2000.03.30-Rojcevic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.30-Rojcevic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.30-Rojcevic.pdf,2000.03.30,2000.03.30,4156,, +2000.03.26,26-Mar-00,2000,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Boogie boarding,Heather Van Olst,F,14,Right knee lacerated,N,11h15,1.8 m [6'] shark,"Stuart News, 3/28/2000; Jupiter Couier, 3/29/2000",2000.03.26-VanOlst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.26-VanOlst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.26-VanOlst.pdf,2000.03.26,2000.03.26,4155,, +2000.03.24,24-Mar-00,2000,Unprovoked,USA,Florida,"Floridana Beach, Brevard County",Surfing,Barry Pasonski,M,37,Left hand bitten,N,14h00,1.2 m [4'] shark,"Orlando Sentinel, 3/25/2000, p.D.3 ",2000.03.24-Pasonski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.24-Pasonski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.24-Pasonski.pdf,2000.03.24,2000.03.24,4154,, +2000.03.15,15-Mar-00,2000,Unprovoked,NEW CALEDONIA,North Province,Poum,Spearfishing,Gilbert Bui Van Minh,M,35,FATAL,Y,Morning,Tiger shark?,"Les Nouvelles Caledoniennes, 3/16/2000",2000.03.15-GilbertBui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.15-GilbertBui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.15-GilbertBui.pdf,2000.03.15,2000.03.15,4153,, +2000.03.14,14-Mar-00,2000,Unprovoked,AUSTRALIA,New South Wales,"McMasters Beach, Central Coast",Surfing,Craig Ruth,M,,No Injury,N,19h30,"Tiger shark, 4 m [13'] ?","Sydney Morning Herald, 3/16/2000 ",2000.03.14-Ruth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.14-Ruth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.14-Ruth.pdf,2000.03.14,2000.03.14,4152,, +2000.03.10,10-Mar-00,2000,Boat,AUSTRALIA,New South Wales,Parramatta River,Rowing,boat of Scot's College rowers,,,No Injury to occupants,N,P.M.,2 m to 2.5 m [6.75' to 8.25'] shark,"Sydney Morning Herald, ",2000.03.10-rowers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.10-rowers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.10-rowers.pdf,2000.03.10,2000.03.10,4151,, +2000.03.09,09-Mar-00,2000,Boat,AUSTRALIA,New South Wales,Parramatta River,Rowing,boat of Al Hattersly,,,No injury to occupants; oar bitten,N,,,Sydney Morning Herald,2000.03.09-Oar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.09-Oar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.09-Oar.pdf,2000.03.09,2000.03.09,4150,, +2000.03.03.R,Reported 03-Mar-2000,2000,Invalid,NEW ZEALAND,North Island,Between the Kakanui River and Campbell's Bay,Kayaking,Ricky Stringer,M,27,Reported as shark attack but probable drowning ,,,Shark involvement questionable,"R. D. Weeks, GSAF",2000.03.03.R-Stringer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.03.R-Stringer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.03.R-Stringer.pdf,2000.03.03.R,2000.03.03.R,4149,, +2000.03.02,02-Mar-00,2000,Unprovoked,AUSTRALIA,New South Wales,"Taronga Wharf, Athol Bay, Sydney Harbor",Swimming,Jack Dasey,M,,Survived,N,,,Sydney Morning Herald,2000.03.02-Dasey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.02-Dasey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.02-Dasey.pdf,2000.03.02,2000.03.02,4148,, +2000.03.00,Mar-00,2000,Unprovoked,USA,Louisiana,Midnight Lump (38 miles offshore),Spearfishing,Kurt Bickel,M,39,"No injury to diver, speargun damaged",N,16h00,"Shortfin mako shark, 3 m to 3.4 m [10' to 11'] ","R. Collier, GSAF",2000.03.00.a-Bickel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.00.a-Bickel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.00.a-Bickel.pdf,2000.03.00,2000.03.00,4147,, +2000.02.21,21-Feb-00,2000,Unprovoked,USA,Florida,"Riviera Beach, Palm Beach County",,male,M,27,Right calf bitten,N,Afternoon,,"The Palm Beach Post, 2/22/2000",2000.02.21-male-Riviera Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.21-male-Riviera Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.21-male-Riviera Beach.pdf,2000.02.21,2000.02.21,4146,, +2000.02.19,19-Feb-00,2000,Unprovoked,SOUTH AFRICA,Western Cape Province,Struis Bay,Body surfing,Dr. Weich,M,,Foot bitten,N,14h00,"White shark, 2.5 m ","C. Creswell, GSAF",2000.02.19-Weich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.19-Weich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.19-Weich.pdf,2000.02.19,2000.02.19,4145,, +2000.02.14,14-Feb-00,2000,Provoked,ENGLAND,Worcestershire,The Fountain Pub in Tenbury Wells,Feeding prawns to captive sharks,"Paul Smith, a chef",M,,Fingers bitten PROVOKED INCIDENT,N,,"Miami, a 60 cm blacktip shark and two 60 cm bamboo catsharks","The Sun (London), 2/17/2000",2000.02.14-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.14-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.14-Smith.pdf,2000.02.14,2000.02.14,4144,, +2000.02.03,03-Feb-00,2000,Unprovoked,NEW ZEALAND,South Island,Oreti Beach (reported as the 4th person bitten in NZ in 2000),Surfing,Michael Petas,M,12,"No injury, wetsuit punctured",N,,,"Waikato Times; Southland Times, 10/23/1999, p.1",2000.02.03-Petas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.03-Petas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.03-Petas.pdf,2000.02.03,2000.02.03,4143,, +2000.02.01,01-Feb-00,2000,Unprovoked,AUSTRALIA,South Australia,"Point Sinclair, Cactus Beach near Penong",Surfing,Anthony Hayes,M,26,Hand bitten,N,,3 m [10'] shark,"T. Peake, GSAF",2000.02.01-Hayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.01-Hayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.01-Hayes.pdf,2000.02.01,2000.02.01,4142,, +2000.01.28.R,Reported 28-Jan-2000,2000,Boat,REUNION,,Saint Pierre,Canoe with 3 men onboard sank,Boulabha� Ishmael,M,,FATAL,Y,,,B.L. du Vendre,2000.01.28.R-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.01.28.R-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.01.28.R-Reunion.pdf,2000.01.28.R,2000.01.28.R,4141,, +2000.01.05,05-Jan-00,2000,Unprovoked,THAILAND,Phang nga Province,Phang nga Island,Diving,Stephan Kahl,M,35,FATAL,Y,,,A. Xuereb,2000.01.05-Kahl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.01.05-Kahl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.01.05-Kahl.pdf,2000.01.05,2000.01.05,4140,, +2000.00.00,2000,2000,Boat,USA,Florida,"Boca Grande, Lee County",Fishing for tarpon,"boat: occupant, Terry Winters",M,,No injury to occupant; shark bit propeller,N,,Hammerhead shark,"B. Stout, News-Press, 7/2/2005",2000.00.00-BocaGrandeBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.00.00-BocaGrandeBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.00.00-BocaGrandeBoat.pdf,2000.00.00,2000.00.00,4139,, +1999.12.31.c,31-Dec-99,1999,Unprovoked,NEW ZEALAND,South Island,Oreti Beach,Surfing,Tim Wild,M,15,Six puncture wounds on leg,N,,Sevengill shark,"R.D. Weeks, GSAF; The Otago Daily Times, 1/2/2000",1999.12.31.c-Wildl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.31.c-Wildl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.31.c-Wildl.pdf,1999.12.31.c,1999.12.31.c,4138,, +1999.12.31.b,31-Dec-99,1999,Unprovoked,NEW ZEALAND,South Island,Oreti Beach,Swimming,Jennifer McDowell,F,13,Arm bitten,N,,Sevengill shark,"R.D. Weeks, GSAF; The Otago Daily Times, 1/2/2000; Waikato Times, 2/5/2000",1999.12.31.b-McDowell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.31.b-McDowell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.31.b-McDowell.pdf,1999.12.31.b,1999.12.31.b,4137,, +1999.12.31.a,31-Dec-99,1999,Unprovoked,NEW ZEALAND,South Island,Oreti Beach,Bathing,Genna Hayward ,F,12,A cut on her hand,N,,Sevengill shark,"R.D. Weeks, GSAF; The Otago Daily Times, 1/2/2000",1999.12.31.a-Hayward.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.31.a-Hayward.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.31.a-Hayward.pdf,1999.12.31.a,1999.12.31.a,4136,, +1999.12.26,26-Dec-99,1999,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Surfing,Alton Cicero da Silva,M,18,"Leg bitten, surgically amputated",N,,"Thought to involve a white, bull or tiger shark","L. A. Pereira & J. Morris; JC, 12/27/1999",1999.12.26-Cicero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.26-Cicero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.26-Cicero.pdf,1999.12.26,1999.12.26,4135,, +1999.12.14,14-Dec-99,1999,Invalid,USA,California,"Off Ventura, Anacapa & Santa Cruz Islands",Scuba diving,Joo Whan Hong,M,,"Presumed taken by a shark, but forensic evidence suggested otherwise.",Y,,Shark involvement not confirmed,R. Collier,1999.12.14-Hong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.14-Hong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.14-Hong.pdf,1999.12.14,1999.12.14,4134,, +1999.12.06,06-Dec-99,1999,Invalid,BRAZIL,Rio de Janeiro,"Rio de Janeiro, Guanabara Bay",Spearfishing,Frederico N�brega (aka Derico) ,M,39,Lateral right thigh bitten,N,09h30,"Thought to involve a 1.2 to 1.5 m tubar�o da gralha preta - a blacktip shark, C. limbatus?",L. A. Pereira ,1999.12.06-Brazilian-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.06-Brazilian-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.06-Brazilian-diver.pdf,1999.12.06,1999.12.06,4133,, +1999.12.02,02-Dec-99,1999,Unprovoked,USA,Florida,"Boynton Beach, Palm Beach County",Surfing,male,M,35,Right arm & fingers lacerated,N,12h30,,"The Palm Beach Post,12/3/1999 ",1999.12.02-BoyntonBeach-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.02-BoyntonBeach-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.02-BoyntonBeach-surfer.pdf,1999.12.02,1999.12.02,4132,, +1999.11.30,30-Nov-99,1999,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Surfing,Jeremiah Wyche,M,19,Lacerations to hand & wrist,N,15h30,,"A. Brenneka, Shark Attack Survivors; The Palm Beach Post,12/3/1999 ",1999.11.30-Wyche.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.30-Wyche.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.30-Wyche.pdf,1999.11.30,1999.11.30,4131,, +1999.11.23,23-Nov-99,1999,Unprovoked,USA,Hawaii,"Big Island off Kona Village Resort, North Kona",Swimming,Laurie Boyette,F,51,"Buttock bitten, hands lacerated",N,17h20,"Tiger shark, 1.8 m to 2.4 m [6' to 8'] ","G. Kubota, Star Bulletin",1999.11.23-Boyette.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.23-Boyette.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.23-Boyette.pdf,1999.11.23,1999.11.23,4130,, +1999.11.15,15-Nov-99,1999,Unprovoked,USA,California,"Waddell Reef, Santa Cruz County",Surfing (sitting on his board),Jack Wolf,M,,"No injury, board bitten",N,,White shark,"R. Collier, pp.166-167",1999.11.15-JackWolf_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.15-JackWolf_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.15-JackWolf_Collier.pdf,1999.11.15,1999.11.15,4129,, +1999.11.13,13-Nov-99,1999,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umtentweni,Surfing,Sean Grenfell,M,35,Lower legs lacerated,N,,"White shark, 3 m [10'] ","G. Cliff, NSB",1999.11.13-Grenfell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.13-Grenfell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.13-Grenfell.pdf,1999.11.13,1999.11.13,4128,, +1999.11.06,06-Nov-99,1999,Unprovoked,BRAZIL,Rio de Janeiro,"Rio de Janeiro, Guanabara Bay","Spearfishing, but swimming at surface",male,M,39,Upper right thigh bitten,N,10h30,1.3 to 1.6 m shark,O. Gadig,1999.11.06-Brazilian-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.06-Brazilian-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.06-Brazilian-diver.pdf,1999.11.06,1999.11.06,4127,, +1999.11.00.b,Nov-99,1999,Unprovoked,MARSHALL ISLANDS,Alinglaplap Atoll,Island J4H,Swimming,Dally Bayo,M,12,Lacerations to leg,N,,"Grey reef shark, 1.2 m [4'] ",www.svcherokee.com/pages/ Ailingilaplap.htm,1999.11.00.b-Bayo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.00.b-Bayo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.00.b-Bayo.pdf,1999.11.00.b,1999.11.00.b,4126,, +1999.11.00.a,Nov-99,1999,Unprovoked,MARSHALL ISLANDS,Alinglaplap Atoll,Island J4H,Swimming, Morson Daniel,M,12,Lacerations to buttocks,N,,"Grey reef shark, 1.2 m [4'] ",www.svcherokee.com/pages/ Ailingilaplap.htm,1999.11.00.a-Morson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.00.a-Morson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.00.a-Morson.pdf,1999.11.00.a,1999.11.00.a,4125,, +1999.10.30.b,30-Oct-99,1999,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Body boarding,Keven Dolsky,M,45,Right foot lacerated,N,17h30,,"S. Petersohn, GSAF",1999.10.30.b-Dolsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.30.b-Dolsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.30.b-Dolsky.pdf,1999.10.30.b,1999.10.30.b,4124,, +1999.10.30.a,30-Oct-99,1999,Unprovoked,USA,Florida,"Gulfstream Park beach, Palm Beach County",Body surfing,Troy Jesse,M,13,"Shark bit 8"" chunk from swim fin",N,15h00,,"C. Lambert, Palm Beach Post, 10/31/1999, p.3C",1999.10.30.a-TroyJesse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.30.a-TroyJesse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.30.a-TroyJesse.pdf,1999.10.30.a,1999.10.30.a,4123,, +1999.10.20,20-Oct-99,1999,Unprovoked,USA,Florida,"Pet Den, Satellite Beach, Brevard County",Surfing,David Hunt,M,,Lacerations to right hand & wrist,N,Noon,"Lemon shark, 2.7 m [9'] ",W. Schauman,1999.10.20-Hunt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.20-Hunt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.20-Hunt.pdf,1999.10.20,1999.10.20,4122,, +1999.10.01,01-Oct-99,1999,Unprovoked,USA,Hawaii,Old Kona Airport State Park,"Surfing, lying on surfboard",Jesse Spencer,M,16,Right arm bitten,N,18h30,"Tiger shark, 1.8 m to 2.4 m [6' to 8'] ",Star Bulletin,1999.10.01-Spencer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.01-Spencer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.01-Spencer.pdf,1999.10.01,1999.10.01,4121,, +1999.09.29,29-Sep-99,1999,Unprovoked,USA,Florida,"South side of Ponce de Leon Inlet, Volusia County",Wading to shore after surfing,Joel A. Borges,M,22,3 one-inch lacerations to sole of right foot,N,18h45,,"S. Petersohn, GSAF",1999.09.29-Borges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.29-Borges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.29-Borges.pdf,1999.09.29,1999.09.29,4120,, +1999.09.24,24-Sep-99,1999,Boat,ITALY,Adriatic Sea,San Benedetto,Fishing,Boat �Coca Cola�,,,No Injury to occupants,N,,Said to involve a 7 m [23'] white shark,"Orlando Sentinel, 9/28/1999, p.A12",1999.09.24-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.24-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.24-boat.pdf,1999.09.24,1999.09.24,4119,, +1999.09.16,Reported 16-Sep-1999,1999,Unprovoked,USA,Florida,"Cape Canaveral, Brevard County",Wading,Janet Ferguson,F,61,Thigh (posterior) bitten,N,,Unidentified,"Evening News (Edinburgh, Scotland)",1999.09.16-Ferguson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.16-Ferguson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.16-Ferguson.pdf,1999.09.16,1999.09.16,4118,, +1999.09.10,10-Sep-99,1999,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Wading,Taylor Warnock,F,10,Toes lacerated,N,Afternoon,,"C. Creswell, GSAF",1999.09.10-Warnock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.10-Warnock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.10-Warnock.pdf,1999.09.10,1999.09.10,4117,, +1999.09.05,05-Sep-99,1999,Unprovoked,USA,Florida,"Fort Pierce Inlet, St. Lucie County",Surfing,Mike Sprague,M,13,Right foot bitten,N,,1.5 m to 1.8 m [5' to 6'] shark,"Orlando Sentinel, 9/8/1999, p.D3; Allen, p.65",1999.09.05-Sprague.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.05-Sprague.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.05-Sprague.pdf,1999.09.05,1999.09.05,4116,, +1999.09.04.b,04-Sep-99,1999,Provoked,USA,Florida,"World Typhoon Lagoon, Disney Water Park, Orange County",Wading,Troy Patterson,M,7,Left knee nipped by captive shark PROVOKED INCIDENT,N,,0.9 m [3'] shark,"K. Morelli, Tampa Tribune, 9/6/1999",1999.09.04.b-Patterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.04.b-Patterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.04.b-Patterson.pdf,1999.09.04.b,1999.09.04.b,4115,, +1999.09.04.a,04-Sep-99,1999,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Wading with surfboard,Tony Crabtree,M,39,Right foot bitten,N,19h00,,"S. Petersohn, GSAF; Daytona Beach News Journal, 9/5/1999, p.7B ",1999.09.04.a-Crabtree.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.04.a-Crabtree.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.04.a-Crabtree.pdf,1999.09.04.a,1999.09.04.a,4114,, +1999.08.26,26-Aug-99,1999,Unprovoked,USA,Florida,"Bethune Beach, south of New Smyrna Beach, Volusia County",Surfing,Chris Ayers,M,28,3-inch laceration to right foot,N,14h30,"""a small shark""","S. Petersohn, GSAF; Orlando Sentinel, 8/27/1999, p.D3; Miami Herald, 8/28/1999",1999.08.26-Ayers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.26-Ayers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.26-Ayers.pdf,1999.08.26,1999.08.26,4113,, +1999.08.24,24-Aug-99,1999,Unprovoked,USA,North Carolina,"Fort Fisher, New Hanover County",Surfing,male,M,,Foot injured,N,,,"Wilmington Star, 8/25/1999, C. Creswell, GSAF",1999.08.24-FortFisher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.24-FortFisher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.24-FortFisher.pdf,1999.08.24,1999.08.24,4112,, +1999.08.23,23-Aug-99,1999,Unprovoked,MARSHALL ISLANDS,Ralik Chain,Kwajalein Atoll,Fishing,Jeffery Joel,M,23,Lacerations to left leg,N,Morning,7' shark,"Kwajalein Hourglass, 8/27/1999",1999.08.23-Joel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.23-Joel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.23-Joel.pdf,1999.08.23,1999.08.23,4111,, +1999.08.21,21-Aug-99,1999,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,G.C.,M,17,Small lacerations to right foot,N,18h40,,"S. Petersohn, GSAF",1999.08.21-GC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.21-GC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.21-GC.pdf,1999.08.21,1999.08.21,4110,, +1999.08.16,16-Aug-99,1999,Unprovoked,USA,South Carolina,"Grand Strand, Myrtle Beach, Horry County",Lying prone in 2' of water,Christopher (Will) Handley,M,10,"Ear lacerated, cuts on scalp, back, arm & shoulder ",N,17h40,1.8 m [6'] shark,"Charlotte Observer, 8/18/1999, p.4C; J. Kennedy, ProQuest; Sun News (Myrtle Beach), 8/19/1999; Richmond Times Dispatch, 8/19/1999",1999.08.16-Handley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.16-Handley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.16-Handley.pdf,1999.08.16,1999.08.16,4109,, +1999.08.05.a,05-Aug-99,1999,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Body surfing,Charles Adkins,M,62,Right ankle & heel lacerated,N,11h25,4' to 5' shark,"S. Petersohn, Orlando Sentinel, 8/6/1999; M.I. Johnson, Daytona Beach News Journal, 8/6/1999, p.3C ",1999.08.05-Adkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.05-Adkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.05-Adkins.pdf,1999.08.05.a,1999.08.05.a,4108,, +1999.08.05,05-Aug-99,1999,Unprovoked,BAHAMAS,Abaco Islands,Grand Cay,Spearfishing & holding catch,Kevin King,M,35,Right arm bitten,N,17h00,2.7 m [9'] bull shark or Caribbean reef shark,"South Florida Sun-Sentinel, 8/7/1999, p.1A; Palm Beach Post, 8/7/1999",1999.08.05-KevinKing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.05-KevinKing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.05-KevinKing.pdf,1999.08.05,1999.08.05,4107,, +1999.07.29,29-Jul-99,1999,Unprovoked,SOUTH AFRICA,Western Cape Province,Kogebaai,Surfing,Sergio Capri,M,42,Right thigh bitten,N,14h00,"White shark, 3 m to 5 m [10' to 16.5'] ","A. Gifford, GSAF",1999.07.29-Capri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.29-Capri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.29-Capri.pdf,1999.07.29,1999.07.29,4106,, +1999.07.26,26-Jul-99,1999,Unprovoked,USA,Florida,"Two miles off Key Colony Beach, Monroe County",Swimming with dolphins,Michael Knowles,M,43,Ankle bitten,N,18h25,"Bull shark, 2.1 m [7']","M. Lynch; Miami Herald, 7/28/1999 ",1999.07.26-Knowles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.26-Knowles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.26-Knowles.pdf,1999.07.26,1999.07.26,4105,, +1999.07.21,21-Jul-99,1999,Unprovoked,USA,Hawaii,Honoli'i in Hilo (west side of Big Island),Surfing,Griffith Yamaguchi,M,43,Right thigh & buttock bitten,N,10h28,"Tiger shark, 1.8 m to 2.4 m [6' to 8'] ",Star Bulletin,1999.07.21-Yamaguchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.21-Yamaguchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.21-Yamaguchi.pdf,1999.07.21,1999.07.21,4104,, +1999.07.15,15-Jul-99,1999,Unprovoked,SOUTH AFRICA,Western Cape Province,Buffels Bay (near Knysna),Boogie boarding,Hercules Pretorius,M,14,FATAL,Y,11h15,White shark,"A. Gifford, GSAF",1999.07.15-Pretorius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.15-Pretorius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.15-Pretorius.pdf,1999.07.15,1999.07.15,4103,, +1999.07.06,06-Jul-99,1999,Unprovoked,USA,South Carolina,Charleston,,Shannon Morsy,M,,Five cuts on his heel,N,,,Channel 9 News Charlotte,1999.07.06-NV-Morsy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.06-NV-Morsy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.06-NV-Morsy.pdf,1999.07.06,1999.07.06,4102,, +1999.07.04,04-Jul-99,1999,Unprovoked,USA,Florida,"Pensacola Beach, Escambia County",Wading in school of baitfish,Lisa Alexander,F,30,Lacerations knee to ankle,N,Afternoon,"Blacktip shark, 1.8 m [6'] ","Pensacola News Journal, 7/5/1999 ",1999.07.04-LisaAlexander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.04-LisaAlexander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.04-LisaAlexander.pdf,1999.07.04,1999.07.04,4101,, +1999.07.03,03-Jul-99,1999,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Cintsa East, East London",Surfing,Colin Grey,M,29,Leg & board bitten,N,Morning,"White shark, 4 m [13'] ","A. Gifford, GSAF",1999.07.03-Grey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.03-Grey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.03-Grey.pdf,1999.07.03,1999.07.03,4100,, +1999.06.19,19-Jun-99,1999,Unprovoked,USA,Florida,"11 miles off Dog Island in the Gulf of Mexico, Franklin County",Adrift in a life jacket,Robert Bass,M,20,9-inch gash in left foot ,N,,1.2 m [4'] shark,"Orlando Sentinel, 6/21/1999, p.B.3",1999.06.19-Bass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.19-Bass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.19-Bass.pdf,1999.06.19,1999.06.19,4099,, +1999.06.17,17-Jun-99,1999,Unprovoked,USA,Florida,"South of Ponce Inlet, Volusia County",Surfing,Lucas Bryant,M,21,Right hand and wrist lacerated,N,09h15,3' to 4' shark,"S. Petersohn, GSAF",1999.06.17-Bryant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.17-Bryant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.17-Bryant.pdf,1999.06.17,1999.06.17,4098,, +1999.06.12,12-Jun-99,1999,Unprovoked,USA,Florida,"Atlantiic Beach, Duval County",Swimming,male,M,41,8-inch bite on calf,N,13h15,,"Florida Times-Union, 6/13/1999",1999.06.12-AtlanticBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.12-AtlanticBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.12-AtlanticBeach.pdf,1999.06.12,1999.06.12,4097,, +1999.06.09,09-Jun-99,1999,Unprovoked,USA,Florida,"Atlantic Dunes Park, Delray Beach, Palm Beach County",Splashing / wading,Ryan Welborn,M,5,Knee lacerated,N,16h00,Blacktip or spinner shark,"Palm Beach Post, 6/10/1999",1999.06.09-Wellborn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.09-Wellborn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.09-Wellborn.pdf,1999.06.09,1999.06.09,4096,, +1999.05.29,29-May-99,1999,Unprovoked,AUSTRALIA,South Australia,"Hardwicke Bay, Yorke Peninsula",Windsurfing,Tony Donoghue,M,22,"FATAL, body not recovered",Y,14h30,Thought to involve a white shark,J. Morris,1999.05.29-Donoghue.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.05.29-Donoghue.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.05.29-Donoghue.pdf,1999.05.29,1999.05.29,4095,, +1999.05.01,01-May-99,1999,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Surfing,Charles Heitor Barbosa Pires,M,21,Leg & hands bitten,N,Afternoon,"Tiger shark, 2.5 m [8.25']","P.M. Lopez, GSAF; O. Gadig; JC, 5/3/1999",1999.05.01-Pires.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.05.01-Pires.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.05.01-Pires.pdf,1999.05.01,1999.05.01,4094,, +1999.04.22,22-Apr-99,1999,Unprovoked,MAURITIUS,Grand Baie,Pointe aux Canonniers,Swimming,Sylvia Lanner,F,41,Thigh bitten,N,06h00,"Grey reef shark, 1.5 m ",,1999.04.22-Lanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.04.22-Lanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.04.22-Lanner.pdf,1999.04.22,1999.04.22,4093,, +1999.04.11,11-Apr-99,1999,Unprovoked,REUNION,L' Etang Sal�-les-Bains,Roche-aux-Oiseaux,Swimming after being swept into sea by a large wave,Guy Oudin,M,52,FATAL,Y,10h30,3 bull sharks,G. Van Grevelynghe,1999.04.11-Oudin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.04.11-Oudin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.04.11-Oudin.pdf,1999.04.11,1999.04.11,4092,, +1999.04.01,01-Apr-99,1999,Unprovoked,USA,Florida,"Hobe Sound Beach, Palm Beach County",Surfing,male,M,14,Ankle bitten,N,,,"Palm Beach Post, 4/1/1999",1999.04.01-HobeSoundSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.04.01-HobeSoundSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.04.01-HobeSoundSurfer.pdf,1999.04.01,1999.04.01,4091,, +1999.03.18.R,Reported 18-Mar-1999 ,1999,Unprovoked,NEW ZEALAND,South Island,Codfish Island (Whenua Hau) west of Stewart Island,Spearfishing & diving for paua,Zane Smith,M,,No injury,N,,"Sevengill shark, 2.4 m [8'] ","Southland Times, 3/18/1999",1999.03.18.R-ZaneSmith-X.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.18.R-ZaneSmith-X.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.18.R-ZaneSmith-X.pdf,1999.03.18.R,1999.03.18.R,4090,, +1999.03.18.b,18-Mar-99,1999,Provoked,BRAZIL,Rio Grande de Norte,Atol das Rochas,Scientific research (Dr. Sonny Gruber's student),Dan Cartamil,M,,Grabbed small shark & it bit him PROVOKED INCIDENT,N,,,"internet, expedition ",1999.03.18.b-Cartamil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.18.b-Cartamil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.18.b-Cartamil.pdf,1999.03.18.b,1999.03.18.b,4089,, +1999.03.18.a,18-Mar-99,1999,Unprovoked,USA,Hawaii,"Olowalu side of Lahina, Maui ","Swimming, towing a kayak",Navid Davoudabai,F,29,"FATAL, arm bitten ",Y,20h30,,"L. Fujimoto; G. Kubota, Star Bulletin",1999.03.18.a-Davoodabai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.18.a-Davoodabai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.18.a-Davoodabai.pdf,1999.03.18.a,1999.03.18.a,4088,, +1999.03.14.b,14-Mar-99,1999,Unprovoked,NEW CALEDONIA,Loyalty Islands,Ouvea,Spearfishing,Blaise Wouanena,M,,Multiple injuries,N,Morning,200 to 300 kg shark,"W. Leander; Les Nouvelles Caledoniennes, 3/15/1999",1999.03.14.b-Wouanena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.14.b-Wouanena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.14.b-Wouanena.pdf,1999.03.14.b,1999.03.14.b,4087,, +1999.03.14.a,14-Mar-99,1999,Provoked,NEW ZEALAND,,,Fishing,Mr. Spain,M,28,Right thigh bitten PROVOKED INCIDENT,N,,"Mako shark, 1.3 m gaffed ","C. Creswell, GSAF",1999.03.14.a-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.14.a-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.14.a-Spain.pdf,1999.03.14.a,1999.03.14.a,4086,, +1999.03.08,08-Mar-99,1999,Unprovoked,USA,Hawaii,"Kealia Beach, Kaua'i",Body surfing or body boarding,Jonathan Allen,M,18,Bruised right leg,N,,,G. Balazs,1999.03.08-NV-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.08-NV-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.08-NV-Allen.pdf,1999.03.08,1999.03.08,4085,, +1999.03.05,05-Mar-99,1999,Unprovoked,USA,Hawaii,"Quarter mile offshore in Kaanapali, West Maui",Swimming near pod of whales,Robyne Knutson,F,29,Tissue removed knee to thigh,N,10h45,3.7 m to 4.6 m [12' to 15'] shark seen in the vicinity,"S. Waterman, GSAF; L. Fujimoto; G. Kubota, Star Bulletin",1999.03.05-Knutson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.05-Knutson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.05-Knutson.pdf,1999.03.05,1999.03.05,4084,, +1999.02.26.R,26-Feb-99,1999,Boat,USA,North Carolina,Frying Pan Shoals,Cruising," 28' sport fishing boat, Bird Dog",,,"No injury to occupants, boat sank after colliding with shark",N,,Basking shark,"Wilmington Star, 2/26/1999, C. Creswell, GSAF",1999.02.26.R-BirdDog.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.02.26.R-BirdDog.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.02.26.R-BirdDog.pdf,1999.02.26.R,1999.02.26.R,4083,, +1999.02.23,23-Feb-99,1999,Unprovoked,AUSTRALIA,New South Wales,Scotts Head,Surfing,male,M,35,"Left hand & forearm bitten, board bitten",N,Evening,Bronze whaler or tiger shark,"Daily Telegraph, 2/24/1999, p.3; Orlando Sentinel, 2/24/1999, p.A10",1999.02.23-ScottsHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.02.23-ScottsHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.02.23-ScottsHead.pdf,1999.02.23,1999.02.23,4082,, +1999.02.03,03-Feb-99,1999,Unprovoked,USA,Florida,"Hobe Sound, Martin County",Surfing,Kenny Burns,M,25,Left hand bitten,N,15h30,Spinner shark,"The Palm Beach Post, 2/5/1999; St. Petersburg Times, 2/6/1999",1999.02.03-KennyBurns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.02.03-KennyBurns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.02.03-KennyBurns.pdf,1999.02.03,1999.02.03,4081,, +1999.01.29,29-Jan-99,1999,Unprovoked,MAURITIUS,,Belle-Mare,Spearfishing,Rajkumar Mansaram,M,47,Legs & torso injured,N,,Bull shark,J.M. Langlois,1999.01.29-Mauritius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.29-Mauritius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.29-Mauritius.pdf,1999.01.29,1999.01.29,4080,, +1999.01.13, 13-Jan-1999,1999,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Bonza Beach,Paddle Skiing,Evan Ridge,M,,"No Injury, ski bitten",N,,"White shark, 4 m [13'] ",The Citizen,1999.01.13-Ridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.13-Ridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.13-Ridge.pdf,1999.01.13,1999.01.13,4079,, +1999.01.07,01-Jan-99,1999,Boat,NEW ZEALAND,North Island,"Papamoa, near Tauranga, Bay of Plenty",Inflatable boat,,,,No injury to occupant: boat lost,N,,,"The Dominion, 1/8/1999, p.3I",1999.01.07-NZ-inflatable.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.07-NZ-inflatable.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.07-NZ-inflatable.pdf,1999.01.07,1999.01.07,4078,, +1999.01.03.R,Reported 03-Jan-1999,1999,Invalid,AUSTRALIA,Northern Territory,Gulf of Carpenteria,Fishing,Donna Turcotte,F,37,"Cut foot, but injury caused by fishing line, not the shark",N,,Shark involvement not confirmed,"Sunday Mail, 3/1/1999",1999.01.03.R-Turcotte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.03.R-Turcotte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.03.R-Turcotte.pdf,1999.01.03.R,1999.01.03.R,4077,, +1999.01.03,03-Jan-99,1999,Unprovoked,REUNION,Saint-Leu,Pointe au Sel,Spearfishing,,,,FATAL,Y,,Bull shark,G. Van Grevelynghe,1999.01.03-ReunionIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.03-ReunionIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.03-ReunionIsland.pdf,1999.01.03,1999.01.03,4076,, +1999.00.00.b,1999,1999,Unprovoked,SOUTH AFRICA,Western Cape Province,"Hospital Rock, Dyers Island",Spearfishing,Healy Lootz,M,30,Heel lacerated,N,12h00,"White shark, 4.6 m [15'] ",V. Van der Merwe,1999.00.00.b-Lootz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.00.00.b-Lootz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.00.00.b-Lootz.pdf,1999.00.00.b,1999.00.00.b,4075,, +1999.00.00.a,1999,1999,Invalid,USA,Virginia,"Sandridge Beach, Virginia Beach, Princess Anne County",Body surfing,male,M,,Abrasions,N,,Shark involvement not confirmed,,1999.00.00.a-NV-SandridgeBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.00.00.a-NV-SandridgeBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.00.00.a-NV-SandridgeBeach.pdf,1999.00.00.a,1999.00.00.a,4074,, +1998.12.24,24-Dec-98,1998,Provoked,USA,Florida,"Ormond Beach, Volusia County",Surfing,Andy Thompson,M,19,Left foot bitten after he accidentally stepped on the shark PROVOKED INCIDENT ,N,08h30,,"S. Petersohn, GSAF; Daytona Beach News Journal, 1/1/1999, p.6C; 9",1998.12.24-AndyThompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.24-AndyThompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.24-AndyThompson.pdf,1998.12.24,1998.12.24,4073,, +1998.12.22,22-Dec-98,1998,Unprovoked,AUSTRALIA,South Australia,Middleton Beach,Standing,Megan O'Leary,F,21,2 puncture wounds in left leg,N,15h30,,"The Advertiser, 12/23/1998, p.3; Daily Telegraph, 12/23/1998, p.17",1998.12.22-O'Leary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.22-O'Leary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.22-O'Leary.pdf,1998.12.22,1998.12.22,4072,, +1998.12.20.R,Reported 20-Dec-1998,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"King's Beach, Port Elizabeth",Surfing,Greg Harrison,M,18,Leg bitten,N,17h00,Possibly a white shark,"G. Cliff, NSB; Sunday Times, 12/20/1998 ",1998.12.20.R-Harrison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.20.R-Harrison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.20.R-Harrison.pdf,1998.12.20.R,1998.12.20.R,4071,, +1998.12.18,18-Dec-98,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kei River Mouth,Splashing,Douw van der Merwe,M,14,Right leg bitten,N,,,"Sunday Times, 12/20/1998",1998.12.18-vanderMerwe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.18-vanderMerwe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.18-vanderMerwe.pdf,1998.12.18,1998.12.18,4070,, +1998.12.15,15-Dec-98,1998,Unprovoked,AUSTRALIA,South Australia,Middleton Beach,Surfing,,F,21,Leg injured,N,Afternoon,,"Animal Attack Files, 12/19/1998",1998.12.15-female surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.15-female surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.15-female surfer.pdf,1998.12.15,1998.12.15,4069,, +1998.11.21,21-Nov-98,1998,Unprovoked,USA,Florida,"Ocean Beach, Jaycee Park, Vero Beach, Indian River County",Swimming,James Willie Tellasmon,M,9,FATAL,Y,14h00,Tiger shark,E. Ritter. GSAF,1998.11.21-Tellasmon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.21-Tellasmon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.21-Tellasmon.pdf,1998.11.21,1998.11.21,4068,, +1998.11.14,14-Nov-98,1998,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Larry Foor,M,14,Right foot bitten,N,08h45,1.2 m [4'] shark,"S. Petersohn, GSAF; D. Catron, Orlando Sentinel, 11/19/1998, p.D1; Daytona Beach News Journal, 11/15/1998, p.4C",1998.11.14-LarryFoor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.14-LarryFoor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.14-LarryFoor.pdf,1998.11.14,1998.11.14,4067,, +1998.11.11,11-Nov-98,1998,Unprovoked,USA,Florida,"South Beach Park, Indian River County",Walking,male,M,13,Survived,N,17h00,"A ""small shark""",press report,1998.11.11-NV-IndianRiverCounty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.11-NV-IndianRiverCounty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.11-NV-IndianRiverCounty.pdf,1998.11.11,1998.11.11,4066,, +1998.11.05,05-Nov-98,1998,Unprovoked,USA,Oregon,Winchester Bay,Surfing,Dale Inskeep,M,32,No injury,N,,"White shark, 5 m to 6 m [16.5' to 20'] ","R. Collier, pp.165-166",1998.11.05-Inskeep_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.05-Inskeep_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.05-Inskeep_Collier.pdf,1998.11.05,1998.11.05,4065,, +1998.11.02.b,02-Nov-98,1998,Provoked,JAPAN,Southern Japan,460 miles off Iwakuni,Fishing for tuna,Tadashi Kodama,M,52,PROVOKED INCIDENT Knee bitten by shark trapped in net,N,,6' shark,"Deseret News, 11/3/1998, p.A7",1998.11.02.b-Kodama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.02.b-Kodama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.02.b-Kodama.pdf,1998.11.02.b,1998.11.02.b,4064,, +1998.11.02.a,02-Nov-98,1998,Unprovoked,BRAZIL,Pernambuco," Boa Viagem Beach, Recife",Surfing,Claudio Roberto Florencio de Freitas,M,22,"FATAL, left forearm severed ",Y,Late afternoon,Though to involve a white shark,O. Gadig & A. Xureb,1998.11.02.a-deFrietas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.02.a-deFrietas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.02.a-deFrietas.pdf,1998.11.02.a,1998.11.02.a,4063,, +1998.10.24,24-Oct-98,1998,Unprovoked,USA,Florida,"Jupiter Beach, Palm Beach County",Swimming,Jessica Stephens,F,17,Minor lacerations on right ankle & foot,N,Afternoon,,"Sun Sentinel.�Fort Lauderdale, 10/25/1998, p.3B",1998.10.24-Stephens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.24-Stephens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.24-Stephens.pdf,1998.10.24,1998.10.24,4062,, +1998.10.18,18-Oct-98,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Glengariff,Surfing,Liam Victor,M,30,"No injury, surfboard bitten",N,,,"East London Daily Dispatch, 10/20/1998",1998.10.18-Victor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.18-Victor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.18-Victor.pdf,1998.10.18,1998.10.18,4061,, +1998.10.10,10-Oct-98,1998,Unprovoked,USA,Florida,"Sebastian Inlet, Indian River County",Surfing,Jarod Ruszkowski ,M,,Right hand bitten,N,,,"Sarasota Herald-Tribune, 10/13/1998 ",1998.10.10-Ruszkowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.10-Ruszkowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.10-Ruszkowski.pdf,1998.10.10,1998.10.10,4060,, +1998.10.04,04-Oct-98,1998,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Surfing,J�lio C�sar de Barros Correia,M,17,Right leg bitten,N,,,"Folha de S.Paul, 6/10/1998",1998.10.04-JulioCesarDeBarrosCorreia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.04-JulioCesarDeBarrosCorreia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.04-JulioCesarDeBarrosCorreia.pdf,1998.10.04,1998.10.04,4059,, +1998.10.01.b,01-Oct-98,1998,Unprovoked,REUNION,Saint-Beno�t,,Diving,,,,Survived,N,,,G. Van Grevelynghe,1998.10.01.b-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.01.b-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.01.b-Reunion.pdf,1998.10.01.b,1998.10.01.b,4058,, +1998.10.01.a,01-Oct-98,1998,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",,Mike Duncan,M,28,2 one-inch lacerations in left foot,N,14h30,,S. Petersohn,1998.10.01.a-Duncan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.01.a-Duncan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.01.a-Duncan.pdf,1998.10.01.a,1998.10.01.a,4057,, +1998.09.27,27-Sep-98,1998,Unprovoked,USA,Florida,"The Rocks, Hutchinson Island, Martin County",Surfing,Kai Haire,M,6,Puncture wounds to leg,N,,,"The Stuart (FL) News, 9/29/1998",1998.09.27-KaiHaire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.27-KaiHaire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.27-KaiHaire.pdf,1998.09.27,1998.09.27,4056,, +1998.09.22,22-Sep-98,1998,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jade Blackstock,M,18,Left arm lacerated,N,15h35,,"S. Petersohn, GSAF",1998.09.22-Blackstock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.22-Blackstock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.22-Blackstock.pdf,1998.09.22,1998.09.22,4055,, +1998.09.16.R,Reported 16-Sep-1998,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kowie River,Fishing / washing bait off hands,Grant Rielly,M,,Laceration to right foot,N,Dusk,,"Daily Dispatch, 9/16/1998",1998.09.16.R-Rielly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.16.R-Rielly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.16.R-Rielly.pdf,1998.09.16.R,1998.09.16.R,4054,, +1998.09.14,14-Sep-98,1998,Unprovoked,USA,Florida,"Stuart Beach, Martin County",Surfing,Danny Hoopes,M,28,Right foot bitten,N,,1.8 m [6'] shark,"P. Sheth, Fort Pierce Tribune, 9/15/1998",1998.09.14-DannyHoopes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.14-DannyHoopes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.14-DannyHoopes.pdf,1998.09.14,1998.09.14,4053,, +1998.09.00,Sep-98,1998,Provoked,SENEGAL,Cap Vert Peninsula,Yoff Island,Spearfishing,A.D,M,25,Bitten by harpooned shark PROVOKED INCIDENT,N,,1.5 m shark,S. Trape,1998.09.00-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.00-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.00-Senegal.pdf,1998.09.00,1998.09.00,4052,, +1998.08.30,30-Aug-98,1998,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,J. Howington,M,26,Toes lacerated,N,20h15,3' to 4' shark,"S. Petersohn, GSAF",1998.08.30-Howington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.30-Howington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.30-Howington.pdf,1998.08.30,1998.08.30,4051,, +1998.08.27,27-Aug-98,1998,Invalid,ITALY,Marches region,12 miles off Senigallia (Adriatic Sea),Fishing,30' cabin cruiser owned by Stefano Catalani,,N/A,"No injury; no attack, shark ate the bait hanging over the side of the boat",N,,,MEDSAF,1998.08.27-Catalani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.27-Catalani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.27-Catalani.pdf,1998.08.27,1998.08.27,4050,, +1998.08.26,26-Aug-98,1998,Unprovoked,USA,California,"Stinson Beach, Marin County",Boogie boarding,Jonathan Kathrein,M,16,"Thigh, buttocks & lower back lacerated",N,14h16,"White shark, 5 m to 6 m [16.5' to 20'] ","R. Collier, pp.163-164 ",1998.08.26-Kathrein_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.26-Kathrein_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.26-Kathrein_Collier.pdf,1998.08.26,1998.08.26,4049,, +1998.08.23.R,Reported 23-Aug-1998,1998,Unprovoked,USA,Virginia,Virginia Beach,Spearfishing,male,M,,Lacerations to left hand,N,,"Dusky shark, 12' ",Dan,1998.08.23.R-VirginiaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.23.R-VirginiaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.23.R-VirginiaBeach.pdf,1998.08.23.R,1998.08.23.R,4048,, +1998.08.15,15-Aug-98,1998,Unprovoked,BAHAMAS,Berry Islands,Ambergris Cay,Spearfishing,Kevin Paffrath,M,28,Calf bitten,N,16h30,"Caribbean reef shark, 1.2 m to 1.5 m [4' to 5'] ","E. Ritter, GSAF",1998.08.15-Paffrath.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.15-Paffrath.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.15-Paffrath.pdf,1998.08.15,1998.08.15,4047,, +1998.08.13,13-Aug-98,1998,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Body-boarding,Robert Parcus,M,11,Left calf injured,N,,4.5' to 5' shark,"A. Buttigieg, GSAF",1998.08.13-Parcus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.13-Parcus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.13-Parcus.pdf,1998.08.13,1998.08.13,4046,, +1998.08.12,12-Aug-98,1998,Provoked,SOUTH AFRICA,Transvaal,"National Zoological Gardens Aquarium, Pretoria",Moving a shark in a net ,Kobus Goosen,M,,Lacerations to right shin PROVOKED INCIDENT,N,,"Sandtiger shark, 2 m, male ","Daily Dispatch, 8/13/1998",1998.08.12-Goosen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.12-Goosen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.12-Goosen.pdf,1998.08.12,1998.08.12,4045,, +1998.08.01.b,01-Aug-98,1998,Unprovoked,SOUTH AFRICA,Western Cape Province,"Buffalo Bay, near Knysna",Surfing (or body boarding),Ross Taylor,M,19,Legs bitten,N,,"White shark, 4 m [13'] ","Daily Record (Glasgow, Scotland), 8/3/1998",1998.08.01.b-RossTaylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.01.b-RossTaylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.01.b-RossTaylor.pdf,1998.08.01.b,1998.08.01.b,4044,, +1998.08.01.a,01-Aug-98,1998,Unprovoked,SOUTH AFRICA,Western Cape Province,Pringle Bay,Spearfishing,Christian Lombard,M,24,Leg bitten,N,13h00,"White shark, 4.9 m [16']","Daily Record (Glasgow, Scotland), 8/3/1998",1998.08.01.a-Lombard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.01.a-Lombard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.01.a-Lombard.pdf,1998.08.01.a,1998.08.01.a,4043,, +1998.07.26,26-Jul-98,1998,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Surfing,Rodrigo Rocha Menezes,M,,Lacerations to left foot,N,17h30,,JCOnline,1998.07.26-Menezes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.26-Menezes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.26-Menezes.pdf,1998.07.26,1998.07.26,4042,, +1998.07.25,25-Jul-98,1998,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Michael Rinto,M,13,Calf bitten,N,P.M.,,"S. Petersohn, GSAF; Orlando Sentinel, 7/24/1998 & 7/27/1998 ",1998.07.25-Rinto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.25-Rinto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.25-Rinto.pdf,1998.07.25,1998.07.25,4041,, +1998.07.06.b,06-Jul-98,1998,Unprovoked,SOUTH AFRICA,Western Cape Province,Plettenberg Bay,Wading,Clark Thomas (father / rescuer),M,47,Right leg bitten,N,,"Raggedtooth shark, 1.2 m [4'] ","A. Gifford, GSAF",1998.07.06.b-ClarkThomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.06.b-ClarkThomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.06.b-ClarkThomas.pdf,1998.07.06.b,1998.07.06.b,4040,, +1998.07.11,11-Jul-98,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,St. Francis Bay,Surfing,Darren James,M,16,Knee bitten,N,Morning,5' to 6' shark,"East London Daily Dispatch, 7/13/1998",1998.07.11-DarrenJames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.11-DarrenJames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.11-DarrenJames.pdf,1998.07.11,1998.07.11,4039,, +1998.07.06.a,06-Jul-98,1998,Unprovoked,SOUTH AFRICA,Western Cape Province,Plettenberg Bay,Surfing,Mark Thomas,M,10,Right leg bitten,N,,"Raggedtooth shark, 1.2 m [4'] ","A. Gifford, GSAF",1998.07.06.a-MarkThomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.06.a-MarkThomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.06.a-MarkThomas.pdf,1998.07.06.a,1998.07.06.a,4038,, +1998.06.28.a,28-Jun-98,1998,Unprovoked,AUSTRALIA,South Australia,South Neptune Island,Free diving for abalone,Doug Chesser,M,26,"FATAL, left thigh and lower leg severely injured ",Y,14h00,Thought to involve a 5.5 m white shark named Kong,R.W. Byard,1998.06.28-Chesser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.28-Chesser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.28-Chesser.pdf,1998.06.28.a,1998.06.28.a,4037,, +1998.06.22,22-Jun-98,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Gonubie, 13 km northeast of East London",Body Boarding,Anton deVos,M,20,"FATAL, hands & calf bitten ",Y,09h55,White shark,"A. Gifford, GSAF",1998.06.22-deVos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.22-deVos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.22-deVos.pdf,1998.06.22,1998.06.22,4036,, +1998.06.08,08-Jun-98,1998,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Surfing,Brian Catarra,M,18,"2-inch laceration on dorsum of foot, 1-inch laceration on sole.",N,18h00,,"S. Petersohn, GSAF",1998.06.08-Catarra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.08-Catarra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.08-Catarra.pdf,1998.06.08,1998.06.08,4035,, +1998.06.05,05-Jun-98,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Jeffrey's Bay,Surfing,Danny Bravier,M,,Survived,N,,,"A. Gifford, GSAF",1998.06.05-Bravier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.05-Bravier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.05-Bravier.pdf,1998.06.05,1998.06.05,4034,, +1998.05.30,30-May-98,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Pollock Beach,Surfing,Jamie Harrington,M,17,Minor laceration on foot,N,,,"A. Gifford, GSAF",1998.05.30-Harrington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.30-Harrington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.30-Harrington.pdf,1998.05.30,1998.05.30,4033,, +1998.05.29.b,29-May-98,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Sardinia Bay near Port Elizabeth,Body boarding,Marc Jucker,M,15,Right shoulder & arm bitten,N,2 hours after Opperman,3 m to 4 m [10' to 13'] white shark,"A. Gifford, GSAF",1998.05.29.b-Jucker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.29.b-Jucker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.29.b-Jucker.pdf,1998.05.29.b,1998.05.29.b,4032,, +1998.05.29.a,29-May-98,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Jeffreys Bay,Body boarding,Jan-Henrick Opperman,M,16,Leg bitten,N,Early afternoon,Unidentified,"A. Gifford, GSAF",1998.05.29.a-Opperman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.29.a-Opperman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.29.a-Opperman.pdf,1998.05.29.a,1998.05.29.a,4031,, +1998.05.25,25-May-98,1998,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jack Mounteer,M,40,4 lacerations on the sole of his right foot,N,11h10,"Lemon shark, 1.5 m [5'], identified by the surfer","S. Petersohn, GSAF; Orlando Sentinel, 5/26/1998, p.C.3; Daytona Beach News Journal, 5/26/1998, p.2D",1998.05.25-Mounteer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.25-Mounteer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.25-Mounteer.pdf,1998.05.25,1998.05.25,4030,, +1998.05.16.c,16-May-98,1998,Unprovoked,USA,Florida,"Pecks Lake, Martin County",Swimming,Janelle Dickinson,F,14,Ankle & foot bitten,N,14h30,"1.8 m [6'] shark, possibly a blacktip","The Stuart (FL) News, 5/17/1998",1998.05.16.c-Dickinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.16.c-Dickinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.16.c-Dickinson.pdf,1998.05.16.c,1998.05.16.c,4029,, +1998.05.16.b,16-May-98,1998,Unprovoked,USA,Florida,"Walden Rocks, St. Lucie County",Swimming / surfing,Roger Moore,M,24,Left arm & wrist lacerated,N,15h00,,"The Stuart (FL) News, 5/17/1998",1998.05.16.b-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.16.b-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.16.b-Moore.pdf,1998.05.16.b,1998.05.16.b,4028,, +1998.05.16.a,16-May-98,1998,Unprovoked,SOUTH AFRICA,Western Cape Province,Keurbooms,Body boarding,Neal Stephenson,M,22,"Lower legs bitten, foot severed",N,14h45,4 m [13'] white shark,"A. Gifford, GSAF",1998.05.16.a-Stephenson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.16.a-Stephenson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.16.a-Stephenson.pdf,1998.05.16.a,1998.05.16.a,4027,, +1998.04.26,26-Apr-98,1998,Unprovoked,MOZAMBIQUE,Gaza,"Bilene Bay, 180 km north of Maputo",Towing rubber dinghy,Wilma van Molendorff,F,35,"FATAL, torso & abdomen bitten, forearm severed ",Y,15h05,3 m [10'] shark,"A. Gifford, GSAF",1998.04.26-VonMollendorf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.26-VonMollendorf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.26-VonMollendorf.pdf,1998.04.26,1998.04.26,4026,, +1998.04.21,21-Apr-98,1998,Unprovoked,USA,Oregon,Gleneden Beach,Surfing (lying prone on his board),John Forse,M,50,Right thigh bitten,N,09h30 ,5 m [16.5'] white shark,"R. Collier, pp.161-163",1998.04.21-Forse_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.21-Forse_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.21-Forse_Collier.pdf,1998.04.21,1998.04.21,4025,, +1998.04.17,17-Apr-98,1998,Provoked,USA,Florida,"Marathon, Monroe County",Scuba diving,Kevin Morrison,M,16,"He grabbed shark's tail, shark bit his chest & held on. PROVOKED INCIDENT",N,,"Nurse shark, 0.9 m [3'] ","CNN; Orlando Sentinel, 4/18/1998, p.D7; Tallahassee Democrat, 4/19/1998",1998.04.17-Morrison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.17-Morrison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.17-Morrison.pdf,1998.04.17,1998.04.17,4024,, +1998.04.01,01-Apr-98,1998,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Swimming ,Unidentified,M,,FATAL,Y,,,"JC, 4/2/1998",1998.04.01-BoaViagem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.01-BoaViagem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.01-BoaViagem.pdf,1998.04.01,1998.04.01,4023,, +1998.04.00,Apr-98,1998,Unprovoked,NEW CALEDONIA,,�le de Sable,,,,,Calf bitten,N,,,W. Leander,1998.04.00-NewCaledonia-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.00-NewCaledonia-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.00-NewCaledonia-Fisherman.pdf,1998.04.00,1998.04.00,4022,, +1998.03.31,31-Mar-98,1998,Unprovoked,USA,Florida,"Jensen Beach Park, Martin County",Swimming,male,M,40,Heel lacerated,N,15h30,,"The Stuart (FL) News, 4/1/1998",1998.03.31-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.03.31-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.03.31-JensenBeach.pdf,1998.03.31,1998.03.31,4021,, +1998.03.15,15-Mar-98,1998,Unprovoked,SOUTH AFRICA,Western Cape Province,Saldanha Bay,Snorkeling � hunting crayfish and abalone,Kevin Dewey,M,33,Lower leg lacerated,N,17h30,3 m [10'] white shark,C. Maxwell,1998.03.15-Dewey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.03.15-Dewey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.03.15-Dewey.pdf,1998.03.15,1998.03.15,4020,, +1998.03.08.a,08-Mar-98,1998,Unprovoked,USA,Florida,"Loggerhead Park, Juno Beach, Palm Beach County",Swimming or paddle boarding,Rick Welch,M,32,6 puncture wounds to right calf,N,Morning,5' spinner shark,"Jupiter Courier, 3/11/1998",1998.03.08-Welch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.03.08-Welch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.03.08-Welch.pdf,1998.03.08.a,1998.03.08.a,4019,, +1998.02.23,23-Feb-98,1998,Unprovoked,USA,Florida,"Jensen Beach, Martin County",Swimming,Gordon Wilson,M,,Hands bitten,N,09h35,Spinner shark,"Palm Beach Post, 2/24/1998",1998.02.23-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.02.23-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.02.23-Wilson.pdf,1998.02.23,1998.02.23,4018,, +1998.01.28.R ,Reported 28-Jan-1998,1998,Invalid,AUSTRALIA,New South Wales,Whale Beach,Spearfishing,male,M,31,"Missing, thought to have been taken by a shark",Y,20h00,Shark involvement not confirmed,"Daily Telegraph, 1/28/1998.p.2",1998.01.28.R-spearfisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.28.R-spearfisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.28.R-spearfisherman.pdf,1998.01.28.R ,1998.01.28.R ,4017,, +1998.01.28.a,Jan-98,1998,Unprovoked,NEW CALEDONIA,South Province,l'Anse-Vata,Windsurfing,Frederic Marechal,M,,"No injury, board bumped & fin damaged",N,,1.7 m shark,"W. Leander, Les Nouvelles Caledoniennes, 1/301998",1998.01.28.a-Frederic_Marechal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.28.a-Frederic_Marechal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.28.a-Frederic_Marechal.pdf,1998.01.28.a,1998.01.28.a,4016,, +1998.01.25.b,25-Jan-98,1998,Unprovoked,REUNION,Grand'Anse,,Bathing,Philippe Blu,M,,FATAL,Y,Mid afternoon,,G. Van Grevelynghe,1998.01.25.b-Blu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.25.b-Blu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.25.b-Blu.pdf,1998.01.25.b,1998.01.25.b,4015,, +1998.01.25.a,25-Jan-98,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,East London,Surfing,Glenn Vosloo,M,21,Calf & foot lacerated,N,,,"A. Gifford, GSAF",1998.01.25.a-Vosloo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.25.a-Vosloo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.25.a-Vosloo.pdf,1998.01.25.a,1998.01.25.a,4014,, +1998.01.17,17-Jan-98,1998,Unprovoked,AUSTRALIA,South Australia,Middleton Beach,Surfing,Greg Anderson,M,,20 punctures in right foot,N,Afternoon,,"Sunday Mail (QLD), 1/18/1998, p.22; Hobart Mercury, 1/19/1998, p.41",1998.01.17-GregAnderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.17-GregAnderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.17-GregAnderson.pdf,1998.01.17,1998.01.17,4013,, +1998.01.14,14-Jan-98,1998,Unprovoked,MOZAMBIQUE,Maputo Province,Ponta do Ouro,Surfing,Roberto Zornada,M,23,Leg bitten,N,13h15,Small dusky shark or blackfin shark,"A. Gifford, GSAF ",1998.01.14-Zornada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.14-Zornada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.14-Zornada.pdf,1998.01.14,1998.01.14,4012,, +1998.00.00.c,1998,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Hole-in-the Wall,Surfing,M�,M,28,FATAL,Y,,,BL Meel / B. Myatt,1998.00.00.c-Transkei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.00.00.c-Transkei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.00.00.c-Transkei.pdf,1998.00.00.c,1998.00.00.c,4011,, +1998.00.00.b,1998,1998,Unprovoked,REUNION,Beaufonds,,Diving,,,,FATAL,Y,,,G. Van Grevelynghe,1998.00.00.b-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.00.00.b-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.00.00.b-Reunion.pdf,1998.00.00.b,1998.00.00.b,4010,, +1998.00.00.a,1998,1998,Unprovoked,USA,Virginia,"Wreck of the Navy Barge, 22 miles SE of Rudee ",Spearfishing on scuba & transferring fish onto a stringer,male,M,,Shark grasped diver's gloved hand. Glove was soaked with fish blood & slime,N,,sandtiger shark,"J. Musick,",1998.00.00.a-VirginiaBargeSpearfisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.00.00.a-VirginiaBargeSpearfisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.00.00.a-VirginiaBargeSpearfisherman.pdf,1998.00.00.a,1998.00.00.a,4009,, +1997.12.28.b,28-Dec-97,1997,Unprovoked,SOUTH AFRICA,Western Cape Province,"Pringle Bay, 44 miles southeast of Cape Town",Spearfishing,Ian James Hill,M,39,FATAL,Y,14h00,White shark,"A. Gifford, GSAF",1997.12.28.b-Hill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.28.b-Hill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.28.b-Hill.pdf,1997.12.28.b,1997.12.28.b,4008,, +1997.12.28.a,28-Dec-97,1997,Unprovoked,SOUTH AFRICA,Eastern Cape Province,St. Francis Bay,Sitting on surfboard,Stuart Buchanan,M,,Calf bitten,N,,,"A. Gifford, GSAF",1997.12.28.a-Buchanan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.28.a-Buchanan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.28.a-Buchanan.pdf,1997.12.28.a,1997.12.28.a,4007,, +1997.12.25.b,25-Dec-97,1997,Invalid,USA,Florida,"Fort Lauderdale, Broward County",,Gerd Olofsson,F,29,"Ankle bitten, but shark involvement unconfirmed",N,,Shark involvement not confirmed,"Miami Herald, 12/27/1997",1997.12.25.b-Olofsson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.25.b-Olofsson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.25.b-Olofsson.pdf,1997.12.25.b,1997.12.25.b,4006,, +1997.12.25.a,25-Dec-97,1997,Unprovoked,USA,Florida,"Hollywood Beach, Broward County",Swimming,Samuel Lussier,M,8,Left leg gashed knee to ankle,N,,,"Orlando Sentinel, 12/27/1997, p.D.3; Globe Newspaper Company",1997.12.25.a-Lussier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.25.a-Lussier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.25.a-Lussier.pdf,1997.12.25.a,1997.12.25.a,4005,, +1997.11.09,09-Nov-97,1997,Unprovoked,AUSTRALIA,Western Australia,Albany,Scuba diving (submerged riding a scooter),Kevin Hulkes,M,42,Left arm lacerated when shark grabbed scooter,N,Morning,White shark,"Daily Telegraph, 11/12/1997, p.5",1997.11.09-Hulkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.09-Hulkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.09-Hulkes.pdf,1997.11.09,1997.11.09,4004,, +1997.11.05.R,Reported 05-Nov-1997,1997,Unprovoked,USA,Florida,,Swimming,"James Ogilvy, 31st in line for the British Throne",M,32,Thigh bitten,N,Mid morning,,"The Mirror (London), 11/5/1997",1997.11.05.R-Ogilvy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.05.R-Ogilvy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.05.R-Ogilvy.pdf,1997.11.05.R,1997.11.05.R,4003,, +1997.11.05, 05-Nov-1997,1997,Invalid,AUSTRALIA,New South Wales,Botany Bay?,Unknown,Luke McIntyre,M,21,5 m white shark obsrved feeding on remains 6 days later,Y,,Shark involvement in his death uncofirmed,"Courier-Mail, 12/7/1998, p.3",1997.11.05.a-McIntyre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.05.a-McIntyre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.05.a-McIntyre.pdf,1997.11.05,1997.11.05,4002,, +1997.10.28.b,28-Oct-97,1997,Unprovoked,AUSTRALIA,Western Australia,"Cottesloe Beach, Perth",Surf-skiing,Brian Sierakowski & Barney Hanrahan,M,51,"Sierakowski suffered a minor facial injury, ski bitten in half by shark",N,,5.5 m [18'] white shark,"Reuters Limited, et al",1997.10.28.b-Sierakowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.28.b-Sierakowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.28.b-Sierakowski.pdf,1997.10.28.b,1997.10.28.b,4001,, +1997.10.28.a,28-Oct-97,1997,Unprovoked,USA,Hawaii,"Waiokapua Bay/Majors Bay, Brennecke Beach, Poipu, Kaua'i Island",Body boarding or surfing,Mike Coots,M,19,"Both legs bitten, right leg severed at mid-calf & defense wounds on right hand",N,07h20,"Tiger shark, 4 m to 4.3 m [13' to 14'] ","Yahoo News Canada, 8/16/2012",1997.10.28.a-Coots.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.28.a-Coots.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.28.a-Coots.pdf,1997.10.28.a,1997.10.28.a,4000,, +1997.10.24,24-Oct-97,1997,Unprovoked,USA,Florida,"North Jetty, Fort Pierce Inlet State Park, St. Lucie County",Surfing,Luis Morales,M,23,"5"" gash in foot",N,17h15,Possibly a blacktip shark,"Fort Pierce News, 10/25/1997 & 10/31/1997",1997.10.24-Morales.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.24-Morales.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.24-Morales.pdf,1997.10.24,1997.10.24,3999,, +1997.10.21,21-Oct-97,1997,Unprovoked,USA,Florida,"North Jetty, Fort Pierce Inlet State Park, St. Lucie County",Surfing,Jacob McBee,M,12,Left foot bitten,N,18h00,1.2 m to 1.5 m [4' to 5'] shark,"Fort Pierce News, 10/24/1997, p.A2",1997.10.21-McBee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.21-McBee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.21-McBee.pdf,1997.10.21,1997.10.21,3998,, +1997.10.11.R,Reported 11-Oct-1997,1997,Boat,SOUTH AFRICA,Eastern Cape Province,Off Port Alfred,Fishingat,Andre Marais & Tony Jensen,,,"No injury, hooked shark bit their 4.8 m inflatable boat",N,,Soupfin shark,"Daily Dispatch, 10/11/1997",1997.10.11.R-Jensen-Marais.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.11.R-Jensen-Marais.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.11.R-Jensen-Marais.pdf,1997.10.11.R,1997.10.11.R,3997,, +1997.10.04,04-Oct-97,1997,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Swimming,Tara Stalnaker,F,14,Laceration & 3 puncture wounds to anterior right thigh,N,08h30,,"S. Petersohn, GSAF; Orlando Sentinel, 10/5/1997, p.B.3; J. Bozzo; Daytona Beach News Journal, 10/6/1997, p.3D ",1997.10.04.b-Stalnaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.04.b-Stalnaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.04.b-Stalnaker.pdf,1997.10.04,1997.10.04,3996,, +1997.09.16,16-Sep-97,1997,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Swimming,Pedro Fernandes da Silva,M,20,FATAL,Y,,,JCOnline,1997.09.16-PedroFernandesDaSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.16-PedroFernandesDaSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.16-PedroFernandesDaSilva.pdf,1997.09.16,1997.09.16,3995,, +1997.09.09,09-Sep-97,1997,Unprovoked,USA,Florida,Volusia County ,Surfing,G.D.,M,12,Laceration to right foot,N,17h15,,"S. Petersohn, GSAF",1997.09.09-Dietlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.09-Dietlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.09-Dietlin.pdf,1997.09.09,1997.09.09,3994,, +1997.09.08,08-Sep-97,1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,,17,2 small lacerations to bottom of foot,N,Evening,small blacktip shark,"Daytona News-Journal, 9/9/1997",1997.09.08-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.08-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.08-NSB.pdf,1997.09.08,1997.09.08,3993,, +1997.09.06,06-Sep-97,1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Robert Lange,M,20,Lacerations to lower left leg,N,15h20,,"S. Petersohn, GSAF",1997.09.06-Lange.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.06-Lange.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.06-Lange.pdf,1997.09.06,1997.09.06,3992,, +1997.08.30,30-Aug-97,1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Chris Hoyas,M,18,Lacerations on right ankle & heel,N,13h00,,"S. Petersohn, GSAF",1997.08.30-Hoyas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.30-Hoyas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.30-Hoyas.pdf,1997.08.30,1997.08.30,3991,, +1997.08.27,27-Aug-97,1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Walking / surfing,Anthony Aleno,M,22,"2"" laceration on left heel",N,11h20,,"S. Petersohn, GSAF",1997.08.27-Aleno.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.27-Aleno.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.27-Aleno.pdf,1997.08.27,1997.08.27,3990,, +1997.08.24,24-Aug-97,1997,Unprovoked,USA,California,"Clam Beach, near Eureka, Humboldt County",Surfing (sitting on his board),Scott Yerby,M,29,Leg & hand bitten,N,12h30,5 m [16.5'] white shark,"R. Collier, pp.159-160",1997.08.24-Yerby_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.24-Yerby_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.24-Yerby_Collier.pdf,1997.08.24,1997.08.24,3989,, +1997.08.14.b,14-Aug-97,1997,Invalid,MEXICO,Quintana Roo,"Santa Rosa, Cozumel",SCUBA diving,Mike Jonatis,M,28,FATAL,Y,,Shark involvement not confirmed,"Charlotte Observer, 8/22/2997, p.7C & 8C; York Observer, 8/22/1997, p.2Y; UWSports.com",1997.08.14.b-Joniatis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.14.b-Joniatis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.14.b-Joniatis.pdf,1997.08.14.b,1997.08.14.b,3988,, +1997.08.14.a,14-Aug-97,1997,Unprovoked,MEXICO,Quintana Roo,"Santa Rosa, Cozumel",SCUBA diving,Mac Lupold,M,33,"FATAL, arm & leg severed ",Y,,"Tiger shark, 5.2 m [17']","Charlotte Observer, 8/22/2997, p.7C & 8C; York Observer, 8/22/1997, p.2Y; UWSports.com",1997.08.14.a- Lupold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.14.a- Lupold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.14.a- Lupold.pdf,1997.08.14.a,1997.08.14.a,3987,, +1997.08.11.c,11-Aug-97,1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Floating on raft,L.B.,F,12,Small lacerations on right lower leg,N,14h16,,"S. Petersohn, GSAF",1997.08.11.c-NV-L.B.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.11.c-NV-L.B.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.11.c-NV-L.B.pdf,1997.08.11.c,1997.08.11.c,3986,, +1997.08.11.b,11-Aug-97,1997,Unprovoked,EGYPT,Red Sea,Safaga,Fishing,Nagah Attalah Al Sayed ,M,17,Seriously injured,N,,,"Middle East Times, 8/15/1997",1997.08.11.b-ElSayed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.11.b-ElSayed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.11.b-ElSayed.pdf,1997.08.11.b,1997.08.11.b,3985,, +1997.08.11.a,11-Aug-97,1997,Unprovoked,EGYPT,Red Sea,Safaga,Fishing,Ayman Abul Hassan,M,16,FATAL,Y,,Thought to involve an oceanic whitetip shark or a white shark,"Middle East Times, 8/15/1997",1997.08.11.a-Hassan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.11.a-Hassan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.11.a-Hassan.pdf,1997.08.11.a,1997.08.11.a,3984,, +1997.08.10,10-Aug-97,1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Boogie boarding,N. F.,M,17,Lacerations to foot,N,11h48,,"S. Petersohn, GSAF",1997.08.10-NV-N.F.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.10-NV-N.F.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.10-NV-N.F.pdf,1997.08.10,1997.08.10,3983,, +1997.08.09,09-Aug-97,1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,,Lacerations to right foot,N,17h15,,"S. Petersohn, GSAF",1997.08.09-NV-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.09-NV-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.09-NV-NewSmyrnaBeach.pdf,1997.08.09,1997.08.09,3982,, +1997.08.05,05-Aug-97,1997,Unprovoked,USA,Texas,"East Beach, Galveston",Wading,female,F,10,Wrist & am bitten,N,,1 m shark,"Austin American Statesman, 8/7/1997, p.C8",1997.08.05-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.05-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.05-Galveston.pdf,1997.08.05,1997.08.05,3981,, +1997.08.04,04-Aug-97,1997,Unprovoked,USA,Florida,"Carysfort Lighthouse, Key Largo, Monroe County",Wade-fishing,Pete Swenson,M,,Left forearm & wrist bitten,N,,1.5 m [5'] shark,"Miami Herald, 8/29/1997",1997.08.04-Swenson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.04-Swenson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.04-Swenson.pdf,1997.08.04,1997.08.04,3980,, +1997.08.02.b,02-Aug-97,1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Body surfing,Rodigo Cesar,M,17,Top of left foot bitten,N,15h45,juvenile shark,"S. Petersohn, GSAF; D. Catron, Orlando Sentinel, 8/3/1997, B3",1997.08.02.b-Cesar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.02.b-Cesar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.02.b-Cesar.pdf,1997.08.02.b,1997.08.02.b,3979,, +1997.08.02.a,02-Aug-97,1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading / Surfing,Matthew Perny,M,19,Top of left foot bitten,N,09h15,"""juvenile shark""","S. Petersohn, GSAF; D. Catron, Orlando Sentinel, 8/3/1997, B3",1997.08.02.a-Perny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.02.a-Perny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.02.a-Perny.pdf,1997.08.02.a,1997.08.02.a,3978,, +1997.07.27,27-Jul-97,1997,Unprovoked,AUSTRALIA,Queensland,"Pincushion, north of Maroochydore Beach",Surfing,Neil Davey,M,19,Leg lacerated,N,14h25,,"Courier-Mail, 7/28/1997, p.5",1997.07.27-Davey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.27-Davey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.27-Davey.pdf,1997.07.27,1997.07.27,3977,, +1997.07.21,21-Jul-97,1997,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Breezy Point, Ntlonyana",Surfing,Mark Penches,M,25,FATAL,Y,12h45,4.5 m white shark,"A. Gifford, GSAF, G. Cliff, NSB",1997.07.21-Penches.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.21-Penches.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.21-Penches.pdf,1997.07.21,1997.07.21,3976,, +1997.07.17,17-Jul-97,1997,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Surfing,Jos� Roberto Paraizo de Albuquerque,M,,Survived,N,,,JCOnline,1997.07.17.b-Albuquerque.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.17.b-Albuquerque.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.17.b-Albuquerque.pdf,1997.07.17,1997.07.17,3975,, +1997.07.14,14-Jul-97,1997,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Standing,Flint Cowden,M,50,Left calf bitten,N,Night,Blacktip shark,"Charlotte Observer, 7/17/1997, p.2C; C. Creswell, GSAF",1997.07.14-Cowden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.14-Cowden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.14-Cowden.pdf,1997.07.14,1997.07.14,3974,, +1997.07.12,12-Jul-97,1997,Unprovoked,OKINAWA,Miyako,Hirara,Fishing for octopus,Shizuo Nakachi,M,55,"FATAL, legs severed ",Y,,White shark,"Okinawa Weekly Times, 7/19/1997 editon; Ryukyu Shrimpo News (Japan)",1997.07.12-Nakachi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.12-Nakachi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.12-Nakachi.pdf,1997.07.12,1997.07.12,3973,, +1997.07.02.R, 2-Jul-1997,1997,Unprovoked,BRAZIL,Pernambuco,Paiva,Surfing,Jurandir Amorim Silva,,,Right thigh bitten,N,,,"D. Duarte; Globo, 7/2/1997",1997.07.02-Jurandir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.02-Jurandir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.02-Jurandir.pdf,1997.07.02.R,1997.07.02.R,3972,, +1997.06.24,24-Jun-97,1997,Unprovoked,USA,Hawaii,"Sunset Beach, Oahu",Spearfishing / night diving,L. Molina,M,,Leg bitten just above ankle,N,23h00,2.4 m [8'] shark,Hawaii Department of Land and Natural Resources,1997.06.24-Molina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.24-Molina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.24-Molina.pdf,1997.06.24,1997.06.24,3971,, +1997.06.15,15-Jun-97,1997,Unprovoked,FIJI,Taveuni,Off a small island 5 km from Garden Island Resort,Snorkeling,Liz Rogers,F,47,"Bitten on inner thigh, leg surgically amputated",N,14h30,"Tiger shark, 2.7m [9']","R. D. Weeks, GSAF; Otago Daily Times, 6/17/1997, p.2; Sport Diver Magazine, Dec97/Jan98, p.8",1997.06.15-LizRogers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.15-LizRogers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.15-LizRogers.pdf,1997.06.15,1997.06.15,3970,, +1997.06.09,09-Jun-97,1997,Unprovoked,USA,Florida, Palm Beach County,Surfing,Michael Massey,M,18,Laceration to left upper arm,N,18h00,Possibly a spinner shark,"Palm Beach Post, 6/12/1997",1997.06.09-Massey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.09-Massey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.09-Massey.pdf,1997.06.09,1997.06.09,3969,, +1997.06.07,07-Jun-97,1997,Unprovoked,BRAZIL,Rio de Janeiro,"Copacabana, Rio de Janeiro",Bathing,Jos� Luiz Lipiani,M,,,UNKNOWN,,,"Globo, 6/9/1997",1997.06.07-NV-Lipiani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.07-NV-Lipiani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.07-NV-Lipiani.pdf,1997.06.07,1997.06.07,3968,, +1997.06.02,02-Jun-97,1997,Unprovoked,USA,Florida,"Daytona Beach Shores, Volusia County","Body surfing, stood up on sandbar",Doug Amelio,M,33,4 lacerations above left ankle,N,10h25,1.2 m [4'] shark (spinner shark?),"S. Petersohn, GSAF; D. Treen; Florida Times-Union, 6/3/1997; Miami Herald, 6/3/1997",1997.06.02-Amelio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.02-Amelio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.02-Amelio.pdf,1997.06.02,1997.06.02,3967,, +1997.05.31.c,31-May-97,1997,Unprovoked,USA,Florida,In Gulf of Mexico 17 miles off Weeki Wachee ,Spearfishing,Dave Medvec,M,35,Right thigh punctured,N,Morning,4' shark,"R. Nelson, St. Petersburg Times, 6/6/1997",1997.05.31.c-Medvec.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.31.c-Medvec.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.31.c-Medvec.pdf,1997.05.31.c,1997.05.31.c,3966,, +1997.05.31.b,31-May-97,1997,Unprovoked,USA,Florida,"Flagler Beach, Flagler County",Surfing,Robert Fuller,M,34,Left elbow bitten,N,11h00,Possibly a sand shark,"A. Mikula, Daytona Beach News-Journal, 6/1/199, p.2C",1997.05.31.b-Fuller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.31.b-Fuller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.31.b-Fuller.pdf,1997.05.31.b,1997.05.31.b,3965,, +1997.05.31.a,31-May-97,1997,Unprovoked,USA,Florida,"Flagler Beach, Flagler County",Surfing,Johnny Bowden,M,12,Left ankle bitten,N,11h00,Possibly a sand shark,"A. Mikula, Daytona Beach News-Journal, 6/1/1997, p.2C",1997.05.31.a-Bowden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.31.a-Bowden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.31.a-Bowden.pdf,1997.05.31.a,1997.05.31.a,3964,, +1997.05.26,26-May-97,1997,Unprovoked,BAHAMAS,Abaco Islands,Powell Cay,Spearfishing,Wilber Wood,M,54,Right arm bitten,N,,Possibly a Caribbean reef shark,"The Mirror (London); Orlando Sentinel, 5/28, 1997, p.C3",1997.05.26-Wood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.26-Wood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.26-Wood.pdf,1997.05.26,1997.05.26,3963,, +1997.05.17,17-May-97,1997,Unprovoked,BAHAMAS,Abaco Islands,Walkers Cay,Spearfishing,Robert Gunn,M,,Leg bitten,N,Morning,,"Miami Herald, 5/18/1997",1997.05.17-Gunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.17-Gunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.17-Gunn.pdf,1997.05.17,1997.05.17,3962,, +1997.04.20,20-Apr-97,1997,Unprovoked,BRAZIL,Rio de Janeiro,"Manguinhos, Ilha Feia, B�zios",Windsurfing,Jo�o Pedro Portinari Le�o,M,22,Lower left leg & ankle bitten,N,,3.7m to 4.2 m white shark,"O. Gadig; Globo, 4/24/1997",1997.04.20-Leao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.04.20-Leao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.04.20-Leao.pdf,1997.04.20,1997.04.20,3961,, +1997.02.28.b,28-Feb-97,1997,Unprovoked,AUSTRALIA,Queensland,"Carrara, Nerang River",Swimming,Joanna Salmon,F,21,Left leg biten,N,,a small shark,"The Advertiser, 3/1/1997, p.12",1997.02.28.b-Salmon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.28.b-Salmon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.28.b-Salmon.pdf,1997.02.28.b,1997.02.28.b,3960,, +1997.02.28.a,28-Feb-97,1997,Unprovoked,AUSTRALIA,Queensland,Whitsunday Passage,Scuba diving,Gerald Rauch,M,30,Left arm bitten,N,Midday,"Tiger shark, 2m to 3m ","The Advertiser, 3/1/1997, p.12",1997.02.28.a-Rauch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.28.a-Rauch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.28.a-Rauch.pdf,1997.02.28.a,1997.02.28.a,3959,, +1997.02.21,21-Feb-97,1997,Unprovoked,USA,Hawaii,"Sunset Beach, O'ahu",,Gersome Perreno,M,,No details,UNKNOWN,,,G. Balazs,1997.02.21-NV-Perreno.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.21-NV-Perreno.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.21-NV-Perreno.pdf,1997.02.21,1997.02.21,3958,, +1997.02.20,20-Feb-97,1997,Unprovoked,REUNION,L'Etang-Sale,,,Laurent Lebon,M,,Hand injured,N,,,"LeQuotidien, 12/4/1999",1997.02.20-Lebon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.20-Lebon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.20-Lebon.pdf,1997.02.20,1997.02.20,3957,, +1997.02.03,03-Feb-97,1997,Boat,AUSTRALIA,New South Wales,"Iron Cove, Sydney",Rowing ,Andree Moscari,F,49,"Bruised, when shark struck scull & catapulted her into the water",N,,,"J. Delvecchio & D. Sygall, Sydney Morning Herald, 2/4/1997, p.2",1997.02.03-Mocsari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.03-Mocsari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.03-Mocsari.pdf,1997.02.03,1997.02.03,3956,, +1997.01.25,25-Jan-97,1997,Unprovoked,AUSTRALIA,Queensland,"Whitehaven Beach, Whitsundays Island",Snorkeling,Derek Burrows,M,27,"Left leg lacerated, punctures to right leg",N,11h00 / 11h30,1.8 m to 2.1 m [6' to 7'] shark,"Sunday Mail (QLD), 1/26/1997, p.2; Hobart Mercury, 1/27/1997, p.2",1997.01.25-Burrows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.25-Burrows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.25-Burrows.pdf,1997.01.25,1997.01.25,3955,, +1997.01.20,20-Jan-97,1997,Unprovoked,AUSTRALIA,Western Australia,Geraldton,Windsurfing,Werner Schonhofer,M,41,"Presumed fatal, no body recovered, shark mutilated wetsuit & harness recovered ",Y,18h00,"Tiger shark, 4.5 m [14'9""]","Daily Telegraph, 1/22/1997, p.1; H. Edwards, p.14-15",1997.01.20.a-Schonhofer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.20.a-Schonhofer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.20.a-Schonhofer.pdf,1997.01.20,1997.01.20,3954,, +1997.01.03.a,03-Jan-97,1997,Unprovoked,REUNION,,la Pointe-au-Sel,Spearfishing,David Lonne,M,,FATAL,Y,,Bull shark,"Clicanoo, le journal de l'Ile de la R�union",1997.01.03-Lonne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.03-Lonne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.03-Lonne.pdf,1997.01.03.a,1997.01.03.a,3953,, +1997.01.01,01-Jan-97,1997,Boat,AUSTRALIA,Victoria,"Seal Rocks, Phillip Island",Watching seals,"Inflatable dinghy, occupants: Jasmine Wigley, Greg Wilkie, Phil Rourke & Fleur Anderson",,,"No injury to occupants, shark bit 2 of the dinghy's 3 floation chambers",N,,White shark,"The Advertiser, 1/3/1997, p.7",1997.01.01-Seal-island-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.01-Seal-island-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.01-Seal-island-boat.pdf,1997.01.01,1997.01.01,3952,, +1996.12.29,29-Dec-96,1996,Unprovoked,AUSTRALIA,Queensland,Coolum Beach,Surfing,Blair Hall,M,18,,UNKNOWN,18h00,,"The Advertiser, 12/30/1996, p.3",1996.12.29-BlairHall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.29-BlairHall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.29-BlairHall.pdf,1996.12.29,1996.12.29,3951,, +1996.12.10,10-Dec-96,1996,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Duck Pond, Sardina Bay near Port Elizabeth",Surfing,Steven Cross,M,,Elbow bitten,N,16h15,White shark,"A. Gifford, GSAF",1996.12.10-Cross.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.10-Cross.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.10-Cross.pdf,1996.12.10,1996.12.10,3950,, +1996.12.00.b,Dec-96,1996,Unprovoked,NEW CALEDONIA,,,Spearfishing,Charles Wadra,M,,"Presumed fatal, only his shark-bitten speargun recovered",Y,,,W. Leander,1996.12.00.b-Wadra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.00.b-Wadra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.00.b-Wadra.pdf,1996.12.00.b,1996.12.00.b,3949,, +1996.12.00.a,Dec-96,1996,Unprovoked,NEW CALEDONIA,South Province,L'llot Maetre,Attempting to attract dolphins,female,F,,Hand bitten,N,,,W. Leander,1996.12.00.a-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.00.a-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.00.a-NewCaledonia.pdf,1996.12.00.a,1996.12.00.a,3948,, +1996.11.29.a,29-Nov-96,1996,Unprovoked,USA,California,"Salmon Creek Beach, Sonoma County",Surfing,Greg Ferry,M,45,Single laceration on ankle & board bitten,N,08h30,3 m to 5 m [10' to 16.5'] white shark,"R. Collier, p.158",1996.11.29-Ferry_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.11.29-Ferry_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.11.29-Ferry_Collier.pdf,1996.11.29.a,1996.11.29.a,3947,, +1996.11.18,18-Nov-96,1996,Unprovoked,USA,Florida,"Coral Cove Park, Palm Beach County",Surfing,Adam Urban ,M,26,Right foot bitten,N,17h00,,"Jupiter Courier, 11/20/1996",1996.11.18-Urban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.11.18-Urban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.11.18-Urban.pdf,1996.11.18,1996.11.18,3946,, +1996.10.28.b,28-Oct-96,1996,Unprovoked,BRAZIL,Pernambuco,Barra de Jangada,Surfing,Gilvan Jaime de Freitas J�nior,,,Leg bitten,N,,,D. Duarte,1996.10.28.b-deFrietas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.28.b-deFrietas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.28.b-deFrietas.pdf,1996.10.28.b,1996.10.28.b,3945,, +1996.10.28.a,28-Oct-96,1996,Unprovoked,BRAZIL,Pernambuco,Barra de Jangada,Surfing,Luis Henrique Messias,M,,Survived,N,,,JCOnline,1996.10.28.a-Messias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.28.a-Messias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.28.a-Messias.pdf,1996.10.28.a,1996.10.28.a,3944,, +1996.10.09,09-Oct-96,1996,Unprovoked,OKINAWA,Miyako Island,Boragawa Beach,Swimming or snorkeling,male,M,,FATAL,Y,,,"Okinawa Weekly Times, 10/14/1996 ",1996.10.09-Okinawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.09-Okinawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.09-Okinawa.pdf,1996.10.09,1996.10.09,3943,, +1996.10.05.,05-Oct-96,1996,Unprovoked,USA,California,"Dillon Beach, Marin County",Surfing,Mark Quirt,M,22,Lower leg bitten,N,13h00,5.5 m to 6 m [18' to 20'] white shark,"R. Collier, pp.156-157",1996.10.05-Quirt_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.05-Quirt_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.05-Quirt_Collier.pdf,1996.10.05.,1996.10.05.,3942,, +1996.10.03.b,03-Oct-96,1996,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,Aric Hollingsworth,M,21,"4"" laceration on left forearm",N,08h30,1.2 m [4'] shark,"Orlando Sentinel, 10/4/1996",1996.10.03.b-Hollingsworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.03.b-Hollingsworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.03.b-Hollingsworth.pdf,1996.10.03.b,1996.10.03.b,3941,, +1996.10.03.a,03-Oct-96,1996,Unprovoked,USA,California,"North Salmon Creek Beach, Sonoma County",Surfing,Kennon Cahill,M,31,"No Injury, shark struck his board",N,07h19,5 m [16.5'] white shark,R. Collier http://www.sharkresearchcommittee.com/unprovoked_surfer.htm,1996.10.03.a-Cahill_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.03.a-Cahill_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.03.a-Cahill_Collier.pdf,1996.10.03.a,1996.10.03.a,3940,, +1996.10.00,Oct-96,1996,Unprovoked,BRAZIL,Pernambuco,,,Josebias Dias,,,Survived,N,,,D. Duarte,1996.10.00-NV-Josebias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.00-NV-Josebias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.00-NV-Josebias.pdf,1996.10.00,1996.10.00,3939,, +1996.09.18,18-Sep-96,1996,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,Robert Gary,M,14,4 or 5 lacerations on left ankle,N,13h37,,"S. Petersohn, GSAF; Orlando Sentinel, 9/19/1996, p.D3; Tallahassee Democrat, 9/20/1996",1996.09.18-RobertGary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.18-RobertGary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.18-RobertGary.pdf,1996.09.18,1996.09.18,3938,, +1996.09.06.b,06-Sep-96,1996,Unprovoked,NEW ZEALAND,Chatham Islands ,Waihere Bay,Diving for abalone,Vaughn Hill,M,23,"Back, arms & wrist severely lacerated",N,10h00,White shark,"R.D. Weeks, GSAF; Otago Daily Times, 9/7/1996, p.2 +",1996.09.06.b-Vaughn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.06.b-Vaughn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.06.b-Vaughn.pdf,1996.09.06.b,1996.09.06.b,3937,, +1996.09.06.a,06-Sep-96,1996,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing / Swimming,John Perkins,M,19,Small puncture wounds and lacerations on right leg just below knee,N,12h15,"""a young shark""","S. Petersohn, GSAF; Orlando Sentinel , 9//7/1996; Daytona Beach News Journal, 9/7/1996, p.4C ",1996.09.06.a-Perkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.06.a-Perkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.06.a-Perkins.pdf,1996.09.06.a,1996.09.06.a,3936,, +1996.09.02.b,02-Sep-96,1996,Unprovoked,USA,Florida,"Behune Beach, Volusia County",Standing,William (or Richard) Schwall,M,5,Right foot bitten,N,18h05,,"S. Petersohn, GSAF; Orlando Sentinel , 9//7/1996; Daytona Beach News Journal, 9/7/1999, p.4C",1996.09.02.b-Schwall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.02.b-Schwall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.02.b-Schwall.pdf,1996.09.02.b,1996.09.02.b,3935,, +1996.09.02.a,02-Sep-96,1996,Unprovoked,USA,Florida,"Bethune Beach, Volusia County",Sitting on surfboard,Chris Volz,M,28,Small lacerations on left foot,N,13h25,,"S. Petersohn, GSAF; Daytona Beach News Journal, 9/3/1999, pp. 2D & 4D, 9/7/1999, p.4C",1996.09.02.a-Volz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.02.a-Volz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.02.a-Volz.pdf,1996.09.02.a,1996.09.02.a,3934,, +1996.09.01.b,01-Sep-96,1996,Invalid,USA,South Carolina,"Garden City Beach, Horry County",Boogie boarding,female,F,28,Minor injuries to foot,N,Afternoon,Shark involvement not confirmed,"The Sun, 9/2/1996",1996.09.01.b-GardenCity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.01.b-GardenCity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.01.b-GardenCity.pdf,1996.09.01.b,1996.09.01.b,3933,, +1996.09.01.a,01-Sep-96,1996,Provoked,SOUTH AFRICA,KwaZulu-Natal,Hibberdene,Spearfishing,Gyula Plaganyi,M,29,No injury PROVOKED INCIDENT,N,07h19,White shark,"A. Gifford, GSAF",1996.09.01.a-Plaganyi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.01.a-Plaganyi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.01.a-Plaganyi.pdf,1996.09.01.a,1996.09.01.a,3932,, +1996.08.29,29-Aug-96,1996,Unprovoked,USA,Hawaii,"Paukukalo, Maui",Body Boarding,"David Nanod, Jr.",M,19,Right calf bitten,N,16h00,"Tiger shark, 2.4 m [8'] ","Allen, p.117",1996.08.29-Nanod.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.08.29-Nanod.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.08.29-Nanod.pdf,1996.08.29,1996.08.29,3931,, +1996.08.13,13-Aug-96,1996,Unprovoked,USA,California,"Bird Rock, Tomales Point",Free diving for abalone,Colum Tinley,M,36,"Left shoulder, forearm, hand & abdomen lacerated",N,11h15,6 m [20'] white shark,"R. Collier, pp.154-155 ",1996.08.13-Tinley_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.08.13-Tinley_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.08.13-Tinley_Collier.pdf,1996.08.13,1996.08.13,3930,, +1996.08.11,11-Aug-96,1996,Unprovoked,USA,Florida,"Bayshore Garden, Sarasota Bay, Sarasota County",Wade fishing,Jason King,M,21,"No injury, towed by shark that grabbed stringer of fish tied to his waist",N,14h00,1.8 m to 2.1 m [6' to 7'] hammerhead shark,"Bradenton Herald, 8/12/1996, p.L2",1996.08.11-Jason King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.08.11-Jason King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.08.11-Jason King.pdf,1996.08.11,1996.08.11,3929,, +1996.07.26,26-Jul-96,1996,Unprovoked,USA,Florida,"Wiggins Pass, Collier County",Standing,a German girl,F,8,Survived,N,19h30,,Press clipping,1996.07.26-NV-WigginsPass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.26-NV-WigginsPass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.26-NV-WigginsPass.pdf,1996.07.26,1996.07.26,3928,, +1996.07.23.b,23-Jul-96,1996,Unprovoked,OKINAWA,Miyako,Hirara City,Swimming,Mr. Moriyoshi Takehara,M,52,"FATAL, torso & abdomen bitten, forearm severedL",Y,,5 m [16.5'] white shark,"press clippings ; Okinawa Weekly Times, 10/14/1996 ",1996.07.23.b-Takehara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.23.b-Takehara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.23.b-Takehara.pdf,1996.07.23.b,1996.07.23.b,3927,, +1996.07.23.a,23-Jul-96,1996,Unprovoked,EGYPT / ISRAEL,"South Sinai, Gulf of Aqaba","1 km off the mouth of Marsa Bereika, north of Ras Mohammed",Free diving with a pod of dolphins,Martin Christopher Richardson,M,,"Bitten on back, shoulder & chest",N,18h00,said to involve an oceanic whitetip shark,"Daily Telegraph, 7/26/1996, p.15; K. Lavalli & O. Goffman",1996.07.23.a-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.23.a-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.23.a-Richardson.pdf,1996.07.23.a,1996.07.23.a,3926,, +1996.07.21,21-Jul-96,1996,Unprovoked,USA,Massachusetts,"Truro (Cape Cod), Barnstable County",Swimming,James Orlowski,M,46,Lacerations to left leg & right foot ,N,,6' shark,"Associated Press, 7/23/1996",1996.07.21-Orlowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.21-Orlowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.21-Orlowski.pdf,1996.07.21,1996.07.21,3925,, +1996.07.20,20-Jul-96,1996,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,K.O.,M,9,Laceration to right arm,N,13h30,,"S. Petersohn, GSAF",1996.07.20-K.O.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.20-K.O.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.20-K.O.pdf,1996.07.20,1996.07.20,3924,, +1996.07.14,14-Jul-96,1996,Unprovoked,USA,Hawaii,"Nakalele Point, Maui",,Trimurti Day,,,No details,UNKNOWN,,,G. Balazs,1996.07.14-NV-TrimurtiDay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.14-NV-TrimurtiDay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.14-NV-TrimurtiDay.pdf,1996.07.14,1996.07.14,3923,, +1996.07.10,10-Jul-96,1996,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",,Andrew Lewis,M,18,Right foot bitten,N,13h45,,"S. Petersohn, GSAF",1996.07.10-Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.10-Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.10-Lewis.pdf,1996.07.10,1996.07.10,3922,, +1996.07.04.b,04-Jul-96,1996,Unprovoked,USA,Florida,"Public Beach, Siesta Key, Sarasota County",Standing,Carol Diliberto,F,63,Laceration on left foot,N,14h00,5' to 6' shark,"G. Nansen; Sarasota Herald-Tribune (FL), 7/5/1996",1996.07.04.b-Dilberto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.04.b-Dilberto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.04.b-Dilberto.pdf,1996.07.04.b,1996.07.04.b,3921,, +1996.07.04.a,04-Jul-96,1996,Unprovoked,BAHAMAS,Cat Cay,,Diving,Michael Beach,M,24,Left leg lacerated,N,,,"G. Nansen, D. McGee; Miami Herald, 7/5/1996 ",1996.07.04.a-Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.04.a-Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.04.a-Beach.pdf,1996.07.04.a,1996.07.04.a,3920,, +1996.06.25,25-Jun-96,1996,Unprovoked,USA,South Carolina,"Fripp Island, Beaufort County",Body surfing,Beth Shannon,F,24,"Lacerations to left shin, heel & foot",N,Afternoon,,"C. Creswell, GSAF; Macon Telegraph, 6/17/1996",1996.06.25-Shannon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.06.25-Shannon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.06.25-Shannon.pdf,1996.06.25,1996.06.25,3919,, +1996.06.06,06-Jun-96,1996,Unprovoked,AUSTRALIA,Victoria,"Suicide Point, Point Leo",Surfing,George Lucas,M,,"No injury, board bitten",N,17h30,4 m white shark,"P. Anderson, Herald Sun, 6/8/1996, p.7 ",1996.06.06-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.06.06-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.06.06-Lucas.pdf,1996.06.06,1996.06.06,3918,, +1996.06.04,04-Jun-96,1996,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,LaMercy,Surfing,Justin Sanders,M,,Survived,N,,,ZigZag Magazine,1996.06.04-JustinSanders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.06.04-JustinSanders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.06.04-JustinSanders.pdf,1996.06.04,1996.06.04,3917,, +1996.05.28,28-May-96,1996,Unprovoked,SOUTH AFRICA,Western Cape Province,"The Steps, Wilderness",Surfing,Donovan K�hne,M,17,Leg bitten,N,14h45,2.5 m [8.25'] white shark ,"A. Gifford, GSAF",1996.05.28-Kohne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.28-Kohne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.28-Kohne.pdf,1996.05.28,1996.05.28,3916,, +1996.05.24,24-May-96,1996,Invalid,AUSTRALIA,New South Wales,"Wreck of paddle steamer, Koputai, 6 km off Bondi Beach",Tech diving ,Pat Bowring,M,45,"FATAL, but shark involvement prior to death was not confirmed",Y,,White shark,"Daily Telegraph, 5/29/1996, p.5 & 6/8/1996, p.15; H. Edwards, pp. 9-15",1996.05.24-Bowring.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.24-Bowring.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.24-Bowring.pdf,1996.05.24,1996.05.24,3915,, +1996.05.18,18-May-96,1996,Unprovoked,USA,Florida,"South of Ponce Inlet, Volusia County",Surfing,Mike Rebel,M,22,Right foot & ankle bitten,N,13h40,1.2 m [4'] shark,"S. Petersohn, GSAF; Orlando Sentinel; Daytona Beach News Journal, 5/19/1996, p.1A ",1996.05.18-Rebel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.18-Rebel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.18-Rebel.pdf,1996.05.18,1996.05.18,3914,, +1996.05.10,10-May-96,1996,Unprovoked,SOUTH KOREA,,,Shell Diving,Lee Kwan-seok,M,33,FATAL,Y,11h00,,Y. Choi & K. Nakaya,1996.05.10-LeeKwan-seok.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.10-LeeKwan-seok.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.10-LeeKwan-seok.pdf,1996.05.10,1996.05.10,3913,, +1996.05.07,07-May-96,1996,Unprovoked,USA,Florida,"Shark Shallows, Ponce Inlet, Volusia County",Surfing,Jimmy Grunewald,M,27,Left foot & leg bitten,N,11h06,60 cm to 90 cm [2' to 3'] blacktip or spinner shark,"S. Petersohn, GSAF; G. Nansen; P.LaMee, Orlando Sentinel, 5/8/1996, p.B3; Daytona Beach News Journal, 5/8/1996, p.1D",1996.05.07-Grunewald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.07-Grunewald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.07-Grunewald.pdf,1996.05.07,1996.05.07,3912,, +1996.04.28.b,28-Apr-96,1996,Unprovoked,USA,Hawaii,"La'ie Point, O'ahu",,Wayne Leong,M,,No details,UNKNOWN,,,G. Balazs,1996.04.28.b-Leong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.28.b-Leong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.28.b-Leong.pdf,1996.04.28.b,1996.04.28.b,3911,, +1996.04.25.b,25-Apr-96,1996,Unprovoked,AUSTRALIA,New South Wales,Mona Vale,Swimming,Luke Baker,M,11,Puncture wounds on upper left thigh ,N,,Wobbegong shark,"Daily Telegraph, 4/26/1996, p.9",1996.04.25.b-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.25.b-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.25.b-Baker.pdf,1996.04.25.b,1996.04.25.b,3910,, +1996.04.25.a,25-Apr-96,1996,Unprovoked,AUSTRALIA,New South Wales,Mona Vale,Swimming,Aya Hamaea ,F,16,Puncture wounds on leg ,N,,Wobbegong shark,"Daily Telegraph, 4/26/1996, p.9",1996.04.25.a-Hamaea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.25.a-Hamaea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.25.a-Hamaea.pdf,1996.04.25.a,1996.04.25.a,3909,, +1996.04.07,07-Apr-96,1996,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Swimming,Marcos Santana Silva,M,,FATAL,Y,,,JCOnline,1996.04.07-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.07-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.07-Silva.pdf,1996.04.07,1996.04.07,3908,, +1996.03.05,05-Mar-96,1996,Unprovoked,AUSTRALIA,Queensland,Heron Island,Swimming breast stoke,Jean Hotchkiss ,F,47,Left arm & leg lacerated,N,07h00,Tiger shark,"Advertiser, 3/6/1996, p.9; Daily Mail (London), 3/9/1996 ",1996.03.05-Hotchkiss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.03.05-Hotchkiss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.03.05-Hotchkiss.pdf,1996.03.05,1996.03.05,3907,, +1996.03.00,Mar-96,1996,Unprovoked,AUSTRALIA,New South Wales,Lord Howe Island,Fishing in knee-deep water,male,M,7,Left calf bitten,N,,1.5 m [5'] shark,"J. Royle, et. al. (1997)",1996.03.00-LordHoweIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.03.00-LordHoweIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.03.00-LordHoweIsland.pdf,1996.03.00,1996.03.00,3906,, +1996.02.26,26-Feb-96,1996,Unprovoked,AUSTRALIA,New South Wales,"Charles Street Wharf, Parramatta River",Dived naked into the water on a bet,Darren Good,M,24,Left leg & right testicle bitten,N,Night,Bronze whaler shark,"Daily Telegraph, 2/29/1996, p.5; H. Edwards, pp.31-32",1996.02.26-Good.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.26-Good.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.26-Good.pdf,1996.02.26,1996.02.26,3905,, +1996.02.19.R,Reported 19-Feb-1996,1996,Provoked,USA,Missouri,St. Louis,Swimming in fish tank,Kathi Peters,F,32,5 punctures to hand from captive shark PROVOKED INCIDENT,N,,nurse shark,"Deseret News, 2/19/1996; European Stars and Stripes, 2/20/1996",1996.02.19.R-Peters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.19.R-Peters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.19.R-Peters.pdf,1996.02.19.R,1996.02.19.R,3904,, +1996.02.10.c,09-Feb-96,1996,Unprovoked,PAPUA NEW GUINEA,Madang Province,Madang,,a father of six,M,,FATAL,Y,,,"Sunday Mail (QLD), 2/11/1996, p.28",1996.02.10.c-PNGfather.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.10.c-PNGfather.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.10.c-PNGfather.pdf,1996.02.10.c,1996.02.10.c,3903,, +1996.02.10.b,09-Feb-96,1996,Unprovoked,PAPUA NEW GUINEA,Madang Province,Madang,,College student,,,Thigh,N,,,"Sunday Mail (QLD), 2/11/1996, p.28",1996.02.10.b-CollegeStuden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.10.b-CollegeStuden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.10.b-CollegeStuden.pdf,1996.02.10.b,1996.02.10.b,3902,, +1996.02.10.a,09-Feb-96,1996,Unprovoked,PAPUA NEW GUINEA,Madang Province,Madang,Diving ,schoolboy,,14,Leg severed FATAL,Y,,,"Sunday Mail (QLD), 2/11/1996, p.28",1996.02.10.a-PNGschoolboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.10.a-PNGschoolboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.10.a-PNGschoolboy.pdf,1996.02.10.a,1996.02.10.a,3901,, +1996.02.05,05-Feb-96,1996,Sea Disaster,DOMINICAN REPUBLIC,12 miles off the north coast,Boeing 757 enroute from Porta Plata,Boeing 757 enroute from Porta Plata plunged into the sea,No survivors. 189 people were lost,,,"106 bodies were recovered, some had been bitten by sharks",Y,,,Press reports,1996.02.05-aircraftDominican.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.05-aircraftDominican.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.05-aircraftDominican.pdf,1996.02.05,1996.02.05,3900,, +1996.02.04,04-Feb-96,1996,Unprovoked,AUSTRALIA,New South Wales,"Ned's Beach, Lord Howe Island",Swimming,a South Australian boy,M,7,Ankles injured,N,Afternoon,"""reef shark""","The Advertiser, 2/6/1996, p.2; Daily Telegraph, 2/5/1996, p.9",1996.02.04-boy-7.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.04-boy-7.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.04-boy-7.pdf,1996.02.04,1996.02.04,3899,, +1996.01.23,23-Jan-96,1996,Provoked,USA,Florida,"Florida Keys, Monroe County",Wading,Christopher Riley,M,33,Shark bit his leg after he grabbed its tail & wouldn't let go PROVOKED INCIDENT,N,,"Nurse shark, 0.9 m [3'] ","Miami Herald, 1/25/1996",1996.01.23-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.23-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.23-Riley.pdf,1996.01.23,1996.01.23,3898,, +1996.01.22,22-Jan-96,1996,Unprovoked,AUSTRALIA,Queensland,"Brown's Inlet, Broadwater",Swimming,Jasmine Cox,F,13,Lacerations to left calf,N,,Bronze whaler shark,"Daily Telegraph, 1/23/1996, p.3",1996.01.22-Cox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.22-Cox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.22-Cox.pdf,1996.01.22,1996.01.22,3897,, +1996.01.16,16-Jan-96,1996,Unprovoked,USA,Hawaii,"Ka�eleki�I Point, Maui",Swimming with mask & snorkel,Robert Rogowicz,M,53,Lacerations to left foot & right shin,N,15h45,Possibly a tiger shark,"G. Ambrose, pp.48-53",1996.01.16-Rogowicz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.16-Rogowicz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.16-Rogowicz.pdf,1996.01.16,1996.01.16,3896,, +1996.01.14.b,14-Jan-96,1996,Unprovoked,AUSTRALIA,Western Australia,"Mutton Bird Island, Albany",,Marris,,,No details,UNKNOWN,,,"T. Peake, GSAF",1996.01.14.b-NV-Marris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.14.b-NV-Marris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.14.b-NV-Marris.pdf,1996.01.14.b,1996.01.14.b,3895,, +1996.01.12,12-Jan-96,1996,Boat,AUSTRALIA,New South Wales,Eight-mile reef off Port Kembla,Chumming for sharks,"Mini Haa Haar, fiberglass boat, occupants: William Catton, Anthony Green, Tony & Kylie Barnes",,,"No injury to occupants; shark rammed, bit & sank boat ",N,10h00,"Mako shark, 4.3 m [14']","Sunday Mail, 1/14/1996, p.2; A. MacCormick, pp.95-96",1996.01.12-MiniHaaHaar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.12-MiniHaaHaar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.12-MiniHaaHaar.pdf,1996.01.12,1996.01.12,3894,, +1996.01.10,10-Jan-96,1996,Unprovoked,REUNION,Saint-Paul ,Embouchure de l'�tang de Saint Paul,Surfing,Gr�gory B�n�che,M,25,FATAL,Y,16h00,"Tiger shark, 300-kg [662-lb] ","Clicanoo, le journal de l'Ile de la R�union",1996.01.10-Beneche.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.10-Beneche.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.10-Beneche.pdf,1996.01.10,1996.01.10,3893,, +1996.00.00.b,1996,1996,Unprovoked,FIJI,Taveuni,,,male,M,,FATAL,Y,,"Tiger shark, 2.5 m [8.25'] ","R. Weeks, GSAF; Otago Daily Times, 6/18/1997",1996.00.00.b-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.00.00.b-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.00.00.b-Fiji.pdf,1996.00.00.b,1996.00.00.b,3892,, +1996.00.00.a,1996,1996,Unprovoked,USA,North Carolina,,Surfing,male,M,,Survived,N,,Tiger shark,SAF,1996.00.00.a-NV-NorthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.00.00.a-NV-NorthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.00.00.a-NV-NorthCarolina.pdf,1996.00.00.a,1996.00.00.a,3891,, +1995.12.18,18-Dec-95,1995,Unprovoked,USA,Hawaii,Southwest of O'ahu,,Carlton Taniyama,M,,No details,UNKNOWN,,,G. Balazs,1995.12.18-NV-Taniyama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.12.18-NV-Taniyama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.12.18-NV-Taniyama.pdf,1995.12.18,1995.12.18,3890,, +1995.11.29,11-Nov-95,1995,Unprovoked,NEW ZEALAND,"Chatham Islands, east of New Zealand",,"Diving, gathering shellfish",Kina Scollay,M,22,Leg & chest lacerated,N,,5 m [16.5'] white shark,"R.D. Weeks, GSAF",1995.11.29-Scollay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.29-Scollay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.29-Scollay.pdf,1995.11.29,1995.11.29,3889,, +1995.11.25.b,25-Nov-95,1995,Invalid,USA,Hawaii,"Ha'ena, Kaua'i",,Wendall Olanolan,M,,Minor injury,N,,Shark involvement not confirmed,G. Balazs,1995.11.25.b-NV-Olanolan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.25.b-NV-Olanolan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.25.b-NV-Olanolan.pdf,1995.11.25.b,1995.11.25.b,3888,, +1995.11.25.a,25-Nov-95,1995,Unprovoked,NORTHERN ARABIAN SEA,,,Fell off aircraft carrier,"Zacharay Mayo, a U.S. Marine",M,,"Minor injuries, bites on fingers & toes. Rescued by Pakistani fishermen",N,,,CNN,1995.11.25.a-Mayo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.25.a-Mayo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.25.a-Mayo.pdf,1995.11.25.a,1995.11.25.a,3887,, +1995.11.17,17-Nov-95,1995,Unprovoked,AUSTRALIA,Queensland,Great Keppel Island,,Roberto Giordan,M,,Survived,N,,,"A. Brenneka, sharkattacksurvivors.com",1995.11.17-Giordan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.17-Giordan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.17-Giordan.pdf,1995.11.17,1995.11.17,3886,, +1995.10.28.R,Reported 28-Oct-1995,1995,Unprovoked,USA,Florida,,Boogie boarding,Matthew Beyrer,M,13,Lacerations to right foot,N,,,"Flagler/Palm Coast News Tribune, 10/28/1995",1995.10.28.R-Beyrer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.28.R-Beyrer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.28.R-Beyrer.pdf,1995.10.28.R,1995.10.28.R,3885,, +1995.10.21,21-Oct-95,1995,Unprovoked,USA,Florida,"North Beach, St. Lucie County",Surfing,John Foley,M,17,Foot bitten,N,,,"I. Nordemar, Fort Pierce Tribune, 10/25/1995",1995.10.21-Foley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.21-Foley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.21-Foley.pdf,1995.10.21,1995.10.21,3884,, +1995.10.11,11-Oct-95,1995,Unprovoked,AUSTRALIA,Queensland,"Pialba, Hervey Bay",Playing / standing,Lisa Mott,F,15,Laceration to thigh,N,14h30,4 m shark,"Herald Sun, 10/12/1995, p.9",1995.10.11-Mott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.11-Mott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.11-Mott.pdf,1995.10.11,1995.10.11,3883,, +1995.10.01,01-Oct-95,1995,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",Surfing,Stephen Massfeller,M,39,Right arm injured,N,11h30,1.2 m to 1.5 m [4' to 5'] shark,"Orlando Sentinel, 10/2/1995, p. C1; Ocala Star Banner, 10/3/1995",1995.10.01-Massfeller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.01-Massfeller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.01-Massfeller.pdf,1995.10.01,1995.10.01,3882,, +1995.09.30.b,30-Sep-95,1995,Unprovoked,USA,Florida,"Crescent Beach, St. Augustine, St. Johns County",Surfing,Jon Grace,M,14,4 punctures in left foot,N,Morning,1.5 to 1.8 m [5' to 6'] shark,"St. Petersburg Times, 10/3/1995",1995.09.30.b-Grace.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.30.b-Grace.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.30.b-Grace.pdf,1995.09.30.b,1995.09.30.b,3881,, +1995.09.30.a,30-Sep-95,1995,Unprovoked,USA,Florida,"North Beach, Hutchinson Island, St. Lucie County",Surfing,Ryan Evans,M,17,Leg & ankle bitten,N,,,"The Palm Beach Post, 10/1/1995",1995.09.30.a-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.30.a-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.30.a-Evans.pdf,1995.09.30.a,1995.09.30.a,3880,, +1995.09.28,28-Sep-95,1995,Unprovoked,USA,California,"Davenport Landing, Santa Cruz County",Windsurfing,Mike Sullivan,M,25,"Right foot bruised, board bitten",N,17h30,4 m [13'] white shark,"R. Collier, pp.153-154",1995.09.28-Sullivan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.28-Sullivan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.28-Sullivan_Collier.pdf,1995.09.28,1995.09.28,3879,, +1995.09.19.,19-Sep-95,1995,Unprovoked,USA,Florida,"Matanzas Bay Inlet, St. Johns County",Surfing,Gavin Korth,M,19,Left arm & hand lacerated,N,,1.8 m [6'] shark,"Orlando Sentinel, 9/20/1995, p.C.3",1995.09.19-Korth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.19-Korth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.19-Korth.pdf,1995.09.19.,1995.09.19.,3878,, +1995.09.17,17-Sep-95,1995,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Swimming,Jill Varney,F,19,Left elbow and bicep bitten,N,15h40,,"S. Petersohn, GSAF; Orlando Sentinel, 9/18/1995, p.C.3",1995.09.17-Varney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.17-Varney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.17-Varney.pdf,1995.09.17,1995.09.17,3877,, +1995.09.16,16-Sep-95,1995,Unprovoked,REUNION,Saint-Denis,,Body-boarding,Jerome Pruneaux,M,,FATAL,Y,,,"LeQuotidien, 12/4/1999",1995.09.16-Pruneaux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.16-Pruneaux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.16-Pruneaux.pdf,1995.09.16,1995.09.16,3876,, +1995.09.13,13-Sep-95,1995,Unprovoked,USA,Florida,"Alligator Reef, off Islamorada, Monroe County",Scuba diving,William Covert,M,25,"Presumed FATAL, body not recovered",Y,,3 m to 3.7 m [10' to 12'] bull shark,"G. Hubbell; J. Castro; Ocala Star-Banner, 9/22/1995; Orlando Sentinel, 9/23/1995, p.D1 +",1995.09.13-Covert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.13-Covert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.13-Covert.pdf,1995.09.13,1995.09.13,3875,, +1995.09.11,11-Sep-95,1995,Unprovoked,AUSTRALIA,Western Australia,"Honeymoon Island, near Hopetown",Abalone diving using Hookah (near calving whales),David Alan Weir,M,29,"FATAL, head, shoulder and arm severed, remains recovered at Munglinup Beach on 9/13/1995",Y,15h00,White shark,"The Advertiser, 9/13/1995, p.2; H. Edwards, pp.1-8",1995.09.11-Weir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.11-Weir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.11-Weir.pdf,1995.09.11,1995.09.11,3874,, +1995.09.03.b,03-Sep-95,1995,Unprovoked,USA,California,"Shelter Cove, Humboldt County",Abalone diving using Hookah (resting on the surface),Brian Hillenburg,M,32,Lower leg bitten,N,16h00,3 m to 4 m [10' to 13'] white shark,"R. Collier, pp.151-153",1995.09.03-Hillenburg_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.03-Hillenburg_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.03-Hillenburg_Collier.pdf,1995.09.03.b,1995.09.03.b,3873,, +1995.09.03.a,03-Sep-95,1995,Invalid,USA,North Carolina,"Bald Head Island, Brunswick County",Swimming,male,M,9,Laceration to lower leg,N,,Shark involvement not confirmed,"Wilmington MorningStar, 9/5/1995",1995.09.03.a-BaldHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.03.a-BaldHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.03.a-BaldHead.pdf,1995.09.03.a,1995.09.03.a,3872,, +1995.08.31.b,31-Aug-95,1995,Unprovoked,USA,Florida,"North Beach Inlet, St. Lucie County",Surfing,Jason Cablish,M,19,Left hand & forearm bitten,N,,1.2 m to 1.5 m [4' to 5'] shark,"Fort Pierce Tribune, 9/1/1995",1995.08.31.b-Cablish.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.31.b-Cablish.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.31.b-Cablish.pdf,1995.08.31.b,1995.08.31.b,3871,, +1995.08.31.a,31-Aug-95,1995,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",On a float,Robert Hall,M,44,Puncture wounds on ankle & leg,N,,,"The State (Colombia, SA) 9/1/1995; Charlotte Observer, 9/2/1995, p.4C",1995.08.31.a-Hall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.31.a-Hall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.31.a-Hall.pdf,1995.08.31.a,1995.08.31.a,3870,, +1995.08.27,27-Aug-95,1995,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Surfing,Aluisio Francisco da Silva Filho,M,,Survived,N,,,JCOnline,1995.08.27-AluisioFranciscoDeSilvaFilho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.27-AluisioFranciscoDeSilvaFilho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.27-AluisioFranciscoDeSilvaFilho.pdf,1995.08.27,1995.08.27,3869,, +1995.08.26/b,26-Aug-95,1995,Unprovoked,USA,Florida,"Crescent Beach, St. Johns County",Surfing,Brian Korth,M,16,Left elbow bitten,N,18h30,5' shark,"Gainsville Sun, 8/30/1995",1995.08.26.b-Korth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.26.b-Korth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.26.b-Korth.pdf,1995.08.26/b,1995.08.26/b,3868,, +1995.08.26.a,26-Aug-95,1995,Unprovoked,USA,Florida,"Ponce de Leon Inlet, Volusia County",Surfing,Dwight Irvin,M,18,4 puncture wounds on right pinky finger,N,14h10,"""a small shark""","S. Petersohn, GSAF; C. Lancaster, Orlando Sentinel, 8/27/1995, p.B5; Ocala Star Banner, 8/28/1995",1995.08.26.a-DwightIrvin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.26.a-DwightIrvin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.26.a-DwightIrvin.pdf,1995.08.26.a,1995.08.26.a,3867,, +1995.08.25,25-Aug-95,1995,Unprovoked,USA,North Carolina,"Off Masonboro Island, New Hanover County",Swimming,Michael Greenwood,M,16,Left arm bitten,N,"""Night""",1.2 m to 1.5 m [4' to 5'] shark,"Charlotte Observer, 8/27/1995, p.2B",1995.08.25-Greenwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.25-Greenwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.25-Greenwood.pdf,1995.08.25,1995.08.25,3866,, +1995.08.22.c,22-Aug-95,1995,Unprovoked,USA,North Carolina,"Wrightsville Beach, New Hanover County",Swimming ,Scott Hall,M,23,Right foot bitten,N,Afternoon,"""sand"" shark","C. Creswell, GSAF",1995.08.22.b-Hall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.22.b-Hall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.22.b-Hall.pdf,1995.08.22.c,1995.08.22.c,3865,, +1995.08.22.a,22-Aug-95,1995,Unprovoked,USA,Florida,"Ponce de Leon Inlet, Volusia County",Surfing,Jason Barzo,M,19,Bottom of left foot gashed,N,19h00,"""small shark""","C. Lancaster, Orlando Sentinel, 8/24/1995, p.D1",1995.08.22.a-Barzo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.22.a-Barzo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.22.a-Barzo.pdf,1995.08.22.a,1995.08.22.a,3864,, +1995.08.21,21-Aug-95,1995,Unprovoked,USA,North Carolina,Cape Lookout Bight,Diving,,,,No injury,N,,Two 1.2 m to 1.5 m [4' to 5'] sharks,"C. Creswell, GSAF",1995.08.21-CapeLookoutBight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.21-CapeLookoutBight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.21-CapeLookoutBight.pdf,1995.08.21,1995.08.21,3863,, +1995.08.19,19-Aug-95,1995,Unprovoked,TONGA,Vava�u,Near Tapana Island,Fishing,Laukau Lile,M,18,Upper left thigh avulsed ,N,15h00,"""small shark""","S. Fonea, M.D.",1995.08.19-Lile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.19-Lile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.19-Lile.pdf,1995.08.19,1995.08.19,3862,, +1995.08.15,15-Aug-95,1995,Unprovoked,USA,Florida,"Daytona Beach, Volusia County ",Wading,James Oatley,M,20,Thigh lacerated,N,08h30,1.8 m [6'] shark,"S. Petersohn, GSAF; Bradenton Herald & Ocala Star Banner, 8/17/1995; London Daily Star, 8/19/1995",1995.08.15-Oatley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.15-Oatley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.15-Oatley.pdf,1995.08.15,1995.08.15,3861,, +1995.08.13.a,13-Aug-95,1995,Invalid,USA,North Carolina,"Emerald Isle, Carteret County",Swimming,Kyle Dickens,M,15,Death resulted fom drowning; shark bites were post-mortem,Y,,Tiger shark,"J. L. Almeida, M.D.",1995.08.13.a-Dickens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.13.a-Dickens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.13.a-Dickens.pdf,1995.08.13.a,1995.08.13.a,3860,, +1995.08.10.b,10-Aug-95,1995,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,male,M,20,Laceration to left heel,N,13h30,,"News-Journal, 8/11/1995",1995.08.10.b-PonceInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.10.b-PonceInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.10.b-PonceInlet.pdf,1995.08.10.b,1995.08.10.b,3859,, +1995.08.10.a,10-Aug-95,1995,Unprovoked,USA,South Carolina,"Ocean Lakes Campground, south of Myrtle Beach, Horry County","""Riding waves on a board""",Venus Lindsey ,F,14,Left foot bitten,N,,Blacktip shark,"Charlotte Observer, 8/12/1995, p.1C; C . Creswell, GSAF",1995.08.10.a-Venus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.10.a-Venus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.10.a-Venus.pdf,1995.08.10.a,1995.08.10.a,3858,, +1995.08.07,07-Aug-95,1995,Unprovoked,USA,Florida,"Ponce de Leon Inlet, Volusia County ",Body boarding,Matt Sturgis,M,12,Multiple bites on right leg and knee,N,14h10,1.2 m to 1.5 m [4' to 5'] shark,"S. Petersohn, GSAF; Orlando Sentinel, 8/9/1995, p.C.1; Miami Herald, 8/9/1995",1995.08.07-MattSturgis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.07-MattSturgis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.07-MattSturgis.pdf,1995.08.07,1995.08.07,3857,, +1995.08.01,01-Aug-95,1995,Invalid,TONGA,Vava�u,Neiafu,Fishing,Jim McManus,M,,Finger broken when hooked shark grabbed his catch,N,,1.8 m [6'] grey reef shark,"J. McManus, M. Levine, GSAF",1995.08.01-McManus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.01-McManus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.01-McManus.pdf,1995.08.01,1995.08.01,3856,, +1995.08.00,Aug-95,1995,Invalid,USA,California,"Carmel, Monterey County",Diving,Marco Carme,M,,Torso bitten,N,,4 m [13'] white shark,"Reported in Oct issue of Diver magazine, possibly confused with Marco Flagg incident",1995.08.00-Carme.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.00-Carme.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.00-Carme.pdf,1995.08.00,1995.08.00,3855,, +1995.07.28.e,28-Jul-95,1995,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,,Left foot bitten,N,16h30,,"P. LaMee, Orlando Sentinel, 8/12/1995, p.D.1",1995.07.28.e-male-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.e-male-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.e-male-surfer.pdf,1995.07.28.e,1995.07.28.e,3854,, +1995.07.28.d,28-Jul-95,1995,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,,Minor laceration on lower leg,N,14h45,,"C. Lancaster & M. Losey, Orlando Sentinel, 7/29/1995; P. LaMee, Orlando Sentinel, 8/12/1995, p.D.1",1995.07.28.d-male-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.d-male-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.d-male-surfer.pdf,1995.07.28.d,1995.07.28.d,3853,, +1995.07.28.c,28-Jul-95,1995,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Patrick Moore,M,18,Laceration to heel,N,14h10,,"S. Petersohn, GSAF; C. Lancaster & M. Losey, Orlando Sentinel, 7/29/1995; P. LaMee, Orlando Sentinel, 8/12/1995, p.D.1",1995.07.28.c-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.c-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.c-Moore.pdf,1995.07.28.c,1995.07.28.c,3852,, +1995.07.28.b,28-Jul-95,1995,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Standing,Eric Kozak,M,18,2-inch laceration to lower right leg ,N,13h40,,"S. Petersohn, GSAF; C. Lancaster & M. Losey, Orlando Sentinel, 7/29/1995, p.A1; P. LaMee, Orlando Sentinel, 8/12/1995, p.D.1",1995.07.28.b-Kozak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.b-Kozak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.b-Kozak.pdf,1995.07.28.b,1995.07.28.b,3851,, +1995.07.28.a,28-Jul-95,1995,Unprovoked,USA,South Carolina,"Pawleys Island, Georgetown County",,male,M,12,Hand bitten (minor injury),N,,,"C. Creswell, GSAF",1995.07.28.a-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.a-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.a-boy.pdf,1995.07.28.a,1995.07.28.a,3850,, +1995.07.24,24-Jul-95,1995,Unprovoked,USA,South Carolina,"Pawleys Island, Georgetown County",Swimming,female,F,7,Right foot bitten,N,,,"Charlotte Observer, 7/29/1995, p.3C",1995.07.24.a-PawleysIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.24.a-PawleysIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.24.a-PawleysIsland.pdf,1995.07.24,1995.07.24,3849,, +1995.07.23,23-Jul-95,1995,Unprovoked,USA,Florida,"South Jetty, New Smyrna Beach, Volusia County",Body boarding,male,M,47,Foot bitten,N,,,"P. LaMee, Orlando Sentinel, 8/12/1995, p.D.1",1995.07.23-NSB-bodyboarder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.23-NSB-bodyboarder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.23-NSB-bodyboarder.pdf,1995.07.23,1995.07.23,3848,, +1984.11.08,08-Nov-84,1984,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Gonubie River Mouth,Surfing,Wayne Monk ,M,14,Wetsuit lacerated,N,17h00,,"W. Monk, M. Levine, GSAF",1984.11.08-Monk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.08-Monk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.08-Monk.pdf,1984.11.08,1984.11.08,3847,, +1995.07.07,07-Jul-95,1995,Unprovoked,BRAZIL,Pernambuco,Candeias,Surfing,Cl�lio Rosendo Falc�o Filho,M,18,"Arm bitten, FATAL",Y,,,JCOnline,1995.07.07-Filhol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.07-Filhol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.07-Filhol.pdf,1995.07.07,1995.07.07,3847,, +1995.07.06,06-Jul-95,1995,Unprovoked,USA,Texas,Port Aransas,Surfing,Mark George,M,34,Foot bitten,N,,,"Associated Press, 7/8/1995",1995.07.06-MarkGeorge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.06-MarkGeorge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.06-MarkGeorge.pdf,1995.07.06,1995.07.06,3846,, +1995.07.03,03-Jul-95,1995,Provoked,USA,Mississippi,"Cat Island, Harrison County",Fishing,Cheryl Lowman,F,32,Minor laceration to leg from a hooked shark PROVOKED INCIDENT,N,,Blacktip shark,"Sun Herald, 7/4/1995",1995.07.03-Lowman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.03-Lowman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.03-Lowman.pdf,1995.07.03,1995.07.03,3845,, +1995.07.00,Early Jul-1995,1995,Provoked,USA,South Carolina,"Off 29th Avenue, Myrtle Beach, Horry County",Jumped off surfboard & landed on the shark,Roberto Perez,M,,Foot bitten PROVOKED INCIDENT,N,,,"Aiken Standard, 8/12/1995",1995.07.00-Perez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.00-Perez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.00-Perez.pdf,1995.07.00,1995.07.00,3844,, +1995.06.30,30-Jun-95,1995,Unprovoked,USA,California,"Bluefish Cove, Pt. Lobos State Park, Monterey County",Scuba diving (ascending using scooter),Marco Flagg,M,31,"Forearm, abdomen & upper leg lacerated",N,17h30,6 m [20'] white shark,"R. Collier, pp.149-151 ",1995.06.30-MarcoFlagg_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.30-MarcoFlagg_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.30-MarcoFlagg_Collier.pdf,1995.06.30,1995.06.30,3843,, +1995.06.24,24-Jun-95,1995,Unprovoked,USA,California,"LaJolla Shores, San Diego County",Kayaking,female,F,,Minor injuries,N,,White shark (tooth fragment recovered),"R. Collier, pp.148-149 ",1995.06.24-LaJolla_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.24-LaJolla_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.24-LaJolla_Collier.pdf,1995.06.24,1995.06.24,3842,, +1995.06.23,23-Jun-95,1995,Unprovoked,USA,Georgia,"Tybee Island, Chatham County",Playing / jumping,Joshua Bradley,M,13,Ankle bitten,N,,"""sand"" shark","C. Creswell, GSAF",1995.06.23-Bradley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.23-Bradley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.23-Bradley.pdf,1995.06.23,1995.06.23,3841,, +1995.06.17.b,17-Jun-95,1995,Unprovoked,USA,South Carolina,"Garden City Beach, Horry County",Surfing,Jim Whitney,M,,Foot bitten,N,,,"C. Creswell, GSAF; Charlotte Observer, 8/12/1995",1995.06.17.b-Whitney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.17.b-Whitney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.17.b-Whitney.pdf,1995.06.17.b,1995.06.17.b,3840,, +1995.06.17.a,17-Jun-95,1995,Unprovoked,USA,Florida,"Jensen Beach Park, Martin County",Swimming,Paul Lucas,M,45,Right leg bitten,N,18h30?,1.8 m [6'] shark,"Orlando Sentinel, 6/19/1995, p.B3; Fort Pierce Tribune, 6/19/1995; The Palm Beach Post - June 18, 1995 ",1995.06.17.a-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.17.a-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.17.a-Lucas.pdf,1995.06.17.a,1995.06.17.a,3839,, +1995.06.16,16-Jun-95,1995,Unprovoked,USA,Florida,"Tiger Shores Beach, Martin County",Swimming,Amber Delmans,F,10,Leg bitten,N,14h00,6' shark,"Orlando Sentinel, 6/19/1995, p.B3; Fort Pierce Tribune, 6/19/1995",1995.06.16-Delmans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.16-Delmans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.16-Delmans.pdf,1995.06.16,1995.06.16,3838,, +1995.06.14,14-Jun-95,1995,Unprovoked,USA,Hawaii,"Opposite Grand Wailea Resort, Wailea, Maui",Swimming,Donald Bloom,M,38,Puncture wounds & scratches to torso & left leg ,N,11h50,"Tiger shark, 3.7 m [12'] ","G. Ambrose, pp.41-47",1995.06.14-Bloom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.14-Bloom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.14-Bloom.pdf,1995.06.14,1995.06.14,3837,, +1995.06.13,13-Jun-95,1995,Unprovoked,HONG KONG,Clearwater Bay,First Beach,Swimming,Wong Kwai-yung,F,45,"FATAL, left leg & forearm severed",Y,,Though to involve a tiger shark,"J. Wong & R.D. Weeks, GSAF; Daily Telegraph Mirror, 6/14/1995, p.42",1995.06.13-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.13-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.13-HongKong.pdf,1995.06.13,1995.06.13,3836,, +1995.06.02,02-Jun-95,1995,Unprovoked,HONG KONG,New Territories,Sheung Sze Wan Beach,Swimming,Herman Lo Cheuk-Yuet,M,29,"FATAL, right thigh bitten, femur exposed ",Y,14h30,1.8 m to 2.1 m [6' to 7'] shark,"J. Wong, GSAF; Daily Telegraph Mirror, 6/14/1995, p.42 ",1995.06.02-Herman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.02-Herman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.02-Herman.pdf,1995.06.02,1995.06.02,3835,, +1995.05.31,31-May-95,1995,Unprovoked,HONG KONG,New Territories,Sai Kung Beach,Diving,Tso Kam-Sun,,44,"FATAL, right leg severed, left leg lacerated ",Y,,,"J. Wong, GSAF; Daily Telegraph Mirror, 6/3/1995; ",1995.05.31-Tso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.31-Tso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.31-Tso.pdf,1995.05.31,1995.05.31,3834,, +1995.05.26,26-May-95,1995,Unprovoked,USA,Florida,"Vero Beach, Indian River County",Surfing,Brent Enck,M,15,Left foot bitten,N,,Possibly a bull shark,"Fort Pierce Tribune, 5/31/1995",1995.05.26-Enck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.26-Enck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.26-Enck.pdf,1995.05.26,1995.05.26,3833,, +1995.05.24,24-May-95,1995,Unprovoked,FIJI,Yasawa Islands,Waya Island,Sleeping in anchored boat,Kinijioji Vindovi,M,69,"FATAL, hand & leg severely injured by shark that leapt into boat ",Y,,3.7 m [12'] shark,"Another report of the same or similar incident states that a 15' shark leapt into a boat, injuring all 4 people on board",1995.05.24-Vindovi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.24-Vindovi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.24-Vindovi.pdf,1995.05.24,1995.05.24,3832,, +1995.05.18,18-May-95,1995,Unprovoked,AUSTRALIA,Western Australia,"Bernier Island, Shark Bay",,Hutchins,,,No details,UNKNOWN,,,"T. Peake, GSAF",1995.05.18-NV-Hutchins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.18-NV-Hutchins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.18-NV-Hutchins.pdf,1995.05.18,1995.05.18,3831,, +1995.05.12,12-May-95,1995,Unprovoked,SOUTH KOREA,,Jangkodo Island,Diving for abalone,Kim Sun-sim,F,44,Right leg severed FATAL,Y,,4 m shark,Y. Choi & K. Nakaya,1995.05.12-Sun-Shim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.12-Sun-Shim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.12-Sun-Shim.pdf,1995.05.12,1995.05.12,3830,, +1995.04.16,16-Apr-95,1995,Invalid,USA,Florida,"New Smyrna Beach, Volusia County",,C.M.,M,12,Dorsum of right hand bitten,N,10h35,Probable bluefish bite,"S. Petersohn, GSAF",1995.04.16-CM.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.16-CM.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.16-CM.pdf,1995.04.16,1995.04.16,3829,, +1995.04.13,13-Apr-95,1995,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",,Mark Degraff,M,20,Puncture wounds on right foot,N,13h20,,"S. Petersohn, GSAF",1995.04.13-NV-OrmondBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.13-NV-OrmondBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.13-NV-OrmondBeach.pdf,1995.04.13,1995.04.13,3828,, +1995.04.09.b,09-Apr-95,1995,Unprovoked,AUSTRALIA,New South Wales,"Honeysuckle Point, Eden",Diving,David Malone,M,,"No injury, shark took swimfin",N,,Wobbegong shark,"Daily Telegraph 55/9/1996, p.7",1995.04.09.b-Malone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.09.b-Malone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.09.b-Malone.pdf,1995.04.09.b,1995.04.09.b,3827,, +1995.04.09.a,09-Apr-95,1995,Unprovoked,JAPAN,Aichi Prefecture,Atsumi Peninsula,Scuba diving for bivalves,Shintaro Hara,M,47,FATAL,Y,10h15,6 m [20'] white shark,K. Nakaya,1995.04.09.a-Hara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.09.a-Hara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.09.a-Hara.pdf,1995.04.09.a,1995.04.09.a,3826,, +1995.03.21,21-Mar-95,1995,Unprovoked,AUSTRALIA,New South Wales,"Clark Island, Sydney Harbour",Surf skiing,Mary Meagher,F,,"No injury, knocked off board by shark",N,,,"Deseret News, 3/24/1995 ",1995.03.21-Meagher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.03.21-Meagher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.03.21-Meagher.pdf,1995.03.21,1995.03.21,3825,, +1995.03.11,11-Mar-95,1995,Unprovoked,AUSTRALIA,South Australia,Cactus Beach,Surfing,Andy McBain,M,35,Left arm lacerated,N,07h30,"Bronze whaler shark, 2 m ","Advertiser, 3/13/1995, p.1 & 7/22/1995, p.13",1995.03.11-McBain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.03.11-McBain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.03.11-McBain.pdf,1995.03.11,1995.03.11,3824,, +1995.03.05,05-Mar-95,1995,Unprovoked,BRAZIL,Maranh�o,"Praia do Olho D'�gua, S�o Luis",Swimming,E.S.,,,FATAL,Y,Afternoon,,M. Szpilman,1995.03.05-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.03.05-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.03.05-Brazil.pdf,1995.03.05,1995.03.05,3823,, +1995.02.19,19-Feb-95,1995,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kidd�s Beach,Swimming,Johan Deetlefs,M,22,Lacerations to lower leg & foot,N,17h15,Raggedtooth shark,"A. Gifford, GSAF ",1995.02.19-Deetlefs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.02.19-Deetlefs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.02.19-Deetlefs.pdf,1995.02.19,1995.02.19,3822,, +1995.02.00,Feb-95,1995,Unprovoked,VENEZUELA,,,Wind surfing,Justin James,M,,Right ankle & foot bitten,N,,,"A. Brenneka, sharkattacksurvivors.com",1995.02.00-JustinJames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.02.00-JustinJames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.02.00-JustinJames.pdf,1995.02.00,1995.02.00,3821,, +1995.01.24,24-Jan-95,1995,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Isipingo,Swimming,Mthokozisi Cedrick Mpanza,M,14,"FATAL, right thigh bitten & femur exposed, shallow lacerations on right calf & left thigh & fingers lacerated ",Y,18h00,"Tiger shark, 1.8 m [6'] ","A. Gifford, GSAF",1995.01.24-Mpanza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.01.24-Mpanza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.01.24-Mpanza.pdf,1995.01.24,1995.01.24,3820,, +1995.01.02,02-Jan-95,1995,Unprovoked,BRAZIL,Pernambuco,Piedade,Surfing,Humberto Moraes de Souza,M,17,Foot bitten,N,, ,"San Jose Mercury News, 1/6/1995, p.12A",1995.01.02-H.de-SouzaMoraes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.01.02-H.de-SouzaMoraes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.01.02-H.de-SouzaMoraes.pdf,1995.01.02,1995.01.02,3819,, +1995.00.00.e,1995,1995,Invalid,SOUTH AFRICA,,,Diving,Karl Sacks,M,33,Reportedly lost lower right leg as result of shark bite,N,,,"S. Hughes, Daily Star (UK), 6/10/2010",1995.00.00.e-Sacks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.e-Sacks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.e-Sacks.pdf,1995.00.00.e,1995.00.00.e,3818,, +1995.00.00.d,1995,1995,Provoked,AUSTRALIA,Queensland,Gladstone Reef,Snorkeling,male,M,,"No injury, grabbed byshark after he pulled its tail PROVOKED INCIDENT",N,,Leopard shark,"Shark-L, 9/13/1996",1995.00.00.d-Gladstone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.d-Gladstone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.d-Gladstone.pdf,1995.00.00.d,1995.00.00.d,3817,, +1995.00.00.c,1995,1995,Invalid,USA,North Carolina,Carolina Beach,Scuba diving,Nunley,M,,Death resulted fom drowning; shark bites were post-mortem,Y,,,"C. Creswell, GSAF",1995.00.00.c-Nunley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.c-Nunley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.c-Nunley.pdf,1995.00.00.c,1995.00.00.c,3816,, +1995.00.00.b,1995,1995,Unprovoked,USA,South Carolina,"Pawleys Island, Georgetown County",,male,M,,No details,UNKNOWN,,,"C. Creswell, GSAF; ISAF 2793",1995.00.00.b-NV-PawleysIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.b-NV-PawleysIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.b-NV-PawleysIsland.pdf,1995.00.00.b,1995.00.00.b,3815,, +1994.12.30,30-Dec-94,1994,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Body boarding,Fritz Van Zyl,M,26,"No injury, board bitten",N,16h00,5.5 m [18'] white shark,"M. Levine, GSAF; M. Marks",1994.12.30-VanZyl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.30-VanZyl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.30-VanZyl.pdf,1994.12.30,1994.12.30,3814,, +1994.12.18,18-Dec-94,1994,Unprovoked,USA,Hawaii,"Kinikini, Mana, Kaua'i","Surfing, sitting on board",Anonymous,,,"No injury, shark bit surfboard",N,14h45,,Hawaii Department of Land and Natural Resources,1994.12.18-Kaui-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.18-Kaui-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.18-Kaui-surfer.pdf,1994.12.18,1994.12.18,3813,, +1994.12.13,13-Dec-94,1994,Unprovoked,BRAZIL,Pernambuco,Piedade,Surfing,Tiago Costa de Lima,M,,Survived,N,,,JCOnline; M. Szpilman,1994.12.13-TiagoCostaDaLima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.13-TiagoCostaDaLima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.13-TiagoCostaDaLima.pdf,1994.12.13,1994.12.13,3812,, +1994.12.11,11-Dec-94,1994,Unprovoked,BRAZIL,Pernambuco,Paiva,Surfing,Jorge de Oliveira Andrade,M,,Right thigh bitten,N,,,D. Duarte,1994.12.11-JorgeDeOliveiraAndrade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.11-JorgeDeOliveiraAndrade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.11-JorgeDeOliveiraAndrade.pdf,1994.12.11,1994.12.11,3811,, +1994.12.10,Reported 10-Dec-1994 ,1994,Unprovoked,VANUATU,Tafea Province,Aniwa Island,,,,,No details,UNKNOWN,,,"Vanuatu Weekly Hebdomadaire, 12/10/1994, p.6",1994.12.10-NV-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.10-NV-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.10-NV-Vanuatu.pdf,1994.12.10,1994.12.10,3810,, +1994.12.09.b,09-Dec-94,1994,Invalid,AUSTRALIA,Queensland,"Hinchinbrook Channel, Queensland",Murder victim,Peter Saibura,M,44,Shark scavenged on his corpse,N,,,"Courier Mail, 3/30/1995",1994.12.09.b-Saibura-murder victim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.09.b-Saibura-murder victim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.09.b-Saibura-murder victim.pdf,1994.12.09.b,1994.12.09.b,3809,, +1994.12.09.a,09-Dec-94,1994,Unprovoked,USA,California,"San Miguel Island, Santa Barbara County",Commercial diver (submerged or treading water),James Robinson,M,42,"FATAL, right leg nearly severed, puncture wounds to left leg ",Y,08h45,5 m to 5.5 m [16.5' to 18'] white shark,"R. Collier, pp.147-148; Orlando Sentinel, 12/10/1994, p.A3",1994.12.09.a-Robinson_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.09.a-Robinson_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.09.a-Robinson_Collier.pdf,1994.12.09.a,1994.12.09.a,3808,, +1994.12.01,01-Dec-94,1994,Unprovoked,BRAZIL,Pernambuco,Paiva,Surfing,Laudenilson Gomes de Lima,M,,FATAL,Y,,," San Jose Mercury News, 1/6/1995, p.12A ",1994.12.01-LaudenilsonGomesDeLima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.01-LaudenilsonGomesDeLima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.01-LaudenilsonGomesDeLima.pdf,1994.12.01,1994.12.01,3807,, +1994.11.25.a,25-Nov-94,1994,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Spearfishing,Anton Bosman,M,,No injury,N,,"Raggedtooth shark, 2.7 m [9'] ","A. Gifford, GSAF",1994.11.25-Bosman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.11.25-Bosman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.11.25-Bosman.pdf,1994.11.25.a,1994.11.25.a,3806,, +1994.11.13,13-Nov-94,1994,Unprovoked,USA,Hawaii,"Off the Hanalei River, Kaua'i","Surfing, paddling seawards",Kathleen McCarthy Lunn ,F,34,Right thigh & board bitten,N,09h45,2.7 m [9'] shark,"G. Balazs; G. Ambrose, pp.24-29",1994.11.13-Lunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.11.13-Lunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.11.13-Lunn.pdf,1994.11.13,1994.11.13,3805,, +1994.11.06.a,06-Nov-94,1994,Unprovoked,USA,Hawaii,"Kealia Beach, Kaua'i",Surfing,C. Stokes,,,"No injury, shark bit surfboard",N,16h00,,Hawaii Department of Land and Natural Resources,1994.11.06.a-Stokes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.11.06.a-Stokes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.11.06.a-Stokes.pdf,1994.11.06.a,1994.11.06.a,3804,, +1994.10.18,18-Oct-94,1994,Unprovoked,BRAZIL,Pernambuco,Piedade,Surfing,Unidentified,,,Survived,N,,,JCOnline,1994.10.18-Piedade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.18-Piedade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.18-Piedade.pdf,1994.10.18,1994.10.18,3803,, +1994.10.17,17-Oct-94,1994,Unprovoked,BRAZIL,Pernambuco,Piedade,Surfing,Ednaldo Jose da Silva,M,,Survived,N,,,JCOnline,1994.10.17-EdnaldoJoseDaSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.17-EdnaldoJoseDaSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.17-EdnaldoJoseDaSilva.pdf,1994.10.17,1994.10.17,3802,, +1994.10.08,09-Oct-94,1994,Provoked,USA,Florida,"Bill Baggs Cape Florida State Recreation Area, Miami-Dade County",Wading,Mariel Parker ,F,9,Ankle bitten when she accidently stepped on the shark PROVOKED INCIDENT,N,13h00,Thought to involve a small sand shark,"Miami Herald, 10/9/1994",1994.10.08-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.08-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.08-Parker.pdf,1994.10.08,1994.10.08,3801,, +1994.10.05,05-Oct-94,1994,Unprovoked,USA,Florida,"Indialantic, Brevard County",Surfing,Scott Dulmage,M,16,Foot bitten,N,12h00,,"Orlando Sentinel, 10/5/1994, p.B3",1994.10.05-ScottDulmage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.05-ScottDulmage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.05-ScottDulmage.pdf,1994.10.05,1994.10.05,3800,, +1994.09.26,26-Sep-94,1994,Unprovoked,USA,South Carolina,"North Forest Beach, near Hilton Head, Beaufort County",Swimming,Lioubov Kozarinova,F,30,Right side of abdomen & left hand bitten,N,,,"Atlanta Journal-Constitution, 9/27/1994; Charlotte Observer, 9/27/1994, p.1C",1994.09.26-Kozarinova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.26-Kozarinova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.26-Kozarinova.pdf,1994.09.26,1994.09.26,3799,, +1994.09.21,21-Sep-94,1994,Unprovoked,USA,Oregon,"Short Sand Beach, Oswald West State Park",Surfing,Rob MacKenzie,M,43,"No injury, surfboard bitten",N,16h30,5 m [16.5'] white shark,R. Collier+M2079,1994.09.21-MacKenzie_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.21-MacKenzie_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.21-MacKenzie_Collier.pdf,1994.09.21,1994.09.21,3798,, +1994.09.11.R,Reported 11-Sep-1994,1994,Sea Disaster,USA,Florida,Florida Straits,Adrift on refugee raft,2 Cuban brothers,M,7 & 31,FATAL,Y,,,"Sunday Herald Sun, 9/11/1994, p.25",1994.09.11.R-CubanRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.11.R-CubanRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.11.R-CubanRefugees.pdf,1994.09.11.R,1994.09.11.R,3797,, +1994.09.05,05-Sep-94,1994,Unprovoked,USA,Hawaii,Makaha Surf Beach,Jumped off rocks into white water,Rose Ann Savea,F,12,Left calf bitten,N,11h15,Small shark,Dr. P. Bjorkman,1994.09.05-RoseAnnSavea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.05-RoseAnnSavea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.05-RoseAnnSavea.pdf,1994.09.05,1994.09.05,3796,, +1994.08.22,22-Aug-94,1994,Unprovoked,JAPAN,Kagoshima Prefecture,Tatsugo-cho,,Nagisa Yasuhara,,,Survived,N,,,K. Nakaya,1994.08.22-Yashuhara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.08.22-Yashuhara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.08.22-Yashuhara.pdf,1994.08.22,1994.08.22,3795,, +1994.07.24,24-Jul-94,1994,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Surfing,Carlos Frederico Gomes Martins,M,15,Left foot severed,N,,,C.F.G. Martins; JCOnline,1994.07.24-Carlos_Martins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.24-Carlos_Martins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.24-Carlos_Martins.pdf,1994.07.24,1994.07.24,3794,, +1994.07.09.d,09-Jul-94,1994,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Swimming,Alessandro Gomes de Souza,M,,FATAL,Y,,,JCOnline,1994.07.09.d-AlessandroGomesDeSouza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.d-AlessandroGomesDeSouza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.d-AlessandroGomesDeSouza.pdf,1994.07.09.d,1994.07.09.d,3793,, +1994.07.09.c,09-Jul-94,1994,Unprovoked,REUNION,Saint-Denis,Barachois,Windsurfing,Thierry Boulay,M,24,FATAL,Y,13h45,3 to 3.5 m [10' to 11.5'] bull shark,G. Van Grevelynghe,1994.07.09.c-Boulay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.c-Boulay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.c-Boulay.pdf,1994.07.09.c,1994.07.09.c,3792,, +1994.07.09.b,09-Jul-94,1994,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon Beach, East London",Surfing,Bruce Corby,M,22,"FATAL, leg severed ",Y,13h26,4 m [13'] white shark,"A Gifford, GSAF",1994.07.09.b-Corby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.b-Corby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.b-Corby.pdf,1994.07.09.b,1994.07.09.b,3791,, +1994.07.09.a,09-Jul-94,1994,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon Beach, East London",Surfing,Andrew Carter,M,31,Buttock & leg bitten,N,13h25,4 m [13'] white shark,"A. Gifford, GSAF",1994.07.09.a-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.a-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.a-Carter.pdf,1994.07.09.a,1994.07.09.a,3790,, +1994.07.08.b,08-Jul-94,1994,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Surfing,Sandro Paulo dos Santos,M,,Survived,N,,,JCOnline,1994.07.08.b-SandroPaulosDosSantos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.08.b-SandroPaulosDosSantos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.08.b-SandroPaulosDosSantos.pdf,1994.07.08.b,1994.07.08.b,3789,, +1994.07.08.a,08-Jul-94,1994,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Michael Post ,M,15,Right calf lacerated,N,15h00,"""small shark""","P. LaMee, Orlando Sentinel, 9/4/1995, p. D3",1994.07.08.a-MichaelPost.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.08.a-MichaelPost.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.08.a-MichaelPost.pdf,1994.07.08.a,1994.07.08.a,3788,, +1994.06.24,24-Jun-94,1994,Unprovoked,BAHAMAS,Grand Bahama Island,Freeport,Spearfishing,Alton Curtis,M,30,Forearm severely bitten,N,15h30,1.8 m [6'] shark,"Miami Herald, 7/9/1994",1994.06.24-Curtis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.06.24-Curtis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.06.24-Curtis.pdf,1994.06.24,1994.06.24,3787,, +1994.05.31.b,31-May-94,1994,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,Steve Polack,M,24,Foot lacerated,N,10h30,,"C. Lancaster, Orlando Sentinel, 6/1/1994, p.C1",1994.05.31.b-Polack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.31.b-Polack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.31.b-Polack.pdf,1994.05.31.b,1994.05.31.b,3786,, +1994.05.31.a,31-May-94,1994,Unprovoked,USA,Florida," Daytona Beach, Volusia County",Surfing,Alex Reeber,M,28,Right foot lacerated,N,08h00,1.2 m [4'] spinner shark,"C. Lancaster, Orlando Sentinel, 6/1/1994, p.C1; P.LaMee, Orlando Sentinel, 9/4/1995, p.C.3",1994.05.31.a-Reeber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.31.a-Reeber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.31.a-Reeber.pdf,1994.05.31.a,1994.05.31.a,3785,, +1994.05.28,28-May-94,1994,Unprovoked,USA,Florida,"3 miles east of Jacksonville Beach, Duval County",Spearfishing,James Plumer,M,35,Shoulder bitten,N,,2.1 m [7'] shark,"Miami Herald, 5/30/1994; Tampa Tribune; Bradenton Herald, Bradenton Herald, 5/30/1994",1994.05.28-Plumer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.28-Plumer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.28-Plumer.pdf,1994.05.28,1994.05.28,3784,, +1994.05.24,24-May-94,1994,Unprovoked,USA,Florida,"Spessard Holland Park, Melbourne Beach, Brevard County",Wading,female,F,36,Lower left calf & ankle lacerated,N,,1.2 m [4'] shark,"Tampa Tribune, 5/26/1994; Bradenton Herald, 5/26/1994",1994.05.24-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.24-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.24-female.pdf,1994.05.24,1994.05.24,3783,, +1994.05.23,23-May-94,1994,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,Jim Sellmer,M,26,Gash on ankle,N,Afternoon,,"Orlando Sentinel, 5/24/1994, p. C3 & 5/25/ 1994, p. D.3",1994.05.23-Sellmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.23-Sellmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.23-Sellmer.pdf,1994.05.23,1994.05.23,3782,, +1994.05.15,15-May-94,1994,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Joel Tatro,M,22,Right knee lacerated,N,08h30,>1.8 m [6'] shark,"Orlando Sentinel, 5/16/1994",1994.05.15-Tatro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.15-Tatro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.15-Tatro.pdf,1994.05.15,1994.05.15,3781,, +1994.04.16,Reported 16-Apr-1994,1994,Invalid,USA,California,"Sunset Cliffs, San Diego, San Diego County",,Michele Von Emster,F,25,Not a shark attack; possibly murder. Body recovered 4-16-1994 minus severed leg,Y,,Blue shark bites post mortem,"R. Collier; McCormick, p.147",1994.04.16-Emster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.16-Emster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.16-Emster.pdf,1994.04.16,1994.04.16,3780,, +1994.04.15,15-Apr-94,1994,Unprovoked,REUNION,Saint-Joseph,Lieu-dit Cayenne,,,,,FATAL,Y,,"3 m [10'], 200-kg [441-lb] bull shark",G. Van Grevelynghe,1994.04.15-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.15-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.15-Reunion.pdf,1994.04.15,1994.04.15,3779,, +1994.04.06,06-Apr-94,1994,Unprovoked,BAHAMAS,,Rum Cay,Wading,Scott Curatolo-Wagemann,M,20?,Lower right leg bitten,N,10h30,2' to 3' shark,S. Curatolo-Wagemann; SharkSurvivors.com,1994.04.06-Wagemann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.06-Wagemann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.06-Wagemann.pdf,1994.04.06,1994.04.06,3778,, +1994.04.03,03-Apr-94,1994,Unprovoked,USA,Florida,"Miami Beach, Dade County",Freediving for seashells,Raul Tozo,M,71,Left shoulder lacerated,N,15h00,,"Miami Herald, 4/5/1994",1994.04.03-Tozo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.03-Tozo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.03-Tozo.pdf,1994.04.03,1994.04.03,3777,, +1994.04.02,02-Apr-94,1994,Unprovoked,SOUTH AFRICA,Western Cape Province,Arniston,Spearfishing,Charles De Wet Reis,M,,FATAL ,Y,,4.9 m white shark,"L Compagno, GSAF",1994.04.02-dwRies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.02-dwRies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.02-dwRies.pdf,1994.04.02,1994.04.02,3776,, +1994.03.23.b,23-Mar-94,1994,Unprovoked,CHILE,,300 miles east of Easter Island,Swimming alongside NOAA research vessel Discoverer,Heather Boswell,F,19,Leg severed mid-thigh,N,11h58,"3.6 m [11'9""] white shark","H. Boswell, M. Levine & E. Ritter, GSAF",1994.03.23.b-Boswell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.23.b-Boswell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.23.b-Boswell.pdf,1994.03.23.b,1994.03.23.b,3775,, +1994.03.23.a,23-Mar-94,1994,Unprovoked,CHILE,,300 miles East of Easter Island,Swimming alongside NOAA research vessel Discoverer,Phil Buffington,M,,Thigh bitten,N,11h51,"3.6 m [11'9""] white shark","H. Boswell, M. Levine, GSAF",1994.03.23.a-Buffington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.23.a-Buffington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.23.a-Buffington.pdf,1994.03.23.a,1994.03.23.a,3774,, +1994.03.07,07-Mar-94,1994,Provoked,USA,California,,Removing shark from tank in nightclub ,Steve Rosebloome,M,33,Arm lacerated by captive shark PROVOKED INCIDENT,N,,"Lemon shark, 4' ","A. MacCormick, p.227",1994.03.07-Rosenbloome.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.07-Rosenbloome.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.07-Rosenbloome.pdf,1994.03.07,1994.03.07,3773,, +1994.03.01,01-Mar-94,1994,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Surfing,Albano Gomes Dias Filho,M,25,Leg bitten,N,,2 m shark,"O. Gadig, BRASAF",1994.03.01-Albano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.01-Albano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.01-Albano.pdf,1994.03.01,1994.03.01,3772,, +1994.02.27,27-Feb-94,1994,Unprovoked,SOUTH AFRICA,Western Cape Province,Saxon Reef,Spearfishing,Gary Lieberman,M,,Swim fin bitten,N,11h00,3 m [10'] shark,"G. Lieberman, M. Levine, GSAF",1994.02.27-Lieberman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.27-Lieberman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.27-Lieberman.pdf,1994.02.27,1994.02.27,3771,, +1994.02.19,19-Feb-94,1994,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Surfing,Edwin Riley III,M,23,Left foot bitten,N,13h00,1.2 m [4'] shark,"Palm Beach Post, 2/20/1994",1994.02.19-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.19-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.19-Riley.pdf,1994.02.19,1994.02.19,3770,, +1994.02.13,13-Feb-94,1994,Provoked,USA,Hawaii,Kailua Bay,Fishing,J. Magbanua,M,,Arm bitten while trying to secure shark caught by navy personnel from vessel PROVOKED INCIDENT,N,17h00,,Hawaii Department of Land and Natural Resources,1994.02.13-Magbanua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.13-Magbanua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.13-Magbanua.pdf,1994.02.13,1994.02.13,3769,, +1994.02.12,12-Feb-94,1994,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Beachview Holiday Resort,Surfing,Kevin Anderson,M,15,Leg bitten ,N,16h30,3 m [10'] white shark,"A. Gifford, GSAF",1994.02.12-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.12-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.12-Anderson.pdf,1994.02.12,1994.02.12,3768,, +1994.02.00,Feb-94,1994,Unprovoked,NEW CALEDONIA,South Province,Cap Goulvain,Fishing,Laurent Manuireva,,,"FATAL, right foot severed",Y,,,W. Leander,1994.02.00-Manuireva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.00-Manuireva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.00-Manuireva.pdf,1994.02.00,1994.02.00,3767,, +1994.01.31.b,31-Jan-94,1994,Unprovoked,BRAZIL,Pernambuco,Piedade,Swimming,S�rgio Adriano Gomes Silva,M,,Right leg bitten,N,,,"M. Szpilman, p.139",1994.01.31.b-SG.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.31.b-SG.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.31.b-SG.pdf,1994.01.31.b,1994.01.31.b,3766,, +1994.01.31.a,31-Jan-94,1994,Unprovoked,USA,Hawaii,"Velzyland, north shore of O'ahu",Surfing,Jim Broach,M,,FATAL,Y,,Tiger shark,"G. Balazs; Allen, p.109",1994.01.31.a-Broach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.31.a-Broach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.31.a-Broach.pdf,1994.01.31.a,1994.01.31.a,3765,, +1994.01.30,30-Jan-94,1994,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon Beach, East London",Windsurfing,Andy Austin,M,44,Calf bitten,N,13h30,,"A. Gifford, GSAF",1994.01.30-Austin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.30-Austin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.30-Austin.pdf,1994.01.30,1994.01.30,3764,, +1994.01.12.R,Reported 12-Jan-1994,1994,Boat,AUSTRALIA,Western Australia,Albany,Fishing,"5 m aluminum boat, occupants: Ben Turnbull, Lia & Neville Parker",,,"No injury to occupants, shark bit anchor and ladder",N,07h30,White shark,"Advertiser, 1/12/1994, p.18",1994.01.12.R-Turnbull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.12.R-Turnbull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.12.R-Turnbull.pdf,1994.01.12.R,1994.01.12.R,3763,, +1994.01.09,09-Jan-94,1994,Unprovoked,AUSTRALIA,Queensland,"Katana Downs Reach, Brisbane River","Swimming, after falling off towed kneeboard",Gary Cochrane,M,23,Hamstring bitten,N,,1.5 m shark,"Advertiser, 1/12/1994,p.18",1994.01.09-Cochrane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.09-Cochrane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.09-Cochrane.pdf,1994.01.09,1994.01.09,3762,, +1994.01.03,03-Jan-94,1994,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Hibberdene,Swimming ,Ian Galbraith,M,33,Foot bitten,N,16h15,"1.3 m [4'3""] shark","G. Cliff, NSB",1994.01.03-Galbraith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.03-Galbraith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.03-Galbraith.pdf,1994.01.03,1994.01.03,3761,, +1994.00.00.b,Last incident of 1994 in Hong Kong,1994,Unprovoked,HONG KONG,,,Playing volleyball with friends,female,F,,Both legs lacerated,N,,Tiger shark said to be 5 to 7 m [16.5' to 23'] ,J. Wong,1994.00.00.b-NV-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.00.00.b-NV-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.00.00.b-NV-HongKong.pdf,1994.00.00.b,1994.00.00.b,3760,, +1994.00.00.a,1994,1994,Unprovoked,USA,Florida,"Flagler Beach, Flagler County",Surfing,Jeff Weakley,M,,Foot bitten,N,,,,1994.00.00.a--JeffWeakley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.00.00.a--JeffWeakley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.00.00.a--JeffWeakley.pdf,1994.00.00.a,1994.00.00.a,3759,, +1993.12.00,Dec-93,1993,Unprovoked,USA,Hawaii,Waipo,Surfing,Daniel McMoyler,M,,FATAL,Y,,"On 11-Jan-1994, his remains washed ashore. A 2.4 m [8'] tiger shark thought to be involved","Allen, pp.109-110",1993.12.00-McMoyler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.12.00-McMoyler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.12.00-McMoyler.pdf,1993.12.00,1993.12.00,3758,, +1993.11.28,28-Nov-93,1993,Unprovoked,USA,Florida,"North Beach Jetty, St Lucie County",Swimming,Scott Johnson,M,30,"""Minor cuts to left leg""",N,,,"Fort Pierce Tribune, 11/30/1993",1993.11.28-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.28-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.28-Johnson.pdf,1993.11.28,1993.11.28,3757,, +1993.11.21,21-Nov-93,1993,Unprovoked,AUSTRALIA,Western Australia, A pearl farm in Roebuck Bay,Hookah diving,Richard Peter Bisley,M,27,FATAL,Y,15h15,Tiger shark caught 6 days later with diver�s remains in its gut,"H. Edwards, pp.135-137",1993.11.21-Bisley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.21-Bisley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.21-Bisley.pdf,1993.11.21,1993.11.21,3756,, +1993.11.12,12-Nov-93,1993,Unprovoked,USA,Hawaii,"Horners, Wailua, Kaua'i","Surfing, paddling shorewards",David Silva,M,,Left leg severely bitten,N,10h55,,Nova transcript; Hawaii Department of Land and Natural Resources ,1993.11.12-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.12-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.12-Silva.pdf,1993.11.12,1993.11.12,3755,, +1993.11.00,Nov-93,1993,Unprovoked,SOMALIA,Banaadir Region,Mogadishu,Stamding,Russian male,M,,FATAL,Y,,,"A. MacCormick, pp.3-4; Orlando Sentinel, 12/1/1993, p.A9",1993.11.00-RussianMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.00-RussianMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.00-RussianMale.pdf,1993.11.00,1993.11.00,3754,, +1993.10.30,30-Oct-93,1993,Unprovoked,USA,California,"""Bunkers"" Eureka, Humboldt County",Surfing,Robert Williams,M,26,Serious injury to left leg,N,16h30,4 m to 5 m [13' to 16.5'] white shark,"R. Collier, pp.144-145",1993.10.30-Williams_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.30-Williams_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.30-Williams_Collier.pdf,1993.10.30,1993.10.30,3753,, +1993.10.26,26-Oct-93,1993,Unprovoked,USA,Florida,"Treasure Shores Beach, Indian River County",Swimming,Dawn Schaumann (6.5 months pregnant),F,26,Thigh & hand lacerated,N,10h00,3 m [10'] bull shark,"W. Schaumann; Orlando Sentinel, 10/27/1993, p.B6 ",1993.10.26-Schauman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.26-Schauman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.26-Schauman.pdf,1993.10.26,1993.10.26,3752,, +1993.10.10,10-Oct-93,1993,Boat,USA,California,"Goat Rock, Bodega Bay, Sonoma County?",Kayaking,Rosemary Johnson,F,34,"No Injury, Kayak holed",N,14h30,>6 m [20'] white shark,"R. R. Collier, pp.143-144; A. MacCormick, pp.98-99",1993.10.10-Johnson_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.10-Johnson_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.10-Johnson_Collier.pdf,1993.10.10,1993.10.10,3751,, +1993.10.00,Oct-93,1993,Unprovoked,USA,Hawaii,"Mouth of Wallua River, Kaua'i",Surfing,,,,Serious leg wounds,N,,Tiger shark,"A. MacCormick, p.197",1993.10.00-WalluaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.00-WalluaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.00-WalluaRiver.pdf,1993.10.00,1993.10.00,3750,, +1993.09.30,30-Sep-93,1993,Unprovoked,SOMALIA,Banaadir Region,Mogadishu,Swimming,Edward J. Nicholson,M,21,FATAL,Y,,," Houston Chronicle, 10/9/1993; Times of London, 11/25/1993, et al",1993.09.30-Nicholson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.30-Nicholson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.30-Nicholson.pdf,1993.09.30,1993.09.30,3749,, +1993.09.26,26-Sep-93,1993,Unprovoked,SOUTH AFRICA,Western Cape Province,Danger Point,Spearfishing,Wimpie Bouwer,M,36,Calf lacerated,N,11h30,3 m [10'] white shark,"A. Gifford, GSAF",1993.09.26-Bouwer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.26-Bouwer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.26-Bouwer.pdf,1993.09.26,1993.09.26,3748,, +1993.09.16.b,16-Sep-93,1993,Unprovoked,EL SALVADOR,La Libertad,near El Cocal Beach,Surfing,Jose Diter Roque ,,15,Left leg gashed,N,,3.7 m [12'] white shark,"Tampa Tribune, 9/18/1993",1993.09.16.b-Roque.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.16.b-Roque.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.16.b-Roque.pdf,1993.09.16.b,1993.09.16.b,3747,, +1993.09.16.a,16-Sep-93,1993,Unprovoked,EL SALVADOR,La Libertad,El Cocal Beach,Surfing,Mauricio Guzman Castaneda,M,17,"FATAL, arms & legs bitten, then drowned ",Y,,,"Tampa Tribune, 9/18/1993",1993.09.16.a-Castaneda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.16.a-Castaneda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.16.a-Castaneda.pdf,1993.09.16.a,1993.09.16.a,3746,, +1993.09.14,14-Sep-93,1993,Unprovoked,USA,Florida,"Huguenot Memorial Park, Duval County",Wading,Arthur Quick,M,19,Left foot bitten,N,,3' shark,"Orlando Sentinel, 9/17/1993, p. B.6; Miami Herald, 9/17/1993; Ocala Star Banner, 9/17/1993",1993.09.14-Quick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.14-Quick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.14-Quick.pdf,1993.09.14,1993.09.14,3745,, +1993.09.09,09-Sep-93,1993,Unprovoked,USA,Florida,"Little Talbot Island, Jacksonville, Duval County",,Jerry McInarnay,M,16,Left foot bitten,N,,,"Orlando Sentinel, 9/17/1993, p. B.6",1993.09.09-McInarnay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.09-McInarnay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.09-McInarnay.pdf,1993.09.09,1993.09.09,3744,, +1993.09.03,03-Sep-93,1993,Unprovoked,SPAIN,Costa Blanca,"Playa de las Arenas, Valencia ",Swimming,Jorge Durich Heredia (or Hernandez),M,69,"Thigh bitten, toes of left foot severed",N,08h00,1.2 m [4'] shark,"Orlando Sentinel, 9/5/1993, p. A.22 citing El Pais newspaper",1993.09.03-Heredia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.03-Heredia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.03-Heredia.pdf,1993.09.03,1993.09.03,3743,, +1993.08.21,21-Aug-93,1993,Unprovoked,BAHAMAS,Walkers Cay,"Matinella Reef, 15 to 20 miles west of Walkers Cay",Spearfishing,William Barnes,M,51,Leg bitten,N,17h15,1.8 m [6'] blacktip shark or Caribbean reef shark,"South Florida Sun Sentinel, 8/22/1993, p. 1A; Palm Beach Post, 8/22/1993",1993.08.21-Barnes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.21-Barnes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.21-Barnes.pdf,1993.08.21,1993.08.21,3742,, +1993.08.19.R,Reported 19-Aug-1993,1993,Unprovoked,USA,Florida,"Bethune Beach, Volusia County",Surfing,Shawn Bushong ,,13,Right foot bitten,N,,,"Deseret News, 8/19/1993",1993.08.19.R-Bushong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.19.R-Bushong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.19.R-Bushong.pdf,1993.08.19.R,1993.08.19.R,3741,, +1993.08.19, 19-Aug-1993,1993,Unprovoked,USA,Hawaii,"Paukukalo, Maui","Surfing, paddling seawards",Reggie Williams,M,,Abrasions & board bitten,N,07h05,,"G. Balazs; T. Allen, p.117; Hawaii Department of Land and Natural Resources",1993.08.19.a-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.19.a-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.19.a-Williams.pdf,1993.08.19,1993.08.19,3740,, +1993.08.15.b,15-Aug-93,1993,Boat,USA,California,Between Santa Cruz Island and Santa Barbara,Watching the shark feeding on a dead pinniped,21 m sportfishing vessel Seabiscuit. Occupants: Captain Louie Abbott & 2 dozen anglers,,,No injury to occupants; shark circled boat repeatedly then rammed the vessel 3 times,N,11h30,">6 m white shark, according to witnesses","R. Collier, p.174",1993.08.15.b-Seabiscuit-Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.15.b-Seabiscuit-Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.15.b-Seabiscuit-Collier.pdf,1993.08.15.b,1993.08.15.b,3739,, +1993.08.15.a,15-Aug-93,1993,Unprovoked,USA,North Carolina,Pamlico Sound,Riding floatation device,Petra Rijoes,F,19,Severe lacerations to abdomen & thighs,N,10h00,Bull shark,"Charlotte Observer, 8/19/1993, p.2C; F. Schwartz, p.23",1993.08.15.a-Rijoes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.15.a-Rijoes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.15.a-Rijoes.pdf,1993.08.15.a,1993.08.15.a,3738,, +1993.08.14,14-Aug-93,1993,Boat,AUSTRALIA,Western Australia,Off Rottnest Island,Fishing,5.4 m boat ,,,"No injury to occupants. Shark struck boat, lifting the outboard motor",N,,6 m [20'] white shark,"A. Sharpe, p.134",1993.08.14-Rottnest-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.14-Rottnest-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.14-Rottnest-boat.pdf,1993.08.14,1993.08.14,3737,, +1993.08.12,12-Aug-93,1993,Unprovoked,USA,California,"Abalone Point, Westport Union Landing, Mendocino County",Free diving for abalone (ascending),David R. Miles,M,39,Severe bites to head & shoulder,N,14h00,5.5 m to 6 m [18' to 20'] white shark,"R. Collier, pp.140-142; Orlando Sentinel, 10/2/1992, p.A3",1993.08.12-Miles_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.12-Miles_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.12-Miles_Collier.pdf,1993.08.12,1993.08.12,3736,, +1993.08.00.b,Aug-93,1993,Unprovoked,NEW CALEDONIA,South Province,Ile Moro,Fishing for lobsters,Thierry Kouathe,M,,FATAL,Y,,,W. Leander,1993.08.00.b-Kouathe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.00.b-Kouathe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.00.b-Kouathe.pdf,1993.08.00.b,1993.08.00.b,3735,, +1993.08.00.a,Aug-93,1993,Boat,EL SALVADOR,La Libertad,La Libertad,Oyster fishing,"boat, occupants: 2 men",,,FATAL x 2,Y,,White shark?,"Tampa Tribune, 9/18/1993",1993.08.00.a-El-Salvador.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.00.a-El-Salvador.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.00.a-El-Salvador.pdf,1993.08.00.a,1993.08.00.a,3734,, +1993.07.30,30-Jul-93,1993,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Pollock Beach, Port Elizabeth",Surfing,Ralph LeRoux,M,28,Puncture wounds on chest,N,15h00,4 m [13'] white shark,"A. Gifford, GSAF",1993.07.30-LeRoux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.07.30-LeRoux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.07.30-LeRoux.pdf,1993.07.30,1993.07.30,3733,, +1993.07.07,07-Jul-93,1993,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Playing,Melissa Rodrigues,F,12,Right knee bitten,N,18h12,"1.8 m to 2.4 m [6' to 8'] shark, tooth fragments recovered ","G. Taylor, Orlando Sentinel, 7/8/1993 edtion, p. B1; P. LaMee, Orlando Sentinel, 7/9/1993 edtion, p.B3",1993.07.07-Rodrigues.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.07.07-Rodrigues.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.07.07-Rodrigues.pdf,1993.07.07,1993.07.07,3732,, +1993.06.30,30-Jun-93,1993,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Swimming,Robson Antonio R. Santos,M,,FATAL,Y,,,JCOnline,1993.06.30-BoaViagem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.30-BoaViagem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.30-BoaViagem.pdf,1993.06.30,1993.06.30,3731,, +1993.06.29,29-Jun-93,1993,Unprovoked,REUNION,Saint-Paul,Cap de la Marianne,Body boarding,Theirry Mercredi,M,16,Note: see 1992.06.28,N,,,"Quotidien, 4/12/1999",1993.06.29-Mercredi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.29-Mercredi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.29-Mercredi.pdf,1993.06.29,1993.06.29,3730,, +1993.06.11.b,11-Jun-93,1993,Unprovoked,HONG KONG,New Territories,Silverstrand,Swimming,Kwong Kong-hing ,M,61,FATAL,Y,07h15,,J. Wong,1993.06.11.b-Kwong Kong-hing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.11.b-Kwong Kong-hing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.11.b-Kwong Kong-hing.pdf,1993.06.11.b,1993.06.11.b,3729,, +1993.06.11.a,11-Jun-93,1993,Unprovoked,MEXICO,Quintana Roo,"Santa Rosa Shallows, Cozumel",Scuba diving,Mary Eggemeyer,F,42,FATAL,Y,19h30,,"Dallas Morning News, 6//15/1993",1993.06.11.a-Eggemeyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.11.a-Eggemeyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.11.a-Eggemeyer.pdf,1993.06.11.a,1993.06.11.a,3728,, +1993.06.10,10-Jun-93,1993,Unprovoked,USA,Hawaii,"Goats Island (Moku�auia Island), Malaekahana State Recreation Area, Laie, O'ahu",Paddling on surfboard or body board,Jonathan Mozo,M,22,Feet & ankles bitten,N,07h10,Thought to involve a tiger shark,"G. Ambrose, pp.61-68; J. Borg, p.83",1993.06.10-Mozo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.10-Mozo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.10-Mozo.pdf,1993.06.10,1993.06.10,3727,, +1993.06.09,09-Jun-93,1993,Unprovoked,AUSTRALIA,New South Wales,"Julian Rocks, Byron Bay",Scuba diving,John Ford,M,31,FATAL,Y,09h30,Remains recovered from 5.5 m [18'] white shark,"A. MacCormick, p.56; H. Edwards, pp.11 & 159",1993.06.09-JohnFord.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.09-JohnFord.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.09-JohnFord.pdf,1993.06.09,1993.06.09,3726,, +1993.06.05,05-Jun-93,1993,Unprovoked,AUSTRALIA,Tasmania,Tenth Island (King Island),Scuba diving at seal colony,Teresa Cartwright,F,34,FATAL,Y,10h55,5 m [16.5'] white shark,"Telegraph Mirror (Sydney), June 7, 1993; H. Edwards, p.156; C. Black pp. 167-169",1993.06.05-Cartwright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.05-Cartwright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.05-Cartwright.pdf,1993.06.05,1993.06.05,3725,, +1993.06.01,01-Jun-93,1993,Unprovoked,HONG KONG,New Territories,Sheung Sz Wan,Swimming,Yan Sai-wah,M,42,FATAL,Y,,,"J. Wong; A. MacCormick, p.235; A. Sharpe, p.34",1993.06.01-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.01-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.01-HongKong.pdf,1993.06.01,1993.06.01,3724,, +1993.06.00,Jun-93,1993,Unprovoked,USA,North Carolina,"Hamstead, Pender County",Swimming,Suzanne Pferrer,F,60's,"No injury, bumped by shark",N,Dusk,6' shark,C. Creswell,1993.06.00-Pferrer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.00-Pferrer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.00-Pferrer.pdf,1993.06.00,1993.06.00,3723,, +1993.05.00.b,Late May 1993,1993,Unprovoked,HONG KONG,"On the Kowloon penisula, south of Sai Kung",Silverstrand,,female,F,,"Missing, believed taken by a shark",Y,,,"J. Wong; A. Sharpe, p.34",1993.05.00.b-Kowloon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.05.00.b-Kowloon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.05.00.b-Kowloon.pdf,1993.05.00.b,1993.05.00.b,3722,, +1993.05.00.a,May-93,1993,Unprovoked,SOMALIA,Banaadir Region,"Arroyo Beach, Mogadishu",Swimming,French female,F,,FATAL,Y,,,"A. MacCormick, pp.3-4; Orlando Sentinel, 112/1/1993, p.A9",1993.05.00.a-Frenchfemale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.05.00.a-Frenchfemale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.05.00.a-Frenchfemale.pdf,1993.05.00.a,1993.05.00.a,3721,, +1993.04.00,Apr-93,1993,Invalid,AUSTRALIA,Tasmania,Barren Joey Island,Spearfishing,Tony Szolomiak,M,32,No inujury ,N,,,"C. Black & T. Peake, GSAF",1993.04.00-Szolomiak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.04.00-Szolomiak.pdf,,1993.04.00,1993.04.00,3720,, +1993.03.27,27-Mar-93,1993,Unprovoked,BRAZIL,Pernambuco,Paiva,Surfing,Jos� Ricardo C. Gouveia,M,,Survived,N,,,JCOnline,1993.03.27-JoseRicardoGouveia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.27-JoseRicardoGouveia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.27-JoseRicardoGouveia.pdf,1993.03.27,1993.03.27,3719,, +1993.03.22,22-Mar-93,1993,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Floating on his back,Ken Dannewitz,M,25,Both feet lacerated,N,16h00,,"Orlando Sentinel, 3/25/1993. p. B5",1993.03.22-Dannewitz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.22-Dannewitz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.22-Dannewitz.pdf,1993.03.22,1993.03.22,3718,, +1993.03.17,17-Mar-93,1993,Unprovoked,JAPAN,Ehime Prefecture,Iyo,,Yuji Yamamoto,,,Survived,N,,Possiby white shark,K. Nakaya,1993.03.17-Yamamoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.17-Yamamoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.17-Yamamoto.pdf,1993.03.17,1993.03.17,3717,, +1993.03.14,14-Mar-93,1993,Unprovoked,USA,Hawaii,"Paradise Bay (next to Wailua Bay), Maui",Paddling on surfboard,Roddy Lewis,M,35,Lower legs lacerated ,N,15h45,"Tiger shark, 3.7 m [12'], (tooth fragment recovered from wound)","J. Borg, p.83; G. Ambrose, pp.30-40",1993.03.14-Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.14-Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.14-Lewis.pdf,1993.03.14,1993.03.14,3716,, +1993.03.12,12-Mar-93,1993,Unprovoked,USA,California,"Linda Mar Beach, Pedro Point, San Mateo County",Free diving & spearfishing (ascending),Don Berry,M,55,"No injury, swim fin bitten",N,14h30,White shark,"R. Collier, p.140",1993.03.12-Berry_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.12-Berry_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.12-Berry_Collier.pdf,1993.03.12,1993.03.12,3715,, +1993.03.00,Mar-93,1993,Unprovoked,NEW CALEDONIA,South Province,�le de Casey,Swimming,Frederic Dolbeau,,,Hip bitten,N,,,W. Leander,1993.03.00-Dolbeau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.00-Dolbeau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.00-Dolbeau.pdf,1993.03.00,1993.03.00,3714,, +1993.02.19,19-Feb-93,1993,Sea Disaster,TONGA,Tongapatu Group,Between 'Ata and Tongapatu,Sea disaster,Haumole Faing'a ,M,,Puncture wounds to right thigh,N,03h00,,"Tongan Chronicle, 2/26/1993",1993.02.19-Fainga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.02.19-Fainga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.02.19-Fainga.pdf,1993.02.19,1993.02.19,3713,, +1993.02.18,18-Feb-93,1993,Sea Disaster,TONGA,Tongapatu Group,Between 'Ata and Tongapatu,Sea disaster,Siale Sime,M,,Foot bitten,N,Afternoon,1.5 m [5'] shark,"Tongan Chronicle, 2/26/1993",1993.02.18-SialeSime.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.02.18-SialeSime.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.02.18-SialeSime.pdf,1993.02.18,1993.02.18,3712,, +1993.02.04,04-Feb-93,1993,Provoked,AUSTRALIA,Queensland,Mooloolaba,Fishing,John Bonell,M,69,"Legs lacerated, puncture wound in hand from hooked shark hauled onboard PROVOKED INCIDENT",N,13h45,"Bronze whaler shark, 1.5 m ","Courier-Mail, 2/5/1993, p.7",1993.02.04-Bonnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.02.04-Bonnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.02.04-Bonnell.pdf,1993.02.04,1993.02.04,3711,, +1993.01.23,23-Jan-93,1993,Unprovoked,BRAZIL,Pernambuco,Piedade,Body boarding,Charles Roberto Soares Veras,M,15,Left leg bitten,N,,,D. Duarte,1993.01.23-Veras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.23-Veras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.23-Veras.pdf,1993.01.23,1993.01.23,3710,, +1993.01.05,05-Jan-93,1993,Unprovoked,AUSTRALIA,Queensland,"Line Reef, northeast of Hamilton Island, Whitsundays",Spearfishing,Daniel Lance McNally,M,21,"6"" laceration to left forearm",N,09h00,1.5 m shark,"Courier-Mail, 1/6/1993, p.1",1993.01.05-McNally.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.05-McNally.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.05-McNally.pdf,1993.01.05,1993.01.05,3709,, +1993.01.04,04-Jan-93,1993,Boat,CARIBBEAN SEA,,Off Dominican Republic, ,"canoe, occupants: Chris Newman & Stewart Newman",M,32 & 30,"No injury to occupants. Sharks, attracted to offal from slaughtered dolphin, attacked & damaged their canoe",N,,Two 3 m [10'] oceanic whitetip sharks,"A. MacCormick, p.100",1993.01.04-DominicanRepublic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.04-DominicanRepublic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.04-DominicanRepublic.pdf,1993.01.04,1993.01.04,3708,, +1993.01.02,02-Jan-93,1993,Unprovoked,USA,Oregon,"Bastendorf Beach, Coos County",Surfing,William Weaver,M,29,"No injury, shark bit board",N,16h30,6 m [20'] white shark,"R. Collier, pp.138-139; Mark Marks",1993.01.02-Weaver_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.02-Weaver_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.02-Weaver_Collier.pdf,1993.01.02,1993.01.02,3707,, +1993.00.00.d,Fall 1993,1993,Unprovoked,ANGOLA,West Africa,,Surfing,John Doyle,M,,Right Leg bitten,N,,3 m [10'] white shark,Internet report,1993.00.00.d-Doyle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.d-Doyle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.d-Doyle.pdf,1993.00.00.d,1993.00.00.d,3706,, +1993.00.00.c,Between May & Nov-1993,1993,Unprovoked,SOMALIA,Banaadir Region,Mogadishu,,several Somali children,,,FATAL,Y,,,"Orlando Sentinel, 112/1/1993, p.A9",1993.00.00.c - Somali children.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.c - Somali children.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.c - Somali children.pdf,1993.00.00.c,1993.00.00.c,3705,, +1993.00.00.b,1993,1993,Unprovoked,TONGA,Vava�u,Between Ofu & Fafini Islands,Spearfishing,A diver from Spain,,30,Left buttock and thigh bitten,N,,,Drs. S. Fonea & A. Carafa,1993.00.00.b-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.b-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.b-Tonga.pdf,1993.00.00.b,1993.00.00.b,3704,, +1993.00.00.a,1993,1993,Unprovoked,USA,Florida,"Key West, Monroe County",Snorkeling,,,,Survived,N,,Lemon shark,press report,1993.00.00.a-NV-KeyWest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.a-NV-KeyWest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.a-NV-KeyWest.pdf,1993.00.00.a,1993.00.00.a,3703,, +1992.12.28,28-Dec-92,1992,Unprovoked,USA,Hawaii,"Honomuni, Moloka'i","Standing in waist-deep water, helping his father tend a gill net containing dead fish",Pahu Tanaka,M,10,Right leg bruised & abraded,N,A.M.,"Tiger shark, 2.4 m [8']","J. Borg, p.82",1992.12.28-Tanaka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.12.28-Tanaka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.12.28-Tanaka.pdf,1992.12.28,1992.12.28,3702,, +1992.12.23,23-Dec-92,1992,Unprovoked,USA,Hawaii,"Chun's Reef, Laniakea, O'ahu",Lying on surfboard,Gary M. Chun,M,30,"Minor lacerations to hand, 15"" crescent-shaped piece removed from surfboard",N,17h30,"Tiger shark, 3 m to 4.9 m [10' to 16'] ","L. Taylor (1993), pp.114-115; Orlando Sentinel, 12/25/1992, p.A20",1992.12.23-Chun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.12.23-Chun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.12.23-Chun.pdf,1992.12.23,1992.12.23,3701,, +1992.11.29,29-Nov-92,1992,Unprovoked,USA,California,"San Onofre, San Diego County ",Spearfishing / free diving,John Regan,M,31,10 puncture wounds to right calf,N,15h30,"Mako shark, 1.8 m [6'] ","R. Collier, p.xxvi; H. Viders, Alert Diver Magazine",1992.11.29-Regan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.29-Regan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.29-Regan.pdf,1992.11.29,1992.11.29,3700,, +1992.11.25.a,25-Nov-92,1992,Unprovoked,USA,Florida,"Brevard County, a mile north of Sebastian Inlet",Surfing,Matthew Robertson Paul,M,19,Forearm & hand bitten; tooth fragments of the shark were recovered from the surfer's hand,N,07h30,6' to 7' blacktip shark,"M. R. Paul; Orlando Sentinel, 11/28/1992; Fort Pierce Tribune, 11/30/1992 ",1992.11.25-Paul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.25-Paul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.25-Paul.pdf,1992.11.25.a,1992.11.25.a,3699,, +1992.11.23,23-Nov-92,1992,Unprovoked,USA,Florida,,Surfing,Larry Bush,M,24,Right ankle bitten,N,13h00,1.8 m [6'] shark,"Fort Pierce Tribune, 11/24/1992 & 11/30/1992; Palm Beach Post, 11/25/1992",1992.11.23-LarryBush.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.23-LarryBush.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.23-LarryBush.pdf,1992.11.23,1992.11.23,3698,, +1992.11.14,14-Nov-92,1992,Boat,USA,California,"Ano Nuevo, San Mateo County",Kayaking,Ken Kelton,M,46,"No injury, kayak bitten",N,12h50,5 m to 6 m white shark,"R. Collier, p.137",1992.11.14-Kelton_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.14-Kelton_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.14-Kelton_Collier.pdf,1992.11.14,1992.11.14,3697,, +1992.11.12.R,Reported 12-Nov-1992,1992,Unprovoked,FIJI,Wakaya Island,,Scuba diving,Chad Smith,M,30,Left arm lacerated,N,,3 m hammerhead shark,"Herald Sun, 11/12/1992, p.39",1992.11.12.R-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.12.R-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.12.R-Smith.pdf,1992.11.12.R,1992.11.12.R,3696,, +1992.11.11,11-Nov-92,1992,Unprovoked,USA,California,"San Nicholas Island, Santa Barbara County",Scuba diving (submerged),Kenny Crane,M,40,Foot punctured,N,14h00,Unidentified shark,"R. Collier, pp.136-137",1992.11.11-Crane_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.11-Crane_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.11-Crane_Collier.pdf,1992.11.11,1992.11.11,3695,, +1992.11.05.b,06-Nov-92,1992,Unprovoked,USA,Florida,"North Jetty Park, Fort Pierce, St Lucie County",Surfing,Josh Greinstein ,M,17,Heel bitten,N,14h15,,"P.Owers, Fort Pierce Tribune, 11/7/1992 ",1992.11.05.b-Greinstein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.05.b-Greinstein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.05.b-Greinstein.pdf,1992.11.05.b,1992.11.05.b,3694,, +1992.11.05.a,05-Nov-92,1992,Unprovoked,USA,Hawaii,"Kea'au Beach Park, O'ahu",Body boarding,Aaron A. Romento,M,18,Right leg severely lacerated FATAL,Y,09h45,"Tiger shark, 3 m to 3.7 m [10' to 12'] ","Dr. P. Bjokman; Palm Beach Post, 11/7/1992 ",1992.11.05.a-Romento.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.05.a-Romento.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.05.a-Romento.pdf,1992.11.05.a,1992.11.05.a,3693,, +1992.10.29,29-Oct-92,1992,Unprovoked,USA,California,"Castle Rock, San Miguel Island, Santa Barbara County",Hookah diving for sea urchins,Andy Schupe,M,40,Foot & swim fin punctured,N,11h00,2.5 m [8.25'] white shark,"R. Collier, pp.135-136 ",1992.10.29-Schupe_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.29-Schupe_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.29-Schupe_Collier.pdf,1992.10.29,1992.10.29,3692,, +1992.10.22,22-Oct-92,1992,Unprovoked,USA,Hawaii,"Lanaikea, O'ahu",Surfing,Rick (Eric) Gruzinsky,M,28,"Chest & arm bruised & scratched, 15"" crescent-shaped piece removed from board",N,07h40,"Tiger shark, 4.3 m [14'] ","Orlando Sentinel, 10/24/1992, p.A5; G. Ambrose, pp.54-60; A. MacCormick, p.195; J. Borg, p.82; L. Taylor (1993), pp.114-115",1992.10.22-Gruzinsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.22-Gruzinsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.22-Gruzinsky.pdf,1992.10.22,1992.10.22,3691,, +1992.10.15,15-Oct-92,1992,Unprovoked,AUSTRALIA,New South Wales,Avalon Beach,Scuba diving,Dave Gannicott,M,,Minor injury while delivering pup of female shark caught in a net,N,,Grey nurse shark,"Orlando Sentinel, 10/15/1992, p.A3",1992.10.15-Gannicott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.15-Gannicott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.15-Gannicott.pdf,1992.10.15,1992.10.15,3690,, +1992.10.11,11-Oct-92,1992,Unprovoked,BRAZIL,Maranh�o,"Praia de S�o Marcus, S�o Luiz",Boogie boarding,M.C.,,,Legs bitten,N,Afternoon,,M. Szpilman,1992.10.11-MC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.11-MC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.11-MC.pdf,1992.10.11,1992.10.11,3689,, +1992.10.01,01-Oct-92,1992,Unprovoked,AUSTRALIA,Queensland,"North Point Beach, Moreton Island",Surfing,Michael Docherty,M,28,FATAL,Y,14h30,4.2 m white shark,"Daily Telegraph (Sydney) 10/2/1992 ; Orlando Sentinel, 10/2/1992, p.A3; A. Sharpe, p.108; A. MacCormick, p.197",1992.10.01-Docherty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.01-Docherty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.01-Docherty.pdf,1992.10.01,1992.10.01,3688,, +1992.09.18,18-Sep-92,1992,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Body boarding,Eduardo Rodrigues da Cruz,M,,Left leg severely bitten,N,Afternoon,,D. Duarte;,1992.09.18-Cruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.18-Cruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.18-Cruz.pdf,1992.09.18,1992.09.18,3687,, +1992.09.13,13-Sep-92,1992,Unprovoked,USA,Oregon,"Gold Beach, Curry County",Surfing,Jerad Brittain,M,20,Minor bruises,N,17h00,4 m to 5 m [13' to 16.5'] white shark ,"R. Collier, pp.134-135 ",1992.09.13-Brittain_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.13-Brittain_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.13-Brittain_Collier.pdf,1992.09.13,1992.09.13,3686,, +1992.09.11,11-Sep-92,1992,Unprovoked,USA,Florida,"South Jetty, New Smyrna Beach, Volusia County",Standing,Tracie Langbein,F,18,Right ankle & calf bitten,N,15h00,,"Orlando Sentinel, 5/20/1993, p.B3; P.LaMee, Orlando Sentinel, 9/4/1995, p.C.3",1992.09.11-Langbein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.11-Langbein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.11-Langbein.pdf,1992.09.11,1992.09.11,3685,, +1992.09.10,10-Sep-92,1992,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Swimming,Enoque Pereira dos Santos,M,,FATAL,Y,,,D. Duarte,1992.09.10-BoaViagem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.10-BoaViagem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.10-BoaViagem.pdf,1992.09.10,1992.09.10,3684,, +1992.09.00,Sep-92,1992,Unprovoked,USA,Florida,St Lucie County,Surf fishing,male,M,,"Foot bitten, 8 stitches needed to repair the wound",N,,,"Fort Pierce Tribune, 11/24/1992 & 11/30/1992",1992.09.00-surf-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.00-surf-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.00-surf-fisherman.pdf,1992.09.00,1992.09.00,3683,, +1992.08.29,29-Aug-92,1992,Unprovoked,BAHAMAS,Abaco Islands,Double Breasted Cays ,"Snorkeling, carrying a speared fish in her hand",Valerie Fortunato ,F,34,Left hand bitten,N,,1.8 m [6'] blacktip shark,"C. Dummitt, Palm Beach Post. 9/3/1992",1992.08.29-Fortunato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.29-Fortunato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.29-Fortunato.pdf,1992.08.29,1992.08.29,3682,, +1992.08.25,25-Aug-92,1992,Unprovoked,AUSTRALIA,South Australia,"Lipson Cove, Tumby Bay",Surfing,Jason Bates,M,17,"Minor cuts, sufboard bitten",N,17h50,4 m white shark,"Advertiser, 8/28/1992, p.3; J. West, ASAF",1992.08.25-Bates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.25-Bates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.25-Bates.pdf,1992.08.25,1992.08.25,3681,, +1992.08.21,21-Aug-92,1992,Invalid,USA,Hawaii,"Twin Arches, Hana Ranch, Maui",Fell from cliff while fishing & disappeared in strong current,Chester N. Shishido,M,,Body recovered next morning. Injuries appeared to be inflicted post mortem,Y,15h00,,"J. Borg, p.82; L. Taylor (1993), pp.114-115",1992.08.21-Shishido.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.21-Shishido.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.21-Shishido.pdf,1992.08.21,1992.08.21,3680,, +1992.08.18,18-Aug-92,1992,Unprovoked,USA,California,"Klamath River, Del Norte County",Surfing,Keith Caruso,M,22,"No injury, board bitten",N,17h00,5.5 m to 6 m [18' to 20'] white shark,"R. Collier, pp.132-133",1992.08.18-Caruso_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.18-Caruso_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.18-Caruso_Collier.pdf,1992.08.18,1992.08.18,3679,, +1992.08.17,17-Aug-92,1992,Provoked,USA,Florida,"Manalapan, Palm Beach County",Snorkeling,Rod Duguid,M,26,"Grabbed metal leader to shark, shark clamped on & bit left bicep PROVOKED INCIDENT",N,,"Nurse shark, 3', 20-lb ","J.A. Plunkett, Miami Herald, 8/19/1992, p.1B",1992.08.17-Duguid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.17-Duguid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.17-Duguid.pdf,1992.08.17,1992.08.17,3678,, +1992.08.00,Aug-92,1992,Invalid,USA,Florida,St. Lucie County,Fisherman,male,M,,No details,UNKNOWN,,,"Fort Pierce Tribune, 11/30/1992",1992.08.00-NV-StLucieFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.00-NV-StLucieFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.00-NV-StLucieFisherman.pdf,1992.08.00,1992.08.00,3677,, +1992.07.23,23-Jul-92,1992,Invalid,USA,Hawaii,"Wai'anae, O'ahu","Zosimo & his son, Jeffrey Popa, failed to return from overnight fishing trip in a 14' boat, Boat apparently sank, debris recovered but his son & boat were never found",Zosimo Popa,M,,"Death due to drowning. His body, tied to floating ice chest, had 2 small post-mortem bites ",Y,,Cookie cutter shark,"J. Borg, p.81; L. Taylor (1993), pp.114-115",1992.07.23-Popa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.23-Popa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.23-Popa.pdf,1992.07.23,1992.07.23,3676,, +1992.07.21,21-Jul-92,1992,Unprovoked,USA,Florida,"Manasota Beach, Sarasota County",Standing,Ann Suits,F,42,Lacerations to left foot,N,12h33,"""a small shark""","Sarasota Herald-Tribune, 7/23/1992 ",1992.07.21-Suits.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.21-Suits.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.21-Suits.pdf,1992.07.21,1992.07.21,3675,, +1992.07.08.b,08-Jul-92,1992,Unprovoked,BRAZIL,Maranh�o,"Praia da Marcela, S�o Marcos Bay",Surfing,L.G,M,,Arm bitten,N,30 minutes after 1992.07.08.a,,M. Szpilman,1992.07.08.b-LG.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.08.b-LG.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.08.b-LG.pdf,1992.07.08.b,1992.07.08.b,3674,, +1992.07.08.a,08-Jul-92,1992,Unprovoked,BRAZIL,Maranh�o,"Praia da Marcela, S�o Marcos Bay",Surfing,M.C.,M,,"Lower leg bitten, surgically amputated",N,Morning,,M. Szpilman,1992.07.08.a-MS.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.08.a-MS.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.08.a-MS.pdf,1992.07.08.a,1992.07.08.a,3673,, +1992.06.28.b,28-Jun-92,1992,Unprovoked,BRAZIL,Pernambuco,Piedade,Swimming,Ubiratan Martins Gomes,M,,FATAL,Y,,,D .Duarte,1992.06.28.b-Piedade-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.28.b-Piedade-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.28.b-Piedade-Brazil.pdf,1992.06.28.b,1992.06.28.b,3672,, +1992.06.28.a,28-Jun-92,1992,Unprovoked,REUNION,Saint-Paul,Cap de la Marianne,Surfing,Theirry Mercredi,M,16,FATAL,Y,14h30,Bull shark or lemon shark,G. Van Grevelynghe,1992.06.28.a-Mercredi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.28.a-Mercredi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.28.a-Mercredi.pdf,1992.06.28.a,1992.06.28.a,3671,, +1992.06.19,19-Jun-92,1992,Unprovoked,VANUATU,Malampa Province,"Port Sandwich, Malakula",Swimming,Andrea Rush,F,21,Right leg was bitten above and below the knee and an artery was punctured,N,,,"A. Rush; R. D. Weeks, GSAF; Otago Daily Times, 6/20/1992",1992.06.19-AndreaRush.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.19-AndreaRush.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.19-AndreaRush.pdf,1992.06.19,1992.06.19,3670,, +1992.06.17,17-Jun-92,1992,Boat,JAPAN,Ehime Prefecture,"1.5 km north of Igata-cho, 60 km south of Matsyama",Preparing to fish for jack-mackerel,"5.75 m wooden boat, occupant: Yoshaiaki Ueda",,,"No inujury to occupant. Shark bit boat repeatedly, leaving 2 teeth in the bottom keel of the boat",N,12h30,"White shark, identification by K. Nakaya","K. Nakaya; Orlando Sentinel, 6/18/1992, p. A3",1992.06.17-Ueda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.17-Ueda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.17-Ueda.pdf,1992.06.17,1992.06.17,3669,, +1992.06.00,Jun-92,1992,Unprovoked,REUNION,Saint-Paul,,Diving,,,,Survived,N,,Mako shark,G. Van Grevelynghe,1992.06.00-ReunionDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.00-ReunionDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.00-ReunionDiver.pdf,1992.06.00,1992.06.00,3668,, +1992.05.31,31-May-92,1992,Invalid,USA,North Carolina ,Wreck of the U-352 ,Scuba diving ,Mike Weathers,M,45,Disappeared. His ripped dive jacket was recovered,Y,,Shark involvement prior to death was not confirmed,"Charlotte Observer, 6/24/1992, p.1C & 8/8/1992, p.2C",1992.05.31-Weathers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.05.31-Weathers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.05.31-Weathers.pdf,1992.05.31,1992.05.31,3667,, +1992.05.22,22-May-92,1992,Unprovoked,REUNION,Saint-Joseph,Lieu-dit Cayenne,Surfing,Emmanuel Nativel,M,,FATAL,Y,14h00,"Tiger shark, 3 m to 4 m [10' to 13'] ",G. Van Grevelynghe,1992.05.22-Nativel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.05.22-Nativel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.05.22-Nativel.pdf,1992.05.22,1992.05.22,3666,, +1992.05.00,May-92,1992,Unprovoked,MEXICO,Mexico / Caribbean Sea,Isla Mujeres,Scuba diving & filming,Nick Caloyianis,M,,"Fingers, hand & arm bitten",N,,,"T. Allen, p.238",1992.05.00-Caloyianis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.05.00-Caloyianis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.05.00-Caloyianis.pdf,1992.05.00,1992.05.00,3665,, +1992.04.24,24-Apr-92,1992,Unprovoked,NEW ZEALAND,Antarctic Ocean,"Meteorologic Station on Campbell Island, 370 nautical miles south of New Zealand",Snorkeling,Mike Fraser,M,,"Right forearm severed, left forearm lacerated & broken",N,15h30,"4 m [13'], 590-kg white shark","M. Fraser; R. Weeks, GSAF",1992.04.24-Fraser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.04.24-Fraser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.04.24-Fraser.pdf,1992.04.24,1992.04.24,3664,, +1992.04.09,09-Apr-92,1992,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Surfing,Gordon Harmer,M,35,Punctures & lacerations on lower leg,N,13h20,>2 m shark,"G. Harmer; M. Levine, GSAF",1992.04.09-Harmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.04.09-Harmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.04.09-Harmer.pdf,1992.04.09,1992.04.09,3663,, +1992.03.28,28-Mar-92,1992,Unprovoked,USA,Hawaii,"Cannons, at Ha'ena on the north shore of Kaua'i Island","Surfing, paddling seawards",Jude Chamberlin,F,36,"Foot bitten, crescent of bitemarks in both sides of board",N,>06h45,Tiger shark,"G. Ambrose, pp.18-23; J. Borg, p.81; L. Taylor (1993), pp.112-113",1992.03.28-Chamberlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.28-Chamberlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.28-Chamberlin.pdf,1992.03.28,1992.03.28,3662,, +1992.03.10,10-Mar-92,1992,Unprovoked,AUSTRALIA,Victoria,Point Lonsdale,Surfing,Mark Jepson,M,17,"Right thigh, back & hand lacerated",N,,"Bronze whaler shark, 3 m","Herald Sun, 1/7/1993; A. Sharpe, p.116",1992.03.10-Jepson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.10-Jepson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.10-Jepson.pdf,1992.03.10,1992.03.10,3661,, +1992.03.08.c,08-Mar-92,1992,Unprovoked,JAPAN,Ehime Prefecture,Matsuyama,Hookah diving for pen shells ,Kazuta Harada,M,41,"FATAL, body not recovered",Y,15h20,"5 m [16.5'] white shark, identification by K. Nakaya","K. Nakaya; Orlando Sentinel, 3/20/1992, p.A10 & 6/18/1992, p. A3",1992.03.08.c-Harada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.08.c-Harada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.08.c-Harada.pdf,1992.03.08.c,1992.03.08.c,3660,, +1992.03.08.b,08-Mar-92,1992,Boat,JAPAN,Ehime Prefecture,"Nagahama-cho, 40 km southwest of Matsuyama ","Fishing for yellowtail, Seriola quinqueradiata",wooden boat of Yoshihiro Takasaki,,,No injury to boat or occupant,N,10h15,,K. Nakaya,1992.03.08.b-Takasaki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.08.b-Takasaki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.08.b-Takasaki.pdf,1992.03.08.b,1992.03.08.b,3659,, +1992.03.08.a,08-Mar-92,1992,Unprovoked,USA,Oregon,"Winchester Bay, Douglas County",Surfing (sitting on his board),Mike Allman,M,21,"Left shoulder & side bitten, board broken",N,09h45,Said to involve a 6 m to 7 m [20' to 23'] white shark,"R. Collier, pp.130-132; M. Marks",1992.03.08.a-Allman-Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.08.a-Allman-Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.08.a-Allman-Collier.pdf,1992.03.08.a,1992.03.08.a,3658,, +1992.02.19,19-Feb-92,1992,Unprovoked,USA,Hawaii,"Leftovers, near Waimea Bay, O'ahu",Body boarding,Brian Adona,M,,FATAL Disappeared. His board washed ashore next morning with crescent-shaped piece missing and serrated toothmarks of a shark,Y,Late afternoon,Tiger shark?,"J. Borg, pp.80-81; L. Taylor (1993), pp.112-113. Note: Hawaii Department of Land and Natural Resources lists date as 2/1/1992",1992.02.19 - Adona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.02.19 - Adona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.02.19 - Adona.pdf,1992.02.19,1992.02.19,3657,, +1992.02.14,14-Feb-92,1992,Unprovoked,JAPAN,Ehime Prefecture,Matsuyama,Diving for pen shells,Koji Harada,M,,"No injury, steel diving helmet bitten 3 times",N,10h00,5 m [16.5'] shark,K. Nakaya,1992.02.14-Koji-Harada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.02.14-Koji-Harada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.02.14-Koji-Harada.pdf,1992.02.14,1992.02.14,3656,, +1992.02.09,09-Feb-92,1992,Invalid,AUSTRALIA,Tasmania,"Clifton Beach, southwest of Hobart",Surfing,Wayne Fitzpatrick,M,19,"No injury, shark allegedly took his surfboard & slashed his wetsuit. Shark involvement questionable",N,19h30,,"C. Black, GSAF; Advertiser, 2/11/1992, p.2; ",1992.02.09-Fitzpatrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.02.09-Fitzpatrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.02.09-Fitzpatrick.pdf,1992.02.09,1992.02.09,3655,, +1992.01.29.b,29-Jan-92,1992,Unprovoked,REUNION,La Saline-les-Bains,Revine-3-Bassins,Spearfishing,Richard Carnoy,M,,Survived,N,16h30,1.8 m grey shark,G. Van Grevelynghe,1992.01.29.b-Carnoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.29.b-Carnoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.29.b-Carnoy.pdf,1992.01.29.b,1992.01.29.b,3654,, +1992.01.29.a,29-Jan-92,1992,Unprovoked,AUSTRALIA,New South Wales,Tweed Heads,Boogie boarding,John Bayliss (or Ballis),M,19,Right leg lacerated,N,20h00,"Bronze whaler shark, 2.3 m [7.5'] ","Advertiser, 1/30/1992, p.7 & 2/1/1992, p.4",1992.01.29.a-Bayliss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.29.a-Bayliss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.29.a-Bayliss.pdf,1992.01.29.a,1992.01.29.a,3653,, +1992.01.23,23-Jan-92,1992,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Isipingo,Swimming ,Noor-Mubeen Shaik,M,19,Right foot lacerated,N,17h30,"Zambesi shark, 1.7 m [5.5'] ","G. Cliff, NSB",1992.01.23-Shaik.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.23-Shaik.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.23-Shaik.pdf,1992.01.23,1992.01.23,3652,, +1992.01.08,08-Jan-92,1992,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Sheffield Beach,Spearfishing,Daniel Van Huysteen,M,36,Left cheek lacerated,N,17h15,Possibly a 1.5 m [5'] blacktip shark,"A. Gifford, GSAF",1992.01.08-vanHuysteen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.08-vanHuysteen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.08-vanHuysteen.pdf,1992.01.08,1992.01.08,3651,, +1992.01.06,06-Jan-92,1992,Unprovoked,MAURITIUS,,Mahebourg,Fishing,male,M,,Survived,N,,Grey reef shark,D. deSpeville,1992.01.06-Mauritius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.06-Mauritius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.06-Mauritius.pdf,1992.01.06,1992.01.06,3650,, +1992.01.03,03-Jan-92,1992,Unprovoked,JAPAN,Ehime Prefecture,Matsuyama,,male,M,,Survived,N,,,K. Nakaya,1992.01.03-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.03-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.03-Japan.pdf,1992.01.03,1992.01.03,3649,, +1992.01.00,Jan-92,1992,Invalid,JAPAN,Sea of Japan,Kanazawa?,,Mikado Nakamura,,,Survived. questionable incident,N,,,K. Nakaya,1992.01.00-Nakamura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.00-Nakamura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.00-Nakamura.pdf,1992.01.00,1992.01.00,3648,, +1992.00.00,1992,1992,Unprovoked,FIJI,Tavenui,,,Stephen Davies,M,33,FATAL,Y,,,"A.Bull, www.stuff.com.nz",1992.00.00-NV-Davies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.00.00-NV-Davies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.00.00-NV-Davies.pdf,1992.00.00,1992.00.00,3647,, +1991.12.04,04-Dec-91,1991,Unprovoked,USA,California,"Shelter Cover, north of Fort Bragg, Shelter Cove, Mendocino County",Hookah diving for sea urchins,David Abernathy,M,25,"No injury, shark became tangled in hose & towed him 100'",N,15h06,6 m [20'] white shark,"R. Collier, pp.129-130; Mark Marks; S. Waterman ",1991.12.04-Abernathy_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.12.04-Abernathy_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.12.04-Abernathy_Collier.pdf,1991.12.04,1991.12.04,3646,, +1991.11.26.b,26-Nov-91,1991,Unprovoked,USA,Hawaii,"Olowalu, Maui",Snorkeling,Martha Joy Morrell,F,41,"FATAL, right leg at hip, left leg and right forearm severed ",Y,09h00,"Tiger shark, 2.4 m 3.4 m [8' to 11'] ","J. Borg, pp.1-3; A. MacCormick, p.151; L. Taylor (1993), pp.112-113",1991.11.26.b-Morrell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.26.b-Morrell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.26.b-Morrell.pdf,1991.11.26.b,1991.11.26.b,3645,, +1991.11.26.a,26-Nov-91,1991,Unprovoked,USA,Hawaii,"Olowalu, Maui",Snorkeling,Louise Sourisseau,F,,Right calf abraded,N,09h00,"Tiger shark, 2.4 m 3.4 m [8' to 11'] ","J. Borg, p.80; A. MacCormick, p.151; L. Taylor (1993), pp.112-113",1991.11.26.a-Sourisseau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.26.a-Sourisseau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.26.a-Sourisseau.pdf,1991.11.26.a,1991.11.26.a,3644,, +1991.11.19,19-Nov-91,1991,Unprovoked,USA,Hawaii,"Maliko Point, Maui","Fishing from rocks, swept out to sea by large wave & treading water",Suk Kyu (Steve) Park,M,,"Body not recovered, shorts found indicating shark bite on left side",Y,16h30,"Tiger shark, 3.7 m [12'] ","J. Borg, pp.79-80; L. Taylor (1993), pp.110-111",1991.11.19-Park.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.19-Park.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.19-Park.pdf,1991.11.19,1991.11.19,3643,, +1991.11.14,14-Nov-91,1991,Provoked,USA,Florida,Near Port Canaveral Coast Guard Base,Fishing,John Saenza,M,,Hand bitten as he was cleaning hooked shark PROVOKED INCIDENT,N,12h54,2.4 m [8'] shark,"D.E. Owens, Orlando Sentinel, 11/15/1991",1991.11.14-Saenza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.14-Saenza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.14-Saenza.pdf,1991.11.14,1991.11.14,3642,, +1991.11.00,Nov-91,1991,Unprovoked,AUSTRALIA,Western Australia,"Backbeach, Halls Head",Boogie boarding,Chad Wittorff,M,14,Calf scratched & chunk bitten from board,N,,"""small shark""","A. Sharpe, pp.135-136",1991.11.00-Wittorff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.00-Wittorff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.00-Wittorff.pdf,1991.11.00,1991.11.00,3641,, +1991.10.12,12-Oct-91,1991,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,Cliff Turner,M,21,Right foot & ankle lacerated,N,08h30,1.8 m [6'] shark,"Orlando Sentinel, 10/13/1991",1991.10.12-CliffTurner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.10.12-CliffTurner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.10.12-CliffTurner.pdf,1991.10.12,1991.10.12,3640,, +1991.10.05,05-Oct-91,1991,Unprovoked,USA,California,"Horseshoe Reef, Scott Creek, Davenport, Santa Cruz County",Surfing,John Ferrerira,M,32,"Arm, shoulder & back bitten",N,07h30,5 m to 6 m [16.5' to 20'] white shark,"R. Collier, pp.126-128 ; Orlando Sentinel, 10/6/1991, p.A8 & 10/10/ 1991, p.A8 ",1991.10.05-Ferreira_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.10.05-Ferreira_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.10.05-Ferreira_Collier.pdf,1991.10.05,1991.10.05,3639,, +1991.09.19,19-Sep-91,1991,Invalid,BAHAMAS,,Bimini,Spearfishing,Omar Karim Huneidi,M,32,"Initally reported as a shark attack, forensic examination concluded cause of death was drowning",Y,17h00,Tiger shark,"E. Pace, FSAF; Sun Sentinel, 9/22/1991, p.3B",1991.09.19-Huneidi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.09.19-Huneidi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.09.19-Huneidi.pdf,1991.09.19,1991.09.19,3638,, +1991.09.08,08-Sep-91,1991,Unprovoked,AUSTRALIA,South Australia,"Snapper Point, Aldinga Beach, Adelaide",Scuba diving,Jonathon Lee,M,19,FATAL,Y,15h00,4 m [13'] white shark,"Advertiser, 1/31/1992, p.5; A. Sharpe, pp.127-128 ",1991.09.08-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.09.08-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.09.08-Lee.pdf,1991.09.08,1991.09.08,3637,, +1991.08.30,30-Aug-91,1991,Provoked,AUSTRALIA,Queensland,"On board the Japanese longline trawler Fukuya No.38, 100 nm northeast of Brisbane",Finning the shark that bit him,A Japanese fisherman from Miyagi,M,36,"Shark bit his arm, nearly severing it PROVOKED INCIDENT",N,Afternoon,"3 m [10'], 270- kg [595-lb] shark","A. Sharpe, pp.107-108",1991.08.30-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.30-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.30-fisherman.pdf,1991.08.30,1991.08.30,3636,, +1991.08.26,26-Aug-91,1991,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Swimming,Brad Hibshman,M,23,Deep cuts on lower leg,N,13h30,sand shark,"Charlotte Observer, 8/27/1991, p.1B",1991.08.26-Hibshman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.26-Hibshman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.26-Hibshman.pdf,1991.08.26,1991.08.26,3635,, +1991.08.12,12-Aug-91,1991,Unprovoked,USA,Florida,"Vero Beach, Indian River County",Wading,Jacquelyn Johnson,F,10,Bite to left thigh & calf,N,16h35,3' shark,"Vero Beach Press Journal, 8/13/1991, E. Pace, FSAF",1991.08.12-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.12-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.12-Johnson.pdf,1991.08.12,1991.08.12,3634,, +1991.08.09,09-Aug-91,1991,Provoked,USA,Florida,Florida Bay,Fishing,Captain John Donnell,M,,Laceration to right forearm PROVOKED INCIDENT,N,,"Lemon shark, 30-lb ","Miami Herald, 8/10/1991, p.2B",1991.08.09-Donnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.09-Donnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.09-Donnell.pdf,1991.08.09,1991.08.09,3633,, +1991.07.30,30-Jul-91,1991,Boat,ITALY,Ligurian Sea,"Portofino, 20 miles offshore, Tigullio Bay, Santa Margherita Ligure (Liguria)",Canoeing,Ivana Iacaccia,F,40,No Injury to occupant; canoe bitten,N,15h30,4 m [13'] white shark,"Stars & Stripes, 8/5/1991, p.8; A. De Maddalena; Graffione (1991), Fergusson (1996), Angela et al. (1997)",1991.07.30-Ivana-Iacaccia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.30-Ivana-Iacaccia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.30-Ivana-Iacaccia.pdf,1991.07.30,1991.07.30,3632,, +1991.07.27,27-Jul-91,1991,Unprovoked,USA,Florida,"John Pennekamp Marine Park, Monroe County",Snorkeling,Jim Yarber,M,39,Arm bitten,N,,"2.1 m [7'], 140-lb reef shark","Miami Herald, 7/31/1991",1991.07.27-Yarber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.27-Yarber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.27-Yarber.pdf,1991.07.27,1991.07.27,3631,, +1991.07.18,18-Jul-91,1991,Unprovoked,USA,Florida,150 miles from Crystal River,Swimming from makeshift raft to life vest after fishing boat sank,Larry Myers,M,42,Punctures in lower abdomen & groin ,N,,1.8 m [6'] blacktip shark,"Orlando Sentinel, 7/23/1991, p.A1",1991.07.18-Myers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.18-Myers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.18-Myers.pdf,1991.07.18,1991.07.18,3630,, +1991.07.07,07-Jul-91,1991,Unprovoked,USA,Florida,"South Miami Beach, Dade County",Swimming,Jorge Garcia,M,22,Arm bitten,N,18h45,,"E. Pace, FSAF",1991.07.07-Garcia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.07-Garcia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.07-Garcia.pdf,1991.07.07,1991.07.07,3629,, +1991.07.01.b,01-Jul-91,1991,Unprovoked,REUNION,L'Etang-Sal�,"Ravine des Sables, Saint Leu",Surfing,Alain Curco-Llov�ra,M,30,Left arm severed,N,17h30,"Tiger shark, 3 to 4 m [10' to 13'] ","R.D. Weeks, GSAF, p.303; G. Van Grevelynghe",1991.07.01.b-Llovera.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.01.b-Llovera.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.01.b-Llovera.pdf,1991.07.01.b,1991.07.01.b,3628,, +1991.07.01.a,01-Jul-91,1991,Unprovoked,USA,California,"8.5 miles south of Ano Nuevo State Reserve, Davenport County",Surfing,Eric Larsen,M,32,"Forearm, upper thigh, knee & ankle lacerated",N,09h30,5 m [16.5'] white shark,"R. Collier, pp.124-126 ; San Jose Mercury, 7/4/1991; Orlando Sentinel, 7/4/1991, p.A21; 10/6/1991, p.A22 + ",1991.07.01.a-Larsen_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.01.a-Larsen_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.01.a-Larsen_Collier.pdf,1991.07.01.a,1991.07.01.a,3627,, +1991.07.00,Jul-91,1991,Unprovoked,USA,Virginia,"Croatan Beach, Virginia Beach, ",Boogie boarding,Michael Hootman,M,13,Severe laceration to foot,N,,Shark involvement not confirmed,"Virginia Beach Beacon, 10/15/1991",1991.07.00-Hootman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.00-Hootman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.00-Hootman.pdf,1991.07.00,1991.07.00,3626,, +1991.06.29,29-Jun-91,1991,Unprovoked,HONG KONG,,"Basalt Island, 9km from Silverstrand",,male,M,22,FATAL,Y,,,J. Wong,1991.06.29-NV-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.29-NV-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.29-NV-HongKong.pdf,1991.06.29,1991.06.29,3625,, +1991.06.28,28-Jun-91,1991,Unprovoked,HONG KONG,Kowloon Peninsula,Sai Kung,Fishing,male,M,,"FATAL, right arm severed ",Y,,,"A. MacCormick, pp.103-104 & 235",1991.06.28-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.28-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.28-HongKong.pdf,1991.06.28,1991.06.28,3624,, +1991.06.26,26-Jun-91,1991,Unprovoked,USA,Florida,"Jacksonville Beach, Duval County",Surfing,Joe Bosque,M,18,Hand bitten,N,17h30,,"Miami Herald, 6/28/1991, p.5B",1991.06.26-JoeBosque.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.26-JoeBosque.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.26-JoeBosque.pdf,1991.06.26,1991.06.26,3623,, +1991.06.07.b,07-Jun-91,1991,Unprovoked,USA,Florida,"Tampa Bay, Hillsborough County",Swimming behind sailboat,Rick Le Prevost,M,31,"Left ankle, calf, thigh and abdomen bitten",N,11h30,2.7 m [9'] bull or lemon shark,"Orlando Sentinel; 6/9/1991, p.B3; Ocala Star-Banner, 6/8/1991; St. Petersburg Times, 11/28/1991 ",1991.06.07.b-LePrevost.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.07.b-LePrevost.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.07.b-LePrevost.pdf,1991.06.07.b,1991.06.07.b,3622,, +1991.06.07.a,07-Jun-91,1991,Unprovoked,HONG KONG,Port Shelter,"Silverstrand Beach, near Hung Hau ",Swimming ,Yeung Tam-ho (female),F,65,Abdomen bitten & leg severed FATAL,Y,Between 06h00 & 07h20,"Tiger shark, >3 m [10']","Sunday Mail, 6/9/91, p.28",1991.06.07.a-YeungTam-ho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.07.a-YeungTam-ho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.07.a-YeungTam-ho.pdf,1991.06.07.a,1991.06.07.a,3621,, +1991.05.26,26-May-91,1991,Unprovoked,USA,Hawaii,"Ma'ili Beach, O'ahu",Sitting on surfboard,Frank (Scott) Betz,M,23,Right calf bitten,N,16h45,2.4 m [8'] shark,"J. Borg, p.79; L. Taylor (1993), pp.110-111",1991.05.26-Betz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.05.26-Betz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.05.26-Betz.pdf,1991.05.26,1991.05.26,3620,, +1991.05.19,19-May-91,1991,Unprovoked,SOUTH AFRICA,Western Cape Province,Gordon�s Bay,Scuba diving,Coen Marais,M,,"No injury, tank scratched by shark",N,13h00,"3.5 m [11.5'] female white shark named ""Notchfin""","M. Levine, GSAF",1991.05.19-Marais-Jordaan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.05.19-Marais-Jordaan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.05.19-Marais-Jordaan.pdf,1991.05.19,1991.05.19,3619,, +1991.04.24,24-Apr-91,1991,Provoked,BRAZIL,Pernambuco,"Praia de Pau Amarelo, Recife",Fishing,L.F.,,,2 fingers severed by netted shark PROVOKED INCIDENT,N,Afternoon,"170-kg, 2.8 m shark",M. Szpilman,1991.04.24-PauAmarelo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.24-PauAmarelo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.24-PauAmarelo.pdf,1991.04.24,1991.04.24,3618,, +1991.04.16.b,16-Apr-91,1991,Provoked,USA,Maryland,Baltimore Aquarium,Diving,a senior aquarist,,,Minor injury by captive shark PROVOKED INCIDENT,N,09h55,7' female shark,"Washington Post, 4/20/1991",1991.04.16-Kohler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.16-Kohler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.16-Kohler.pdf,1991.04.16.b,1991.04.16.b,3617,, +1991.04.16.a,16-Apr-91,1991,Unprovoked,USA,Florida,"South of Ponce Inlet, New Smyrna Beach, Volusia County","Surfing, collided with shark",David Kohler,M,22,Right thigh,N,11h00,1.2 m to 1.5 m [4' to 5'] shark,"Orlando Sentinel, 4/18/199, p.B3",1991.04.16.b-BaltimoreAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.16.b-BaltimoreAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.16.b-BaltimoreAquarium.pdf,1991.04.16.a,1991.04.16.a,3616,, +1991.04.03,03-Apr-91,1991,Unprovoked,USA,Hawaii,"One'ula Beach Park, 'Ewa Beach, O'ahu",Sitting on surfboard,Todd R. Wenke,M,,Deep lacerations to calf & ankle,N,17h30,"""Shark had a very large girth""","J. Borg, p.79; L. Taylor (1993), pp.110-111",1991.04.03-Wenke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.03-Wenke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.03-Wenke.pdf,1991.04.03,1991.04.03,3615,, +1991.03.03,03-Mar-91,1991,Unprovoked,AUSTRALIA,New South Wales,Bass Point,Scuba diving,John Puljak,M,18,Lacerations to arm & leg,N,,"Grey nurse shark, 2 m","Sunday Advertiser, 3/5/1991, p.2",1991.03.03-Puliak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.03.03-Puliak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.03.03-Puliak.pdf,1991.03.03,1991.03.03,3614,, +1991.02.24,24-Feb-91,1991,Unprovoked,USA,Oregon,"Neskowin, Tillamook County",Surfing,Tony Franciscone,M,38,Calf lacerated & board bitten,N,09h30,5.5 m [18'] white shark,"R. Collier, pp.122-123",1991.02.24-Franciscone_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.02.24-Franciscone_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.02.24-Franciscone_Collier.pdf,1991.02.24,1991.02.24,3613,, +1991.02.12,12-Feb-91,1991,Unprovoked,SOUTH AFRICA,Western Cape Province,Miller�s Point,Spearfishing,Edward Hayman,M,20,Foot & swim fin bitten,N,12h30,5.5 m [18'] white shark,"M. Levine, GSAF",1991.02.12-Hayman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.02.12-Hayman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.02.12-Hayman.pdf,1991.02.12,1991.02.12,3612,, +1991.01.19,19-Jan-91,1991,Unprovoked,AUSTRALIA,Queensland,Mermaid Waters,Swimming,Michael Sproule,M,35,"Hands, legs & buttocks lacerated",N,08h10,,"Sunday Mail, 1/20/1991, p.1",1991.01.19-Sproule.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.01.19-Sproule.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.01.19-Sproule.pdf,1991.01.19,1991.01.19,3611,, +1991.01.09,09-Jan-91,1991,Unprovoked,AUSTRALIA,Western Australia,Scarborough,Surf-skiing,Grant Kenny,M,,"No injury, shark brushed ski",N,,4 m shark,"Courier-Mail, 1/10/1991, p.5",1991.01.09-Kenny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.01.09-Kenny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.01.09-Kenny.pdf,1991.01.09,1991.01.09,3610,, +1991.01.00,Jan-91,1991,Unprovoked,AUSTRALIA,Queensland,Pelican Banks near Gladstone,Surfing (or sailboarding),Tony Hodgson,M,22,Survived,N,,2 m shark,"Courier-Mail, 3/25/1991, p.4",1991.01.00-Hodgson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.01.00-Hodgson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.01.00-Hodgson.pdf,1991.01.00,1991.01.00,3609,, +1990.12.26,26-Dec-90,1990,Invalid,SOUTH AFRICA,Eastern Cape Province,Port Elizabeth,,male,M,,Survived,N,,,Unverified report,1990.12.26-NV-SouthAfrica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.12.26-NV-SouthAfrica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.12.26-NV-SouthAfrica.pdf,1990.12.26,1990.12.26,3608,, +1990.11.28,28-Nov-90,1990,Unprovoked,AUSTRALIA,Queensland,Nerang River,Swimming ,Michael Pignolet,M,26,"Abdomen, hip, leg & arm bitten",N,,1.5 m shark,"Herald Sun, 11/30/1990, p.34",1990.11.28-Pignolet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.11.28-Pignolet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.11.28-Pignolet.pdf,1990.11.28,1990.11.28,3607,, +1990.11.03,03-Nov-90,1990,Unprovoked,USA,California,"Monastery Beach, Carmel Bay, Monterey County",Scuba diving (but on surface),Eloise Tavares,F,,Leg bitten,N,15h00,4 m to 5 m [13' to 16.5'] white shark,"R. Collier, p.122",1990.11.03-Tavares_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.11.03-Tavares_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.11.03-Tavares_Collier.pdf,1990.11.03,1990.11.03,3606,, +1990.11.01,01-Nov-90,1990,Unprovoked,USA,Florida,"Spanish River Park Beach, Palm Beach County",Surfing,James Cornell,M,24,"Ear, shoulder, arm, wrist & ear injured",N,09h30,5' shark,"Palm Beach Post, 11/3/1990; Miami Herald, 11/2/1990 ",1990.11.01-Cornell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.11.01-Cornell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.11.01-Cornell.pdf,1990.11.01,1990.11.01,3605,, +1990.10.30.b,30-Oct-90,1990,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,Robert Spratt,M,50,"Hand & wrist bitten, tooth fragments in wound",N,16h55,1.8 m [6'] shark ,"S. Jacobson, Orlando Sentinel, 11/1/1990, p. B1; St. Petersburg Times, 11/1/1990; Miami Herald, 11/1/1990",1990.10.30.b-RobertSpratt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.30.b-RobertSpratt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.30.b-RobertSpratt.pdf,1990.10.30.b,1990.10.30.b,3604,, +1990.10.30.a,30-Oct-90,1990,Unprovoked,USA,Florida,"Indialantic, Brevard County",Surfing,Mark Evans,M,18,Cuts on left foot ,N,15h30,,"S. Jacobson, Orlando Sentinel, 11/1/1990 ",1990.10.30.a-Mark Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.30.a-Mark Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.30.a-Mark Evans.pdf,1990.10.30.a,1990.10.30.a,3603,, +1990.10.27,27-Oct-90,1990,Unprovoked,AUSTRALIA,Queensland,Mermaid Waters,Swimming,Craig Coleman,M,26,Buttocks & hip bitten,N,20h30,,"Sunday Mail (QLD), 10/28/1990, p.1",1990.10.27-Coleman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.27-Coleman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.27-Coleman.pdf,1990.10.27,1990.10.27,3602,, +1990.10.25,25-Oct-90,1990,Unprovoked,AUSTRALIA,South Australia,Goolwa Beach,Surfing,male,M,,Lacerations to foot,N,10h30,,"The News, 10/26/1990",1990.10.25-Goolwa-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.25-Goolwa-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.25-Goolwa-Surfer.pdf,1990.10.25,1990.10.25,3601,, +1990.10.20,20-Oct-90,1990,Unprovoked,USA,Florida,"North end of County Beach, Palm Beach County",Surfing,Carl Demers,M,25,Wrist bitten,N,16h00,4' spinner shark,"Palm Beach Post, 10/22/1990 ",1990.10.20-Demers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.20-Demers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.20-Demers.pdf,1990.10.20,1990.10.20,3600,, +1990.10.15,15-Oct-90,1990,Unprovoked,USA,Hawaii,"Hanalei Point, Kaua'i",Surfing,Greg Filtzer,M,43,"No Injury, board bitten",N,15h00,"Tiger shark, 3.7 m [12'] ","G.. Filtzer; G. Ambrose, pp.8-17; J. Borg, p.64",1990.10.15-Filzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.15-Filzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.15-Filzer.pdf,1990.10.15,1990.10.15,3599,, +1990.10.12,12-Oct-90,1990,Unprovoked,USA,Florida,"Stuart Beach, Martin County",Surfing,Gabe Martino,M,19,Superficial injuries to left foot & ankle,N,12h30,1.8 m to 2.4 m [6' to 8'] shark,"S.L. Jackson, Palm Beach Post, 10/13/1990 ",1990.10.12-GabeMartino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.12-GabeMartino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.12-GabeMartino.pdf,1990.10.12,1990.10.12,3598,, +1990.09.15,15-Sep-90,1990,Unprovoked,SOUTH AFRICA,Western Cape Province,Oudekraal,Spearfishing,Nasri Gasant,M,26,Right hand lacerated,N,13h20,5 m [16.5'] white shark,"P. v.d. Walt; G. Cliff, NSB",1990.09.15-Gasant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.09.15-Gasant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.09.15-Gasant.pdf,1990.09.15,1990.09.15,3597,, +1990.09.08,08-Sep-90,1990,Unprovoked,USA,California,"Russian Gulch, Jenner, Sonoma County","Free diving / spearfishing, from paddleboard & floating on the surface",Rodney Orr,M,49,"Shark rammed & overturned paddleboard, knocking him into water & bit his head, lacerating his face & neck",N,13h00,White shark,R. Collier pp.120-121,1990.09.08-Orr_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.09.08-Orr_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.09.08-Orr_Collier.pdf,1990.09.08,1990.09.08,3596,, +1990.09.05,05-Sep-90,1990,Boat,USA,California,"Trinidad State Beach, Humboldt County",Kayaking,Matt Hinton,M,44,"No injury, kayak capsized",N,17h00,2.5 m to 3 m [8.25' to 10'] white shark,"R. Collier, pp118-119 ",1990.09.05 - Hinton_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.09.05 - Hinton_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.09.05 - Hinton_Collier.pdf,1990.09.05,1990.09.05,3595,, +1990.08.30,30-Aug-90,1990,Invalid,USA,Florida,"Juno Beach / North Palm Beach, Palm Beach County",SCUBA diving,Michael Mortimer,M,30,"Disappeared, body recovered with large bite on thigh",Y,,Shark involvement prior to death could not be determined,"Miami Herald, 9/6/1990; Orlando Sentinel, 9/7/1990, p.B4",1990.08.30-Mortimer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.30-Mortimer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.30-Mortimer.pdf,1990.08.30,1990.08.30,3594,, +1990.08.28,28-Aug-90,1990,Unprovoked,USA,California,"Trinidad Head, Humboldt County",Surfing,Rodney Swan,M,22,4 punctures on leg & board bitten,N,16h50,5 m to 6 m [16.5' to 20'] white shark,"R. Collier, pp.116-118",1990.08.28-Swan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.28-Swan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.28-Swan_Collier.pdf,1990.08.28,1990.08.28,3593,, +1990.08.19.b,19-Aug-90,1990,Unprovoked,USA,Texas,"Mustang Island, Nueces County",Surfing,male,M,,Minor cuts to foot,N,,,"Dallas Morning News, 8//22/1990",1990.08.19.b-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.19.b-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.19.b-Surfer.pdf,1990.08.19.b,1990.08.19.b,3592,, +1990.08.19.a,19-Aug-90,1990,Unprovoked,USA,Texas,"Near Port Aransas, Nueces County",Wade fishing,Jimmy Allen,M,18,Minor injury,N,13h30,,"Dallas Morning News, 8//22/1990",1990.08.19.a-b-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.19.a-b-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.19.a-b-Allen.pdf,1990.08.19.a,1990.08.19.a,3591,, +1990.07.22,22-Jul-90,1990,Unprovoked,USA,Texas,"Mustang Island State Park, Nueces County",Wading,Barbara Green,F,53,10-inch laceration to right foot,N,Evening,,"Paris News, 7/23/1990",1990.07.22-Greem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.07.22-Greem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.07.22-Greem.pdf,1990.07.22,1990.07.22,3590,, +1990.07.08,08-Jul-90,1990,Unprovoked,USA,Florida,"Perdido Key near the Florida Panhandle, Escambia County",Surfing,Scott Holloway,M,17,Minor injury to left ankle & foot,N,,,"Orlando Sentinel, 7/8/1990, p.B.1",1990.07.08-Holloway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.07.08-Holloway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.07.08-Holloway.pdf,1990.07.08,1990.07.08,3589,, +1990.06.24,24-Jun-90,1990,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Scuba diving (but on surface),Monique Price,F,21,"FATAL, thigh bitten ",Y,15h45,"4.5 m [14'9""] white shark","A Gifford, G. Cliff, GSAF",1990.06.24 - Price.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.06.24 - Price.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.06.24 - Price.pdf,1990.06.24,1990.06.24,3588,, +1990.06.23,23-Jun-90,1990,Unprovoked,BAHAMAS,,Bimini,Spearfishing,Bruce Cease,M,38,Left forearm bitten,N,14h30,1.2 m to 1.5 m [4' to 5'] shark,"Miami Herald, 6/25/1990",1990.06.23-Cease.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.06.23-Cease.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.06.23-Cease.pdf,1990.06.23,1990.06.23,3587,, +1990.05.13,13-May-90,1990,Provoked,SOUTH AFRICA,KwaZulu-Natal,Protea Reef,Fishing,"skiboat Double One, occupants: Anton & Michelle Gets, Ray Whitaker, John & Lyn Palmer",,,"No injury to occupants, hooked shark freed itself, then rammed stern of boat PROVOKED INCIDENT",N,,"6 m, 600-kg shark","G. Charter, GSAF",1990.05.13-DoubleOne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.13-DoubleOne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.13-DoubleOne.pdf,1990.05.13,1990.05.13,3586,, +1990.05.10,10-May-90,1990,Unprovoked,AUSTRALIA,Queensland,Outer Barrier Reef near Port Douglas,Snorkeling, Sydney woman,F,30s,Lacerations,N,,2 m hammerhead,"Courier-Mail, 5/11/1990, p.1",1990.05.10.b-Sydney-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.10.b-Sydney-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.10.b-Sydney-woman.pdf,1990.05.10,1990.05.10,3585,, +1990.05.10,10-May-90,1990,Unprovoked,AUSTRALIA,Queensland,Outer Barrier Reef near Port Douglas,"Snorkeling, possibly holding a fish",German male,M,30s,Lacerations,N,,2 m hammerhead,"Courier-Mail, 5/11/1990, p.1",1990.05.10.a-German-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.10.a-German-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.10.a-German-male.pdf,1990.05.10,1990.05.10,3584,, +1990.05.06,06-May-90,1990,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Cintsa East,Resting on surfboard,Richard Forrester,M,22,Thigh severely lacerated,N,12h00,"5.5 m [18'] white shark, identified by witnesses & tooth marks","R. Forrester, M. Levine, GSAF",1990.05.06-Forrester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.06-Forrester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.06-Forrester.pdf,1990.05.06,1990.05.06,3583,, +1990.04.14,14-Apr-90,1990,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Cape Recife,Lying on surfboard & paddling,Conrad Botha,M,23,Leg bitten,N,14h00,"2.3 m [7.5'] white shark, identified by M. Smale",M. Smale,1990.04.14-Botha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.14-Botha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.14-Botha.pdf,1990.04.14,1990.04.14,3582,, +1990.04.09,09-Apr-90,1990,Unprovoked,AUSTRALIA,Queensland,Greenmount Beach,Surfing,Mark Fleming,M,31,"Lacerations & abrasions, board bitten in half",N,05h40,"Tiger shark, 3 m ","Herald, 4/10/1990, p.4 & 4/11/1990, p.1",1990.04.09-Fleming.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.09-Fleming.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.09-Fleming.pdf,1990.04.09,1990.04.09,3581,, +1990.04.08,08-Apr-90,1990,Unprovoked,AUSTRALIA,Queensland,"Dingo Reef, 80 nm off Townsville",Free diving for trochus,Robert Bullen,M,37,Presumed FATAL,Y,,,"Courier-Mail, 4/12/1990, p.5",1990.04.08-Bullen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.08-Bullen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.08-Bullen.pdf,1990.04.08,1990.04.08,3580,, +1990.04.07,07-Apr-90,1990,Unprovoked,AUSTRALIA,Queensland,Fingal Beach,Surfing,"male, an American tourist",M,,"No injury, board broken in two",N,,3 m shark,"Herald, 4/10/1990, p.4",1990.04.07-AmericanTourist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.07-AmericanTourist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.07-AmericanTourist.pdf,1990.04.07,1990.04.07,3579,, +1990.04.06,06-Apr-90,1990,Unprovoked,AUSTRALIA,Queensland,Fingal Beach,Surfing,Tony Patton,M,29,"No injury, board bitten",N,,3 m shark,"Herald, 4/10/1990, p.4",1990.04.06-TonyPatton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.06-TonyPatton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.06-TonyPatton.pdf,1990.04.06,1990.04.06,3578,, +1990.04.01,01-Apr-90,1990,Unprovoked,USA,Hawaii,"Silver (Silva) Channels, Waialua, O'ahu",Sitting on surfboard,Everett Peacock,M,,"Ankle lacerated, lower left leg severely abraded ",N,<07h30,,"J. Borg, p.79; L. Taylor (1993), pp.110-111",1990.04.01-Peacock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.01-Peacock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.01-Peacock.pdf,1990.04.01,1990.04.01,3577,, +1990.03.24, 24-Mar-1990,1990,Unprovoked,FIJI,Laucala Island,,Swimming,Ola Stillman Rockefeller,M,30,Lacerations to right leg,N,,,"The News, 3/27/1990, p.6",1990.03.24-Rockefeller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.03.24-Rockefeller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.03.24-Rockefeller.pdf,1990.03.24,1990.03.24,3576,, +1990.03.05,05-Mar-90,1990,Unprovoked,REUNION,Sainte-Marie,Baie de la Mare,Surfing,Wagner Cataldo-Beugleu,M,,Survived,N,17h45,3 m [10'] bull shark,G. Van Grevelynghe,1990.03.05-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.03.05-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.03.05-Reunion.pdf,1990.03.05,1990.03.05,3575,, +1990.02.17,17-Feb-90,1990,Unprovoked,USA,Hawaii,"Mokapu, Kane'ohe Marine Air Corps Station, O'ahu",Scuba diving & spearfishing,Roy T. Tanaka,M,,Right arm severed FATAL,Y,21h30,Two sharks seen in vicinity: 2.4 m & 4.25 m [8' & 14'] TL,"J. Borg, pp.78-79; L. Taylor (1993) pp.110-111",1990.02.17-Tanaka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.02.17-Tanaka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.02.17-Tanaka.pdf,1990.02.17,1990.02.17,3574,, +1990.02.05,05-Feb-90,1990,Unprovoked,USA,Florida,"Monster Hole, Sebastian Inlet, Indian River County",Board sailing,Bruce Ferguson,M,33,Foot bitten,N,,,"Orlando Sentinel, Feb 9, 1990. pg. B.3",1990.02.05-Ferguson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.02.05-Ferguson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.02.05-Ferguson.pdf,1990.02.05,1990.02.05,3573,, +1990.01.12,12-Jan-90,1990,Unprovoked,USA,California,"Montera Beach, San Mateo County",Surfing (sitting on his board),Sean Sullivan,M,,"No injury, board bitten",N,,3 m to 4 m [10' to 13'] white shark,"J. McCosker & R.N. Lea; R. Collier, p. 116 ; A. MacCormick, p.67",1990.01.12-Sullivan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.01.12-Sullivan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.01.12-Sullivan_Collier.pdf,1990.01.12,1990.01.12,3572,, +1990.00.00,1990,1990,Unprovoked,USA,Florida,"Pensacola, Escambia County",Surfing,male,M,17,,UNKNOWN,,,,1990.00.00-NV-Pensacola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.00.00-NV-Pensacola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.00.00-NV-Pensacola.pdf,1990.00.00,1990.00.00,3571,, +1989.12.19,19-Dec-89,1989,Provoked,USA,Hawaii,"90 miles east of Hilo, Hawai'i",On board 51' fishing vessel One Ki,George Sohswel,M,,Left leg & foot bitten by shark brought onboard. PROVOKED INCIDENT,N,,,"J. Borg, p.78; L. Taylor (1993), pp.108-109",1989.12.19-Sohswel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.12.19-Sohswel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.12.19-Sohswel.pdf,1989.12.19,1989.12.19,3570,, +1989.12.03,03-Dec-89,1989,Unprovoked,AUSTRALIA,Northern Territory,Gove Peninsula near Darwin,,Ryan Johnson,M,17,"No details, ""recovering in Darwin Hospital""",UNKNOWN,,"Tiger shark, 2m ","Courier-Mail, 12/6/1989",1989.12.03-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.12.03-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.12.03-Johnson.pdf,1989.12.03,1989.12.03,3569,, +1989.12.02,02-Dec-89,1989,Invalid,AUSTRALIA,Queensland,Fraser Island,Swimming,Michael Preston,M,27,"Swept out to sea, feared taken by shark",Y,,,"The Advertiser, 12/4/1989, p.2",1989.12.02-Preston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.12.02-Preston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.12.02-Preston.pdf,1989.12.02,1989.12.02,3568,, +1989.11.22,22-Nov-89,1989,Unprovoked,AUSTRALIA,Victoria,Kilcunda,Surfing,Gary White,M,32,Thigh bitten,N,,White shark,"Courier-Mail, 11/24/1989, p.3; J. West, ASAF",1989.11.22-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.22-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.22-White.pdf,1989.11.22,1989.11.22,3567,, +1989.11.18,18-Nov-89,1989,Unprovoked,SOUTH AFRICA,Western Cape Province,Melkbosstrand,Free diving & spearfishing,Gerjo Van Niekerk,M,29,FATAL,Y,12h05,White shark,"M. Levine, GSAF",1989.11.18-VanNiekerk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.18-VanNiekerk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.18-VanNiekerk.pdf,1989.11.18,1989.11.18,3566,, +1989.11.12,12-Nov-89,1989,Invalid,USA,Hawaii,"Ehukai Beach Park, Sunset Beach, O'ahu","Wading, knocked down & swept away by large waves",Edward Malek,M,,Lower porton of body recovered 3 days later. Note: rare sighting of shark made at same beach on 11-5-1989 ,Y,18h00,,"J. Borg, p.78; L. Taylor (1993), pp.108-109",1989.11.12-Malek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.12-Malek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.12-Malek.pdf,1989.11.12,1989.11.12,3565,, +1989.11.02,02-Nov-89,1989,Unprovoked,AUSTRALIA,Queensland,Mermaid Waters,Swimming in canal,Kristoffer Fredriksen,M,10,Left ankle broken & lacerated,N,,"2 m shark, possibly a bronze whaler","Courier-Mail, 11/7/1989, p.3",1989.11.02-Fredriksen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.02-Fredriksen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.02-Fredriksen.pdf,1989.11.02,1989.11.02,3564,, +1989.10.29.R,Reported 29-Oct-1989,1989,Unprovoked,AUSTRALIA,Northern Territory,Edith Falls,Swimming,Christine Kaesler,F,31,Puncture marks to right calf,N,,,"Sunday Mail, 10/29/1989",1989.10.29.R-Kaesler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.29.R-Kaesler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.29.R-Kaesler.pdf,1989.10.29.R,1989.10.29.R,3563,, +1989.10.22,22-Oct-89,1989,Unprovoked,AUSTRALIA,Tasmania,Shelly Point ,Surfing,Steven Jillet,M,17,"No injury, board bitten",N,14h20,2.7 m [9'] white shark,"Hobart Mercury, 10/23/1989, p.1; C. Black, pp 163-167",1989.10.22-Jillet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.22-Jillet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.22-Jillet.pdf,1989.10.22,1989.10.22,3562,, +1989.10.14,14-Oct-89,1989,Invalid,USA,Hawaii,"Kahe Point, O'ahu",Scuba diving,"Ray Mehl, Jr.",M,,"Disappeared 15 minutes into shallow dive. Decapitated body minus arm found by divers the following morning, then shark appeared and consumed most of remains",Y,16h30,Large tiger shark,"Washington Post, 10/17/1989, J. Borg, pp.77-78; L. Taylor (1993), pp.108-109",1989.10.14-Mehl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.14-Mehl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.14-Mehl.pdf,1989.10.14,1989.10.14,3561,, +1989.10.11,11-Oct-89,1989,Unprovoked,USA,Texas,Surfside Beach,Surfing,Jason Largent,M,12,Foot & leg bitten,N,Evening,4' shark,"Austin American Statesman, 10/13/1989, p.B6",1989.10.11-Largent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.11-Largent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.11-Largent.pdf,1989.10.11,1989.10.11,3560,, +1989.10.08,08-Oct-89,1989,Invalid,USA,North Carolina,"Between Wrightsville Beach & Carolina Beach, New Hanover County",Diving,Doug Nunnally,M,49,FATAL,Y,Late afternoon,Tiger shark,"C. Creswell, GSAF & Search & Rescue diver, New Hanover County; F. Schwartz ",1989.10.08-Nunnally.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.08-Nunnally.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.08-Nunnally.pdf,1989.10.08,1989.10.08,3559,, +1989.10.01,01-Oct-89,1989,Unprovoked,AUSTRALIA,Victoria,"Surfers Point, Phillip Island",Surfing,John Benson,M,,No details,UNKNOWN,,White shark,"J. West, ASAF",1989.10.01-Benson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.01-Benson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.01-Benson.pdf,1989.10.01,1989.10.01,3558,, +1989.09.17,17-Sep-89,1989,Unprovoked,SOUTH AFRICA,Western Cape Province,"Smitswinkel, False Bay",Free diving,Gerjo Van Niekerk,M,29,Chest lacerated,N,14h30,"White shark, identified by tooth pattern","G.v.Niekerk, C. Walker, M.Levine, GSAF",1989.09.17-GerjoVanNiekerk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.17-GerjoVanNiekerk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.17-GerjoVanNiekerk.pdf,1989.09.17,1989.09.17,3557,, +1989.09.13,13-Sep-89,1989,Provoked,USA,Florida,"Gulf of Mexico, 22 miles from Pensacola","Fishing, stepped on hooked shark's head",Charles N. Swafford,M,51,Bitten by hooked shark PROVOKED INCIDENT,N,Afternoon,150-lb shark,"Miami Herald, 9/15/1989",1989.09.13-Swafford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.13-Swafford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.13-Swafford.pdf,1989.09.13,1989.09.13,3556,, +1989.09.10,10-Sep-89,1989,Boat,USA,California,"Off Palos Verdes Estates, Los Angeles",Observing a shark feeding on a carcass of a humpback whale,11.6 m fibreglass boat. Occupants: Tony DeCriston & Dan Fink,,,No injury to occupants. Shark bit boat's swim step & repeatedly pushed the boat away whenever if came within 4 to 5 m of the whale carcass,N,,4 to 5 m white shark,R. Collier,1989.09.10-DeCristo_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.10-DeCristo_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.10-DeCristo_Collier.pdf,1989.09.10,1989.09.10,3555,, +1989.09.09.b,09-Sep-89,1989,Unprovoked,USA,California,"Southeast Farallon Island, Farallon Islands",Hookah diving for abalone (descending),Mark Tisserand,M,38,Leg bitten,N,12h30,4 m to 5 m [13' to 16.5'] white shark,"R. Collier, pp.110-112 ",1989.09.09-Tisserand_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.09-Tisserand_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.09-Tisserand_Collier.pdf,1989.09.09.b,1989.09.09.b,3554,, +1989.09.09.a,09-Sep-89,1989,Unprovoked,USA,North Carolina,"Salvo, Dare County",Surfing,Robert Ballard,M,31,Non-fatal,N,,Sandbar shark,"C. Creswell, GSAF",1989.09.09.a-Ballard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.09.a-Ballard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.09.a-Ballard.pdf,1989.09.09.a,1989.09.09.a,3553,, +1989.09.03,03-Sep-89,1989,Provoked,USA,California,24 km off Santa Catalina Island in the Channel Islands,Filming 5' blue shark,Larry Stroup,M,46,Hand & both arms bitten PROVOKED INCIDENT,N,,Blue Shark ,"R. Collier, p. xxvi; Orlando Sentinel, 9/6/1989, p.3A",1989.09.03-Stroup.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.03-Stroup.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.03-Stroup.pdf,1989.09.03,1989.09.03,3552,, +1989.08.29,29-Aug-89,1989,Provoked,AUSTRALIA,Queensland,SeaWorld Theme Park,Feeding fish,Mike Richardson,M,30,Left leg bitten by captive shark PROVOKED INCIDENT,N,Afternoon,Grey nurse shark,"The Canberra Times, 9/1/1989",1989.08.29-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.29-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.29-Richardson.pdf,1989.08.29,1989.08.29,3551,, +1989.08.22.b,22-Aug-89,1989,Unprovoked,USA,Florida,"St Augustine, St Johns County",Swimming,Anthony McKnight,M,21,3 wounds on left hand,N,,1.2 m [4'] shark,"Orlando Sentinel, 8/24/1989. p.B1",1989.08.22.b-McKnight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.22.b-McKnight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.22.b-McKnight.pdf,1989.08.22.b,1989.08.22.b,3550,, +1989.08.22.a,22-Aug-89,1989,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Surfing,Niko von Broembsen,M,21,Multiple Injuries,N,10h45,>3.4 m [11'] white shark,"N.v.Broembsen; M. Levine, GSAF",1989.08.22.a-vonBroembsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.22.a-vonBroembsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.22.a-vonBroembsen.pdf,1989.08.22.a,1989.08.22.a,3549,, +1989.08.13,13-Aug-89,1989,Unprovoked,AUSTRALIA,New South Wales,Lennox Head,Surfing,Michael Guy,M,17,"No injury, shark took chunk out of surfboard",N,06h30,"Bronze whaler shark, 3 m [10'] ","Sydney Morning Herald, 8/14/1989, p.3; Courier Mail, 8/19/1989, p.2",1989.08.13-Guy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.13-Guy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.13-Guy.pdf,1989.08.13,1989.08.13,3548,, +1989.08.09,09-Aug-89,1989,Unprovoked,BAHAMAS,Great Exuma Island,Highborn Cay,Spearfishing,Judy St. Clair,F,31,Severe hand and arm injuries; right hand surgically amputated,N,,,"Orlando Sentinel, 8/10/1989, pp B3 & B5; Palm Beach Post, 8/15/1989 +",1989.08.09-StClair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.09-StClair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.09-StClair.pdf,1989.08.09,1989.08.09,3547,, +1989.08.06.R,Reported 06-Aug-1989,1989,Provoked,AUSTRALIA,Queensland,Moreton Bay,Fishing for sharks,Vic Hislop,M,41,Laceration to arm PROVOKED INCIDENT,N,,3.5 m white shark,"Sunday Mail, 8/6/1989",1989.08.06.R-Hislop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.06.R-Hislop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.06.R-Hislop.pdf,1989.08.06.R,1989.08.06.R,3546,, +1989.07.27,27-Jul-89,1969,Invalid,BERMUDA,,,Scuba diving,Russian male,M,35,FATAL,,,Shark involvement suspected but not confirmed,"LA Times, 7/28/1989",1989.07.27-SovietDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.27-SovietDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.27-SovietDiver.pdf,1989.07.27,1989.07.27,3545,, +1989.07.20,20-Jul-89,1989,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Jeffreys Bay,Surfing,Edward Razzano,M,34,Torso bitten,N,10h35,2.5 m [8.25'] white shark," E. Razzano & R. Joseph; M. Levine, GSAF",1989.07.20-Razzano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.20-Razzano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.20-Razzano.pdf,1989.07.20,1989.07.20,3544,, +1989.07.19,19-Jul-89,1989,Unprovoked,REUNION,Sainte-Suzanne,Temple Tamoule,Surfing,Bruno Giraud ,M,,FATAL,Y,17h00 Sunset,,"Clicanoo, le journal de l'Ile de la R�union",1989.07.19-Giraud.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.19-Giraud.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.19-Giraud.pdf,1989.07.19,1989.07.19,3543,, +1989.07.14,14-Jul-89,1989,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,John O'Brien,M,16,5-inch gash on left leg,N,Afternoon,,"Orlando Sentinel, 7/17/1989",1989.07.14-JohnO'Brien.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.14-JohnO'Brien.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.14-JohnO'Brien.pdf,1989.07.14,1989.07.14,3542,, +1989.07.07,07-Jul-89,1989,Unprovoked,USA,Texas,"Sargent Beach, Matagorda County",Playing ,Rene Richbourg,F,9,Leg bitten,N,,4' shark,"Austin American Statesman, 7/11/1989, B4 & 10/13/1989, p.B6",1989.07.07-Richbourg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.07-Richbourg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.07-Richbourg.pdf,1989.07.07,1989.07.07,3541,, +1989.06.29,29-Jun-89,1989,Unprovoked,USA,Hawaii,"Anahola, Kaua'i",Fell off surfboard 20' from shore,Anthony Paden,M,,Foot & ankle severely bitten,N,,,"J. Borg, p.77; L. Taylor (1993), pp.108-109",1989.06.29-Paden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.29-Paden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.29-Paden.pdf,1989.06.29,1989.06.29,3540,, +1989.06.17,17-Jun-89,1989,Unprovoked,USA,Louisiana,40 miles off Cocodrie,Spearfishing,Carl Loe,M,45,Puncture wounds & lacerations to both legs,N,,1.8 m [6'] sandtiger shark,"The Advocate (Baton Rouge, La.), 6/21/1989",1989.06.17-Loe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.17-Loe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.17-Loe.pdf,1989.06.17,1989.06.17,3539,, +1989.06.06,06-Jun-89,1989,Unprovoked,ITALY,Tuscany,"Marinella, between Punta Blanca & Marine del Carrara ",Windsurfing (urinating on his board),Ezio Bocedi,M,,Upper right thigh bitten,N,15h30,3 m [10'] white shark,"I. Fergusson, MEDSAF",1989.06.06-Bocedi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.06-Bocedi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.06-Bocedi.pdf,1989.06.06,1989.06.06,3538,, +1989.06.05,05-Jun-89,1989,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Jeffreys Bay,Surfing,Roniel Jacobs,M,16,"No injury, board bitten",N,16h15,3 m [10'] white shark,"R. Jacobs, R. Joseph; M. Levine, GSAF ",1989.06.05-Jacobs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.05-Jacobs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.05-Jacobs.pdf,1989.06.05,1989.06.05,3537,, +1989.06.03,03-Jun-89,1989,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Gonubie,Free diving,Leon Krouse,M,28,Forearm bitten,N,15h30,2.5 m [8.25'] white shark,"M. Levine, L. Krouse, P. Sachs, GSAF",1989.06.03-Krouse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.03-Krouse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.03-Krouse.pdf,1989.06.03,1989.06.03,3536,, +1989.06.00,Jun-89,1989,Invalid,JAPAN,Sea of Japan,,,male,M,,"Doubtful incident, needs investigation",N,,,K. Nakaya,1989.06.00-Sea-of-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.00-Sea-of-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.00-Sea-of-Japan.pdf,1989.06.00,1989.06.00,3535,, +1989.04.23,23-Apr-89,1989,Unprovoked,USA,Florida,"Loggerhead Park, Juno Beach, Palm Beach County",Swimming,Scott Scherger,M,19,Right calf bitten,N,,1.2 m [4'] shark,"Palm Beach Post, April 27, 1989 ",1989.04.23-Scherger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.23-Scherger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.23-Scherger.pdf,1989.04.23,1989.04.23,3534,, +1989.04.12,12-Apr-89,1989,Unprovoked,USA,Washington,"Pacific Beach, Grays Harbor County",Surfing (lying prone on his board),Robert Harms,M,,Forearm bitten,N,10h45,White shark,"R. Collier, p.110; J. McCosker & R.N. Lea ",1989.04.12-Harms_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.12-Harms_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.12-Harms_Collier.pdf,1989.04.12,1989.04.12,3533,, +1989.04.09,09-Apr-89,1989,Boat,USA,California,"Monterey Bay, Monterey County",,10.7 m boat. Occupants: John Capella & friends,,,No injury to occupants. Shark rammed boat 4 times,N,10h35,5 m to 7 m white shark,R. Collier,1989.04.09-Capella.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.09-Capella.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.09-Capella.pdf,1989.04.09,1989.04.09,3532,, +1989.04.03,03-Apr-89,1989,Unprovoked,USA,Hawaii,"Ho'okipa Beach, Pa'ia, Maui",Paddling on surfboard,Sam McLain,M,,Calf lacerated,N,,,"J. Borg, p.77; L. Taylor (1993), pp.108-109",1989.04.03-McLain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.03-McLain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.03-McLain.pdf,1989.04.03,1989.04.03,3531,, +1989.04.00,Apr-89,1989,Unprovoked,USA,Hawaii,"Kekaha Beach, Kaua'i",Paddling on surfboard,William P. Allen,M,,"Board rammed by shark, skegs knocked loose & 5' strip of fiberglass torn off, thigh scratched by shark�s teeth",N,,,"J. Borg, p.77; L. Taylor (1993), pp.108-109",1989.04.00-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.00-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.00-Allen.pdf,1989.04.00,1989.04.00,3530,, +1989.03.09,09-Mar-89,1989,Unprovoked,AUSTRALIA,South Australia,"Waitpinga Beach, near Victor Harbor, Encounter Bay",Surfing,Matthew Foale,M,27,Thigh bitten FATAL,Y,20h15,2 m [6.75'] white shark,"Courier-Mail, 3/11/1989, p.5; J. West, ASAF",1989.03.09-Foale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.03.09-Foale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.03.09-Foale.pdf,1989.03.09,1989.03.09,3529,, +1989.03.04,04-Mar-89,1989,Boat,AUSTRALIA,Western Australia,Near Broome in Roebuck Bay,Kayaking,Kim Courtenay ,M,,"No injury, but the kayak was bitten by the shark",N,,"Tiger shark, 3.5 m ","K. Courtenay; T. Peake, GSAF",1989.03.04-Courtenay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.03.04-Courtenay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.03.04-Courtenay.pdf,1989.03.04,1989.03.04,3528,, +1989.02.19,19-Feb-89,1989,Provoked,SOUTH AFRICA,Western Cape Province,,Fishing,Kobus de Jager,M,,Thigh lacerated & abraded PROVOKED INCIDENT,N,,3 m [10'] gaffed shark,"Sunday Times, 2/19/1989",1989.02.19.R-DeJager.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.02.19.R-DeJager.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.02.19.R-DeJager.pdf,1989.02.19,1989.02.19,3527,, +1989.02.15,15-Feb-89,1989,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Richards Bay,Windsurfing,Nico Abel,M,26,Foot bruised & minor lacerations,N,13h30,,"G. Cliff, NSB",1989.02.15-Abel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.02.15-Abel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.02.15-Abel.pdf,1989.02.15,1989.02.15,3526,, +1989.02.02,02-Feb-89,1989,Unprovoked,ITALY,Tyrrhenian Sea,"Golfo di Baratti, near Piombino (Tuscany)","Scuba diving, but swimming on surface",Luciano Costanzo,M,47,FATAL. His body not recovered,Y,10h25,6 m [20'] white shark,"A. De Maddalena; Cappelletti (1989a), Bertuccelli (1989), Giudici & Fino (1989), Biagi (1989), Albertarelli (1989); I. Fergusson, MEDSA; C. Moore, GSAF",1989.02.02-Constanzo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.02.02-Constanzo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.02.02-Constanzo.pdf,1989.02.02,1989.02.02,3525,, +1989.01.26.b,26-Jan-89,1989,Invalid,USA,California,"Latigo Point / Paradise Cove, west of Malibu, Los Angeles County",Kayaking,Roy Jeffrey Stoddard,M,24,Reported by media as shark attack but forensic evidence indicated the kayaker died prior to any shark involvement,Y,10h15,5 m [16.5'] white shark,"R. Collier, pp.106-109",1989.01.26.b-Stoddard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.26.b-Stoddard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.26.b-Stoddard.pdf,1989.01.26.b,1989.01.26.b,3524,, +1989.01.26.a,26-Jan-89,1989,Unprovoked,USA,California,"Latigo Point / Paradise Cove,west of Malibu, Los Angeles County",Kayaking,Tamara McAllister,F,24,"FATAL, thigh bitten, hands lacerated ",Y,10h15,5 m [16.5'] white shark,"R. Collier, pp.106-109",1989.01.26.a-McAllister_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.26.a-McAllister_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.26.a-McAllister_Collier.pdf,1989.01.26.a,1989.01.26.a,3523,, +1989.01.20.b,20-Jan-89,1989,Unprovoked,USA,Hawaii,"Waialua Beach, Moloka'i",Body boarding,Earl Dunnam,M,10,Foot bitten,N,,1.8 m to 2.4 m [6' to 8'] hammerhead shark,"J. Borg, p.77",1989.01.20.b-Dunnam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.20.b-Dunnam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.20.b-Dunnam.pdf,1989.01.20.b,1989.01.20.b,3522,, +1989.01.20.a,20-Jan-89,1989,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Isipingo,Lifesaving drill,Sudesh Sarjoo,M,19,Thigh bitten,N,18h00,,"S. Sarjoo, M. Levine, G. Thompson, G. Charter, M. Anderson-Read, G. Cliff & S. Dudley, GSAF",1989.01.20.a-Sarjoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.20.a-Sarjoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.20.a-Sarjoo.pdf,1989.01.20.a,1989.01.20.a,3521,, +1989.01.08,08-Jan-89,1989,Unprovoked,USA,Hawaii,"Wailua, Kaua'i",Swimming in strong current with 3 others when he disappeared,Ken Ahlstrand,M,,"Lower part of body found 6 days later, x-rays revealed teeth marks in femur & tibia",Y,,,"J. Borg, p.77; L. Taylor (1993), pp.106-107",1989.01.08-Ahlstrand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.08-Ahlstrand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.08-Ahlstrand.pdf,1989.01.08,1989.01.08,3520,, +1989.01.03,03-Jan-89,1989,Unprovoked,AUSTRALIA,New South Wales,"Half Tide Beach, Evans Head",Surfing with dolphins,Adam Maguire (McGuire),M,17,"Abdomen lacerated, surfboard holed",N,17h15,"Tiger shark, 4 m [13'] ","Courier Mail, 1/4/1989, p.1; Herald, 1-4/1989, p.1; Miami Herald, 1/5/1989; A. Sharpe, p.87",1989.01.03-McGuire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.03-McGuire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.03-McGuire.pdf,1989.01.03,1989.01.03,3519,, +1989.00.00.b,1989,1989,Unprovoked,PAPUA NEW GUINEA,New Ireland,Kavieng,"Scuba diving, hand feeding sharks",Dinah Halstead,F,,Thigh & calf bitten,N,,7' silvertip shark,"S. Waterman, GSAF",1989.00.00.b-Halstead,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.00.00.b-Halstead,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.00.00.b-Halstead,1989.00.00.b,1989.00.00.b,3518,, +1989.00.00.a,1989,1989,Unprovoked,USA,Virginia,"Coral Gardens Reef, 6 miles SSE of Chicoteague Inlet",Spearfishing using scuba & trailing a string of bleeding fish,male,M,,"No injury, shark grabbed his fish and chased him to the boat",N,,,J. Musick,1989.00.00.a-Virginia-spearfisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.00.00.a-Virginia-spearfisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.00.00-Virginia-spearfisherman.pdf,1989.00.00.a,1989.00.00.a,3517,, +1988.12.15,15-Dec-88,1988,Unprovoked,CHILE,Valpariso Province,Valpariso,Skindiving,Juan Tapia-Avalos,M,,FATAL,Y,,16' white shark,J. McCosker & A. Engana,1988.12.15-Avalos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.12.15-Avalos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.12.15-Avalos.pdf,1988.12.15,1988.12.15,3516,, +1988.11.08,08-Nov-88,1988,Sea Disaster,AUSTRALIA,Queensland,"Off North Keppel Island, off Yeppoon","The Christie V sank on 11/6/1988, survivors were adrift on a dinghy",Bruce Coucom,M,17,"FATAL When James Coucom, the lone survivor, was rescued, ""2 sharks were pounding on the dinghy""",Y,Early morning,,"H. Edwards, pp.115-116",1988.11.08-BruceCoucom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.11.08-BruceCoucom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.11.08-BruceCoucom.pdf,1988.11.08,1988.11.08,3515,, +1988.11.07,07-Nov-88,1988,Sea Disaster,AUSTRALIA,Queensland,"Off North Keppel Island, off Yeppoon","The Christie V sank on 11/6/1988, survivors were adrift on a dinghy",Cedric Coucom,M,62,FATAL,Y,Nightfall,,"H. Edwards, pp.115-116",1988.11.07-CedricCoucom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.11.07-CedricCoucom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.11.07-CedricCoucom.pdf,1988.11.07,1988.11.07,3514,, +1988.10.24,24-Oct-88,1988,Sea Disaster,PHILIPPINES,Viscayan Sea,,The MV Dona Marilyn sank in Typhoon Unsang with the loss of 389 lives,,,,"According to survivors, many people were taken by sharks",Y,,,"Straits Times, 11/5/1988",1988.10.24-DonaMarilyn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.24-DonaMarilyn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.24-DonaMarilyn.pdf,1988.10.24,1988.10.24,3513,, +1988.10.23,23-Oct-88,1988,Unprovoked,USA,Oregon,"Indian Beach, Ecola State Park, just north of Cannon Beach, Clatsop County ",Surfing (sitting on his board),Wyndham Kapan,M,21,Leg bitten & femur fractured,N,17h30,5.5 m to 6 m [18' to 20'] white shark,"R. Collier, pp.104-106",1988.10.23-Kapan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.23-Kapan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.23-Kapan_Collier.pdf,1988.10.23,1988.10.23,3512,, +1988.10.22,22-Oct-88,1988,Unprovoked,AUSTRALIA,Victoria,Phillip Island,Surfing,John Wonham,M,38,Lacerations to right leg,N,,7' shark,"Miami Herald, 10/26/1988",1988.10.22-Wonham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.22-Wonham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.22-Wonham.pdf,1988.10.22,1988.10.22,3511,, +1988.10.14,14-Oct-88,1988,Unprovoked,USA,Florida,"Boca Raton, Palm Beach County",Surfing,Aaron Shulman,M,15,Lacerations to left thigh,N,,6' shark,"Boca Raton News, 10/15/1988",1988.10.14-Shulman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.14-Shulman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.14-Shulman.pdf,1988.10.14,1988.10.14,3510,, +1988.10.11,11-Oct-88,1988,Unprovoked,USA,Florida,"Fort Pierce, St. Lucie County ",Surfing,John L. Goodson,M,30,Left leg lacerated,N,X,1.2 m to 1.5 m [4' to 5'] shark,"St. Petersburg Times 10/13/1988, p.2B",1988.10.11-Goodson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.11-Goodson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.11-Goodson.pdf,1988.10.11,1988.10.11,3509,, +1988.10.10,10-Oct-88,1988,Unprovoked,USA,Florida,"Playalinda, Brevard County",Surfing,Patrick Turowski,M,23,Hand lacerated,N,18h30,1.2 m to 1.5 m [4' to 5'] shark,"G. Taylor, Orlando Sentinel, 10/12/1988, p.D3",1988.10.10-Turowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.10-Turowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.10-Turowski.pdf,1988.10.10,1988.10.10,3508,, +1988.10.06,06-Oct-88,1988,Unprovoked,AUSTRALIA,South Australia,Moama Beach,Surfing,Murray Taylor,M,15,Lower right leg lacerated,N,Afternoon,,"Herald, 10/7/1988, p.5; Hobart Mercury, 10/8/1988, p.3",1988.10.06-MurrayTaylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.06-MurrayTaylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.06-MurrayTaylor.pdf,1988.10.06,1988.10.06,3507,, +1988.10.00,Oct-88,1988,Unprovoked,USA,Florida,"Sanibel Island, Lee County",Wading,Sally Jo Scott,F,23,Leg lacerated,N,,1.2 m [4'] shark,C.L. Call,1988.10.00-SallyJoScott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.00-SallyJoScott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.00-SallyJoScott.pdf,1988.10.00,1988.10.00,3506,, +1988.09.28,28-Sep-88,1988,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Chris Garvin,M,21,Lacerations to foot,N,Afternoon,5' shark,"News-Journal, 9/29/1988",1988.09.28-Garvin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.09.28-Garvin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.09.28-Garvin.pdf,1988.09.28,1988.09.28,3505,, +1988.09.13.b,13-Sep-88,1988,Unprovoked,USA,Florida,"Shell Island Panama City Beach, Bay County",Walking,Dennis & Ann Hadden,F,,Dennis' hand injured; Ann's right forearm bitten,N,15h45,1.8 m [6'] shark,"M. Womack, News Herald; Orlando Sentinel, 9/18/1988, p. B4",1988.09.13.b-Hadden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.09.13.b-Hadden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.09.13.b-Hadden.pdf,1988.09.13.b,1988.09.13.b,3504,, +1988.09.13.a,13-Sep-88,1988,Unprovoked,USA,Florida,"Shell Island Panama City Beach, Bay County",Snorkeling,John P. Martin ,M,38,"FATAL, thigh & hand lacerated",Y,15h00,3 m [10'] bull shark,"M. Womack, News Herald",1988.09.13.a-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.09.13.a-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.09.13.a-Martin.pdf,1988.09.13.a,1988.09.13.a,3503,, +1988.08.22.b,22-Aug-88,1988,Provoked,USA,Louisiana,New Orleans,Diving in Sharkey's Reef restaurant�s aquarium,Wiley Beevers,M,,Arm bitten by captive shark PROVOKED INCIDENT,N,,"Tiger shark, 1.8 m [6']","New Orleans Times-Picayune, 8/23/1988; Orlando Sentinel. Orlando, Fla.: Aug 24, 1988. p.. A.8; Miami Herald, 8/24/1988",1988.08.22.b-Beevers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.22.b-Beevers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.22.b-Beevers.pdf,1988.08.22.b,1988.08.22.b,3502,, +1988.08.22.a,22-Aug-88,1988,Unprovoked,ITALY,Manfredonia ,Ippocampo,,male,M,16,Survived,N,,,"C. Moore, GSAF",1988.08.22.a-Ippocampo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.22.a-Ippocampo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.22.a-Ippocampo.pdf,1988.08.22.a,1988.08.22.a,3501,, +1988.08.19,19-Aug-88,1988,Unprovoked,JAPAN,Tokyo Prefecture,Ogasawara Islands,,male,M,,Survived,N,,,K. Nakaya,1988.08.19-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.19-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.19-Japan.pdf,1988.08.19,1988.08.19,3500,, +1988.08.11,11-Aug-88,1988,Unprovoked,USA,California,"Klamath River, Del Norte County",Surfing,Carl Lafazio,M,27,Thigh bitten,N,09h30,2.4 m to 3 m [8' to 10'] white shark,"R. Collier, pp.102-104",1988.08.11-LaFazio_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.11-LaFazio_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.11-LaFazio_Collier.pdf,1988.08.11,1988.08.11,3499,, +1988.07.23,23-Jul-88,1988,Unprovoked,BAHAMAS,,,Free diving & spearfishing ,Kenny Isham,M,,Hand bitten,N,,2 m to 2.5 m shark,"E. Pace, FSAF",1988.07.23-Isham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.23-Isham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.23-Isham.pdf,1988.07.23,1988.07.23,3498,, +1988.07.19,19-Jul-88,1988,Unprovoked,BAHAMAS,,,Spearfishing on scuba,Larry Press,M,28,Cheek bitten,N,,1.5 m [5'] Caribbean reef shark,"E. Pace, FSAF",1988.07.19-Press.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.19-Press.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.19-Press.pdf,1988.07.19,1988.07.19,3497,, +1988.07.17,17-Jul-88,1988,Unprovoked,BAHAMAS,,,Diving,Doug Perrine,M,35,Right palm lacerated,N,,1.5 m [5'] Caribbean reef shark,"E. Pace, FSAF",1988.07.17-Perrine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.17-Perrine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.17-Perrine.pdf,1988.07.17,1988.07.17,3496,, +1988.07.11,11-Jul-88,1988,Unprovoked,USA,Florida,"Jensen Beach, Martin County",Swimming,female,F,15,Punctures & deep scratches to foot & buttock,N,10h30,,"Miami Herald, 7/12/1988, p.1B",1988.07.11-female_Jensen Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.11-female_Jensen Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.11-female_Jensen Beach.pdf,1988.07.11,1988.07.11,3495,, +1988.07.04.b,04-Jul-88,1988,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Boogie boarding,Ray Bourgeois,M,37,Punctures to lower left leg & foot,N,Afternoon,,"News-Journal, 7/5/1988",1988.07.04.b-Bourgeois.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.04.b-Bourgeois.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.04.b-Bourgeois.pdf,1988.07.04.b,1988.07.04.b,3494,, +1988.07.04.a,04-Jul-88,1988,Unprovoked,BAHAMAS,,,Snorkeling,Lowell Nickerson,M,,Leg lacerated,N,,1.5 m [5'] shark,"E. Pace, GSAF",1988.07.04.a-Nickerson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.04.a-Nickerson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.04.a-Nickerson.pdf,1988.07.04.a,1988.07.04.a,3493,, +1988.07.00,Jul-88,1988,Unprovoked,BAHAMAS,,,Spearfishing,Peter Albury,M,,Lacerations to arm,N,,,"E. Pace, GSAF",1988.07.00-Albury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.00-Albury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.00-Albury.pdf,1988.07.00,1988.07.00,3492,, +1988.06.19,16-Jun-88,1988,Unprovoked,SOUTH AFRICA,Western Cape Province,Sculphoek,Spearfishing,Willie van Rensberg,M,36,Left arm lacerated,N,09h45,White shark,"W.v.Rensberg, M. Levine, GSAF",1988.06.19-VanRensburg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.19-VanRensburg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.19-VanRensburg.pdf,1988.06.19,1988.06.19,3491,, +1988.06.16,16-Jun-88,1988,Unprovoked,USA,North Carolina,"Ocracoke, Hyde County",Scuba diving,male,M,42,Survived,N,,Sandtiger shark,"C. Creswell, GSAF",1988.06.16-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.16-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.16-diver.pdf,1988.06.16,1988.06.16,3490,, +1988.06.09,09-Jun-88,1988,Unprovoked,USA,South Carolina,"Sea Pines Beach Club, Hilton Head, Beaufort County",Sittting in water with his child,Mark Dotter,M,37,Left leg bitten,N,16h00,Sand shark?,"Charlotte Observer, 6/11/1988, p.1B",1988.06.09-Dotter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.09-Dotter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.09-Dotter.pdf,1988.06.09,1988.06.09,3489,, +1988.06.05,05-Jun-88,1988,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Swimming,Jason Jones,M,12,Four lacerations to his ankle,N,12h00,,"Orlando Sentinel, 6/7/1988, p.D2",1988.06.05-JasonJones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.05-JasonJones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.05-JasonJones.pdf,1988.06.05,1988.06.05,3488,, +1988.06.01,01-Jun-88,1988,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Surfing,Etienne DeCora,M,25,Cuts to right foot and ankle,N,08h57,1.8 m to 2.4 m [6' to 8'] shark,"Orlando Sentinel, 6/2/1988, p.B2; P. LaMee, Orlando Sentinel, 6/3/1992, p.D2 ",1988.06.01-DeCora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.01-DeCora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.01-DeCora.pdf,1988.06.01,1988.06.01,3487,, +1988.05.27,27-May-88,1988,Unprovoked,SOUTH KOREA,,,Shell diving,Ko Bong-ae (female),F,38,FATAL,Y,,,Y. Choi & K. Nakaya,1988.05.27-Ko Bong-se.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.05.27-Ko Bong-se.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.05.27-Ko Bong-se.pdf,1988.05.27,1988.05.27,3486,, +1988.05.10,10-May-88,1988,Unprovoked,USA,Florida,"Paradise Beach Park, Brevard County",Surfing,Philip Barone,M,31,Left foot bitten,N,18h30,,"M. Vosburgh, Orlando Sentinel, 5/12/1988, p.D.6",1988.05.10-Barone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.05.10-Barone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.05.10-Barone.pdf,1988.05.10,1988.05.10,3485,, +1988.05.04,04-May-88,1988,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing / treading water,Lee Rhoades,M,29,Left leg & right foot bitten,N,11h45,,"Orlando Sentinel, 5/6/1988, D.2",1988.05.04-Rhoades.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.05.04-Rhoades.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.05.04-Rhoades.pdf,1988.05.04,1988.05.04,3484,, +1988.04.28,28-Apr-88,1988,Unprovoked,REUNION,Saint-Louis,Embouchure de l'�tang du Gol,p�cheur de bichiques,Jean-Felix Taochyn,M,,FATAL,Y,17h30,,G. Van Grevelynghe,1988.04.28-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.28-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.28-Reunion.pdf,1988.04.28,1988.04.28,3483,, +1988.04.24,24-Apr-88,1988,Unprovoked,USA,California,"North of Morro Rock, San Luis Obispo County",Surfing,Mark Rudy,M,,No Injury,N,,White shark,"J. McCosker & R.N. Lea; R. Collier, p.102",1988.04.24-Rudy_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.24-Rudy_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.24-Rudy_Collier.pdf,1988.04.24,1988.04.24,3482,, +1988.04.15a,15-Apr-88,1988,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Swimming,Robert Nicholson,M,24,Lacerations to left foot,N,18h45,,"E. Pace, FSAF",1988.04.15.a-Nicholson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.15.a-Nicholson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.15.a-Nicholson.pdf,1988.04.15a,1988.04.15a,3481,, +1988.04.15.b,15-Apr-88,1988,Invalid,USA,Hawaii,"Waihe'e, Maui",Onboard 21' powerboat that capsized in rough seas,Avery Goo,M,,"Human remains, believed to be those of Mr. Goo, washed ashore along the Waihee shore several days later",Y,,,"J. Borg, p.76; L. Taylor (1993), pp.106-107",1988.04.15.b-AveryGoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.15.b-AveryGoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.15.b-AveryGoo.pdf,1988.04.15.b,1988.04.15.b,3480,, +1988.04.14.b,14-Apr-88,1988,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Surfing,Kenny Burns,M,14,Right hand bitten,N,,,"St. Petersburg Times, 2/6/1999",1988.04.14.b-KennyBurns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.14.b-KennyBurns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.14.b-KennyBurns.pdf,1988.04.14.b,1988.04.14.b,3479,, +1988.04.14.a,14-Apr-88,1988,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Windsurfing,Joseph Costa,M,,"6"" laceration to left foot",N,,,"E. Pace, FSAF",1988.04.14.a-Costa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.14.a-Costa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.14.a-Costa.pdf,1988.04.14.a,1988.04.14.a,3478,, +1988.04.10,10-Apr-88,1988,Invalid,SOUTH AFRICA,KwaZulu-Natal,La Lucia,,female,F,,"Arm washed ashore. scratch marks on the humerus indicated it had been bitten by a shark, but cause of death could not be determined.",Y,,,"G. Charter, NSB; M. Levine, GSAF",1988.04.10-arm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.10-arm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.10-arm.pdf,1988.04.10,1988.04.10,3477,, +1988.03.31,31-Mar-88,1988,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Standing ,Peggy Schaefer,F,30,Foot bitten,N,,,"Milwaukee Journal, 4/12/1988",1988.03.31-Schaefer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.31-Schaefer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.31-Schaefer.pdf,1988.03.31,1988.03.31,3476,, +1988.03.25,25-Mar-88,1988,Unprovoked,USA,Hawaii,"Running Waters Beach, Ninini Point, Kaua'i",Body surfing,Aaron Kawado,M,,Ankle bitten,N,,,"J. Borg, p.76; L. Taylor (1993), pp.106-107",1988.03.25-Kawado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.25-Kawado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.25-Kawado.pdf,1988.03.25,1988.03.25,3475,, +1988.03.16,16-Mar-88,1988,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Isipingo,Surfing,Sastri Naidoo,M,17,"Lower left leg bitten, hand lacerated",N,16h45,1.5 m to 2 m [5' to 6.75'] shark,"S. Naidoo, Dr. M. Raj, Dr. Motala, M. Levine, GSAF; G. Charter, B. Davis, NSB",1988.03.16-Naidoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.16-Naidoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.16-Naidoo.pdf,1988.03.16,1988.03.16,3474,, +1988.03.14,14-Mar-88,1988,Unprovoked,REUNION,Saint-Pierre,Pic du Diable,Surfing,Fr�d�ric Mousseau,M,,Laceration to hand,N,18h30 (Sunset),,G. Van Grevelynghe,1988.03.14-Mousseau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.14-Mousseau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.14-Mousseau.pdf,1988.03.14,1988.03.14,3473,, +1988.02.15, 15-Feb-1988,1988,Boat,SOUTH AFRICA,KwaZulu-Natal,"Brighton Beach, Durban",,"Semi-rigid rescue boat: occupants, Edward Moolman & Chris Bezuidenhiut ",,,"No injury to occupants, pontoon puctured",N,,"Raggedtooth shark, 2 m ","Natal Mercury, 2/16/1988",1988.02.15-BrightonBeach-lifesavers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.15-BrightonBeach-lifesavers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.15-BrightonBeach-lifesavers.pdf,1988.02.15,1988.02.15,3472,, +1988.02.14,14-Feb-88,1988,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Surfing,Michael Schaeffer,M,20,Ankle bitten,N,17h00,"1 m ""grey-colored"" shark","M. Schaeffer, M. Levine, GSAF",1988.02.14-Schaeffer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.14-Schaeffer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.14-Schaeffer.pdf,1988.02.14,1988.02.14,3471,, +1988.02.13,13-Feb-88,1988,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Mtunzini,Lying atop surfboard,Belinda Van Schalkwyk,F,15,"Leg bitten, surgically amputated",N,07h40,Zambezi shark (tooth fragments recovered),"B. v.Schalkwyk, P. Thevenau, R. Rathgeber, M.D., M. Levine, GSAF; R. Dunning, G. Charter, B. Davis, R.B. Wilson, NSB ",1988.02.13-Belinda_vanSchalkwyck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.13-Belinda_vanSchalkwyck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.13-Belinda_vanSchalkwyck.pdf,1988.02.13,1988.02.13,3470,, +1988.02.12,12-Feb-88,1988,Boat,AUSTRALIA,Western Australia,18 km west of Bunbury,Drift fishing,"5.5 m fibreglass boat, occupants: Steven Piggott and Kelvin & Brendan Martin",,N/A,"No injury to occupants; shark leapt into boat, almost capsizing it and destroyed the inside of the boat",N,,"Mako shark, 3 m [10'], 200-kg [441-lb] ","Sunday Mail (QLD), 2/14/1988, p.2; A. Sharpe, p.135",1988.02.12-Piggott boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.12-Piggott boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.12-Piggott boat.pdf,1988.02.12,1988.02.12,3469,, +1988.02.02,02-Feb-88,1988,Unprovoked,Fiji,Vanua Levu,,Diving,Qalo Moceyawa,M,22,Lacerations to left arm & waist,N,,"Tiger shark, 3 m ","Sun, 2/5/1988, p.15",1988.02.02-Fiji-Moceyawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.02-Fiji-Moceyawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.02-Fiji-Moceyawa.pdf,1988.02.02,1988.02.02,3468,, +1988.01.27,27-Jan-88,1988,Invalid,SOUTH AFRICA,KwaZulu-Natal,Durban,Surfing,Charles Everitt,M,22,Minor injury to leg,N,06h30,Shark involvement not confirmed,"Natal Mercury, 1/30/1988",1988.01.27-Everitt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.27-Everitt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.27-Everitt.pdf,1988.01.27,1988.01.27,3467,, +1988.01.21,21-Jan-88,1988,Invalid,AUSTRALIA,Torres Strait,,Fell overboard from the Taiwanese fishing trawler Lien Cheng Feu ,Lo-Ying-Chun,M,,His remains were recovered from a shark caught by the trawler Ho Tai No.12 in March 1988,Y,,,"X. Maniguet, p.206",1988.01.21-Chun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.21-Chun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.21-Chun.pdf,1988.01.21,1988.01.21,3466,, +1988.01.14,14-Jan-88,1988,Provoked,USA,Louisiana,,Fishing,Chip,M,,Hand bitten by captured shark PROVOKED INCIDENT,N,,Mako shark,"C. Johansson, GSAF",1988.01.14-Chip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.14-Chip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.14-Chip.pdf,1988.01.14,1988.01.14,3465,, +1988.01.06,06-Jan-88,1988,Provoked,SOUTH AFRICA,Western Cape Province,Struisbaai,Attempting to lasso shark's tail,J.A. McKay,M,33,Foot lacerated by hooked shark PROVOKED INCIDENT,N,11h15,1.5 m copper shark,"M. Levine, GSAF",1988.01.06-McKay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.06-McKay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.06-McKay.pdf,1988.01.06,1988.01.06,3464,, +1988.01.05.R,Reported 05-Jan-1988,1988,Provoked,SOUTH AFRICA,Western Cape Province,Great Brak River,"Returning to shore, collided with shark","5 m inflatable boat, occupants: Kobus Potgieter & 5 friends",,,"No injury to occupants; shark ripped off fibreglass hull, swamping boat PROVOKED INCIDENT",N,,6 m shark,"Natal Mercury, 1/5/1988",1988.01.05-Potgeiter-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.05-Potgeiter-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.05-Potgeiter-boat.pdf,1988.01.05.R,1988.01.05.R,3463,, +1988.00.00.c,1988,1988,Unprovoked,AUSTRALIA,New South Wales,Sydney,Surfing,Ryan Kwanten,M,12,Hand bitten,N,,Wobbegong shark,"Star Pulse, 7/8/2010",1988.00.00.c-Kwanten.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.00.00.c-Kwanten.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.00.00.c-Kwanten.pdf,1988.00.00.c,1988.00.00.c,3462,, +1987.12.20,20-Dec-87,1987,Sea Disaster,PHILIPPINES,Mindoro,Off Manila,Ferry boat Dona Paz with 4431 passengers exploded & caught fire when she collided with an oil tanker ,,,,25 people survived; 300 shark-mutilated bodies were recovered,Y,,,BBC ,1987.12.20-DonaPaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.12.20-DonaPaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.12.20-DonaPaz.pdf,1987.12.20,1987.12.20,3461,, +1987.12.17,17-Dec-87,1987,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Surfing,Timothy Knipper,M,16,Left calf bitten,N,13h00,1.8 m [6'] blacktip shark,"D. Filkins, Miami Herald, 12/18/1987, page 1PB; St. Petersburg Times, 12/18/1987",1987.12.17-Knipper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.12.17-Knipper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.12.17-Knipper.pdf,1987.12.17,1987.12.17,3460,, +1987.12.13,13-Dec-87,1987,Invalid,AUSTRALIA,New South Wales,Shoalhaven,,female,F,16 to 18,Remains recovered from shark,Y,,"Tiger shark, 4 m, 420-kg, caught 13-Dec-1987","Sunday Mail (QLD), 1/31/1988, p.2",1987.12.13-Shoalhaven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.12.13-Shoalhaven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.12.13-Shoalhaven.pdf,1987.12.13,1987.12.13,3459,, +1987.11.21,21-Nov-87,1987,Unprovoked,USA,Florida,"North of Jupiter Inlet, Palm Beach County",Surfing,Brian Tyska ,M,15,Leg lacerated,N,,,"St. Petersburg Times, 11/25/1987, p.2B",1987.11.21-Tyska.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.11.21-Tyska.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.11.21-Tyska.pdf,1987.11.21,1987.11.21,3458,, +1987.11.00,Nov-87,1987,Invalid,SOUTH AFRICA,KwaZulu-Natal,St. Lucia,, male,M,,Possible drowning / scavenging,N,,,NSB,1987.11.00-StLucia-scavengin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.11.00-StLucia-scavengin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.11.00-StLucia-scavengin.pdf,1987.11.00,1987.11.00,3457,, +1987.10.26,26-Oct-87,1987,Unprovoked,USA,California,"Davenport Light, San Mateo County",Surfing,Conrad Brown,M,20,Buttock & leg bitten,N,17h00,2 m [6.75'] shark,"R. Collier, p.101",1987.10.26-Brown_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.26-Brown_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.26-Brown_Collier.pdf,1987.10.26,1987.10.26,3456,, +1987.10.25,25-Oct-87,1987,Invalid,SOUTH AFRICA,KwaZulu-Natal,Richards Bay,Boogie boarding,Darrel Rowe,M,14,Abrasion to forearm,N,16h00,,D. Rowe,1987.10.25-Rowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.25-Rowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.25-Rowe.pdf,1987.10.25,1987.10.25,3455,, +1987.10.11,11-Oct-87,1987,Unprovoked,SOUTH AFRICA,Western Cape Province,"Seal Island, False Bay",Spearfishing,Dawid Smit,M,21,Left thigh & calf lacerated,N,12h15,White shark,"G. Smit, P. Landsberg, M.D., M. Levine, GSAF",1987.10.11-DawidSmit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.11-DawidSmit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.11-DawidSmit.pdf,1987.10.11,1987.10.11,3454,, +1987.10.06,06-Oct-87,1987,Sea Disaster,DOMINICAN REPUBLIC,Between DR and Puerto Rico,Mona Passage,"Vessel caught fire & capsized, survivors in the water",,,,"Of 160 people on board, >100 missing",Y,,40 to 50 sharks attacked survivors in the water,"Orlando Sentinel, 1/7/1987, p. A4; Time Magazinem 19.19.1987",1987.10.06-refugee-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.06-refugee-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.06-refugee-boat.pdf,1987.10.06,1987.10.06,3453,, +1987.09.18,18-Sep-87,1987,Unprovoked,AUSTRALIA,South Australia,"Merino Rocks, Adelaide",Scuba Diving for scallops,Terrance Gibson,M,47,FATAL,Y,,White shark,"A. Sharpe, p.127; J. West, ASAF",1987.09.18-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.09.18-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.09.18-Gibson.pdf,1987.09.18,1987.09.18,3452,, +1987.09.13,13-Sep-87,1987,Unprovoked,SOUTH AFRICA,Western Cape Province,Still Bay,Surfing,Peter McCallum,M,24,Torso lacerated,N,11h00,3.5 m [11.5'] white shark,"P. McCallum, M. Levine,GSAF; M.A. Reade, NSB",1987.09.13-McCallum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.09.13-McCallum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.09.13-McCallum.pdf,1987.09.13,1987.09.13,3451,, +1987.08.20,20-Aug-87,1987,Unprovoked,USA,Florida,"Satellite Beach, Brevard County",Wading,Gary Kritlow,M,12,Lower left leg lacerated,N,11h30,1.2 m to 1.5 m [4' to 5'] shark,"D. Scruggs, Orlando Sentinel, 8/21 & 22/1987",1987.08.20-Kritlow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.08.20-Kritlow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.08.20-Kritlow.pdf,1987.08.20,1987.08.20,3450,, +1987.08.15,15-Aug-87,1987,Unprovoked,USA,California,"Tunitas Beach, San Mateo County",Surfing (sitting on his board),Craig Rogers,M,40,Fingers & surfboard injured,N,07h30,5.7 m white shark,"R. Collier, pp.99-100 ",1987.08.15-Rogers_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.08.15-Rogers_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.08.15-Rogers_Collier.pdf,1987.08.15,1987.08.15,3449,, +1987.07.21,21-Jul-87,1987,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Egor Emery,M,27,Right foot & ankle lacerated,N,09h15,3' to 4' shark,"Orlando Sentinel, 7/22/1987, p.D1; Miami Herald, 7/23/1987",1987.07.21-Emery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.21-Emery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.21-Emery.pdf,1987.07.21,1987.07.21,3448,, +1987.07.12.b,12-Jul-87,1987,Unprovoked,USA,Texas,"Mustang Island, near Port Aransas",Body surfing,Carol Viau,F,32,Left foot bitten,N,18h30,4' shark,"Dallas Morning News, 7//14/1987",1987.07.12.b-CarolViau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.12.b-CarolViau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.12.b-CarolViau.pdf,1987.07.12.b,1987.07.12.b,3447,, +1987.07.12.a,12-Jul-87,1987,Unprovoked,USA,Texas,"Mustang Island, near Port Aransas",Wading,Brenda King,F,16,Puncture wounds to right foot,N,14h30,4' shark,"Dallas Morning News, 7//14/1987",1987.07.12.a-BrendaKing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.12.a-BrendaKing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.12.a-BrendaKing.pdf,1987.07.12.a,1987.07.12.a,3446,, +1987.07.11,11-Jul-87,1987,Boat,USA,South Carolina,Winyah Bay,Dropping anchor,"17' fishing boat. Occupants, Bubba DeMaurice, his wife & daughter",,,No injury to occupants. Shark grabbed anchor ,N,,12' shark,Great White Sharks of the Carolinas and Georgia by J. Hairr,1987.07.11-DeMaurice-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.11-DeMaurice-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.11-DeMaurice-boat.pdf,1987.07.11,1987.07.11,3445,, +1987.07.09,09-Jul-87,1987,Unprovoked,BAHAMAS,Exuma Islands,Sampson Cay,Snorkeling,male from pleasure craft Press On Regardless,M,35,Right leg bitten,N,13h30,,"Miami Herald, 7/10/1987",1987.07.09-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.09-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.09-Bahamas.pdf,1987.07.09,1987.07.09,3444,, +1987.07.00,Jul-87,1987,Unprovoked,BAHAMAS,,,Spearfishing,Ken Austin,M,,Puncture marks to torso,N,,2.5 to 3 m shark,"E.Pace, FSAF",1987.07.00-Austin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.00-Austin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.00-Austin.pdf,1987.07.00,1987.07.00,3443,, +1987.06.13,13-Jun-87,1987,Provoked,USA,Florida,"Nest Key, Monroe County",Fishing,Josh Schrutt ,M,,Left hand bitten by shark he was dragging ashore by its head PROVOKED INCIDENT,N,Afternoon,1.5 m [5'] blacktip shark,"Miami Herald, 6/14/1987",1987.06.13-Schrutt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.06.13-Schrutt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.06.13-Schrutt.pdf,1987.06.13,1987.06.13,3442,, +1987.05.25,25-May-87,1987,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",,Josia McSpadden,M,12,"6"" cut to thigh",N,,1.5 m to 1.8 m [5' to 6'] shark,"Charlotte Observer, 5/28/1987 ",1987.05.25-JosiaMcSpadden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.05.25-JosiaMcSpadden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.05.25-JosiaMcSpadden.pdf,1987.05.25,1987.05.25,3441,, +1987.05.08,08-May-87,1987,Unprovoked,USA,Florida,"St Augustine, St. Johns County",Surfing,Robert Gault,M,,Hand lacerated ,N,,,"Orlando Sentinel, 5/10/1987",1987.05.08-Gault.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.05.08-Gault.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.05.08-Gault.pdf,1987.05.08,1987.05.08,3440,, +1987.05.06,06-May-87,1987,Provoked,AUSTRALIA,New South Wales,,Fishing,Keith Appleby,M,34,3 fingers severed by metal trace as he tried to haul in a hooked shark. PROVOKED ACCIDENT,N,,,"Courier Mail, 5/7/1987",1987.05.06-Appleby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.05.06-Appleby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.05.06-Appleby.pdf,1987.05.06,1987.05.06,3439,, +1987.04.19,19-Apr-87,1987,Invalid,SOUTH AFRICA,KwaZulu-Natal,Port Shepstone,Fishing,Mr. Perumal,M,,"Slipped off rocks & was treading water when he disappeared, body mutilated by shark/s",Y,,,"G. Charter, R. B. Wilson, G. Cliff, NSB",1987.04.19-Perumal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.19-Perumal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.19-Perumal.pdf,1987.04.19,1987.04.19,3438,, +1987.04.18,18-Apr-87,1987,Unprovoked,USA,Texas,"Mustang Island, near Port Aransas",Swimming,April Dawn Vogelino,F,16,Right arm severed above elbow,N,18h00,,"Orlando,Sentinel, 4/19/ 1988.�p.�A12; Miami Herald, 4/19/1988",1987.04.18-Vogelino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.18-Vogelino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.18-Vogelino.pdf,1987.04.18,1987.04.18,3437,, +1987.04.15,15-Apr-87,1987,Unprovoked,USA,Hawaii,"Kailua-Kona, Hawai'i",Swimming from shore to anchored sailboat,Daniel Kennedy,M,,"Presumed FATAL Disappeared, his shark-bitten swim trunks were found on the seafloor",Y,,,"J. Borg, p.76; L. Taylor (1993), pp.106-107",1987.04.15-Kennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.15-Kennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.15-Kennedy.pdf,1987.04.15,1987.04.15,3436,, +1987.04.01,01-Apr-87,1987,Unprovoked,VANUATU,Malampa Province,Vao Island,Swimming,male,M,8,FATAL,Y,12h00,4.3 m shark,S. Combs,1987.04.01-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.01-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.01-Vanuatu.pdf,1987.04.01,1987.04.01,3435,, +1987.03.30.b,30-Mar-87,1987,Unprovoked,AUSTRALIA,Western Australia,Fourth Beach / Twilgth Beach,Surfing,Grantley Butcher,M,18,Calf lacerated,N,,"Bronze whaler shark, 2 m to 3 m ","Courier-Mail, 4/2/1987, p.1; T. Peake, GSAF",1987.03.30.b-Butcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.03.30.b-Butcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.03.30.b-Butcher.pdf,1987.03.30.b,1987.03.30.b,3434,, +1987.03.30.a,30-Mar-87,1987,Provoked,SOUTH AFRICA,Western Cape Province,Muizenberg,,"3 m skiboat Talisman, occupants Dennis Langenhoven, Philip Schoeman, Ross Lindsay, Steven Riley & Peter Schuets",,,"No injury to occupants, boat holed by hooked shark PROVOKED INCIDENT",N,,3 m white shark,"T. Wallett; M. Levine, GSAF",1987.03.30.a-Talisman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.03.30.a-Talisman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.03.30.a-Talisman.pdf,1987.03.30.a,1987.03.30.a,3433,, +1987.02.28,28-Feb-87,1987,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Windsurfing,Gary Landwirth,M,,"Lacerations to toe, heel & ankle of right foot",N,,Spinner shark,"Sun Sentinel.�Fort Lauderdale,�3/2/1987,�p.�4B",1987.02.28-Landwirth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.02.28-Landwirth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.02.28-Landwirth.pdf,1987.02.28,1987.02.28,3432,, +1987.02.19,19-Feb-87,1987,Sea Disaster,SOLOMON ISLANDS,Between Honiara & Isabel Island,,The inter-island ferry Vula sank in heavy weather,2 people,,,FATAL,Y,,,"Courier Mail, 2/26/1987, p.2",1987.02.19-SolomonIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.02.19-SolomonIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.02.19-SolomonIslands.pdf,1987.02.19,1987.02.19,3431,, +1987.01.28,28-Jan-87,1987,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Eerste River,Spearfishing,Tommy Botha,M,30,Puncture wounds to right hand,N,12h00,>2.5 m [8.25'] white shark,"T. Botha, M. Levine, GSAF",1987.01.28-TommyBotha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.01.28-TommyBotha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.01.28-TommyBotha.pdf,1987.01.28,1987.01.28,3430,, +1987.01.06,06-Jan-87,1987,Unprovoked,AUSTRALIA,Queensland,Lizard Island,Swimming,Alessandro Russo,M,37,Right leg lacerated,N,07h00,,"Sydney Morning Herald; Courier-Mail 1/8/1987, p.2",1987.01.06-Russo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.01.06-Russo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.01.06-Russo.pdf,1987.01.06,1987.01.06,3429,, +1987.00.00.b,1987,1987,Invalid,MONTENEGRO,Adriatic Sea,"Mogren Beach, Budva",Jumped into the water from a cliff,a student from Belgrade,M,,FATAL,Y,,Doubtful / Unconfirmed attack / Unable to verify in local records,D. Ljusic,1987.00.00.b-Budva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.00.00.b-Budva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.00.00.b-Budva.pdf,1987.00.00.b,1987.00.00.b,3428,, +1987.00.00.a,1987,1987,Boat,ITALY,Tyrrhenian Sea,"Marciana Marina, Isola d'Elba",Boat,Aniello Mattera and Giorgio Allori,M,,No injury,N,,White shark,"A. De Maddalena; Perfetti (1989), M. Zuffa (pers. Comm.)",1987.00.00.a-boat-Mattera-Allori.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.00.00.a-boat-Mattera-Allori.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.00.00.a-boat-Mattera-Allori.pdf,1987.00.00.a,1987.00.00.a,3427,, +1986.12.31,31-Dec-86,1986,Unprovoked,SOUTH AFRICA,Western Cape Province,Agulhas Banks,Spearfishing,Pierre deWet,M,,2 punctures in lower leg,N,14h00,"Raggedtooth shark, 2.5 m [8.25'] ","P. deWet, E. Lombard, M. Levine, GSAF",1986.12.31-deWet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.31-deWet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.31-deWet.pdf,1986.12.31,1986.12.31,3426,, +1986.12.22,22-Dec-86,1986,Unprovoked,SOUTH AFRICA,Western Cape Province,SAOU Strand,Body boarding,Richardt Anton Olls,M,21,"FATAL, legs bitten ",Y,17h00,3 m [10'] white shark,"G. Geldenhuys, W. Roos, Dr. Smallberger, Dr. C. Groble, Dr. J.H. B. de Lange, M. Levine, GSAF; R. Wilson, NSB ",1986.12.22-Olls.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.22-Olls.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.22-Olls.pdf,1986.12.22,1986.12.22,3425,, +1986.12.11,11-Dec-86,1986,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Bob Earnhardt,M,40,Forearm bitten,N,14h00,1.8 m to 2.1 m [6' to 7'] spinner or blacktip shark,"Orlando Sentinel, 12/12/1986, p.A1",1986.12.11-Earnhardt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.11-Earnhardt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.11-Earnhardt.pdf,1986.12.11,1986.12.11,3424,, +1986.12.06.b,06-Dec-86,1986,Unprovoked,BAHAMAS,Florida Straits,Off Cay Sal Banks,Adrift after ditching plane in the sea,Wyatt Walker,M,37,"No injury, bumped by sharks",N,,,"Orlando Sentinel, 12/9/1986, p.D1",1986.12.06.b-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.06.b-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.06.b-Walker.pdf,1986.12.06.b,1986.12.06.b,3423,, +1986.12.06.a,06-Dec-86,1986,Unprovoked,USA,California,"Monastery Beach, Carmel River State Park, Monterey Peninsula, Monterey California",Free diving & spearfishing (submerged),Frank Gallo,M,27,"Punctured lung, lacerations to shoulder, face, jaw, neck & forearm",N,10h00,5 m to 6 m [16.5' to 20'] white shark,"R. Collier, pp.98-99; Atlanta Journal-Constitution, 12/7/1986",1986.12.06.a-Gallo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.06.a-Gallo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.06.a-Gallo.pdf,1986.12.06.a,1986.12.06.a,3422,, +1986.12.04,04-Dec-86,1986,Invalid,SOUTH AFRICA,Western Cape Province,Platbank,Spearfishing,Rory O�Connor,M,22,"No injury, no attack, shark made threat displays",N,,1.8 m [6'] copper shark,"R. O'Connor, M. Levine, GSAF",1986.12.04-O'Connor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.04-O'Connor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.04-O'Connor.pdf,1986.12.04,1986.12.04,3421,, +1986.12.00,Dec-86,1986,Unprovoked,NEW CALEDONIA,,I'le Ouen,Spearfishing,Maurice Lilloux,,,Right leg bitten,N,,Tiger shark,W. Leander,1986.12.00.b-Maurice_Lilloux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.00.b-Maurice_Lilloux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.00.b-Maurice_Lilloux.pdf,1986.12.00,1986.12.00,3420,, +1986.11.30,30-Nov-86,1986,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Surfing,Brad Bowen,M,17,5' gash in leg,N,10h30,,"Orlando Sentinel, 11/30/1986",1986.11.30-Bowen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.11.30-Bowen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.11.30-Bowen.pdf,1986.11.30,1986.11.30,3419,, +1986.11.19,19-Nov-86,1986,Unprovoked,USA,Florida,"Indiatlantic, Brevard County",Surfing,Keith Helm,M,26,Laceration to dorsum of left foot,N,10h40,,"E. Pace, FSAF",1986.11.19-Helm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.11.19-Helm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.11.19-Helm.pdf,1986.11.19,1986.11.19,3418,, +1986.11.04,04-Nov-86,1986,Unprovoked,USA,Florida,"Tiger Shores Beach, Martin County",Surfing,Daniel Lund,M,23,Ankle bitten,N,,,"Miami Herald, 11/5/1986",1986.11.04-Lund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.11.04-Lund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.11.04-Lund.pdf,1986.11.04,1986.11.04,3417,, +1986.10.17,17-Oct-86,1986,Provoked,SOUTH AFRICA,KwaZulu-Natal,Umhlanga,NSB Meshing,Kliki Ndlazi,M,,Minor lacerations & puncture wounds to right leg from netted shark taken onboard skiboat PROVOKED INCIDENT,N,,"Raggedtooth shark, 1.96 m, 140-kg ","K. Ndlazi, R. Gardiner, NSB; M. Levine, GSAF",1986.10.17-Ndlazi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.17-Ndlazi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.17-Ndlazi.pdf,1986.10.17,1986.10.17,3416,, +1986.10.03,03-Oct-86,1986,Unprovoked,USA,Florida,"Sanibel Island, Lee County",Swimming,Luz Helena Florez,F,6,Hip & thigh bitten,N,18h00,"Lemon shark, 1.8 m to 2.4 m [6' to 8'], tooth fragment recovered","E. Pace; C. Call; Orlando Sentinel, 10/6/1986, 10/11/1986 & 4/20, 1988",1986.10.03-Florez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.03-Florez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.03-Florez.pdf,1986.10.03,1986.10.03,3415,, +1986.10.05,05-Oct-86,1986,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,St. Michaels,Racing ski,James Speirs,M,32,"No injury, ski bitten",N,11h00,1.6 m shark,"J. Spiers, M. Levine, GSAF; R. Dugmore, G. Cliff, NSB",1986.10.05-Spiers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.05-Spiers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.05-Spiers.pdf,1986.10.05,1986.10.05,3414,, +1986.10.01,01-Oct-86,1986,Unprovoked,AUSTRALIA,Western Australia,"Direction Island, Cocos Islands",,Crawford,,,No details,UNKNOWN,,,"T. Peake, GSAF",1986.10.01-NV-Crawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.01-NV-Crawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.01-NV-Crawford.pdf,1986.10.01,1986.10.01,3413,, +1986.10.00,Oct-86,1986,Unprovoked,USA,Florida,"Floridana Beach, Brevard County",Surfing,Ron Dubois,M,28,Laceration to right arm,N,,Bull shark,"R.D. Weeks, GSAF; E. Pace, FSAF ",1986.10.00-Dubois.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.00-Dubois.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.00-Dubois.pdf,1986.10.00,1986.10.00,3412,, +1986.09.22.R,Reported 22-Sep-1986 ,1986,Invalid,USA,Florida,"Pinellas Point, Tampa Bay",,,,,Human hand recovered from shark's stomach,N,,1.5 m [5'] blacktip shark,"Orlando Sentinel, 9/22/1986",1986.09.22.R-hand-in-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.09.22.R-hand-in-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.09.22.R-hand-in-shark.pdf,1986.09.22.R,1986.09.22.R,3411,, +1986.09.00.b,Sep-86,1986,Unprovoked,USA,Florida,"Ormond Beach / Daytona Beach, Volusia County",Surfing,Anonymous,,,Survived,N,,,Orlando Sentinel. 9/20/1986,1986.09.00.b-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.09.00.b-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.09.00.b-surfer.pdf,1986.09.00.b,1986.09.00.b,3410,, +1986.09.00.a,Sep-86,1986,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Anonymous,,18,Hand bitten,N,,,Orlando Sentinel. 9/20/1986,1986.09.00.a-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.09.00.a-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.09.00.a-surfer.pdf,1986.09.00.a,1986.09.00.a,3409,, +1986.08.19,19-Aug-86,1986,Unprovoked,USA,North Carolina,"Masonboro Inlet, New Hanover County",Surfing,J. McCorley,,16,Hand bitten,N,,,"F. Schwartz, p.23",1986.08.19-McCorley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.19-McCorley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.19-McCorley.pdf,1986.08.19,1986.08.19,3408,, +1986.08.10,10-Aug-86,1986,Invalid,SOUTH AFRICA,Western Cape Province,Reef on seaward side of Geyser Island,Spearfishing,Phllip DeBruyn,M,35,"No injury, shark made threat display & impaled itself on spear ",N,11h30,4 m [13'] white shark,"P. DeBruyn, M. Levine, GSAF",1986.08.10-DeBruyn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.10-DeBruyn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.10-DeBruyn.pdf,1986.08.10,1986.08.10,3407,, +1986.08.03,03-Aug-86,1986,Unprovoked,AUSTRALIA,New South Wales,"North Head, Sydney Harbour",Scuba diving,Margaret Bowen Jones,F,,Survived,N,,Wobbegong shark,Australian Shark Attack File,1986.08.03-Bowen-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.03-Bowen-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.03-Bowen-Jones.pdf,1986.08.03,1986.08.03,3406,, +1986.08.00,Aug-86,1986,Unprovoked,FRANCE,Gulf of Lyons,Gruissan,,,,,Survived,N,,,MEDSAF,1986.08.00-NV-France.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.00-NV-France.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.00-NV-France.pdf,1986.08.00,1986.08.00,3405,, +1986.07.26,26-Jul-86,1986,Boat,AUSTRALIA,Western Australia,3 km west of Rottnest Island,Fishing,"5.4 m boat, occupant: Ivan Anderton",,N/A,"No injury to occupants. Shark bit motor, lifting stern a half-metre out of the water",N,,Tooth fragment of a white shark recovered. Authorities believed shark was 6 m [20'] total length,"A. Sharpe, p.134",1986.07.26-boat-Anderton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.07.26-boat-Anderton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.07.26-boat-Anderton.pdf,1986.07.26,1986.07.26,3404,, +1986.07.09,09-Jul-86,1986,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",,Jack Serafino,M,8,Back of left thigh bitten,N,,1.5 m [5'] shark,"Charlotte Observer, 9/9/1986 & 9/11/1986 ",1986.07.09-JackSerafino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.07.09-JackSerafino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.07.09-JackSerafino.pdf,1986.07.09,1986.07.09,3403,, +1986.07.00.a,Jul-86,1986,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,LaMercy,Spearfishing,Ludwig Gerricke,M,26,Minor lacerations on left hand,N,17h15,1.2 m [4'] dusky shark,"L. Gerricke, M. Levine, GSAF ",1986.07.00.a-Gerricke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.07.00.a-Gerricke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.07.00.a-Gerricke.pdf,1986.07.00.a,1986.07.00.a,3402,, +1986.05.18,18-May-86,1986,Unprovoked,AUSTRALIA,New South Wales,"North Head, Sydney Harbour",Scuba diving,Daniel Neumann,M,,Survived,N,,Wobbegong shark,Australian Shark Attack File,1986.05.18-Neumann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.05.18-Neumann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.05.18-Neumann.pdf,1986.05.18,1986.05.18,3401,, +1986.05.15,15-May-86,1986,Unprovoked,SOUTH KOREA,,,Shell diving,male,M,,FATAL,Y,,,Y. Choi & K. Nakaya,1986.05.15-SouthKorea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.05.15-SouthKorea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.05.15-SouthKorea.pdf,1986.05.15,1986.05.15,3400,, +1986.04.20,20-Apr-86,1986,Unprovoked,USA,Hawaii,"Kaliiwi, Kauai","Fishing, fell from rocks & disappeared",Levi Chandler,M,,Pieces of clothing & human flesh recovered by Fire Department divers who encountered a large shark,Y,,,"J. Borg, p.76",1986.04.20-Chandler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.04.20-Chandler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.04.20-Chandler.pdf,1986.04.20,1986.04.20,3399,, +1986.04.00,Apr-86,1986,Unprovoked,SPAIN,Catalonia,Lloret-de-Mar,Diving,,M,,Abrasions,N,,2 m shark,C. Moore,1986.04.00-Lloret-de-Mar-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.04.00-Lloret-de-Mar-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.04.00-Lloret-de-Mar-diver.pdf,1986.04.00,1986.04.00,3398,, +1986.03.18,18-Mar-86,1986,Unprovoked,SPAIN,C�diz,Tarifa ,Windsurfing,J. L P�rez-D�az,M,,Foot severed,N,10h55,3.5 m white shark,A. DeMaddalena,1986.03.18-Diaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.03.18-Diaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.03.18-Diaz.pdf,1986.03.18,1986.03.18,3397,, +1986.03.15,15-Mar-86,1986,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Treading water,Anton Bouwer,M,26,Foot bitten,N,16h15,>1 m shark,"A. Bouwer, M. Levine, GSAF; E. Kerns, NSB",1986.03.15-Bouwer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.03.15-Bouwer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.03.15-Bouwer.pdf,1986.03.15,1986.03.15,3396,, +1986.03.05,05-Mar-86,1986,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"The Fence, King's Beach, Port Elizabeth",Surfing,McDonald van der Merwe,M,23,"No injury, board struck by shark",N,,2 m [6.75'] shark,"Eastern Province Herald, 3/6/1986",1986.03.05-VanDerMerwe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.03.05-VanDerMerwe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.03.05-VanDerMerwe.pdf,1986.03.05,1986.03.05,3395,, +1986.02.18,18-Feb-86,1986,Unprovoked,SOUTH AFRICA,Eastern Cape Province,East London,Surfing,Shaun Carcary,M,21,"No injury, board bitten",N,12h00,>2.4 m [8'] white shark,"S. Carcary, M. Levine, GSAF",1986.02.18-Carcary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.18-Carcary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.18-Carcary.pdf,1986.02.18,1986.02.18,3394,, +1986.02.17,17-Feb-86,1986,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Cape Recife,Surfing,John Fick,M,,"No injury, knocked off board",N,18h00,,"J. Fick, M. Levine, GSAF; Eastern Province Herald, 2/18/1986",1986.02.17-Fick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.17-Fick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.17-Fick.pdf,1986.02.17,1986.02.17,3393,, +1986.02.07,07-Feb-86,1986,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"King's Beach, Port Elizabeth",Swimming,Johan Fourie,M,46,Lower leg lacerated,N,18h30,Raggedtooth shark,"J. Fourie, M. Levine, GSAF; V. Cockroft, Dr. P. Schwartz",1986.02.07-Fourie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.07-Fourie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.07-Fourie.pdf,1986.02.07,1986.02.07,3392,, +1986.02.06,06-Feb-86,1986,Unprovoked,SOUTH AFRICA,Western Cape Province,Arniston,Spearfishing,Michael Taljaard,M,29,2 punctures in upper arm,N,13h30,"Raggedtooth shark, 2 m [6.75'] ","M. Taljaard, M. Levine, GSAF",1986.02.06-Taljaard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.06-Taljaard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.06-Taljaard.pdf,1986.02.06,1986.02.06,3391,, +1986.02.01,01-Feb-86,1986,Unprovoked,AUSTRALIA,Victoria,Jan Juc Beach,Surfing,David Adams,M,29,"No injury, knocked into water & board bitten",N,06j00,"Bronze whaler shark, 3.5 m ","Sun, 2/3/1986, p.4",1986.02.01-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.01-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.01-Adams.pdf,1986.02.01,1986.02.01,3390,, +1986.01.12,12-Jan-86,1986,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Surfing,Christopher Blissel,M,22,Puncture wounds to both feet,N,08h35,Blacktip shark,"E. Pace, FSAF",1986.01.12-Blissel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.01.12-Blissel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.01.12-Blissel.pdf,1986.01.12,1986.01.12,3389,, +1986.00.00,1986,1986,Unprovoked,USA,California,"Linda Mar Beach, Pedro Point, San Mateo County",Surfing,Max Lagao,M,16,"No injury, foot bumped",N,13h00,1.5 m [5'] shark,R. Collier,1986.00.00-Lagao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.00.00-Lagao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.00.00-Lagao.pdf,1986.00.00,1986.00.00,3388,, +1985.12.22,22-Dec-85,1985,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Garvies Beach,Surfing,Tony Moolman and another surfer,M,,"Both surfers boards were bumped by sharks, Moolman sustained abrasions on his arm and leg",N,,,"M. Levine, GSAF",1985.12.22-GarviesBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.12.22-GarviesBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.12.22-GarviesBeach.pdf,1985.12.22,1985.12.22,3387,, +1985.12.10,10-Dec-85,1985,Unprovoked,USA,North Carolina,New Hanover County,,male,M,,Survived,N,,Sandtiger shark,"C. Creswell, GSAF",1985.12.10-NV-NorthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.12.10-NV-NorthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.12.10-NV-NorthCarolina.pdf,1985.12.10,1985.12.10,3386,, +1985.11.11,11-Nov-85,1985,Provoked,AUSTRALIA,Queensland,Gladstone,Fishing,Richard Lynch,M,,Laceration to lower left leg by hooked shark PROVOKED INCIDENT,N,Afternoon,1m shark,"Courier Mail, 11/13/1985",1985.11.11-Lynch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.11.11-Lynch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.11.11-Lynch.pdf,1985.11.11,1985.11.11,3385,, +1985.11.05,05-Nov-85,1985,Boat,USA,California,"Southeast Farallon Island, Farallon Islands",Boat,3 m inflatable boat tied to buoy (no occupants),,,2 semi-circular bites on aft starboard tube of boat,N,,5.2 to 5.8 m white shark,"R. Collier, pp.178-179",1985.11.05-Klimley_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.11.05-Klimley_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.11.05-Klimley_Collier.pdf,1985.11.05,1985.11.05,3384,, +1985.11.03,03-Nov-85,1985,Provoked,USA,California,5 miles south of Redondo Beach,Fishing,Brad Koune,M,24,Forearm bitten by hooked shark PROVOKED INCIDENT,N,,,"Los Angles Times, 11/5/1985",1985.11.03-Koune.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.11.03-Koune.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.11.03-Koune.pdf,1985.11.03,1985.11.03,3383,, +1985.10.24,24-Oct-85,1985,Unprovoked,SOUTH AFRICA,Eastern Cape Province,East London,Body boarding,Patrick Gee,M,22,"Left leg severely lacerated, superficial lacerations of right leg, board damaged",N,08h00,2.5 m [8.25'] white shark,"P. Gee, Dr. K. A. Watt, M. Levine, GSAF; G. Cliff, NSB",1985.10.24-Gee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.24-Gee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.24-Gee.pdf,1985.10.24,1985.10.24,3382,, +1985.10.22,22-Oct-85,1985,Unprovoked,USA,California,"Point Conception, Santa Barbara County",Hookah diving for abalone,Gary Johnson,M,46,Minor injury to foot & ankle,N,16h00,2 m to 2.5 m [6.75' to 8.25'] sixgill or sevengill shark,R. Collier,1985.10.22-Johnson_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.22-Johnson_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.22-Johnson_Collier.pdf,1985.10.22,1985.10.22,3381,, +1985.10.18,18-Oct-85,1985,Unprovoked,USA,Hawaii,"Little Glass Shacks, Princeville, Kaua'i",Body boarding,Joe Thompson,M,33,"Right hand and part of forearm severed , left hand lacerated, right anterior side of board removed by shark",N,,"Thought to involve a Tiger shark, 3.7 m [12'] ","Syracuse Journal-Herald, 10/21/1985; J. Borg, p.76; G. Ambrose, pp.1-10; L. Taylor (1993), pp.106-107",1985.10.18-Thomson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.18-Thomson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.18-Thomson.pdf,1985.10.18,1985.10.18,3380,, +1985.10.12,12-Oct-85,1985,Unprovoked,USA,Hawaii,"Barbers Point, O'ahu",Floating on inner tube after diving for lobster,Dominic Dela Cruz,M,24,Left arm lacerated,N,,1.8 m to 2.4 m [6' to 8'] shark,"J. Borg, p.76; L. Taylor (1993), pp.106-107; Orlando Sentinel, 10/14/1985, p.A6",1985.10.12-DelaCruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.12-DelaCruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.12-DelaCruz.pdf,1985.10.12,1985.10.12,3379,, +1985.10.05, 05-Oct-1985,1985,Provoked,USA,Alabama,"Gulf Shores, Baldwin County",Fishing,Bruce Doss,M,,Laceration to leg by hooked shark PROVOKED INCIDENT,N,,"6', 100-lb shark","Syracuse Herald, 10/10/1985 ",1985.10.05-Doss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.05-Doss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.05-Doss.pdf,1985.10.05,1985.10.05,3378,, +1985.09.28,28-Sep-85,1985,Unprovoked,USA,California,"Elephant Rock near Tomales Point, Marin County",Free diving & spearfishing (descending),Rolf Ridge,M,,"Hip bumped by shark, no Injury",N,,4 m to 5 m [13' to 16.5'] white shark,"J. McCosker & R.N. Lea; R. Collier, p.97",1985.09.28-Ridge_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.28-Ridge_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.28-Ridge_Collier.pdf,1985.09.28,1985.09.28,3377,, +1985.09.08.b,08-Sep-85,1985,Invalid,SOUTH AFRICA,KwaZulu-Natal,T.O. Strand,Swimming,A.M.,M,21,Probable drowning / scavenging,Y,,,"G. Charter, D. Groger, NSB",1985.09.08.b-A.M.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.08.b-A.M.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.08.b-A.M.pdf,1985.09.08.b,1985.09.08.b,3376,, +1985.09.08.a,08-Sep-85,1985,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Scuba diving,Morris M. Vorenberg,M,,Laceration and 4 puncture wounds to left hand,N,15h00,1.8 m silky shark,M. Vorenburg,1985.09.08.a-Vorenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.08.a-Vorenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.08.a-Vorenberg.pdf,1985.09.08.a,1985.09.08.a,3375,, +1985.09.05,05-Sep-85,1985,Invalid,USA,Florida,"Fort Pierce Inlet, St Lucie County",Swimming,Jeff Justice,M,17,Found to be a hoax,N,Afternoon,,"Orlando Sentinel, 9/7/1985 ; Miami Herald, 9/7/1985 ",1985.09.05-Justice.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.05-Justice.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.05-Justice.pdf,1985.09.05,1985.09.05,3374,, +1985.08.22,22-Aug-85,1985,Unprovoked,USA,South Carolina,"Palmetto Dunes, Hilton Head, Beaufort County",Wading,Joseph Friedlander,M,87,Right calf bitten & less serious injury to left foot,N,,,"Sumter Daily Item, 8/23/1985",1985.08.22-Friedlander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.08.22-Friedlander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.08.22-Friedlander.pdf,1985.08.22,1985.08.22,3373,, +1985.08.20,20-Aug-85,1985,Invalid,USA,Florida,"New Smyrna Beach, Volusia County",Wading,Danny Prendgeast,M,11,"3"" wound on thigh",N,13h00,Shark involvement not confirmed,"Orlando Sentinel, 8/21//1985, p. D.2",1985.08.20-Prendgeast.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.08.20-Prendgeast.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.08.20-Prendgeast.pdf,1985.08.20,1985.08.20,3372,, +1985.08.17,17-Aug-85,1985,Invalid,USA,Florida,"Bayport, Hernando County",Scuba diving,Thomas Robert Sewell,M,67,Body not recovered. 3 days later some of his equipment was found on seabed appeared damaged by a shark ,Y,10h30,Shark involvement prior to death not confirmed,"E. Pace, GSAF; J. McAniff, NUADC; Orlando Sentinel, 12/6/1985; K Duffy, Daytona Beach News Journal, 8/26/2001",1985.08.17-Sewell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.08.17-Sewell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.08.17-Sewell.pdf,1985.08.17,1985.08.17,3371,, +1985.07.25.b,25-Jul-85,1985,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Wading,Robin Lyons,F,13,Right calf bitten,N,17h00,Possibly a small hammerhead shark,"M. McKee,Orlando Sentinel, 7/30/1985, p.A1",1985.07.25.b-Lyons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.25.b-Lyons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.25.b-Lyons.pdf,1985.07.25.b,1985.07.25.b,3370,, +1985.07.25.a,25-Jul-85,1985,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jason Lee,M,15,Hand bitten,N,10h22,,"M. McKee,Orlando Sentinel, 7/30/1985",1985.07.25.a-JasonLee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.25.a-JasonLee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.25.a-JasonLee.pdf,1985.07.25.a,1985.07.25.a,3369,, +1985.07.21,21-Jul-85,1985,Boat,USA,California,"Off Shelter Cover (between Fort Bragg & Eureka), Humboldt County",Bottom fishing for lingcod & had hooked a fish,4.9 m fibreglass boat. Occupant: Jack Siverling,,,"No injury to occupant, shark rammed boat catapulting it out of the water",N,,5 m to 6 m [16.5' to 20'] white shark,"R. Collier, p.172",1985.07.21-Siverling_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.21-Siverling_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.21-Siverling_Collier.pdf,1985.07.21,1985.07.21,3368,, +1985.07.19,19-Jul-85,1985,Unprovoked,USA,South Carolina,"Folly Beach, Charleston County",Playing in knee-deep water,Julie Steed,F,10,2/3rd of left calf removed,N,,"Tiger shark, 2.4 m to 2.7 m [8' to 9'] ","Atlanta Journal-Constitution, 7/22&23/1985 ",1985.07.19-Steed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.19-Steed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.19-Steed.pdf,1985.07.19,1985.07.19,3367,, +1985.07.00,Mid Jul-1985 or mid Jul-1986,1985,Unprovoked,ITALY,Sicily,Punta Secca,Snorkeling,Neil Montoya,M,13,Contusion of left foot,N,16h00,"3 m to 3.6 m [10' to 11'9""] white shark","A. De Maddalena; De Maddalena (2001), N. Montoya (pers. comm.)",1985.07.00-Montoya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.00-Montoya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.00-Montoya.pdf,1985.07.00,1985.07.00,3366,, +1985.05.26,26-May-85,1985,Unprovoked,USA,California,"Long Beach, Los Angeles County","Surfing, but lying prone on his board",Robert Rodriquez,M,,Leg injured,N,,Shark involvement not confirmed,"R. Collier, p.86",1985.05.26-Rodriquez_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.05.26-Rodriquez_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.05.26-Rodriquez_Collier.pdf,1985.05.26,1985.05.26,3365,, +1985.05.08,08-May-85,1985,Provoked,SOUTH AFRICA,KwaZulu-Natal,Umdhloti,Spearfishing,Sikketho Denge,M,39,"After diver shot shark attempting to take his catch, shark bit right arm & tore wetsuit PROVOKED INCIDENT",N,,30-kg [66-lb] shark,"M. Levine, GSAF",1985.05.08-Denge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.05.08-Denge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.05.08-Denge.pdf,1985.05.08,1985.05.08,3364,, +1985.03.16,16-Mar-85,1985,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Surfing,David Zarnowski,M,25,Hand bitten,N,,,"E. Pace, FSAF",1985.03.16-NV-Zarnowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.03.16-NV-Zarnowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.03.16-NV-Zarnowski.pdf,1985.03.16,1985.03.16,3363,, +1985.03.03,03-Mar-85,1985,Unprovoked,AUSTRALIA,South Australia,"Wiseman�s Beach, Peake Bay, Port Lincoln",Free diving for scallops,Shirley Anne Durdin,F,33,FATAL,Y,12h30,6 m [20'] white shark,"A. MacCormick, pp.76-79; H. Edwards, p.155; A. Sharpe, pp.126-127; J. West, ASAF",1985.03.03-Durdin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.03.03-Durdin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.03.03-Durdin.pdf,1985.03.03,1985.03.03,3362,, +1985.02.18,18-Feb-85,1985,Unprovoked,USA,California,"San Miguel Island, Santa Barbara County",Scuba Diving for lobster (at surface),Chris Massahos,M,29,Bruised,N,12h45,6 m [20'] white shark,"R. Collier, pp.95-96",1985.02.18-Massahos_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.02.18-Massahos_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.02.18-Massahos_Collier.pdf,1985.02.18,1985.02.18,3361,, +1985.02.03,03-Feb-85,1985,Unprovoked,USA,Florida,"15 miles north of Sebastian Inlet, Brevard County",Surfing,Michael Mesiano,M,16,Right foot bitten,N,Afternoon,,"Miami Herald, 2/4/1985, p.6",1985.02.03-Mesiano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.02.03-Mesiano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.02.03-Mesiano.pdf,1985.02.03,1985.02.03,3360,, +1985.01.27,27-Jan-85,1985,Unprovoked,SOUTH AFRICA,Western Cape Province,Struisbaai,Swimming,Marius Botha,M,15,"Right knee, calf and ankle lacerated",N,18h30,Raggedtooth shark,"M. Botha, M. Levine, GSAF",1985.01.27-Botha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.27-Botha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.27-Botha.pdf,1985.01.27,1985.01.27,3359,, +1985.01.18,18-Jan-85,1985,Invalid,SOUTH AFRICA,KwaZulu-Natal,Umzimkulu,,Herbert Base,M,,Probable drowning / scavenging,Y,,,"G. Cliff, NSB",1985.01.18-Base.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.18-Base.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.18-Base.pdf,1985.01.18,1985.01.18,3358,, +1985.01.17,17-Jan-85,1985,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umbogintwini,Surfing,Bruce Eldridge,M,18,Thigh & calf bitten,N,18h30,"3.5 m white shark, tooth fragments recovered","B. Eldridge, M. Levine, GSAF; G. Charter & B. Davis, NSB",1985.01.17-Eldridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.17-Eldridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.17-Eldridge.pdf,1985.01.17,1985.01.17,3357,, +1985.01.16,16-Jan-85,1985,Boat,NEW ZEALAND,South Island,Christchurch,Investigating shark sighting,"small speedboat, occupan: Paul McNally",,,"No injury to occupant, shark bit boat",N,,6 m shark,"Courier-Mail, 1/17/1985",1985.01.16-McNally-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.16-McNally-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.16-McNally-boat.pdf,1985.01.16,1985.01.16,3356,, +1985.01.04,04-Jan-85,1985,Unprovoked,SOUTH AFRICA,Western Cape Province,"Buffels Bay, False Bay",Spearfishing,Donald James,M,34,Minor injury to torso,N,11h30,3.5 m [11.5'] white shark,"D. James, M. Levine, GSAF; G. Cliff, NSB",1985.01.04-DonJames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.04-DonJames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.04-DonJames.pdf,1985.01.04,1985.01.04,3355,, +1985.01.00.b,Jan-85,1985,Unprovoked,NEW CALEDONIA,South Province,Amedee Island,Spearfishing,Jean Rene Mathelon,,,Legs bitten ,N,,Tiger shark,"W. Leander; Les Nouvelles Caledoniennes, 3/17/2000",1985.01.00.b-Mathelon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.00.b-Mathelon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.00.b-Mathelon.pdf,1985.01.00.b,1985.01.00.b,3354,, +1985.01.00.a,Jan-85,1985,Provoked,SOUTH AFRICA,KwaZulu-Natal,Salt Rock,Spearfishing,Barry Allan Coppin,M,20,Upper right arm bitten after he shot the shark PROVOKED INCIDENT,N,11h00,1.5 m [5'] dusky shark,"B. Coppin, M. Levine, GSAF",1985.01.00.a-Coppin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.00.a-Coppin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.00.a-Coppin.pdf,1985.01.00.a,1985.01.00.a,3353,, +1985.00.00.f,1985,1985,Unprovoked,VANUATU,Malampa Province,"Port Sandwich Bay, Lamap, Malakula",,American child,M,,FATAL,Y,,,S. Combs,1985.00.00.f-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.00.00.f-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.00.00.f-Vanuatu.pdf,1985.00.00.f,1985.00.00.f,3352,, +1985.00.00.a,1985,1985,Unprovoked,IRAN,,"Ramin, near Ahvaz",Fishing,male,M,,FATAL,Y,,Bull shark,B. Coad & F. Papahn,1985.00.00.a-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.00.00.a-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.00.00.a-Fisherman.pdf,1985.00.00.a,1985.00.00.a,3351,, +1984.12.03,03-Dec-84,1984,Boat,ITALY,Tyrrhenian Sea,"Marciana Marina, Isola d'Elba",Boat,,,,No injury,N,,White shark,A. De Maddalena; F. Serena (pers. Comm.),1984.12.03-boat-Elba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.12.03-boat-Elba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.12.03-boat-Elba.pdf,1984.12.03,1984.12.03,3350,, +1984.11.30,30-Nov-84,1984,Unprovoked,AUSTRALIA,Queensland,1 km off Black's Beach,Sailing on catamaran & fell into the water,Nicholas Bos,M,16,FATAL,Y,12h33,"Tiger shark, 4 m ","Courier-Mail, 12/1/1984, p.1; A. Sharpe, p.106",1984.11.30-NicholasBos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.30-NicholasBos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.30-NicholasBos.pdf,1984.11.30,1984.11.30,3349,, +1984.11.11,11-Nov-84,1984,Unprovoked,USA,Florida,"Jupiter Island Beach, Martin County",Surfing,Cooper Stetson,M,13,Left foot bitten,N,,1.2 m [4'] shark,"Miami Herald, 11/18/1984",1984.11.11-Stetson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.11-Stetson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.11-Stetson.pdf,1984.11.11,1984.11.11,3348,, +1984.11.04,04-Nov-84,1984,Provoked,USA,Florida,"Fowey Rock, Key Biscayne",Spearfishing,Andres Ferro,M,29,"Speared shark bit diver's right knee, and lacerated right thigh & buttocks PROVOKED INCIDENT",N,,"""a small shark""","Miami Herald, 11/5/1984",1984.11.04-Ferro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.04-Ferro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.04-Ferro.pdf,1984.11.04,1984.11.04,3346,, +1984.10.21.b,21-Oct-84,1984,Invalid,USA,Florida,"Wabasso Beach, Indian River County",Swimming,Larry Peebles,M,22,"Disappeared, 1 mile from where Sandra Fletcher was bitten. Death was due to drowning",Y,14h00,,"Evening Independent, 10/24/1984, p.14; E. Pace, FSAF",1984.10.21.b-Peebles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.21.b-Peebles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.21.b-Peebles.pdf,1984.10.21.b,1984.10.21.b,3345,, +1984.10.21,21-Oct-84,1984,Unprovoked,USA,Florida,"3 miles south of Sebastian Inlet State Park, Indian River County",Surfing or body surfing,Sandra Fletcher,F,23,"9"" laceration to right forearm ",N,13h30,1.5 m [5'] shark,"Miami Herald, 10/24/1984, p.17A",1984.10.21.a-Fletcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.21.a-Fletcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.21.a-Fletcher.pdf,1984.10.21,1984.10.21,3344,, +1984.10.17,17-Oct-84,1984,Invalid,USA,Florida,"Boynton Beach, Palm Beach County",Wading,Mary Dunn,F,77,"10"" laceration on leg",N,12h05,Shark involvement not confirmed; officials considered barracua,"Miami Herald, 10/18/1984, ",1984.10.17-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.17-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.17-Dunn.pdf,1984.10.17,1984.10.17,3343,, +1984.10.14.a,14-Oct-84,1984,Unprovoked,USA,Florida,"Bob Graham Beach, Martin County",Surfing,Thomas C. Westberg ,M,15,Left calf bitten,N,15h00,1.2 m [4'] blacktip shark,"Miami Herald, 10/16/1984",1984.10.14.a-Westberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.14.a-Westberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.14.a-Westberg.pdf,1984.10.14.a,1984.10.14.a,3342,, +1984.09.30.b,30-Sep-84,1984,Unprovoked,USA,Oregon,"""Turnaround"", Cape Kiwanda, Tillamook County",Surfing (sitting on his board),Robert Rice,M,25,"Abrasion on right foot, board bitten",N,15h30,3 m to 5 m [10' to 16.5'] white shark,"R. Collier, pp.94-95",1984.09.30.b-Rice_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.30.b-Rice_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.30.b-Rice_Collier.pdf,1984.09.30.b,1984.09.30.b,3341,, +1984.09.30.a,30-Sep-84,1984,Unprovoked,USA,California,"Tomales Point, Marin County","Free diving , but surfacing",Paul Parsons,M,,Legs & buttocks bitten,N,10h00,3 m to 4 m [10' to 13'] white shark,"R. Collier, pp.93-94",1984.09.30.a-Parsons_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.30.a-Parsons_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.30.a-Parsons_Collier.pdf,1984.09.30.a,1984.09.30.a,3340,, +1984.09.23,23-Sep-84,1984,Unprovoked,USA,Florida,Volusia County,Surfing,William Miller,M,17,Right foot bitten,N,14h00,,"Miami Herald, 9/26/1984, p.2D",1984.09.23-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.23-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.23-Miller.pdf,1984.09.23,1984.09.23,3339,, +1984.09.22.b,22-Sep-84,1984,Unprovoked,USA,Florida,,Swimming,male from Tampa,M,Elderly,Left foot lacerated,N,,,"Miami Herald, 9/26/1984, p.2D",1984.09.22.b-ElderlyMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.22.b-ElderlyMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.22.b-ElderlyMale.pdf,1984.09.22.b,1984.09.22.b,3338,, +1984.09.22.a,22-Sep-84,1984,Unprovoked,USA,Florida,"Indiatlantic, Brevard County",Surfing,Anthony Carter,M,16,Foot bitten,N,Morning,Hammerhead shark?+O2356,"Miami Herald, 9/26/1984, p.2D",1984.09.22.a-AnthonyCarter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.22.a-AnthonyCarter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.22.a-AnthonyCarter.pdf,1984.09.22.a,1984.09.22.a,3337,, +1984.09.19,19-Sep-84,1984,Unprovoked,USA,Florida,Volusia County,Swimming,,,,No details,UNKNOWN,,,"Miami Herald, 9/26/1984, p.2D",1984.09.19-VolusiaCounty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.19-VolusiaCounty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.19-VolusiaCounty.pdf,1984.09.19,1984.09.19,3336,, +1984.09.17,17-Sep-84,1984,Unprovoked,USA,California,"Mission Beach, San Diego County",Wading,Brian Cramer,M,,Arm bitten,N,15h30,small blue shark,"R. Collier, p.93 ",1984.09.17-Cramer_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.17-Cramer_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.17-Cramer_Collier.pdf,1984.09.17,1984.09.17,3335,, +1984.09.15,15-Sep-84,1984,Unprovoked,USA,California,"Pigeon Point, San Mateo County",Skindiving,Omar Conger,M,28,FATAL,Y,08h30,4.5 m to 5 m white shark,"R. Collier, p. 72",1984.09.15-Conger_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.15-Conger_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.15-Conger_Collier.pdf,1984.09.15,1984.09.15,3334,, +1984.09.11,11-Sep-84,1984,Provoked,MEXICO,Baja California,Guadalupe Island,Spearfishing,Harry Ingram,M,,"No Injury, PROVOKED INCIDENT",N,17h50,4.5 m to 5.5m white shark,R. Collier,1984.09.11-Ingram.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.11-Ingram.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.11-Ingram.pdf,1984.09.11,1984.09.11,3333,, +1984.08.24,24-Aug-84,1984,Invalid,USA,Florida,"Off Crystal River, Citrus County",Boat capsized?,T. Washington,F,31,Death was due to drowning; body scavenged by a shark,Y,,Tiger shark,"St. Petersburg Times, 11/20/1984",1984.08.24-Washington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.08.24-Washington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.08.24-Washington.pdf,1984.08.24,1984.08.24,3332,, +1984.08.07,07-Aug-84,1984,Unprovoked,INDONESIA,,Bali,"Sea disaster, foundering of the cargo vessle M/V Dorolonda",9 crewmen,M,,FATAL,Y,,,"Courier Mail, 8/15/1984",1984.08.07-Dorolonda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.08.07-Dorolonda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.08.07-Dorolonda.pdf,1984.08.07,1984.08.07,3331,, +1984.07.24.b,24-Jul-84,1984,Unprovoked,USA,Texas,South Padre Island,Swimming,girl,F,13,Lacerations on right foot,N,14h30,,"A. MacCormick, pp.8-9",1984.07.24.b-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.24.b-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.24.b-girl.pdf,1984.07.24.b,1984.07.24.b,3330,, +1984.07.24.a,24-Jul-84,1984,Unprovoked,USA,Texas,South Padre Island,Swimming,Carmen Gaytan,F,18,Legs severely lacerated,N,12h00,1.2 m [4'] shark,"A. MacCormick, pp.8-9",1984.07.24.a-Gaytan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.24.a-Gaytan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.24.a-Gaytan.pdf,1984.07.24.a,1984.07.24.a,3329,, +1984.07.22,22-Jul-84,1984,Invalid,SOUTH AFRICA,Western Cape Province,Cape Point,Spearfishing,Adrian Hayman,M,21,"FATAL, but shark involvement prior to death could not be determined",Y,11h00,,"P. Landsberg, M.D.",1984.07.22-Hayman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.22-Hayman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.22-Hayman.pdf,1984.07.22,1984.07.22,3328,, +1984.07.01,01-Jul-84,1984,Unprovoked,USA,Florida,,"During a shark fishing tournament, the 18' Boatem was capsized by waves, throwing 3 men into the water ",William McConnell,M,30,Leg abraded,N,18h00,,"New Orleans Times-Picayune, 3 July 1984; A. MacCormick, p.109-110",1984.07.01-McConnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.01-McConnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.01-McConnell.pdf,1984.07.01,1984.07.01,3327,, +1984.07.00.a,Jul-84,1984,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Sodwana,Spearfishing,Rory O�Connor,M,,"No injury, shark hit swim fin",N,,Raggedtooth shark ,"R O'Connor, M. Levine, GSAF",1984.07.00-O'Connor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.00-O'Connor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.00-O'Connor.pdf,1984.07.00.a,1984.07.00.a,3326,, +1984.06.15,15-Jun-84,1984,Unprovoked,SOUTH AFRICA,Western Cape Province,"Muizenberg, False Bay",Surfing,Selwyn Doran,M,27,"No injury, board bitten",N,17h30,2.4 m [8'] white shark,"The Argus, 6/16/1984",1984.06.15-Doran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.06.15-Doran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.06.15-Doran.pdf,1984.06.15,1984.06.15,3325,, +1984.06.03.b,03-Jun-84,1984,Unprovoked,USA,Hawaii,"Kane'ohe Bay, O'ahu",Towing her sister on plastic ski board,Susan Buecher,F,13,Foot bitten,N,17h00,1.2 m to 1.5 m [4' to 5'] hammerhead shark,"J. Borg, p.76; L. Taylor (1993), pp.106-107",1984.06.03.b-Buecher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.06.03.b-Buecher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.06.03.b-Buecher.pdf,1984.06.03.b,1984.06.03.b,3324,, +1984.06.03,03-Jun-84,1984,Unprovoked,VANUATU,Malampa Province,"Atchin Island, off Malakula",Swimming,Felix Brem,M,20s,FATAL,Y,,,"Telegraph, 6/8/1984, p.12 ",1984.06.03-Brem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.06.03-Brem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.06.03-Brem.pdf,1984.06.03,1984.06.03,3323,, +1984.05.31,31-May-84,1984,Unprovoked,SOUTH AFRICA,Western Cape Province,Arniston,Spearfishing,Anton Bosman,M,28,Swim fin bitten,N,13h30,,"A. Bosman, M. Levine, GSAF",1984.05.31-Bosman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.05.31-Bosman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.05.31-Bosman.pdf,1984.05.31,1984.05.31,3322,, +1984.03.17,17-Mar-84,1984,Invalid,SOMALIA,,,Murder,11 stoways,M,, Forced at gunpoint to jump overboard. Presumed fatal; shark involvement probable but not confirmed ,Y,,,"Courier Mail, 5/18/1984",1984.03.17-Eleven-stowaways.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.17-Eleven-stowaways.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.17-Eleven-stowaways.pdf,1984.03.17,1984.03.17,3321,, +1984.03.14,14-Mar-84,1984,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Amanzimtoti,Surfing,Mark Benvick,M,,"No injury, 8 pressure dings in surboard",N,17h30,,"G. Charter, NSB; M. Levine, GSAF",1984.03.14-Benvick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.14-Benvick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.14-Benvick.pdf,1984.03.14,1984.03.14,3320,, +1984.03.10,10-Mar-84,1984,Boat,SOUTH AFRICA,Eastern Cape Province,Swartkops River mouth,Rowing,"rowboat, occupant: Louis Beyers",M,,"No injury to occupant, shark seized oar and disappeared with it.",N,,2.5 m [8.25'] shark,"M. Levine, GSAF",1984.03.10-Beyers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.10-Beyers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.10-Beyers.pdf,1984.03.10,1984.03.10,3319,, +1984.03.01,01-Mar-84,1984,Unprovoked,AUSTRALIA,Western Australia,Coral Bay,,Greenwood,,,No details,UNKNOWN,,,"T. Peake, GSAF",1984.03.01-NV-Greenwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.01-NV-Greenwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.01-NV-Greenwood.pdf,1984.03.01,1984.03.01,3318,, +1984.02.18,18-Feb-84,1984,Provoked,SOUTH AFRICA,Eastern Cape Province,"Paradise Beach, Jeffrey�s Bay",Fishing,Henri deVilliers Melville,M,,Leg lacerated by hooked shark PROVOKED INCIDENT,N,Night,"Raggedtooth shark, 56-kg [123-lb] ","M. Levine, GSAF; Eastern Province Herald, 6/28/1986",1984.02.18-Melville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.18-Melville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.18-Melville.pdf,1984.02.18,1984.02.18,3317,, +1984.02.17,17-Feb-84,1984,Provoked,SOUTH AFRICA,KwaZulu-Natal,"Shark tank at Oceanographic Research Insitute, Durban",Scuba diving,George Buckland,M,33,Punctures in wetsuit & left arm bruised by captive shark PROVOKED INCIDENT,N,09h00, 1.5 m [5'] dusky shark,"G. Buckland, M. Levine, GSAF",1984.02.17-Buckland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.17-Buckland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.17-Buckland.pdf,1984.02.17,1984.02.17,3316,, +1984.02.12,12-Feb-84,1984,Invalid,SOUTH AFRICA,Eastern Cape Province,St. George�s Strand,,,,,"Human remains recovered, evidence of scavenging by shark/s",Y,,,"G. Charter, NSB",1984.02.12-StGeorgesStrand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.12-StGeorgesStrand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.12-StGeorgesStrand.pdf,1984.02.12,1984.02.12,3315,, +1984.02.11,11-Feb-84,1984,Unprovoked,AUSTRALIA,Queensland,Derwent Island,Spearfishing,Greg Pearce,M,27,Hand bitten,N,,1.5 m white-tipped reef shark,"Courier-Mail, 2/14/1984, p.3",1984.02.11-Pearce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.11-Pearce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.11-Pearce.pdf,1984.02.11,1984.02.11,3314,, +1984.01.05,05-Jan-84,1984,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port Alfred,Swimming,Robert Tennent,M,14,Foot bitten,N,09h30,"Raggedtooth shark, 1 m ","R. Tennent, M. Levine, Dr. Dempers & K. Reynolds",1984.01.05-Tennent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.01.05-Tennent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.01.05-Tennent.pdf,1984.01.05,1984.01.05,3313,, +1984.01.04,04-Jan-84,1984,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umlaas Canal,,female,F,14,Remains recovered 1-4-1984 showed evidence of defense wounds,Y,,,"G. Charter, B. Davis & G. Cliff, NSB",1984.01.04-UmlaasCanal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.01.04-UmlaasCanal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.01.04-UmlaasCanal.pdf,1984.01.04,1984.01.04,3312,, +1984.00.00.b,1984,1984,Provoked,USA,California,San Francisco,Steinhart Aquarium,Don C. Reed,M,,Head mouthed by captive shark PROVOKED INCIDENT,N,,Sevengill shark,D.C. Reed,1984.00.00.b-Reed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.00.00.b-Reed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.00.00.b-Reed.pdf,1984.00.00.b,1984.00.00.b,3311,, +1984.00.00.a,1984,1984,Unprovoked,USA,Florida,"Indiatlantic, Brevard County",Surfing,Eric Schwarze,M,,Right foot bitten,N,,,"M. Vosburgh, Orlando Sentinel, 5/28/1988 ",1984.00.00.a-Schwarze.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.00.00.a-Schwarze.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.00.00.a-Schwarze.pdf,1984.00.00.a,1984.00.00.a,3310,, +1983.12.30,30-Dec-83,1983,Invalid,GREECE,Andikira Fokithes,,Spearfishing,Ioannis Chrysafis,M,36,"Coroner determined the man was killed by a boat propeller, not a tiger shark",Y,02h45,,"Miami Herald, 1/4/1984; M. Bardanis",1983.12.30-Chrysafis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.30-Chrysafis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.30-Chrysafis.pdf,1983.12.30,1983.12.30,3309,, +1983.12.25,25-Dec-83,1983,Unprovoked,USA,Florida,"Riviera Beach, Palm Beach County",Surfing,Jeff Herrin,M,17,Left foot & thigh bitten,N,15h30,,"Palm Beach Post, 12/26/1983 ",1983.12.25-Herrin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.25-Herrin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.25-Herrin.pdf,1983.12.25,1983.12.25,3308,, +1983.12.24,24-Dec-83,1983,Unprovoked,AUSTRALIA,South Australia,"Dangerous Reef, South Neptune Island",Scuba diving for abalone,Neil Williams,M,48,Fingers bitten,N,,12' white shark,"T. Peake, GSAF",1983.12.24-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.24-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.24-Williams.pdf,1983.12.24,1983.12.24,3307,, +1983.12.22,22-Dec-83,1983,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Great Fish River,Swimming,Colin Biggs,M,16,"Left calf, ankle & foot lacerated",N,12h30,,"C. Biggs, M. Levine, J. Mansfield, Dr. T. Counihan & Dr. Clement",1983.12.22-Biggs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.22-Biggs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.22-Biggs.pdf,1983.12.22,1983.12.22,3306,, +1983.12.21,21-Dec-83,1983,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Swimming,Jack Heydenrych,M,47,Shin lacerated,N,08h15,"Raggedtooth shark, >1 m ","R. Horn, East London Aquarium; J. Heydenrych, M.Levine, GSAF",1983.12.21-Heydenrych.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.21-Heydenrych.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.21-Heydenrych.pdf,1983.12.21,1983.12.21,3305,, +1983.12.07,07-Dec-83,1983,Invalid,SOUTH AFRICA,KwaZulu-Natal,LaMercy,,male,M,,"Two feet found in shark, postmortem scavenging",N,,"1.74 m, 116-kg Zambesi shark","R.B. Wilson , G. Cliff, B. Davis & G. Charter, NSB",1983.12.07-feet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.07-feet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.07-feet.pdf,1983.12.07,1983.12.07,3304,, +1983.11.21,21-Nov-83,1983,Sea Disaster,PHILIPPINES,Central Philippines,,Ferry boat sank,Arturo Garces,M,,Left foot nipped,N,,.5 m shark,"Montreal Gazette, 11/28/1983",1983.11.21-FerryDisaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.11.21-FerryDisaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.11.21-FerryDisaster.pdf,1983.11.21,1983.11.21,3303,, +1983.11.10.R,Reported 10-Nov-1983,1983,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,Michael Burns,M,15,Laceration to left foot,N,,Tiger shark,"St. Petersburg Times, 11/10/1983",1983.11.10.R-Michael-Burns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.11.10.R-Michael-Burns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.11.10.R-Michael-Burns.pdf,1983.11.10.R,1983.11.10.R,3302,, +1983.11.10,10-Nov-83,1983,Invalid,SOUTH AFRICA,KwaZulu-Natal,Tongaat,Swimming,Pradisha Chanderpaul,F,,Probable drowning and scavenging,Y,,,"R. Wilson, G. Cliff, Natal Sharks Board; GSAF",1983.11.10.a-Chanderpaul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.11.10.a-Chanderpaul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.11.10.a-Chanderpaul.pdf,1983.11.10,1983.11.10,3301,, +1983.10.17.a,17-Oct-83,1983,Unprovoked,USA,Florida,"Stuart Beach, Martin County",Surfing,Aryon Kalein,M,16,Puncture marks in leg & surfboard dinged,N,,1.5 m [5'] shark,"Miami Herald, 10/21/1983, p.1C",1983.10.17.a-Kalein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.10.17.a-Kalein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.10.17.a-Kalein.pdf,1983.10.17.a,1983.10.17.a,3300,, +1983.10.13,13-Oct-83,1983,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Wading,Charles Hundley,M,20,Lacerations to left ankle,N,,4.5' shark,"Daytona Beach Morning Journal, 10/21/1983",1983.10.13-Hundley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.10.13-Hundley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.10.13-Hundley.pdf,1983.10.13,1983.10.13,3299,, +1983.09.04,04-Sep-83,1983,Unprovoked,USA,Florida,"Off Lake Worth, Palm Beach County",Standing,Paul Kolodny,M,15,Abrasions to leg,N,,,"E. Pace, FSAF",1983.09.04-Kolodny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.09.04-Kolodny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.09.04-Kolodny.pdf,1983.09.04,1983.09.04,3298,, +1983.08.20.b,20-Aug-83,1983,Unprovoked,USA,Oregon,"Cape Kiwanda,Tillamook County",Surfing,Randy Weldon,M,,"No injury, board bitten",N,10h00,White shark,"R.N. Lea & D. Miller; R. Collier, p.81",1983.08.20.b-RandyWeldon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.20.b-RandyWeldon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.20.b-RandyWeldon.pdf,1983.08.20.b,1983.08.20.b,3297,, +1983.08.20.a,20-Aug-83,1983,Unprovoked,SOUTH AFRICA,Western Cape Province,"Seal Island, False Bay",Spearfishing,Attie Louw,M,29,Inner thighs lacerated,N,10h00,5 m [16.5'] white shark,"A. Louw, M. Levine, GSAF; G. Cliff, NSB",1983.08.20.a-Louw.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.20.a-Louw.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.20.a-Louw.pdf,1983.08.20.a,1983.08.20.a,3296,, +1983.08.15,15-Aug-83,1983,Unprovoked,USA,Virginia,"Virginia Beach, Princess Anne County",Swimming,Jill Redenbaugh,F,14,Foot bitten,N,Morning,Sand shark,"Washington Post, 8/16/1983",1983.08.15-Rendenbaugh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.15-Rendenbaugh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.15-Rendenbaugh.pdf,1983.08.15,1983.08.15,3295,, +1983.08.13.b,13-Aug-83,1983,Provoked,USA,Florida,"Riviera Beach, Palm Beach County",Skindiving,Louis Goodman,M,14,Hand abraded when he grabbed shark's tail PROVOKED INCIDENT,N,,Nurse shark,M. Vorenburg,1983.08.13.b-Goodman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.13.b-Goodman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.13.b-Goodman.pdf,1983.08.13.b,1983.08.13.b,3294,, +1983.08.13.a,13-Aug-83,1983,Unprovoked,USA,Florida,"6 miles south of Boca Chica Key, Monroe County ",Diving,Jackie Lynn,F,22,Right leg severely bitten,N,Morning,6' to 8' bull shark,"Miami Herald, 8/14/1983, p.1D ",1983.08.13.a-JackieLynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.13.a-JackieLynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.13.a-JackieLynn.pdf,1983.08.13.a,1983.08.13.a,3293,, +1983.08.06,06-Aug-83,1983,Boat,USA,Rhode Island,,Fishing,2 boats,,,No injury to occupants,N,,,"Providence Journal, 8/7/1983",1983.08.06-RI-boats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.06-RI-boats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.06-RI-boats.pdf,1983.08.06,1983.08.06,3292,, +1983.07.26,26-Jul-83,1983,Sea Disaster,AUSTRALIA,Queensland,"Off Lodestone Reef, Great Barrier Reef, north of Townsville",Swimming from the New Venture ,Linda Ann Norton,F,21,"FATAL, shark seized her by the chest and took her underwater ",Y,04h00,"Tiger shark, 5 m [16.5']","H. Edwards, pp. 103-104; A. MacCormick, pp.110-112",1983.07.26-Norton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.26-Norton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.26-Norton.pdf,1983.07.26,1983.07.26,3291,, +1983.07.25.b,25-Jul-83,1983,Sea Disaster,AUSTRALIA,Queensland,"Off Lodestone Reef, Great Barrier Reef, north of Townsville",Swimming from the New Venture ,Dennis Patrick Murphy,M,24,"FATAL, shark bit leg, then dragged him underwater ",Y,Night,"Tiger shark, 5 m [16.5']","H. Edwards, pp. 103-104; A. MacCormick, pp.110-112",1983.07.25.b-Murphy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.25.b-Murphy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.25.b-Murphy.pdf,1983.07.25.b,1983.07.25.b,3290,, +1983.07.25.a,25-Jul-83,1983,Sea Disaster,AUSTRALIA,Queensland,"Off Lodestone Reef, Great Barrier Reef, north of Townsville",14 m prawn trawler New Venture capsized & sank in heavy seas Three people in the water,Ray Boundy,M,28,"Left knee bitten, but survived",N,Night,"Tiger shark, 5 m [16.5']","H. Edwards, pp.103-104; A. MacCormick, pp.110-112 ",1983.07.25.a-Boundy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.25.a-Boundy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.25.a-Boundy.pdf,1983.07.25.a,1983.07.25.a,3289,, +1983.07.15,15-Jul-83,1983,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Seal Point, Cape St. Francis",Surfing,Ward Walkup,M,,Left arm injured by shark's tail as it swam beneath his board,N,,3 m to 4 m [10' to 13'] shark,"M. Levine, GSAF",1983.07.15-NV-Walkup.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.15-NV-Walkup.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.15-NV-Walkup.pdf,1983.07.15,1983.07.15,3288,, +1983.07.12.b,12-Jul-83,1983,Unprovoked,USA,Florida,"Caloosahatchee River, Lee County",Windsurfing,Sandy Komito,F,39,Left ankle nipped (3 punctures wounds),N,Afternoon,3.5' hammerhead shark,"Miami Herald, 7/14/1983, p.12A",1983.07.12.b-Komito.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.12.b-Komito.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.12.b-Komito.pdf,1983.07.12.b,1983.07.12.b,3287,, +1983.07.12.a,08-Jul-83,1983,Unprovoked,BAHAMAS,Abaco Islands,Green Turtle Cay,Spearfishing,Eric Gijsendorfer ,M,13,Lacerations to left calf,N,12h00,,"Miami Herald, 7/13/1983, p.2D",1983.07.12.a-Gijsendorfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.12.a-Gijsendorfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.12.a-Gijsendorfer.pdf,1983.07.12.a,1983.07.12.a,3286,, +1983.07.05,05-Jul-83,1983,Unprovoked,USA,Florida,"Riviera Beach, Palm Beach County",Floating on air mattress,Steven Osterman,,17,"No injury, shark bit air mattress, deflating it",N,,,"E.Pace, FSAF",1983.07.05-Osterman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.05-Osterman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.05-Osterman.pdf,1983.07.05,1983.07.05,3285,, +1983.06.29,29-Jun-83,1983,Unprovoked,USA,Florida,"Off 12th Street, Miami Beach",Swimming,Howard Rosen,M,42,Left foot bitten,N,11h00,,"Miami Herald, 6/30/1983, ",1983.06.29-Rosen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.29-Rosen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.29-Rosen.pdf,1983.06.29,1983.06.29,3284,, +1983.06.22,22-Jun-83,1983,Unprovoked,BAHAMAS,Abaco Islands,"Off Sandy Point, Great Abaco Island",Spearfishing,Carl James Harth,M,15,FATAL,Y,16h00,,"Chicago Tribune, 8/21/1983, p.B7",1983.06.22-Harth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.22-Harth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.22-Harth.pdf,1983.06.22,1983.06.22,3283,, +1983.06.20,20-Jun-83,1983,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing & dangling foot in water amid baitfish,Barry Skinner,M,21,Left foot lacerated,N,16h30,,"Miami Herald, 6/22/1983, p.2B",1983.06.20-Skinner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.20-Skinner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.20-Skinner.pdf,1983.06.20,1983.06.20,3282,, +1983.06.15,15-Jun-83,1983,Unprovoked,BAHAMAS,,Carter Cay,,Roger Yost,M,30,Lacerations to hand & foot,N,11h00,6' blacktip shark,"E. Pace, FSAF",1983.06.15-NV-Yost.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.15-NV-Yost.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.15-NV-Yost.pdf,1983.06.15,1983.06.15,3281,, +1983.06.15,15-Jun-83,1983,Invalid,ITALY,Northwest Italy,Riomaggiore (Ligura),Scuba diving,Roberto Piaviali,M,,"No injury, shark ""harassed"" him at depth of 5 m",N,,3 m [10'] white shark,MEDSAF,1983.06.15-Piaviali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.15-Piaviali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.15-Piaviali.pdf,1983.06.15,1983.06.15,3280,, +1983.06.00,Jun-83,1983,Unprovoked,BAHAMAS,Berry Islands,Whale Cay,Spearfishing,Carl Starling,M,,Lacerations to thigh & buttocks,N,17h00,Caribbean reef shark,"E. Pace, FSAF & M. Levine, GSAF",1983.06.00-Starling,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.00-Starling,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.00-Starling,1983.06.00,1983.06.00,3279,, +1983.05.31,31-May-83,1983,Unprovoked,USA,Florida,"Intracoastal Waterway, Boca Raton, Palm Beach County",Water-skiing,Andrew Swersky ,M,21,"Left calf, knee & hands lacerated",N,Dusk,6' shark,"E. Pace; Miami Herald, 6/2/1983, p.10A",1983.05.31-Swersky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.05.31-Swersky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.05.31-Swersky.pdf,1983.05.31,1983.05.31,3278,, +1983.05.24,24-May-83,1983,Unprovoked,USA,Florida," Riviera Beach, Palm Beach County",Surfing,Dave Coulter,M,15,"Knocked off board by shark, no injury",N,,,"E. Pace, FSAF",1983.05.24-Coulter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.05.24-Coulter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.05.24-Coulter.pdf,1983.05.24,1983.05.24,3277,, +1983.05.21,21-May-83,1983,Unprovoked,USA,Florida,"Haulover Inlet, Dade County",Surfing,Jonathan Popper,M,22,Right foot bitten,N,14h00,,"The Palm Beach Post, 3/15/1989; Miami Herald, 5/22/1983 & 3/15/1989",1983.05.21-Popper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.05.21-Popper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.05.21-Popper.pdf,1983.05.21,1983.05.21,3276,, +1983.04.19,19-Apr-83,1983,Unprovoked,USA,Florida,,Surfing,Arnold Schwarzwood,M,,No details,UNKNOWN,,,"M. Vorenberg, GSAF",1983.04.19-NV-Schwarzwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.19-NV-Schwarzwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.19-NV-Schwarzwood.pdf,1983.04.19,1983.04.19,3275,, +1983.04.12,12-Apr-83,1983,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Bonza Bay,Fishing,Peter S. Venter,M,27,Puncture wounds to foot,N,19h30,"Raggedtooth shark, 1.5 m [5'] (tooth fragment recovered)","R. Horn, East London Aquarium; Natal Witness, 4/14/1983",1983.04.12-Venter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.12-Venter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.12-Venter.pdf,1983.04.12,1983.04.12,3274,, +1983.04.02.b,02-Apr-83,1983,Unprovoked,USA,Florida,"Lake Worth Beach, Palm Beach County",Surfing,Mark Steins,M,16,Left foot bitten,N,11h00,,"Miami Herald, 4/3/1983, p.2D",1983.04.02.b-MarkSteins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.02.b-MarkSteins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.02.b-MarkSteins.pdf,1983.04.02.b,1983.04.02.b,3273,, +1983.04.02.a,02-Apr-83,1983,Invalid,SOUTH AFRICA,KwaZulu-Natal,Mpande,,white male,M,,Survived,N,,,"Unverified report, NSB",1983.04.02.a-Mapande.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.02.a-Mapande.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.02.a-Mapande.pdf,1983.04.02.a,1983.04.02.a,3272,, +1983.03.30.a,30-Mar-83,1983,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Scottburgh,Spearfishing,Warren Johnson,M,17,Right calf lacerated,N,11h15,1.8 m [6'] Zambezi shark,"W. Johnson, M. Levine, GSAF; G. Charter, B. Davis, G. Cliff, NSB; T. Wallett, pp.65-66",1983.03.30.a-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.30.a-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.30.a-Johnson.pdf,1983.03.30.a,1983.03.30.a,3271,, +1983.03.22,22-Mar-83,1983,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Surfing,Ian Johnson,M,,"No injury, board bitten",N,12h30,Blacktip or spinner shark,"G. Cliff, NSB",1983.03.22-IanJohnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.22-IanJohnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.22-IanJohnson.pdf,1983.03.22,1983.03.22,3270,, +1983.03.10,10-Mar-83,1983,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Surfing,Dave Lowen,M,,"Shark nudged board, no injury",N,,,"M. Vorenberg, GSAF",1983.03.10-Lowen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.10-Lowen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.10-Lowen.pdf,1983.03.10,1983.03.10,3269,, +1983.03.00,Mar-83,1983,Unprovoked,NEW CALEDONIA,Loyalty Islands,"We, Lifou",,a teenager,,,Calf bitten,N,,"""a small shark""",W. Leander,1983.03.00-teenager-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.00-teenager-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.00-teenager-NewCaledonia.pdf,1983.03.00,1983.03.00,3268,, +1983.02.20,20-Feb-83,1983,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Mtunzini,Paddleskiing,Peter Swart,M,16,Puncture wounds to buttocks,N,12h30,3 m [10'] shark,"G. Charter, B. Davis & G. Cliff; Natal Mercury 2/22/1983",1983.02.20-Swart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.02.20-Swart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.02.20-Swart.pdf,1983.02.20,1983.02.20,3267,, +1983.01.24,24-Jan-83,1983,Provoked,USA,South Carolina,60 miles southeast of Beaufort,Fishing,Chandler Wynn,M,43,Leg bitten by captive shark PROVOKED INCIDENT,N,,,"Wilmington MorningStar, 1/25/1983",1983.01.24-Wynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.24-Wynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.24-Wynn.pdf,1983.01.24,1983.01.24,3266,, +1983.01.15,15-Jan-83,1983,Invalid,SOUTH AFRICA,KwaZulu-Natal,Amanzimtoti,,black male,M,,FATAL,Y,,,"G. Cliff & B. Davis, NSB",1983.01.15-Amanzimtoti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.15-Amanzimtoti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.15-Amanzimtoti.pdf,1983.01.15,1983.01.15,3265,, +1983.01.10,10-Jan-83,1983,Unprovoked,SOUTH AFRICA,Western Cape Province,Muizenberg,Windsurfing,Richard Crewe,M,22,Left foot lacerated,N,18h15,,"Mrs. Crewe, B. Lipschitz, M. Levine, GSAF",1983.01.10-Crewe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.10-Crewe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.10-Crewe.pdf,1983.01.10,1983.01.10,3264,, +1983.01.08,08-Jan-83,1983,Unprovoked,SOUTH AFRICA,Western Cape Province,Holbaai,Spearfishing,Philip DeBruyn,M,32,"No injury, rammed by shark",N,13h00,White shark,"P. deBruyn, M. Levine, GSAF",1983.01.08-DeBruyn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.08-DeBruyn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.08-DeBruyn.pdf,1983.01.08,1983.01.08,3263,, +1983.00.00.d,Ca. 1983,1983,Unprovoked,,English Channel,,Swimming,Padma Shri Taranath Narayan Shenoy,M,,Left leg bitten,N,,,"Times of India, 2/5/2012",1983.00.00.d-Shenoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.00.00.d-Shenoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.00.00.d-Shenoy.pdf,1983.00.00.d,1983.00.00.d,3262,, +1983.00.00.c,1983,1983,Unprovoked,VANUATU,Malampa Province,"Off the beach opposite Atchin Island, Malakula",Ran into the water,Swedish tourist,M,,"FATAL, arm/shoulder severed ",Y,,,S. Combs,1983.00.00.c-SwissTourist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.00.00.c-SwissTourist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.00.00.c-SwissTourist.pdf,1983.00.00.c,1983.00.00.c,3261,, +1983.00.00.b,1983,1983,Provoked,USA,North & South Carolina,,Fishing,Commercial fishermen,M,,Bitten on their feet by landed sharks / lacerations only PROVOKED INCIDENTS,N,,Blue sharks,F. Schwartz,1983.00.00.b-Carolina-Fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.00.00.b-Carolina-Fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.00.00.b-Carolina-Fishermen.pdf,1983.00.00.b,1983.00.00.b,3260,, +1982.11.00,Nov-82,1982,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",In waist-deep water,male,M,,Arm bitten,N,,, F. Schwartz,1982.11.00-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.11.00-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.11.00-male.pdf,1982.11.00,1982.11.00,3259,, +1982.10.13,13-Oct-82,1982,Unprovoked,USA,Florida,North Dade- Interama area of Biscayne Bay,Windsurfing,Rob Savanello ,M,26,Left foot lacerated,N,11h00,1.5 m [5'] shark,"P. Hamm, Miami Herald, 10/15/1982",1982.10.13-Savanello.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.10.13-Savanello.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.10.13-Savanello.pdf,1982.10.13,1982.10.13,3258,, +1982.09.30.b,30-Sep-82,1982,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon, East London",Surfing,Russell Lindsay,M,16,"No injury, pressure ding on surfboard",N,16h00,,"R. Horn, E.L. Aquarium",1982.09.30.b-Lindsay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.30.b-Lindsay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.30.b-Lindsay.pdf,1982.09.30.b,1982.09.30.b,3257,, +1982.09.30.a,30-Sep-82,1982,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon, East London",Surfing,Howard Fawkes,M,16,"No Injury, surfboard bitten",N,14h50,"Believed to involve a 2.8 m [9'3""] white shark","M. Levine, GSAF; R. Horn, E.L. Aquarium; T. Wallett, p.46-47",1982.09.30.a-Fawkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.30.a-Fawkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.30.a-Fawkes.pdf,1982.09.30.a,1982.09.30.a,3256,, +1982.09.27,27-Sep-82,1982,Unprovoked,USA,Florida,"Patrick Air Force Base, Brevard County",Surfing,John Cibelli,M,20,Laceration to lower left leg,N,13h30,1.5 m [5'] shark,"Miami Herald, 9/28/1982",1982.09.27-Cibelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.27-Cibelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.27-Cibelli.pdf,1982.09.27,1982.09.27,3255,, +1982.09.25,25-Sep-82,1982,Unprovoked,USA,California,"Monastery Beach, Carmel Bay, Monterey County",Diving,Bruce Lang,M,36,Lacerations to hand,N,Morning,White shark,R. Collier,1982.09.25-Lang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.25-Lang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.25-Lang.pdf,1982.09.25,1982.09.25,3254,, +1982.09.19,19-Sep-82,1982,Unprovoked,USA,California,"Bear Harbor, Mendocino County",Free diving for abalone from Zodiac (submerged),Michael J. Herder,M,28,Upper left thigh & buttocks bitten,N,14h30,5 m to 6 m [16.5' to 20'] white shark,"R.N. Lea & D. Miller; Herder, p. 1-3; R. Collier, pp.89-91; A. MacCormick, pp.80-81",1982.09.19-Herder_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.19-Herder_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.19-Herder_Collier.pdf,1982.09.19,1982.09.19,3253,, +1982.09.04,04-Sep-82,1982,Invalid,USA,Florida,"Hollywood Beach, Broward County",,male,M,mid-20s,"Remains recovered from shark, but shark involvement prior to death unknown",Y,,"Tiger shark, 2.7 m [9'5""], 364-lb","Z. Arocha, Miami Herald, 9/5/1982",1982.09.04-Remains-TigerShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.04-Remains-TigerShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.04-Remains-TigerShark.pdf,1982.09.04,1982.09.04,3252,, +1982.08.29.c,29-Aug-82,1982,Unprovoked,JAPAN,Kumamoto Prefecture,Ariake Bay,,Yako Yajima,M,,FATAL,Y,,,K. Nakaya,1982.08.29.c-Yajima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.29.c-Yajima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.29.c-Yajima.pdf,1982.08.29.c,1982.08.29.c,3251,, +1982.08.29.b,29-Aug-82,1982,Invalid,USA,California,"Morro Rock, Morro Bay, San Obispo County",Surfing,John Buchanan,M,17,"No Injury, board bitten",N,10h20,Questionable incident; reported as shark attack but thought to involve a pinniped instead ,"R.N. Lea & D. Miller; R. Collier, pp.87-89 ",1982.08.29.b-Buchanan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.29.b-Buchanan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.29.b-Buchanan.pdf,1982.08.29.b,1982.08.29.b,3250,, +1982.08.29.a,29-Aug-82,1982,Unprovoked,SOUTH AFRICA,Western Cape Province,Langebaan,Swimming,Verenia Keet,F,18,"Left knee, lower leg & foot bitten",N,12h00,,"V. Keet, M. Levine, GSAF",1982.08.29.a-Keet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.29.a-Keet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.29.a-Keet.pdf,1982.08.29.a,1982.08.29.a,3249,, +1982.08.00,Late Aug-1982,1982,Unprovoked,TUNISIA,,"Skanes, near Monaster",Windsurfing,"male, a teen",M,,Thigh lacerated,N,,"2.1 m [7'] shark, possibly a spinner shark",MEDSAF,1982.08.00-Tunisia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.00-Tunisia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.00-Tunisia.pdf,1982.08.00,1982.08.00,3248,, +1982.07.31,31-Jul-82,1982,Invalid,SOUTH AFRICA,KwaZulu-Natal,Amanzimtoti,Boogie boarding,Riaan van Rensburg,M,20,"No injury, swim fin bitten",N,16h00,,"M. Levine, GSAF",1982.07.31-VanRensburg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.31-VanRensburg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.31-VanRensburg.pdf,1982.07.31,1982.07.31,3247,, +1982.07.24.b,24-Jul-82,1982,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon, East London",Paddleskiing,Brian �Archie� Plumb,M,38,"No injury, ski bitten",N,16h00,"2.4 m [8'] white shark, species identity confirmed by tooth fragment","B. Plumb, M. Levine, GSAF; R. Horn, E.L. Aquarium; T. Wallett, p.46",1982.07.24.b-Plumb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.24.b-Plumb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.24.b-Plumb.pdf,1982.07.24.b,1982.07.24.b,3246,, +1982.07.24.a,24-Jul-82,1982,Unprovoked,USA,California,"Point Buchon, San Luis Obispo County",Paddle Boarding,Casimir Pulaski,M,26,"No Injury, board bitten",N,11h00,4.5 m to 5.5 m [14.7' to 18'] white shark,"R.N. Lea & D. Miller; R. Collier, pp.86-87; G. Ambrose, pp.113-120",1982.07.24.a-Pulaski_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.24.a-Pulaski_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.24.a-Pulaski_Collier.pdf,1982.07.24.a,1982.07.24.a,3245,, +1982.07.19,19-Jul-82,1982,Unprovoked,USA,Florida,"Stuart Beach, Martin County ",Swimming,Jonathan Orth,M,17,Left ankle bitten,N,Late afternoon,0.9 m to 1.2 m [3' to 4'] shark,"Miami Herald, 7/21/1982, p.1D",1982.07.19-Orth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.19-Orth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.19-Orth.pdf,1982.07.19,1982.07.19,3244,, +1982.07.11, 11-Jul-1982,1982,Invalid,USA,California,"Malibu, Los Angeles County",Swimming,Gerald Winkle,M,43,Laceration to left thigh,N,,"Reported as a shark attack, the story was a hoax","Chronicle Telegram, 7/12/1982, p.A4; Daily Herald , 7/13/1982",1982.07.11-Winkle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.11-Winkle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.11-Winkle.pdf,1982.07.11,1982.07.11,3243,, +1982.07.01,01-Jul-82,1982,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Swimming,Janet Babb,F,19,Laceration to left leg,N,14h30,,"Daytona Beach Morning Journal, 7/2/1982",1982.07.01-Babb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.01-Babb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.01-Babb.pdf,1982.07.01,1982.07.01,3242,, +1982.07.00,Jul-82,1982,Unprovoked,NEW CALEDONIA,South Province,"Sarcelle, Isle of Pines",,Rene Bull,,,Left arm bitten,N,,,W. Leander,1982.07.00-Bull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.00-Bull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.00-Bull.pdf,1982.07.00,1982.07.00,3241,, +1982.06.29,29-Jun-82,1982,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Ntlonyana Bay,Surfing,Alex Macun,M,27,FATAL,Y,09h30,"2.4 m [8'] white shark, species identity confirmed by witnesses & tooth pattern in surfboard","M. Levine, GSAF; R.B. Wilson, B. Davis, NSB; T. Wallett, p.46",1982.06.29-Macun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.29-Macun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.29-Macun.pdf,1982.06.29,1982.06.29,3240,, +1982.06.26.b,26-Jun-82,1982,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Swimming,Murray Branson,M,20,Left arm bitten,N,16h30,5' shark,"Chillicothe Constitution Tribune, 6/30/1982",1982.06.26.b-Branson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.26.b-Branson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.26.b-Branson.pdf,1982.06.26.b,1982.06.26.b,3239,, +1982.06.26.a,26-Jun-82,1982,Unprovoked,BAHAMAS,Andros Islands,North Rat Cay Reef,Spearfishing ,Philip Sweeting,M,19,Arm severed at elbow,N,,"Lemon shark, 2 m [6'9""]","R. Attrill; R.D. Weeks, GSAF",1982.06.26.a-Sweeting.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.26.a-Sweeting.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.26.a-Sweeting.pdf,1982.06.26.a,1982.06.26.a,3238,, +1982.06.25, 25-Jun-1982,1982,Unprovoked,USA,Florida,"Ormond Beach / Daytona Beach, Volusia County",,Tara Dean,F,8,Foot bitten,N,11h00,,"Wellsboro Gazette, 6/30/1982",1982.06.25-TaraDean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.25-TaraDean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.25-TaraDean.pdf,1982.06.25,1982.06.25,3237,, +1982.06.13,13-Jun-82,1982,Unprovoked,USA,Hawaii,"Ho'okipa Beach, Pa'ia, Maui","Sailboarding, fell into water 100 yards outside the breakwater",Scott Shoemaker,M,,Thigh bitten 3 times,N,,"1.2 m to 1.5 m [4' to 5'] ""reef shark""","J. Borg, p.76; L. Taylor (1993), pp.106-107; Windsurfing Magazine, Sept/Oct 1993",1982.06.13-Shoemaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.13-Shoemaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.13-Shoemaker.pdf,1982.06.13,1982.06.13,3236,, +1982.05.00,May-82,1982,Invalid,USA,South Carolina,"Daws Island, Broad River (near Beaufort)",,"female, possibly victim of a small plane crash in the vicinity",F,Ca. 33,Human remains recovered,Y,,Tiger shark,"Clay Creswell, GSAF",1982.05.00-HumanRemains.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.05.00-HumanRemains.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.05.00-HumanRemains.pdf,1982.05.00,1982.05.00,3235,, +1982.03.10,10-Mar-82,1982,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Surfing,Matthew McGrath,M,16,Elbow bitten,N,14h00,,"M. Vorenberg, GSAF",1982.03.10-McGrath.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.03.10-McGrath.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.03.10-McGrath.pdf,1982.03.10,1982.03.10,3234,, +1982.03.07,07-Mar-82,1982,Unprovoked,AUSTRALIA,New South Wales,"Tallow Beach, Byron Bay",Surfing,Allan Ford,M,20,Legs bitten FATAL,Y,12h00,,"A. Sharpe, pp.4, 86-87",1982.03.07-AllenFord.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.03.07-AllenFord.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.03.07-AllenFord.pdf,1982.03.07,1982.03.07,3233,, +1982.03.00,Mar-82,1982,Unprovoked,NEW CALEDONIA,,,Spearfishing,Gaston Torii,,,Arm bitten,N,,,W. Leander,1982.03.00-Torii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.03.00-Torii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.03.00-Torii.pdf,1982.03.00,1982.03.00,3232,, +1982.02.28,28-Feb-82,1982,Unprovoked,AUSTRALIA,Tasmania,South Cape Bay,Spearfishing,Geert Talen,M,32,"FATAL, body not recovered",Y,,5.5 m [18''] white shark,"C. Black, pp. 159-163",1982.02.28-Talen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.28-Talen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.28-Talen.pdf,1982.02.28,1982.02.28,3231,, +1982.02.27,27-Feb-82,1982,Unprovoked,USA,Florida,"Hobe Sound, Palm Beach County",Surfing,Richard Bauer,M,18,Lacerations to left hand and forearm,N,,4' to 5' shark,"Palm Beach Post, 3/2/1982 ",1982.02.27-Bauer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.27-Bauer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.27-Bauer.pdf,1982.02.27,1982.02.27,3230,, +1982.02.17,17-Feb-82,1982,Provoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Fishing,J. Jordaan,M,,Leg bitten above ankle by hooked shark taken aboard skiboat PROVOKED INCIDENT,N,,,"Mossel Bay Advertiser, 2/19/1982",1982.02.17-Jordaan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.17-Jordaan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.17-Jordaan.pdf,1982.02.17,1982.02.17,3229,, +1982.02.14.b,14-Feb-82,1982,Unprovoked,USA,Hawaii,"White Plains Beach, Barbers Point, O'ahu",Wading,Lisa Miller,F,,Left leg bitten,N,,,"J. Borg, p.75; L. Taylor (1993), pp.104-105",1982.02.14.b-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.14.b-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.14.b-Miller.pdf,1982.02.14.b,1982.02.14.b,3228,, +1982.02.14.a,14-Feb-82,1982,Unprovoked,USA,Hawaii,"White Plains Beach, Barbers Point, O'ahu",Swimming,female,F,,Right foot bitten,N,,,"J. Borg, p.75; L. Taylor (1993), pp.104-105",1982.02.14.a-WhitePlainsBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.14.a-WhitePlainsBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.14.a-WhitePlainsBeach.pdf,1982.02.14.a,1982.02.14.a,3227,, +1982.02.13,13-Feb-82,1982,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Swimming,Gladys Sackville,F,75,Shark-bitten body found floating 1.5 miles offshore. Bruises suggested she may have been bitten by the shark before drowning,Y,Prior to 10h37,,"M. Vorenberg, GSAF",1982.02.13-Sackville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.13-Sackville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.13-Sackville.pdf,1982.02.13,1982.02.13,3226,, +1982.02.07.a,07-Feb-82,1982,Unprovoked,USA,California,"Stillwater Cove, Sonoma County",Scuba diving (submerged),"Donald ""Harvey"" Smith",M,,Calf & ankle bitten,N,11h00,5 m [16.5'] white shark,"R.N. Lea & D. Miller; R. Collier, p.86",1982.02.07.a-Smith_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.07.a-Smith_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.07.a-Smith_Collier.pdf,1982.02.07.a,1982.02.07.a,3225,, +1982.02.07..b,07-Feb-82,1982,Unprovoked,USA,Florida,Elliot Key,Diving,Kim Seibel ,M,29,"FATAL Disappeared while diving, bathing suit & diving gear recovered bore marks of shark's teeth",Y,,,"Miami Herald, 9/5/1982, p.1B",1982.02.07.b-Seibel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.07.b-Seibel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.07.b-Seibel.pdf,1982.02.07..b,1982.02.07..b,3224,, +1982.01.29,29-Jan-82,1982,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Mpekeweni,Swimming,Jeffrey Phillips-Page,M,20,Right shin & toe lacerated,N,16h30,Raggedtooth shark,"J. Phillips-Page, M. Levine, GSAF",1982.01.29-Phillips-Page.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.01.29-Phillips-Page.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.01.29-Phillips-Page.pdf,1982.01.29,1982.01.29,3223,, +1982.00.00.c,1982,1982,Boat,ITALY,Tyrrhenian Sea,"Lacona, Isola d'Elba",Boat,Giovanni Vuoso,M,,No details,UNKNOWN,,6 m [20'] white shark,"A. De Maddalena; Perfetti (1989), M. Zuffa (pers. Comm.)",1982.00.00.c-boat-Vuoso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.00.00.c-boat-Vuoso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.00.00.c-boat-Vuoso.pdf,1982.00.00.c,1982.00.00.c,3222,, +1982.00.00.b,1982,1982,Boat,ITALY,Tyrrhenian Sea,"Biodola, Isola d'Elba",Fishing on a boat,Giuseppe Campodonico,M,,No injury,N,,White shark,"A. De Maddalena; Perfetti (1989), M. Zuffa (pers. Comm.)",1982.00.00.b-Campodonico.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.00.00.b-Campodonico.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.00.00.b-Campodonico.pdf,1982.00.00.b,1982.00.00.b,3221,, +1982.00.00.a,1982,1982,Unprovoked,TUNISIA,Biserta,Bechateur,Spearfishing,English holiday-maker,,,No details,UNKNOWN,,,MEDSAF,1982.00.00.a-Tunisia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.00.00.a-Tunisia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.00.00.a-Tunisia.pdf,1982.00.00.a,1982.00.00.a,3220,, +1981.12.19,19-Dec-81,1981,Unprovoked,USA,California,"South Moss Beach, Spanish Bay, Monterey Peninsula",Surfing,Lewis Boren,M,24,"FATAL, torso bitten ",Y,Evening,7 m [23'] white shark,"R.N. Lea & D. Miller; R. Collier, pp.84-85; A. MacCormick, p.220",1981.12.19-Boren_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.12.19-Boren_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.12.19-Boren_Collier.pdf,1981.12.19,1981.12.19,3219,, +1981.12.13.b,13-Dec-81,1981,Unprovoked,AUSTRALIA,Queensland,Green Island,,Zola Dale,,,Abdomen lacerated,N,,,"R. McKenzie, Sunday Mail, 9/6/1987, p.11",1981.12.13.b-NV-ZolaDale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.12.13.b-NV-ZolaDale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.12.13.b-NV-ZolaDale.pdf,1981.12.13.b,1981.12.13.b,3218,, +1981.12.13.a,13-Dec-81,1981,Unprovoked,USA,Hawaii,"Nimitz Beach, Barbers Point, O'ahu","Spearfishing, but swimming on surface",Melvin T. Toma,M,,Right leg severely bitten,N,,"Tiger shark, 3.7 m [12']","J. Borg, p.75; L. Taylor (1993), pp.104-105",1981.12.13.a-Toma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.12.13.a-Toma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.12.13.a-Toma.pdf,1981.12.13.a,1981.12.13.a,3217,, +1981.11.30,30-Nov-81,1981,Unprovoked,REUNION,Saint-Philippe,Vicendo,Spearfishing,Lucien Mercier,M,,Survived,N,Late afternoon,,G. Van Grevelynghe,1981.11.30-Mercier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.11.30-Mercier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.11.30-Mercier.pdf,1981.11.30,1981.11.30,3216,, +1981.10.19.b,19-Oct-81,1981,Provoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Inspecting teeth of supposedly dead (hooked & shot) shark,Callie Van Aswegan,M,,Hand lacerated PROVOKED INCIDENT,N,,"3.5 m [11.5'], 510-kg [1125-lb] hooked & shot white shark","M. Levine, GSAF",1981.10.19.b-VanAswegan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.19.b-VanAswegan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.19.b-VanAswegan.pdf,1981.10.19.b,1981.10.19.b,3215,, +1981.11.09,09-Nov-81,1981,Unprovoked,USA,Hawaii,"La'au Point, Moloka'i",Diving to untangle a crab trap line from boat's propeller,Leo A. Ohai,M,59,Hand bitten,N,,"2.1 m [7'] shark with ""a very flat head� that had followed the boat for 3 days","J. Borg, p.75; L. Taylor (1993), pp.104-105",1981.11.09-Ohai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.11.09-Ohai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.11.09-Ohai.pdf,1981.11.09,1981.11.09,3214,, +1981.10.19.a,19-Oct-81,1981,Unprovoked,USA,Florida,"Jupiter Island, Brevard County",Swimming,Van Horn Ely,M,19,Hand & forearm bitten,N,11h30,1.8 m to 2.4 m [6' to 8'] shark,"Chronicle Telegram, 10/20/1981 ",1981.10.19.a-VanHornEly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.19.a-VanHornEly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.19.a-VanHornEly.pdf,1981.10.19.a,1981.10.19.a,3213,, +1981.10.17,17-Oct-81,1981,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Surfing,Robert Conklin,M,,No details,UNKNOWN,09h45,,"M. Vorenberg, GSAF",1981.10.17-NV-Conklin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.17-NV-Conklin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.17-NV-Conklin.pdf,1981.10.17,1981.10.17,3212,, +1981.10.16,16-Oct-81,1981,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,Robert Keifling,M,17,Puncture wounds to left foot,N,,,"The Bulletin, 10/19/1981",1981.10.16-Keifling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.16-Keifling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.16-Keifling.pdf,1981.10.16,1981.10.16,3211,, +1981.10.01,01-Oct-81,1981,Unprovoked,USA,Florida,"Playalinda Beach, Brevard County",Surfing,Scott Armstrong,M,24,Laceration to right leg,N,,6' shark,"St. Petersburg Times, 10/3/1981",1981.10.01-Armstrong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.01-Armstrong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.01-Armstrong.pdf,1981.10.01,1981.10.01,3210,, +1981.09.28,28-Sep-81,1981,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,Stan Wing,M,28,5 puncture marks to hip,N,18h00,,"St. Petersburg Times, 10/1/1981",1981.09.28-Wing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.28-Wing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.28-Wing.pdf,1981.09.28,1981.09.28,3209,, +1981.09.27,27-Sep-81,1981,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,James Smodell,,,Lacerations to right hand,N,,,"Sarasota Herald-Tribune, 9/29/1981",1981.09.27-Smodell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.27-Smodell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.27-Smodell.pdf,1981.09.27,1981.09.27,3208,, +1981.09.15,15-Sep-81,1981,Unprovoked,USA,Florida,"Tampa Bay, Manatee County",Swimming,Mark Meeker,M,26,"FATAL, right calf bitten ",Y,P.M.,Said to involve a tiger shark or a hammerhead shark,"S. Pelham, M.D.; NY Times, 9/21/1981, p.18, col.1; E. Pace, FSAF",1981.09.15-Meeker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.15-Meeker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.15-Meeker.pdf,1981.09.15,1981.09.15,3207,, +1981.09.03.b,03-Sep-81,1981,Unprovoked,USA,Florida,"Patrick Air Force Base, Brevard County",Surfing,Richard Corrack,M,25,Lacerations to 2 fingers of left hand,N,12h00,,"St Petersburg Times, 9/5/1981",1981.09.03.b-Corrack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.03.b-Corrack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.03.b-Corrack.pdf,1981.09.03.b,1981.09.03.b,3206,, +1981.09.03.a,03-Sep-81,1981,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,Douglas Christie,M,24,Laceration to foot,N,Morning,,"St Petersburg Times, 9/5/1981",1981.09.03.a-Christie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.03.a-Christie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.03.a-Christie.pdf,1981.09.03.a,1981.09.03.a,3205,, +1981.08.29,29-Aug-81,1981,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Stephen Drosdick,M,15,Laceration to left ankle,N,,6' shark,"Pacific Stars and Stripes, 8/31/1981 ",1981.08.29-Drosdick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.29-Drosdick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.29-Drosdick.pdf,1981.08.29,1981.08.29,3204,, +1981.08.24.b,24-Aug-81,1981,Provoked,USA,Florida,Gulf Island National Seashore Park,Spearfishing,Ted Best,M,19,"Shot shark, then it bit him. Puncture wounds on leg PROVOKED INCIDENT",N,,"1.8 m [6'] shark, species identity questionable","A. MacCormick, pp.82-83, citing the New Orleans Times-Picayune, 8/25/1981",1981.08.24.b-Best.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.24.b-Best.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.24.b-Best.pdf,1981.08.24.b,1981.08.24.b,3203,, +1981.08.24.a,24-Aug-81,1981,Invalid,USA,Hawaii,"Keaukaha, Hilo, Hawai'i",Fishing,Ernest Watson,M,,Disappeared while fishing from shore. Leg found 7 days later wedged in rocks 150 yards offshore,Y,,Shark involvement prior to death remains unconfirmed,"J. Borg, p.75; L. Taylor (1993), pp.104-105",1981.08.24.a-Watson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.24.a-Watson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.24.a-Watson.pdf,1981.08.24.a,1981.08.24.a,3202,, +1981.08.10.b,10-Aug-81,1981,Unprovoked,USA,Florida,"Marathon, Monroe County",Diving,Mike Barber,M,,Bite to face,N,,small nurse shark,"E. Pace, FSAF",1981.08.10.b-Barber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.10.b-Barber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.10.b-Barber.pdf,1981.08.10.b,1981.08.10.b,3201,, +1981.08.10.a,10-Aug-81,1981,Unprovoked,USA,Florida,"Ormond Beach / Daytona Beach, Volusia County","16' catamaran capsized previous night, occupants stayed with wreckage until morning, then attempted to swim ashore",Christy Wapniarski,F,19,FATAL,Y,Daybreak,,"E. Pace, GSAF; J. McAniff, SAF; A. MacCormick, pp.12 & 13; Orlando Sentinel, 12/6/1985; K Duffy, Daytona Beach News Journal, 8/26/2001",1981.08.10.a-Wapniarski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.10.a-Wapniarski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.10.a-Wapniarski.pdf,1981.08.10.a,1981.08.10.a,3200,, +1981.08.07,07-Aug-81,1981,Unprovoked,BAHAMAS,Grand Bahama Island,"Gingerbread Reef, east of Little Isaac Island ",Snorkeling on surface,Robert Marx,M,53,Upper right arm bitten,N,12h00,Mako shark (tooth fragments recovered),"R. Marx, E. Clark; M. Levine, GSAF; Note: Marx says the incident took place in 8/8/1982 or 1983",1981.08.07-Marx.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.07-Marx.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.07-Marx.pdf,1981.08.07,1981.08.07,3199,, +1981.07.20,20-Jul-81,1981,Unprovoked,USA,Florida,"St. Petersburg Beach, Pinellas County",Swimming,Lisa Drenko,F,16,"Foot bitten between arch & big toe, no stitches required",N,,"""sandshark""","E. Pace, GSAF",1981.07.20-NV-Drenko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.20-NV-Drenko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.20-NV-Drenko.pdf,1981.07.20,1981.07.20,3198,, +1981.07.18,18-Jul-81,1981,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Surfing,Barry Van Der Helm,M,32,7 lacerations to right foot,N,10h15,Possibly a 1.8 m [6'] Zambezi shark,"B. V.D. Helm; R. Horn; M. Levine, GSAF",1981.07.18-vanderHelm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.18-vanderHelm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.18-vanderHelm.pdf,1981.07.18,1981.07.18,3197,, +1981.07.07,07-Jul-81,1981,Unprovoked,USA,Florida,Carter Cay,Spearfishing,Ed Cannette,M,,Left foot & ankle lacerated,N,18h10,2.4 m [8'] shark,"E. Pace, GSAF",1981.07.07-NV-Cannette.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.07-NV-Cannette.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.07-NV-Cannette.pdf,1981.07.07,1981.07.07,3196,, +1981.07.01,01-Jul-81,1981,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Clansthal,Catching sardines,John Wilson,M,,Laceration to calf,N,,"""gray shark""","Chronicle Telegram, 7/1/1981",1981.07.01-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.01-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.01-Wilson.pdf,1981.07.01,1981.07.01,3195,, +1981.06.15.R,Reported 15-Jun-1981,1981,Boat,ENGLAND,,Isle of Wight,Fishing,2 fishermen,M,,Minor injuries from shark that leapt aboard their boat,N,,"13', 400-lb thresher shark","The Times (London), 6/15/1981",1981.06.15.R-Isle-of-Wight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.06.15.R-Isle-of-Wight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.06.15.R-Isle-of-Wight.pdf,1981.06.15.R,1981.06.15.R,3194,, +1981.06.12,12-Jun-81,1981,Invalid,USA,Hawaii,"Honoli'i Pali, Hilo Bay ('Alae Point), Hawai'i",,Preston D. Soley,M,,"Probable drowning, 1/3 of shark-multilated body recovered",Y,,1.2 m [4'] shark hindered recovery of body,"J. Borg, p.74; L. Taylor (1993), pp.104-105",1981.06.12-Soley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.06.12-Soley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.06.12-Soley.pdf,1981.06.12,1981.06.12,3193,, +1981.05.24,24-May-81,1981,Unprovoked,USA,Hawaii,"Ha'ena Beach Park, Kaua'i","Scuba diving, reportedly also spearfishing",Roger B. Garletts,M,,"FATAL, disappeared, dive gear & shredded tooth-marked wetsuit were recovered",Y,,,"J. Borg, p.87; L. Taylor (1993), pp.104-105",1981.05.24-Garletts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.24-Garletts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.24-Garletts.pdf,1981.05.24,1981.05.24,3192,, +1981.05.23,23-May-81,1981,Unprovoked,SOUTH KOREA,Chungnam,Wae-yeon Island,Shell diving,Pak Kyong-sun ,F,27,FATAL,Y,12h30,6 m white shark,Y. Choi & K. Nakaya,1981.05.23-Pak-Kyong-sun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.23-Pak-Kyong-sun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.23-Pak-Kyong-sun.pdf,1981.05.23,1981.05.23,3191,, +1981.05.20,20-May-81,1981,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Surfing,Mark Jury,M,27,"Shark & board collided. No injury, but board was dented",N,08h30,Raggedtooth shark,"M. Jury, M. Levine, GSAF",1981.05.20-Jury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.20-Jury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.20-Jury.pdf,1981.05.20,1981.05.20,3190,, +1981.05.19,19-May-81,1981,Unprovoked,USA,Florida,"Sands Cut, Elliot Key",Free diving,Mohammed Rahimnejad,M,32,Massive tissue damage of left arm,N,,,J. McAniff; Miami Herald 5/22/1981,1981.05.19-Rahimnejad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.19-Rahimnejad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.19-Rahimnejad.pdf,1981.05.19,1981.05.19,3189,, +1981.05.16,16-May-81,1981,Unprovoked,USA,Florida,"Jacksonville, Duval County",Diving,Carey Ford,M,,Left arm bitten,N,,Lemon shark,"E. Pace, FSAF",1981.05.16-NV-Ford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.16-NV-Ford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.16-NV-Ford.pdf,1981.05.16,1981.05.16,3188,, +1981.05.10,10-May-81,1981,Unprovoked,SOUTH AFRICA,Eastern Cape Province,King�s Beach,Surfing,John Dunser,M,19,"No Injury, board bitten",N,14h45,"Raggedtooth shark, 2.5 m [8.25'] ","M. Smale, PE Museum",1981.05.10-Dunser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.10-Dunser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.10-Dunser.pdf,1981.05.10,1981.05.10,3187,, +1981.05.07,07-May-81,1981,Provoked,NAMIBIA,Eronogo Region,Walvis Bay,Finning the shark that bit him,Crewman of Taiwanese tuna boat Sin Shih Ki II,M,,Lacerations PROVOKED INCIDENT,N,,,"M. Levine, GSAF; Natal Witness",1981.05.07.R-WalvisBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.07.R-WalvisBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.07.R-WalvisBay.pdf,1981.05.07,1981.05.07,3186,, +1981.03.08,08-Mar-81,1981,Sea Disaster,BERMUDA,,,Foundering of the Israeli freighter Mezada,,,,Next day 2 bodies recovered from sharks,N,,,"New York Times, 3/13/1981",1981.03.08-Mezada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.08-Mezada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.08-Mezada.pdf,1981.03.08,1981.03.08,3185,, +1981.05.05,05-May-81,1981,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Ntlonyane Bay,Surfing,Simon Hammerton,M,24,"Left leg bitten, surgically amputated",N,09h00,"Tiger shark, 2.1 m [7']","S. Hammerton, M. Levine, GSAF; W. Pople, G. Charter, NSB",1981.05.05-Hammerton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.05-Hammerton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.05-Hammerton.pdf,1981.05.05,1981.05.05,3184,, +1981.03.25,25-Mar-81,1981,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Standing / Wading,Christopher J. Auditore,M,19,"Lacerations on calf, ankle & heel",N,15h00,"1.2 m to 1.5 m [4' to 5'] bull, sandbar or dusky shark",M. Vorenberg,1981.03.25-Auditore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.25-Auditore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.25-Auditore.pdf,1981.03.25,1981.03.25,3183,, +1981.03.24,24-Mar-81,1981,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Surfing,Robert Thomas,M,24,Puncture wounds on right thigh,N,17h30,C. maculpinnis or C. limbatus,M. Vorenberg,1981.03.24-Thomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.24-Thomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.24-Thomas.pdf,1981.03.24,1981.03.24,3182,, +1981.03.04,04-Mar-81,1981,Unprovoked,CHILE,Coquimbo,"Bahia Totoralillo, 80 km north of Coquimbo",Free diving Spearfishing,Carlos Veraga M.,M,,Foot & ankle bitten,N,10h30,White shark,J. McCosker & A.C. Engana,1981.03.04-Vergara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.04-Vergara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.04-Vergara.pdf,1981.03.04,1981.03.04,3181,, +1981.03.00,Mar-81,1981,Unprovoked,BRAZIL,Rio de Janeiro,Cabo Frio,Diving,,,,,UNKNOWN,,White shark,"Globo, ",1981.03.00-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.00-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.00-Brazil.pdf,1981.03.00,1981.03.00,3180,, +1981.02.19,19-Feb-81,1981,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umtentweni,Swimming,Richard Guy,M,30,Foot lacerated,N,17h20,Juvenile dusky or blacktip shark,"R. Guy, M. Levine, GSAF",1981.02.19-Guy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.19-Guy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.19-Guy.pdf,1981.02.19,1981.02.19,3179,, +1981.02.16,16-Feb-81,1981,Unprovoked,AUSTRALIA,Western Australia,"Leighton Beach, north of Freemantle",Exercising his dog in the shallows,Steven Fawcett,M,,Puncture wounds to foot,N,,1 m hammerhead shark,"A. Sharpe, p.134",1981.02.16-Fawcett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.16-Fawcett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.16-Fawcett.pdf,1981.02.16,1981.02.16,3178,, +1981.02.07,07-Feb-81,1981,Unprovoked,AUSTRALIA,Western Australia,"Parker's Point, Rottnest Island",,Filmer,,,No details,UNKNOWN,,,"T. Peake, GSAF",1981.02.07-NV-Filmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.07-NV-Filmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.07-NV-Filmer.pdf,1981.02.07,1981.02.07,3177,, +1981.02.02,02-Feb-81,1981,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Surfing,Michael A. Reist,M,15,Lacerations & punctures in left calf & ankle,N,13h30,1.8 m to 2.4 m [6' to 8'] hammerhead shark,M. Vorenberg,1981.02.02-Reist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.02-Reist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.02-Reist.pdf,1981.02.02,1981.02.02,3176,, +1981.02.00,Feb-81,1981,Unprovoked,BRAZIL,Rio de Janeiro,Cabo Frio,Spearfishing,,,,Left arm lacerated,N,,,O. Gadig,1981.02.00-CaboFrio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.00-CaboFrio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.00-CaboFrio.pdf,1981.02.00,1981.02.00,3175,, +1981.01.30,30-Jan-81,1981,Unprovoked,USA,Florida,20 miles from Mayport,Commercial spearfishing,Carey Ford,M,25,3 small punctures in scalp & ripped nostril,N,,Tiger shark,J. McAniff,1981.01.30-CareyFord.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.01.30-CareyFord.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.01.30-CareyFord.pdf,1981.01.30,1981.01.30,3174,, +1981.01.01,01-Jan-81,1981,Invalid,SOUTH AFRICA,KwaZulu-Natal,Widenham,Swimming,Moonsamy Dayalan,M,23,Probable drowning & scavenging,Y,,"Tiger shark, 1.5 m [5']k","W.O. Hutt; W. Pople, G. Charter, B. Davis, Natal Sharks Board",1981.01.01-Dayalan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.01.01-Dayalan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.01.01-Dayalan.pdf,1981.01.01,1981.01.01,3173,, +1981.00.00.b,1981,1981,Unprovoked,AUSTRALIA,New South Wales,Byron Bay,Surf-skiing,Warren Rowe,M,27,"No injury, ski bitten",N,07h00,"Tiger shark, 2.5 m ","Sunday Mail (QLD), 9/6/1987, p.10",1981.00.00.b-Rowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.00.00.b-Rowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.00.00.b-Rowe.pdf,1981.00.00.b,1981.00.00.b,3172,, +1981.00.00.a,Summer of 1981,1981,Unprovoked,GREECE,Pagasitikos Gulf,,"Free diving / spearfishing, ",an Austrian tourist,M,,Minor injury,N,,,M. Bardanis,1981.00.00.a-Austrian-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.00.00.a-Austrian-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.00.00.a-Austrian-diver.pdf,1981.00.00.a,1981.00.00.a,3171,, +1980.12.30,12-30-1980,1980,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Paddleskiing,Noel Yates,M,25,"No injury, paddleski bitten",N,17h15,3.5 m [11.5'] shark,"N. Yates, M. Levine, GSAF",1980.12.30-Yates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.12.30-Yates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.12.30-Yates.pdf,1980.12.30,1980.12.30,3170,, +1980.12.26,26-Dec-80,1980,Invalid,SOUTH AFRICA,Eastern Cape Province,Port Elizabeth,,male,,,Probable drowning & scavenging,Y,,,"Eastern Province Herald, 12/29/1980",1980.12.26-scavenging.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.12.26-scavenging.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.12.26-scavenging.pdf,1980.12.26,1980.12.26,3169,, +1980.11.24,24-Nov-80,1980,Unprovoked,REUNION,Grand'Anse,Petite-Ile,Spearfishing,Jean-Michel Pothin,M,22,Bitten twice,N,15h00,1.8 m [6'] white shark,G. Van Grevelynghe,1980.11.24-Pothin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.24-Pothin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.24-Pothin.pdf,1980.11.24,1980.11.24,3168,, +1980.11.18,18-Nov-80,1980,Unprovoked,AUSTRALIA,Western Australia,Lancelin,Swimming,"G.R. Bohan, an Able Seaman stationed on HMAS Stirling at Garden Island",M,,"Right shoulder bitten, puncture wounds on chest & lacerations on his back",N,,,"A. Sharpe, pp.133-134",1980.11.18-Bohan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.18-Bohan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.18-Bohan.pdf,1980.11.18,1980.11.18,3167,, +1980.11.17,17-Nov-80,1980,Invalid,SOUTH AFRICA,KwaZulu-Natal,Mnini,Swimming,Baba Sibaya,M,,Probable drowning & scavenging,Y,,,"W.O. Hutt; G. Charter, B. Davis, Natal Sharks Board",1980.11.17-BabaSibaya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.17-BabaSibaya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.17-BabaSibaya.pdf,1980.11.17,1980.11.17,3166,, +1980.11.11.,11-Nov-80,1980,Unprovoked,BRAZIL,Pernambuco,Piedade,Swimming,Ibson Gomes Vieira ,M,16,FATAL,Y,,,"JC Online, 6/25/2012",1980.11.11-Vieira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.11-Vieira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.11-Vieira.pdf,1980.11.11.,1980.11.11.,3165,, +1980.10.27,27-Oct-80,1980,Unprovoked,USA,Oregon,Off Umpqua River,Surfing,Christopher Cowan,M,29,Thigh lacerated,N,15h45,4 m to 5 m [13' to 16.5'] white shark,"R.N. Lea & D. Miller; R. Collier, pp.83-84",1980.10.27-Cowan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.10.27-Cowan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.10.27-Cowan_Collier.pdf,1980.10.27,1980.10.27,3164,, +1980.10.17,17-Oct-80,1980,Unprovoked,USA,California,"Moonstone Beach, Humboldt County",Surfing,Curt Vikan,M,19,No injury,N,09h30,4 m to 5 m [13' to 16.5'] white shark,"R. N. Lea & D. Miller; R. Collier, pp.82-83",1980.10.17-Vikan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.10.17-Vikan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.10.17-Vikan_Collier.pdf,1980.10.17,1980.10.17,3163,, +1980.08.22.R,Reported 22-Aug-1980,1980,Unprovoked,MEXICO,,,Diving in tuna net,Gerald Correria,M,22,FATAL,Y,,,"Valley Independent, 8/22/1980, p.16",1980.08.22.R-Correria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.22.R-Correria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.22.R-Correria.pdf,1980.08.22.R,1980.08.22.R,3162,, +1980.08.10,10-Aug-80,1980,Unprovoked,USA,North Carolina,"Ocean Isle, Brunswick County",Wading,Susan Waters,F,10,Bitten behind knee & lower leg,N,,,"Chronicle Telegram, 8/11/1980; F. Schwartz, p.23",1980.08.10-Waters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.10-Waters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.10-Waters.pdf,1980.08.10,1980.08.10,3161,, +1980.08.04,04-Aug-80,1980,Unprovoked,USA,Hawaii,"Puamana, Lahaina, Maui",Resting on body board,Mark Skidgel,M,,Torso bitten,N,,"Tiger shark, 4.3 m [14'] ","J. Borg, p.75; L. Taylor (1993), pp.104-105 - Note: SAF lists this as 8/10/1980",1980.08.04-Skidgel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.04-Skidgel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.04-Skidgel.pdf,1980.08.04,1980.08.04,3160,, +1980.07.26,26-Jul-80,1980,Unprovoked,SPAIN,Canary Islands,"San Juan de la Rambla, Tenerife",Skin diving,Fuentes Gonzalez Escualo ,M,,Thigh injured,N,,Blue shark,C. Moore,1980.07.26-Escualo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.26-Escualo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.26-Escualo.pdf,1980.07.26,1980.07.26,3159,, +1980.07.27,27-Jul-80,1980,Unprovoked,USA,New Jersey,"Ocean City, Cape May County",Body surfing,Jeff Moffat,M,15,Back bitten,N,15h00,,J. Moffat; W. Ruderman,1980.07.27-Moffat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.27-Moffat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.27-Moffat.pdf,1980.07.27,1980.07.27,3158,, +1980.07.23,23-Jul-80,1980,Unprovoked,USA,Delaware,Dewey Beach,Standing,Phyllis Riley,F,22,"No injury, shark bit her bathing suit",N,Afternoon,4' to 8' shark,"Washington Post, 7/23/1980",1980.07.23-PhyllisRidley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.23-PhyllisRidley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.23-PhyllisRidley.pdf,1980.07.23,1980.07.23,3157,, +1980.07.00,Late Jul-1980,1980,Unprovoked,USA,North Carolina,"Emerald Isle Pier (near Morehead City), Carteret County",Surfing,male,M,,"No injury, bumped off board",N,,,"C. Creswell, GSAF, J. Barnes",1980.07.00-NCsurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.00-NCsurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.00-NCsurfer.pdf,1980.07.00,1980.07.00,3156,, +1980.07.00,Early Jul-1980,1980,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Tom Durrance,M,,Lower leg bitten,N,,,"Daytona Beach Morning Journal, 7/9/1980",1980.07.00-Durrance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.00-Durrance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.00-Durrance.pdf,1980.07.00,1980.07.00,3155,, +1980.06.26,26-Jun-80,1980,Provoked,USA,California,"Off San Clemente Island, Los Angeles County",Scuba diving,Valerie Taylor,F,44,Laceration to lower leg PROVOKED INCIDENT,N,,Blue shark,"The Australian Women's Weekly, 10/1/1980",1980.06.26-ValTaylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.06.26-ValTaylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.06.26-ValTaylor.pdf,1980.06.26,1980.06.26,3154,, +1980.05.15,15-May-80,1980,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Fuller�s Bay,Surfing,Eric Stedman,M,22,"No injury, board bitten",N,08h00,1.8 m [6'] shark,"C. Vernon, G. Ross, P.E. Museum; M. Levine, GSAF",1980.05.15-Stedman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.05.15-Stedman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.05.15-Stedman.pdf,1980.05.15,1980.05.15,3153,, +1980.04.25,25-Apr-80,1980,Provoked,JAMAICA,St. Mary's Parish,"Priestman's River area, East Portland",Spearfishing,Venus Goulbourne,M,,Hand bitten by speared shark PROVOKED INCIDENT ,N,,,"The Gleaner, 7/27/1980",1980.04.25-Venus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.04.25-Venus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.04.25-Venus.pdf,1980.04.25,1980.04.25,3152,, +1980.04.22,22-Apr-80,1980,Sea Disaster,PHILIPPINES,Romblon Province,"Maestre de Campo Island, 120 miles south of Manila",Sinking of the ferryboat Don Juan,,,,FATAL x 2,Y,Night,,"Daily Collegian, 4/24/1980",1980.04.22-DonJuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.04.22-DonJuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.04.22-DonJuan.pdf,1980.04.22,1980.04.22,3151,, +1980.04.00,Apr-80,1980,Unprovoked,MEXICO,Sinaloa,Mazatl�n,Body surfing,Kim Giambalvo,F,13,Right calf bitten,N,Early afternoon,Tiger shark,K. Giambalvo-Sprague; R. Collier,1980.04.00-Giambalvo-Sprague.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.04.00-Giambalvo-Sprague.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.04.00-Giambalvo-Sprague.pdf,1980.04.00,1980.04.00,3150,, +1980.03.29,29-Mar-80,1980,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umdhloti,Free diving,Ray Booth,M,52,FATAL,Y,,Tiger shark,"W. Pople, G. Charter, B. Davis, Natal Sharks Board",1980.03.29-RayBooth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.29-RayBooth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.29-RayBooth.pdf,1980.03.29,1980.03.29,3149,, +1980.03.28,28-Mar-80,1980,Unprovoked,BRAZIL,Rio de Janeiro,"Copacabana Beach, Rio de Janiero",Swimming,J.M.,M,,Right leg bitten,N,Afternoon,2 m shark,M. Szpilman,1980.03.28-JM.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.28-JM.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.28-JM.pdf,1980.03.28,1980.03.28,3148,, +1980.03.15,15-Mar-80,1980,Sea Disaster,PHILIPPINES,,250 miles southwest of Manila,Sinking of the ferryboat Bongbong 1,2 women,F,,FATAL,Y,,,"Valley Independent, 3/17/1980",1980.03.15-Bongbong1.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.15-Bongbong1.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.15-Bongbong1.pdf,1980.03.15,1980.03.15,3147,, +1980.03.11,11-Mar-80,1980,Provoked,SOUTH AFRICA,Western Cape Province,Velddrif,Fishing,Frederik Mannetjies Oom Binneman,M,61,Leg lacerated by netted shark PROVOKED INCIDENT,N,,1.5 m [5'] hammerhead shark,"F.M. Binneman, P. Logan, M. Levine, GSAF",1980.03.11-Binneman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.11-Binneman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.11-Binneman.pdf,1980.03.11,1980.03.11,3146,, +1980.01.31,31-Jan-80,1980,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Ballito,Body boarding,Shaun Wright,M,24,"Both hands & heel of left foot lacerated, right foot severed",N,14h45,"2.8 m [9'3""] white shark","M. Levine, GSAF; W. Pople, G. Charter, B. Davis, NSB; T. Wallett, p.60",1980.01.31-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.31-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.31-Wright.pdf,1980.01.31,1980.01.31,3145,, +1980.01.25,25-Jan-80,1980,Unprovoked,KENYA,Lamu Archipelago,South of Lamu Island,Spearfishing,Dennis Richard,M,29,Ankle & foot lacerated,N,,2.2 m shark,J. E. Randall,1980.01.25-Richard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.25-Richard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.25-Richard.pdf,1980.01.25,1980.01.25,3144,, +1980.01.15,15-Jan-80,1980,Provoked,SOUTH AFRICA,KwaZulu-Natal,Anstey�s,Spearfishing,Les Winkworth,M,29,"No injury, rammed & catapulted from the water by shark after he shot at it & missed PROVOKED INCIDENT",N,05h00,"2 m [6'9""] Zambesi shark","L. Winkworth, M. Levine, GSAF",1980.01.15-Winkworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.15-Winkworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.15-Winkworth.pdf,1980.01.15,1980.01.15,3143,, +1980.01.13,13-Jan-80,1980,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Sardinia Bay,Swimming,Peter Clarke,M,,Abrasion,N,,Hammerhead shark,"Eastern Province Herald, 1/17/1980, M. Levine, GSAF",1980.01.13-Clarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.13-Clarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.13-Clarke.pdf,1980.01.13,1980.01.13,3142,, +1980.01.10,10-Jan-80,1980,Unprovoked,SOUTH AFRICA,Eastern Cape Province,King�s Beach,Swimming,Andy Austin,M,25,3 small punctures on arm,N,18h30,"Raggedtooth shark, 2 m [6'9""] ",M. Smale,1980.01.10-Austin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.10-Austin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.10-Austin.pdf,1980.01.10,1980.01.10,3141,, +1980.01.05,05-Jan-80,1980,Unprovoked,CHILE,Los Vilos,"Punta Negra, Pichidangui",Hookah Diving,Jose Larenas-Miranda,M,,FATAL ,Y,11h00,White shark,J. McCosker & A.C. Engana,1980.01.05-Miranda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.05-Miranda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.05-Miranda.pdf,1980.01.05,1980.01.05,3140,, +1980.00.00.d,Summer 1980,1980,Provoked,NORTH ATLANTIC OCEAN,,Onboard swordfish trawler,Gaffing netted shark,Sidney Hallett,M,34,Arm lacerated by gaffed shark PROVOKED INCIDENT,N,,1.8 m [6'] dogfish,"A. Resciniti, pp.105-106",1980.00.00.d-Hallett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.d-Hallett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.d-Hallett.pdf,1980.00.00.d,1980.00.00.d,3139,, +1980.00.00.c,1980s ,1980,Invalid,GREECE,Island of Kos,,Surfing,male,M,,Knee bitten,N,,Said to involve a white shark but shark involvement not confirmed,MEDSAF,1980.00.00.c-NV-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.c-NV-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.c-NV-Greece.pdf,1980.00.00.c,1980.00.00.c,3138,, +1980.00.00.b,1980,1980,Invalid,SOUTH AFRICA,Eastern Cape Province,Bonza Bay,Spearfishing,Sean Mitchley,M,20,No injury; shark made threat display and impaled itself on spear,N,Early afternoon,"2 m [6'9""] shark","P. Sachs, M. Levine, GSAF",1980.00.00.b-Mitchley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.b-Mitchley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.b-Mitchley.pdf,1980.00.00.b,1980.00.00.b,3137,, +1980.00.00.a,1980s ,1980,Unprovoked,TONGA,Ha'api,Ha'ano Island,Spearfishing,A male from Muitoa,M,20s,Chest bitten,N,AM,,Dr. S. Fonea,1980.00.00.a-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.a-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.a-Tonga.pdf,1980.00.00.a,1980.00.00.a,3136,, +1979.12.21,21-Dec-79,1979,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kenton-on-Sea,Swimming,Carl Shemaly,M,18,Shin lacerated,N,16h20,,"M. Bowker; W. Pople, NSB",1979.12.21-Shemaly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.12.21-Shemaly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.12.21-Shemaly.pdf,1979.12.21,1979.12.21,3135,, +1979.12.00,05-Dec-79,1979,Invalid,PORTUGAL,Madeira Islands,"Sao Jorge, Madeira Island",Spearfishing,Fernando Branco de Abreu,M,19,FATAL,Y,,White shark?,C. Moore. GSAF,1979.12.00-Madeira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.12.00-Madeira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.12.00-Madeira.pdf,1979.12.00,1979.12.00,3134,, +1979.12.01, 01-Dec-1979,1979,Unprovoked,SOUTH CHINA SEA,,,Diving,Peter Lee,M,32,Toothmarks on head & neck,N,,6' shark,"Sydney Morning Herald, 12/6/1979 ",1979.12.01-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.12.01-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.12.01-Lee.pdf,1979.12.01,1979.12.01,3133,, +1979.11.27,27-Nov-79,1979,Unprovoked,USA,Oregon,"Haystack Rock, Cannon Beach, Clatsop County",Surfing,Kenny Doudt,M,20,Multiple major Injuries,N,10h20,"White shark, 4 m [13'] ","D. Miller & R. Collier; R. Collier, p. 76-79; J. McCosker & R.N. Lea; K. Doudt",1979.11.27-KennyDoudt_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.11.27-KennyDoudt_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.11.27-KennyDoudt_Collier.pdf,1979.11.27,1979.11.27,3132,, +1979.11.12,12-Nov-79,1979,Provoked,SOUTH AFRICA,Western Cape Province,Macassar,Shark fishing,"skiboat, occupants: Gustav Boettger, Clive Mason, Keith Murrison & Sweis Olivier",,,"No injury to occupants; hooked shark tore out part of transom, bit skeg of motor and snapped the steel trace PROVOKED INCIDENT",N,,"White shark, 5 m ",GSAF,1979.11.12-ski-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.11.12-ski-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.11.12-ski-boat.pdf,1979.11.12,1979.11.12,3131,, +1979.10.22,22-Oct-79,1979,Provoked,SOUTH AFRICA,Eastern Cape Province,Algoa Bay,Fishing,Willie Dorfling,M,,Bitten below right knee by hooked shark pulled onboard skiboat PROVOKED INCIDENT,N,,"Raggedtooth shark, 50-kg [110-lb], 2 m [6.75'] gaffed ",GSAF,1979.10.22-Dorfling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.10.22-Dorfling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.10.22-Dorfling.pdf,1979.10.22,1979.10.22,3130,, +1979.09.14,14-Sep-79,1979,Unprovoked,AUSTRALIA,New South Wales,Byron Bay,Scuba diving,Michael Oliver,M,18,Leg bitten,N,,"""a small shark""","Canberra Times, 9/15/1979",1979.09.14-Oliver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.09.14-Oliver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.09.14-Oliver.pdf,1979.09.14,1979.09.14,3129,, +1979.08.28,28-Aug-79,1979,Unprovoked,HONG KONG,,Mirs Bay,Freedom swimming,male,M,21,"Leg severed, FATAL",Y,,,"Sydney Morning Herald, 8/30/1979 ",1979.08.28-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.28-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.28-HongKong.pdf,1979.08.28,1979.08.28,3128,, +1979.08.26,26-Aug-79,1979,Unprovoked,HONG KONG,Ho Ha Wan Marine Park,,,male,M,16,FATAL,Y,,,"J. Wong, GSAF",1979.08.26-NV-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.26-NV-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.26-NV-HongKong.pdf,1979.08.26,1979.08.26,3127,, +1979.08.05,05-Aug-79,1979,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Kayaking,John P. Seiner,M,49,Lacerations to foot,N,,,"Sarasota Herald Tribune, 8/9/1979",1979.08.05-Seiner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.05-Seiner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.05-Seiner.pdf,1979.08.05,1979.08.05,3126,, +1979.08.03,03-Aug-79,1979,Unprovoked,THAILAND,Southern Thailand,,Murdered by Thai pirates,male,M,,FATAL,Y,,,"The Canberra Times, 8/3/1979",1979.08.03.R-Pirates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.03.R-Pirates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.03.R-Pirates.pdf,1979.08.03,1979.08.03,3125,, +1979.06.19,19-Jun-79,1979,Sea Disaster,USA,Florida,10 miles off Cape Canaveral,Floating with life preserver after his boat foundered,William Shaw,M,56,Lacerations to leg,N,Morning,,"Troy Record, 6/21/1979",1979.06.19-Shaw.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.06.19-Shaw.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.06.19-Shaw.pdf,1979.06.19,1979.06.19,3124,, +1979.05.27,27-May-79,1979,Invalid,USA,Florida,"Fort Walton Beach, Okaloosa County",Scuba diving,Captain Tommy Edward Neel,M,36,"FATAL, but shark involvement prior to death was not determined",Y,,,"Post Standard, 5/29/1979, p.3",1979.05.27-Neel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.27-Neel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.27-Neel.pdf,1979.05.27,1979.05.27,3123,, +1979.05.05,05-May-79,1979,Provoked,SOUTH AFRICA,Western Cape Province,"Hangklip, False Bay",Spearfishing,Piet Boonzaaier,M,25,Shark rammed diver after he shot it in the head PROVOKED INCIDENT,N,14h00,"White shark, 2.5 m [8.25'] ",Dr. P. Landsberg,1979.05.05-Boonzaaier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.05-Boonzaaier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.05-Boonzaaier.pdf,1979.05.05,1979.05.05,3122,, +1979.05.03,03-May-79,1979,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Mbibi,Scuba diving,Alan Edly Symons,M,,"FATAL (presumed), pieces of shark-bitten wetsuit washed ashore but no body was recovered",Y,>12h00,,"W. Pople, G. Charter, B. Davis, NSB",1979.05.03-Symons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.03-Symons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.03-Symons.pdf,1979.05.03,1979.05.03,3121,, +1979.05.00.c,May-79,1979,Unprovoked,NEW CALEDONIA,North Province,Ile Yand� (between Poum and B�lep),Fishing,,,,"Thigh severely injured, survived",N,,,"W. Leander; Les Nouvelles Caledoniennes, 3/17/2000",1979.05.00.c-fisherman-Yande.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.00.c-fisherman-Yande.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.00.c-fisherman-Yande.pdf,1979.05.00.c,1979.05.00.c,3120,, +1979.05.00.b,May-79,1979,Unprovoked,NEW CALEDONIA,North Province,Balade,,Ferdinand Teanyouen,M,,FATAL,Y,,2 m shark,W. Leander,1979.05.00.b-Teanyouen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.00.b-Teanyouen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.00.b-Teanyouen.pdf,1979.05.00.b,1979.05.00.b,3119,, +1979.04.08.b,08-Apr-79,1979,Unprovoked,USA,Florida,"Public Beach (Carlin Park), Jupiter, Palm Beach County",Swimming,Mark Beekler,M,24,Right foot & ankle lacerated,N,13h20,,"M. Vorenberg, GSAF",1979.04.08.b-Beekler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.04.08.b-Beekler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.04.08.b-Beekler.pdf,1979.04.08.b,1979.04.08.b,3118,, +1979.04.08.a,08-Apr-79,1979,Unprovoked,USA,Florida,"Municipal Beach, Boyton Beach, Palm Beach County",Body surfing,Robert Kennedy III,M,8,Right foot bitten,N,10h30,,"M. Vorenberg, GSAF",1979.04.08.a-Kennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.04.08.a-Kennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.04.08.a-Kennedy.pdf,1979.04.08.a,1979.04.08.a,3117,, +1979.03.24,24-Mar-79,1979,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Surfing,Donald A. Stewart,M,27,Foot & ankle bitten,N,11h30,Blacktip or spinner shark,"M. Vorenberg, GSAF",1979.03.24-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.24-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.24-Stewart.pdf,1979.03.24,1979.03.24,3116,, +1979.03.11,11-Mar-79,1979,Unprovoked,USA,California,"Ano Nuevo Island, San Mateo, County",Scuba diving (submerged),Calvin Sloan,M,,"No injury, swim fin bitten",N,10h00,"White shark, 4 m to 5 m [13' to 16.5'] ","D. Miller & R. Collier, R. Collier, p.76",1979.03.11-CalvinSloan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.11-CalvinSloan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.11-CalvinSloan_Collier.pdf,1979.03.11,1979.03.11,3115,, +1979.03.01,01-Mar-79,1979,Boat,SOUTH AFRICA,Western Cape Province,Seal Island,,Fishing boat,,,No Injury,N,,,GSAF,1979.03.01-NV-SealIslandboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.01-NV-SealIslandboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.01-NV-SealIslandboat.pdf,1979.03.01,1979.03.01,3114,, +1979.03.00,Mar-79,1979,Unprovoked,NEW CALEDONIA,Grand Terre,"Five Mile Beach, I'le Ouen",Spearfishing,Manuel Teau,M,,"Presumed FATAL, body not recovered",Y,,,W. Leander,1979.03.00-Teau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.00-Teau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.00-Teau.pdf,1979.03.00,1979.03.00,3113,, +1979.02.21,21-Feb-79,1979,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port Alfred,"Surfing, collided with shark",Charles Kantor,M,19,Punctures on left thigh,N,13h15,1.5 m to 2 m [5' to 6.75'] shark,"C. Kantor, Dr. Macrae, M. Levine, GSAF; G. Charter, NSB",1979.02.21-Kantor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.02.21-Kantor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.02.21-Kantor.pdf,1979.02.21,1979.02.21,3112,, +1979.00.00,1979,1979,Unprovoked,USA,Hawaii,"South Kohala, Hawai'i",Fishing,elderly male,M,,"FATAL, disappeared while fishing from shore, divers recovered his hand",Y,,,"J. Borg, p.74; L. Taylor (1993), pp.104-105",1979.00.00-ElderlyMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.00.00-ElderlyMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.00.00-ElderlyMale.pdf,1979.00.00,1979.00.00,3111,, +1978.12.29,29-Dec-78,1978,Unprovoked,AUSTRALIA,Queensland,Bribie Island,,Wayne Brown,M, ,Survived,N,,,"R. McKenzie, Sunday Mail, 9/6/1987, p.11",1978.12.29-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.12.29-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.12.29-Brown.pdf,1978.12.29,1978.12.29,3110,, +1978.12.12,12-Dec-78,1978,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Sodwana,Spearfishing,Phillip 'Flip' Steenkamp,M,23,"FATAL, legs bitten ",Y,16h45,"White shark, 2.3 m [7.5'], tooth fragment recovered","M. Levine, GSAF; W. Pople, G. Charter, NSB; Dr. Marais; T. Wallett, pp.57-58",1978.12.12-Steenkamp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.12.12-Steenkamp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.12.12-Steenkamp.pdf,1978.12.12,1978.12.12,3109,, +1978.11.26,26-Nov-78,1978,Unprovoked,USA,Hawaii,"Ewa, O'ahu",Surfing,Wendell Cabunoc,M,,Left arm bitten,N,,2.4 m [8'] shark,"Star-Phoenix, 11/29/1978",1978.11.26-Cabunoc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.11.26-Cabunoc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.11.26-Cabunoc.pdf,1978.11.26,1978.11.26,3108,, +1978.11.23,23-Nov-78,1978,Unprovoked,USA,Florida,"Jupiter, Palm Beach County",Surfing,Jorge Alvarez,M,17,Hand lacerated,N,,,"New York Times, 11/26/1978, p.24",1978.11.23-Alvarez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.11.23-Alvarez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.11.23-Alvarez.pdf,1978.11.23,1978.11.23,3107,, +1978.10.21,21-Oct-78,1978,Invalid,SOUTH AFRICA,KwaZulu-Natal,"Fishing camp, St. Lucia Estuary",Fishing,Mr. Kuppasamy,M,,Scavenged or FATAL (may have involved foul play),Y,Dusk,"Tiger shark, 3m ","Natal Parks Board, J. Daniel; W. Pople, G. Charter, GSAF",1978.10.21-Kuppasamy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.10.21-Kuppasamy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.10.21-Kuppasamy.pdf,1978.10.21,1978.10.21,3106,, +1978.09.27,27-Sep-78,1978,Unprovoked,SOUTH AFRICA,Western Cape Province,"Miller's Point, False Bay",Spearfishing,Erik Lombard,M,27,"No injury, shark took his catch, then towed & pushed diver through the water ",N,16h00,"White shark, 3.7 m [12'] ","E. Lombard, M. Levine, GSAF",1978.09.27-Lombard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.27-Lombard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.27-Lombard.pdf,1978.09.27,1978.09.27,3105,, +1978.09.16,16-Sep-78,1978,Unprovoked,ITALY,Tyrrhenian Sea,Capo d'Anzio,Diving,Fabrizio Marini,M,,No injury,N,11h00,"White shark, 5 m [16.5'] ",A. De Maddalena; Marini (1989),1978.09.16-Marini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.16-Marini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.16-Marini.pdf,1978.09.16,1978.09.16,3104,, +1978.09.02.R,Reported 02-Sep-1978,1978,Unprovoked,AUSTRALIA,Tasmania,"Cape Pillar, Storm Bay",Scuba diving for abalone,Jim Scott,M,34,Several broken ribs,N,,15' shark,"Chronicle Telegram, 9/2/1978 ",1978.09.02.R-Scott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.02.R-Scott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.02.R-Scott.pdf,1978.09.02.R,1978.09.02.R,3103,, +1978.08.05,05-Aug-78,1978,Unprovoked,USA,California,"Pajaro Dunes, Santa Cruz County",Wading,Pat DuNah,M,,Punctures on leg (minor injury),N,12h45,"2 m [6'9""] shark","D. Miller & R. Collier, R. Collier, p.75 ",1978.08.05-DuNah_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.08.05-DuNah_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.08.05-DuNah_Collier.pdf,1978.08.05,1978.08.05,3102,, +1978.08.01.R,Reported 01-Aug-1978,1978,Unprovoked,USA,Florida,Florida Straits,Floating on inner tube raft,Ramon Cordoba,M,27,Minor injury to ankle,N,,,"Miami News, 8/1/1978",1978.08.01.R-Cordoba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.08.01.R-Cordoba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.08.01.R-Cordoba.pdf,1978.08.01.R,1978.08.01.R,3101,, +1978.07.27,27-Jul-78,1978,Sea Disaster,USA,South Carolina,,"Explosion destroyed 28' boat, survivors in the water ",Sam Boger,M,39,"No injury, his foot was bumped by a shark biting the body of a passenger that had drowned.",N,,,"NY Times, 7/28/1978, p.6, col.6",1978.07.27-Boger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.07.27-Boger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.07.27-Boger.pdf,1978.07.27,1978.07.27,3100,, +1978.07.19,19-Jul-78,1978,Provoked,USA,California,"Newport Beach, Orange County",Fishing,Harry Griffet,M,27,Laceration to leg by hooked shark PROVOKED INCIDENT,N,,,"Fresno Bee, 7/19/1978",1978.07.19-Griffet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.07.19-Griffet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.07.19-Griffet.pdf,1978.07.19,1978.07.19,3099,, +1978.06.21.b,21-Jun-78,1978,Unprovoked,USA,Florida,"South of Neptune Beach, Duval County",Surfing,Fred Dean Hunt,M,20,Foot bitten,N,,,"Bryan Times, 6/23/1978",1978.06.21.b-Hunt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.06.21.b-Hunt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.06.21.b-Hunt.pdf,1978.06.21.b,1978.06.21.b,3098,, +1978.06.21.a,21-Jun-78,1978,Unprovoked,USA,Florida,"Neptune Beach, Duval County",Surfing,Mack Shelton,M,17,Foot nipped,N,,,"Bryan Times, 6/23/1978",1978.06.21.a-Shelton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.06.21.a-Shelton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.06.21.a-Shelton.pdf,1978.06.21.a,1978.06.21.a,3097,, +1978.06.07,07-Jun-78,1978,Invalid,ITALY,Golfo de Venezia,Acqua alta research platform,,,,,"No injury, shark struck platform",N,,White shark,A. DeMaddalena,1978.06.07-Platform.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.06.07-Platform.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.06.07-Platform.pdf,1978.06.07,1978.06.07,3096,, +1978.04.02.b,02-Apr-78,1978,Unprovoked,MARSHALL ISLANDS,Ralik Archipelago,Enewetak Atoll,Diving,Philip Light,M,25,Laceration to left hand,N,,,"Modesto Bee, 4/4/1978",1978.04.02.b-Light.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.04.02.b-Light.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.04.02.b-Light.pdf,1978.04.02.b,1978.04.02.b,3095,, +1978.04.02.a,02-Apr-78,1978,Unprovoked,MARSHALL ISLANDS,Ralik Archipelago,Enewetak Atoll,Diving,Mike deGruy,M,23,Lacerations to right forearm ,N,,,"Modesto Bee, 4/4/1978",1978.04.02.a-DeGruy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.04.02.a-DeGruy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.04.02.a-DeGruy.pdf,1978.04.02.a,1978.04.02.a,3094,, +1978.04.00,Apr-1978`,1978,Unprovoked,AUSTRALIA,Tasmania,Beechford,Scuba diving,Colin Wrankmore,M,,Thigh bitten,N,,"Sevengill shark, 2.4 m","C. Black, pp. 157-159",1978.04.00-Wrankmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.04.00-Wrankmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.04.00-Wrankmore.pdf,1978.04.00,1978.04.00,3093,, +1978.03.05,05-Mar-78,1978,Boat,SOUTH AFRICA,Eastern Cape Province,"Gulu Deep, East London",,"6 m skiboat, occupants: P.A. Reeder & crew",,,"No injury to occupants; shark rammed boat 4 times, bit engine & cracked the hull",N,,,GSAF,1978.03.05-GuluDeep.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.03.05-GuluDeep.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.03.05-GuluDeep.pdf,1978.03.05,1978.03.05,3092,, +1978.02.28,28-Feb-78,1978,Unprovoked,SOUTH AFRICA,Western Cape Province,"Seal Island, False Bay",Fishing for mackerel,"The June, occupants Bunny Pendelbury and crew of 6",,,"Shark jumped in boat, but no injury to occupants",N,03h00,270 kg shark,"Eastern Province Herald, 3/2/1978",1978.02.28-PendleburyBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.02.28-PendleburyBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.02.28-PendleburyBoat.pdf,1978.02.28,1978.02.28,3091,, +1978.02.19,19-Feb-78,1978,Unprovoked,SOUTH AFRICA,Western Cape Province,"Miller's Point, False Bay",Diving,Nicky Alberts,M,,"No injury, rammed by shark",N,,White shark,"Natal Mercury, 2/21/1978",1978.02.19-NickyAlberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.02.19-NickyAlberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.02.19-NickyAlberts.pdf,1978.02.19,1978.02.19,3090,, +1978.01.17,07-Jan-78,1978,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Glenashley,Surfing,Laurence Evans,M,17,"Left leg, ankle & foot bitten",N,12h45,Thought to involve a blacktip shark,"W. Pople, G. Charter, B. Davis, NSB",1978.01.17-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.01.17-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.01.17-Evans.pdf,1978.01.17,1978.01.17,3089,, +1978.01.06,06-Jan-78,1978,Invalid,SOUTH AFRICA,KwaZulu-Natal,Cape Vidal,,,M,,"Human head recovered from shark�s gut, probable drowning / scavenging",Y,,"Tiger shark, 3 m [10']k","W. Pople, NSB",1978.01.06.R-CapeVidal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.01.06.R-CapeVidal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.01.06.R-CapeVidal.pdf,1978.01.06,1978.01.06,3088,, +1978.00.00.b,1978,1978,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,Sharon Wolfe Cranston,F,,Foot bitten,N,,,"The Beachside Resident, 9/19/2010",1978.00.00.b-Cranston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.00.00.b-Cranston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.00.00.b-Cranston.pdf,1978.00.00.b,1978.00.00.b,3087,, +1978.00.00.a,1978,1978,Unprovoked,VANUATU,Malampa Province,"Ranon, Ambryn",Swimming,Vanuatu Weekly Hebdomadaire,F,,FATAL,Y,,,"N. Bird, Tok Blong Pacific, 9/22/2003",1978.00.00.a-Bong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.00.00.a-Bong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.00.00.a-Bong.pdf,1978.00.00.a,1978.00.00.a,3086,, +1977.12.31,31-Dec-77,1977,Sea Disaster,USA,Hawaii,2 miles off Keahole Airport,"Swimming, after single-engine aircraft went down in the sea",Harold Corbett,M,49,Feet lacerated,N,Night,,"NY Times, 1/3/1978, p.14, col.1",1977.12.31-Corbett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.31-Corbett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.31-Corbett.pdf,1977.12.31,1977.12.31,3085,, +1977.12.19.b,19-Dec-77,1977,Unprovoked,USA,Florida,"Hobe Sound, Palm Beach County",Surfing,Raymond Brockway,M,27,Laceration to right hand,N,,,"Sarasota Herald-Tribune, 12/20/1977",1977.12.19.b-Brockway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.19.b-Brockway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.19.b-Brockway.pdf,1977.12.19.b,1977.12.19.b,3084,, +1977.12.19.a,19-Dec-77,1977,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Qolera River,Surfing,Kim Pearce,M,18,"Both legs bitten, 2 days later gangrene necessitated surgical amputation of left leg at mid-thigh",N,10h00,"Tiger shark, 3 m [10']","K. Pearce, M. Levine, GSAF; W. Pople, B. Davis, G. Charter, NSB; T. Wallett, p.42",1977.12.19.a-Pearce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.19.a-Pearce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.19.a-Pearce.pdf,1977.12.19.a,1977.12.19.a,3083,, +1977.12.00,Dec-77,1977,Boat,SOUTH AFRICA,Western Cape Province,"Macassar, False Bay",Fishing for bottom fish,"boat, occupant: Danie Schoeman",,,No injury to occupant: shark bit boat's port chine,N,,3 m [10'] white shark (Tooth recovered from boat),"T. Wallett, p.38",1977.12.00-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.00-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.00-Schoeman.pdf,1977.12.00,1977.12.00,3082,, +1977.11.12,12-Nov-77,1977,Provoked,SOUTH AFRICA,Western Cape Province,Klein River Lagoon,Standing,male,M,,Shark lacerated his hand when he grabbed it by the tail PROVOKED INCIDENT,N,,1.5 to 2 m [5' to 6.75'] shark,"Times of Hermanus, 11/16/1977",1977.11.12-KleinRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.11.12-KleinRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.11.12-KleinRiver.pdf,1977.11.12,1977.11.12,3081,, +1977.10.30,30-Oct-77,1977,Unprovoked,SOUTH AFRICA,Western Cape Province,"Bluegums Rock, Partridge Point",Spearfishing,Andre Hartman,M,25,"No injury, shark bit speargun & pushed diver through the water",N,16h00,"White shark, 5 m [16.5'] ","A. Hartman; M. Levine, GSAF",1977.10.30-Hartman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.10.30-Hartman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.10.30-Hartman.pdf,1977.10.30,1977.10.30,3080,, +1977.08.31,31-Aug-77,1977,Unprovoked,AUSTRALIA,South Australia,"Cactus Beach, near Ceduna",Surfing,Philip Horley,M,17,"Board rammed & bitten, left thigh lacerated",N,16h00,White shark,"The Age, 9/2/1977",1977.08.31-Horley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.31-Horley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.31-Horley.pdf,1977.08.31,1977.08.31,3079,, +1977.08.23,23-Aug-77,1977,Unprovoked,AUSTRALIA,Queensland,"Buddina Beach, south of Noosa",Floating on an inflatable raft,George Walter,M,25,"FATAL, left arm severed, legs bitten ",Y,,,"The Age, 9/1/1977; A. Sharpe, p.104",1977.08.23-Walter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.23-Walter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.23-Walter.pdf,1977.08.23,1977.08.23,3078,, +1977.08.19,19-Aug-77,1977,Boat,SOUTH AFRICA,Western Cape Province,Off Macassar Beach,Fishing,"6 m skiboat, occupants: Alex Mamacos, Noel Glintenkamp, Tony Mountifield & Dillon Alexandra",M,,"Shark leapt into boat, pinning Mamacos beneath and fracturing his pelvis, then trashed the boat rendering it inoperable",N,13h30,White shark,"T. Wallett, pp.33-34",1977.08.19-Mamacos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.19-Mamacos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.19-Mamacos.pdf,1977.08.19,1977.08.19,3077,, +1977.08.14,14-Aug-77,1977,Unprovoked,USA,California,"McClure Beach, near Tomales Point, Marin County",Free diving for abalone (surfacing),Glenn Friedman,M,20,Leg lacerated,N,11h45,"White shark, 5.5 m to 6 m [18' to 20'] ","D. Miller & R. Collier, R. Collier, pp.73-74; J. McCosker & R.N. Lea ",1977.08.14-Friendman_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.14-Friendman_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.14-Friendman_Collier.pdf,1977.08.14,1977.08.14,3076,, +1977.08.05,05-Aug-77,1977,Invalid,USA,Florida,"St. Petersburg, Pinellas County",Wading,Michael Muradian,M,17,Lacerations to hip and leg,N,12h00,Shark involvement not confirmed,"St. Petersburg Independent, 8/8/1977",1977.08.05-Muradian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.05-Muradian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.05-Muradian.pdf,1977.08.05,1977.08.05,3075,, +1977.07.02,02-Jul-77,1977,Sea Disaster,USA,California,"Off San Diego, San Diego County",40' fishing boat sank,Steve Posey,M,21,Laceration to right hand,N,Night,,"The Times (San Mateo), 7/5/1977",1977.07.02-Posey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.07.02-Posey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.07.02-Posey.pdf,1977.07.02,1977.07.02,3074,, +1977.06.26,26-Jun-77,1977,Provoked,USA,Florida,"12 miles northeast of Mayport, Duval County",Spearfishing / Scuba diving,Willie White,M,27,"PROVOKED INCIDENT Diver poked shark with spear, then shark bit his right foot",N,Late afternoon,"Bull shark, 8","News Tribune, 6/28/1977 & 7/14/1977 ",1977.06.26-WillieWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.06.26-WillieWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.06.26-WillieWhite.pdf,1977.06.26,1977.06.26,3073,, +1977.06.06,06-Jun-77,1977,Unprovoked,USA,Texas,Padre Island,Collecting fish from net,"Dan Baen, Jr.",M,25,Lacerations to wrist,N,,"Bull shark, 4' to 5' ","Abilene Reporter-News, 6/9/1977",1977.06.06-Baen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.06.06-Baen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.06.06-Baen.pdf,1977.06.06,1977.06.06,3072,, +1977.05.26,26-May-77,1977,Boat,SOUTH AFRICA,Western Cape Province,13 km off Knysna ,Fishing for yellowtail,"5 m skiboat Graanjan, occupants: Rudy van Graan, Jan de Waal Lombard",M,,Lombard's thigh was lacerated by shark that leapt into boat ,N,,"Mako shark, 2.3 m, 150-kg ","T. Wallett, pp.32-33",1977.05.26-Lombard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.05.26-Lombard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.05.26-Lombard.pdf,1977.05.26,1977.05.26,3071,, +1977.05.16,16-May-77,1977,Invalid,AUSTRALIA,Queensland,Southport,,Gordon Gibbs,M,,"Missing, believed taken by a shark",N,,,"Courier-Mail, 10/2/1992, p.2",1977.05.16-NV-Gibbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.05.16-NV-Gibbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.05.16-NV-Gibbs.pdf,1977.05.16,1977.05.16,3070,, +1977.04.26,26-Apr-77,1977,Unprovoked,AUSTRALIA,Queensland,Tallebudgera,,Gary Jones,M,,Survived,N,,,"R. McKenzie, Sunday Mail, 9/6/1987, p.11",1977.04.26-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.04.26-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.04.26-Jones.pdf,1977.04.26,1977.04.26,3069,, +1977.04.21,21-Apr-77,1977,Unprovoked,USA,Hawaii,"Ka'anapali, Maui",Swimming,Ruskin Vest,M,,Arm bitten,N,,1.2 m [4'] shark,"J. Borg, p.74; L. Taylor (1993), pp.104-105",1977.04.21-Vest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.04.21-Vest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.04.21-Vest.pdf,1977.04.21,1977.04.21,3068,, +1977.03.17,17-Mar-77,1977,Unprovoked,SOUTH AFRICA,Western Cape Province,"Lappiesbaai Beach, Stilbaai",Swimming,Dr. Rolf Johan Lund,M,31,Right foot bitten,N,17h00,,"R.J. Lund, M. Levine, GSAF; T. Wallett, pp.41-42",1977.03.17-Lund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.17-Lund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.17-Lund.pdf,1977.03.17,1977.03.17,3067,, +1977.03.13.c,13-Mar-77,1977,Sea Disaster,AUSTRALIA,Queensland,Near Moreton Island in Moreton Bay,"Their 9 m launch was run down by a 25,000-ton Japanese freighter on the night of 3-11-1977 & they drifted, clinging to an icebox for 2 days",Verdon Harrison,M,32,"His feet were bitten by sharks, but he was rescued by a charter boat that arrived on the scene just an hour and 15 minutes after the sharks first appeared, too late to save the lives of Hayes and Beaver",N,,,"Sunday Mail (QLD), 10/11/1992, p.109; A. Sharpe, pp.103-104",1977.03.13.c-Harrison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.13.c-Harrison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.13.c-Harrison.pdf,1977.03.13.c,1977.03.13.c,3066,, +1977.03.13.b,13-Mar-77,1977,Sea Disaster,AUSTRALIA,Queensland,Near Moreton Island in Moreton Bay,"Their 9 m launch was run down by a 25,000-ton Japanese freighter on the night of 3-11-1977 & they drifted, clinging to an icebox for 2 days",Victor Beaver,M,74,FATAL,Y,,,"Sunday Mail (QLD), 10/11/1992, p.109; A. Sharpe, pp.103-104",1977.03.13.b-Beaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.13.b-Beaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.13.b-Beaver.pdf,1977.03.13.b,1977.03.13.b,3065,, +1977.03.13.a,13-Mar-77,1977,Sea Disaster,AUSTRALIA,Queensland,Near Moreton Island in Moreton Bay,"Their 9 m launch was run down by a 25,000-ton Japanese freighter on the night of 3-11-1977 & they drifted, clinging to an icebox for 2 days",John Hayes,M,45,FATAL,Y,,,"Sunday Mail (QLD), 10/11/1992, p.109; A. Sharpe, pp.103-104",1977.03.13.a-Hayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.13.a-Hayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.13.a-Hayes.pdf,1977.03.13.a,1977.03.13.a,3064,, +1977.02.26,26-Feb-77,1977,Unprovoked,AUSTRALIA,New South Wales,"Kingscliffe Beach, south of Tweed Heads","Pushed surfmat of a young girl out of the shark's path, drawing shark's attention to his own board",Paul Howard,M,24,"Left hand, arm & leg lacerated, & shark bit chunk out of his surfboard",N,,4 m [13'] shark,"Ruston Daily Leader, 2/28/1977; A. Sharpe, p.86",1977.02.26-Howard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.02.26-Howard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.02.26-Howard.pdf,1977.02.26,1977.02.26,3063,, +1977.02.04,04-Feb-77,1977,Invalid,AUSTRALIA,Victoria,Sorrento Back Beach,,male,M,,Shark involvement prior to death was unconfirmed,Y,,,"The Age, 2/8/1977",1977.02.04-Sorrento.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.02.04-Sorrento.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.02.04-Sorrento.pdf,1977.02.04,1977.02.04,3062,, +1977.02.00,Feb-77,1977,Unprovoked,NEW CALEDONIA,,I'le Ouen,,Jean Blanchet,,,Face & thorax bitten,N,,,W. Leander,1977.02.00-Blanchet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.02.00-Blanchet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.02.00-Blanchet.pdf,1977.02.00,1977.02.00,3061,, +1977.01.00,Jan-77,1977,Unprovoked,MEXICO,Guerrero,La Playa Hornos (near Acapulco),Swimming,Mexican male,M,,"FATAL, left leg severed, neck cut ",Y,14h30,,"A.Resciniti, p.107",1977.01.00-MexicanMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.01.00-MexicanMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.01.00-MexicanMale.pdf,1977.01.00,1977.01.00,3060,, +1976.12.29,29-Dec-76,1976,Unprovoked,AUSTRALIA,Queensland,Caloundra,,Graham Archall,M,,Survived,N,,,"R. McKenzie, Sunday Mail, 9/6/1987, p.11",1976.12.29-Archall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.12.29-Archall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.12.29-Archall.pdf,1976.12.29,1976.12.29,3059,, +1976.12.18,18-Dec-76,1976,Unprovoked,USA,California,"San Miguel Island, Santa Barbara County",Hookah diving for abalone (submerged),Jay Worrell,M,29,Buttocks & hip bitten,N,09h00,"White shark, 5.5 m [18'] ","D. Miller & R. Collier, R. Collier, pp.72-73; J. McCosker & R.N. Lea",1976.12.18-Worrell_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.12.18-Worrell_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.12.18-Worrell_Collier.pdf,1976.12.18,1976.12.18,3058,, +1976.11.27,27-Nov-76,1976,Unprovoked,SOUTH AFRICA,Western Cape Province,Clifton,"Thrashing the water / imitating the shark victim from ""Jaws""",Geoffrey Kirkam Spence,M,19,Torso bitten,N,16h05,"White shark, 3 m [10'] k","G. Spence, M. Levine, P. Snydercombe, P. Schwartz, Rousseau, J. Wallace, R.M. Strover; T. Wallett, pp.42-47",1976.11.27-Spence.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.27-Spence.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.27-Spence.pdf,1976.11.27,1976.11.27,3057,, +1976.11.26,26-Nov-76,1976,Invalid,AUSTRALIA,Queensland,Southport Bar,,Albert van Ryseen,,,"Missing, believed taken by a shark, but not confirmed",Y,,,"Courier-Mail, 10/2/1992, p.2",1976.11.26-NV-vanRyseen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.26-NV-vanRyseen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.26-NV-vanRyseen.pdf,1976.11.26,1976.11.26,3056,, +1976.11.25,25-Nov-76,1976,Unprovoked,USA,Florida,"Delray Beach, Palm Beach County",Surfing,Al Brenneka,M,19,"Right arm severed 1"" below elbow with extensive tissue loss 3"" above elbow",N,10h55,2.1 m [7'] lemon shark or bull shark,"A. Brenneka; E. Pace; NY Times, 11/26/1976, I, p.18, col.6",1976.11.25-Brenneka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.25-Brenneka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.25-Brenneka.pdf,1976.11.25,1976.11.25,3055,, +1976.11.23,23-Nov-76,1976,Invalid,SOUTH AFRICA,KwaZulu-Natal,Warner Beach,Swimming,Jimmy Jackson,M,17,Laceration to foot,N,,,Natal Mercury,1976.11.23-Jackson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.23-Jackson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.23-Jackson.pdf,1976.11.23,1976.11.23,3054,, +1976.11.06,Nov-76,1976,Provoked,SOUTH AFRICA,Western Cape Province,Macassar,Fishing for white shark,"boat, occupant: Danie Schoeman",,,"No injury to occupants. Hooked shark bit boat's transom, PROVOKED INCIDENT",N,,"White shark, 4.8 m ","T. Wallett, p.37-38",1976.11.06-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.06-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.06-Schoeman.pdf,1976.11.06,1976.11.06,3053,, +1976.10.27,27-Oct-76,1976,Boat,SOUTH AFRICA,Western Cape Province,Gordon�s Bay,Boat,"7 m skiboat Alrehmah III, occupants: Adolph Schlechter & 3 friends",,,"No injury to occupants, shark leapt on bow of boat",N,,White shark,"T. Wallett, p.32",1976.10.27-AlremahII.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.10.27-AlremahII.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.10.27-AlremahII.pdf,1976.10.27,1976.10.27,3052,, +1976.10.18,18-Oct-76,1976,Unprovoked,USA,California,"Moonstone Beach, Humboldt County",Surfing,William Kennedy,M,25,Leg bitten ,N,14h30,"White shark, 3 m to 4 m [10' to 13'] ","D. Miller & R. Collier, R. Collier, pp.70-71; J. McCosker & R.N. Lea",1976.10.18-Kennedy_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.10.18-Kennedy_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.10.18-Kennedy_Collier.pdf,1976.10.18,1976.10.18,3051,, +1976.10.06,06-Oct-76,1976,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Cape St. Francis,Surfing,Marshall Flanagan,M,20,Left thigh lacerated,N,11h00,"White shark, 3.5 m [11.5'], species identity confirmed by tooth fragment","M. Levine, GSAF; J. Wallace,ORI; T. Wallett, p.40-41",1976.10.06-Flanagan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.10.06-Flanagan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.10.06-Flanagan.pdf,1976.10.06,1976.10.06,3050,, +1976.09.22,22-Sep-76,1976,Sea Disaster,NEW CALEDONIA,,Sarcelle,Shipwreck,a small boat,,,It was believed that survivors were killed by sharks,N,,,W. Leander,1976.09.22-NewCaledoniaBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.22-NewCaledoniaBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.22-NewCaledoniaBoat.pdf,1976.09.22,1976.09.22,3049,, +1976.09.19,19-Sep-76,1976,Unprovoked,AUSTRALIA,South Australia,"Point Lowly, north of Whyalla","Skindiving,",Darryl Richardson,M,27,"Right leg bitten below the knee, left ankle & foot lacerated",N,,2.7 m [9'] shark,"A. Sharpe, p.125",1976.09.19-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.19-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.19-Richardson.pdf,1976.09.19,1976.09.19,3048,, +1976.09.17,17-Sep-76,1976,Sea Disaster,HONG KONG,South China Sea 200 miles from Hong Kong,,"3,909-ton Panamanian freighter Chieh Lee sank in a typhoon",,M,,"FATAL, right leg bitten",Y,,,"Daily Review, 9/21/1976",1976.09.17-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.17-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.17-sailor.pdf,1976.09.17,1976.09.17,3047,, +1976.09.12.b,12-Sep-76,1976,Unprovoked,USA,Florida,"Jacksonville, Duval County",Swimming,"Michael Karras, Jr.",M,16,FATAL,Y,,,"Washington Post, 9/24/1976",1976.09.12.b-Michael-Karras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.12.b-Michael-Karras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.12.b-Michael-Karras.pdf,1976.09.12.b,1976.09.12.b,3046,, +1976.09.12.a,12-Sep-76,1976,Unprovoked,USA,Florida,"Jacksonville, Duval County",Swimming,"Ricky Karras, Jr.",M,,FATAL,Y,,,"Washington Post, 9/24/1976",1976.09.12.a-Ricky-Karras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.12.a-Ricky-Karras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.12.a-Ricky-Karras.pdf,1976.09.12.a,1976.09.12.a,3045,, +1976.09.06,06-Sep-76,1976,Unprovoked,USA,Florida,"Sebastian, Indian River County",Surfing,Peter Ferrer,M,15,Laceration to left lower leg,N,14h00,"Tiger shark, 6' ",P. Ferrer,1976.09.06-Ferrer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.06-Ferrer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.06-Ferrer.pdf,1976.09.06,1976.09.06,3044,, +1976.08.26,26-Aug-76,1976,Unprovoked,USA,North Carolina,"Emerald Isle Pier (near Morehead City), Carteret County","Surfing, fell off surfboard",Randy Hall,M,23,Right ankle & foot lacerated,N,,,"C. Creswell, GSAF; F. Schwartz, p.23",1976.08.26-RandyHall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.08.26-RandyHall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.08.26-RandyHall.pdf,1976.08.26,1976.08.26,3043,, +1976.08.24,24-Aug-76,1976,Unprovoked,USA,Oregon,Winchester Bay,Surfing,Mike Shook,M,19,"No injury, board bitten",N,14h00,"White shark, 4.5 m ","D. Miller & R. Collier; R. Collier, pp.69-70; J. McCosker & R.N. Lea ",1976.08.24-Shook_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.08.24-Shook_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.08.24-Shook_Collier.pdf,1976.08.24,1976.08.24,3042,, +1976.07.24,24-Jul-76,1976,Unprovoked,USA,Florida,St. Lucie County,Spearfishing,Charles Cook,M,24,Lacerations to forearms,N,10h30,,"News-Tribune, 7/27/1976",1976.07.24-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.24-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.24-Cook.pdf,1976.07.24,1976.07.24,3041,, +1976.07.21,21-Jul-76,1976,Unprovoked,USA,Louisiana,Scofield - Sandy Point,Playing,Travis Raigan,M,10,Leg bitten,N,,,"Amarillo Globe-Times, 7/22/1976",1976.07.21-Ratigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.21-Ratigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.21-Ratigan.pdf,1976.07.21,1976.07.21,3040,, +1976.07.16,16-Jul-76,1976,Unprovoked,USA,Hawaii,"Maha'ulepu, Koloa, Kaua'i",Scuba diving,Stephen Curtis Powell,M,18,"FATAL, disappeared while diving, lower portion of body recovered",Y,,,"The Argus, 7/19/1976; J. Borg, p.74; L. Taylor (1993), pp.102-103",1976.07.16-Powell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.16-Powell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.16-Powell.pdf,1976.07.16,1976.07.16,3039,, +1976.07.12,12-Jul-76,1976,Unprovoked,USA,Florida,St. Lucie County,Spearfishing,Bill Loughlin,M,23,"""lost part of a finger""",N,,6' to 8' shark,"News-Tribune, 7/27/1976",1976.07.12-Loughlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.12-Loughlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.12-Loughlin.pdf,1976.07.12,1976.07.12,3038,, +1976.06.23,23-Jun-76,1976,Unprovoked,USA,Florida,"St. Andrews State Park, Bay County",Skindiving,Paul Maurer,M,17,Lacerations to right arm,N,Night,12' to 14' shark,"Albuquerque Journal, 6/25/1976�",1976.06.23-Maurer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.23-Maurer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.23-Maurer.pdf,1976.06.23,1976.06.23,3037,, +1976.06.10,10-Jun-76,1976,Unprovoked,USA,Hawaii,"Kama'ole Beach, Park No. 1, Kihei, Maui",Swimming,Donald Gard,M,,Leg & foot bitten,N,,0.9 m to 1.5 m [3' to 5'] shark,"J. Borg, p.74; L. Taylor (1993), pp.102-103",1976.06.10-Gard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.10-Gard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.10-Gard.pdf,1976.06.10,1976.06.10,3036,, +1976.06.02.R,Reported 02-Jun-1976,1976,Provoked,ITALY,Reggio Calabria Province,Bovalino,Fishing,Francisco Pelle,M,46,Shark rammed boat PROVOKED INCIDENT,N,,"Blue shark, 2m ","C. Moore, GSAF",1976.06.02.R-Pelle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.02.R-Pelle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.02.R-Pelle.pdf,1976.06.02.R,1976.06.02.R,3035,, +1976.06.01,01-Jun-76,1976,Boat,AUSTRALIA,Queensland,Off Stradbroke Island,Sitting in bow of her father's 5 m boat,Debbie McMillan,F,,"Shark jumped in boat, hitting her in the face & knocking her unconscious",N,,1.5 m [5'] shark,"A. Sharpe, p.103",1976.06.01-McMillan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.01-McMillan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.01-McMillan.pdf,1976.06.01,1976.06.01,3034,, +1976.05.02,02-May-76,1976,Boat,SOUTH AFRICA,Western Cape Province,40 km off Cape Point,Competing in a light tackle game fishing,"6 m skiboat, occupants: Terry McManus, Dan Clark and Blackie Swart",,,"Shark following hooked fish, rammed & holed boat",N,,"Mako shark, 180-kg [397-lb]","The Argus, 5/3/1976",1976.05.02-McManus-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.05.02-McManus-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.05.02-McManus-boat.pdf,1976.05.02,1976.05.02,3033,, +1976.04.28,28-Apr-76,1976,Invalid,USA,Texas,Galveston Island,,Unknown,,,"Possible drowning victim, remains retrieved from shark caught by fishermen on 28-Apr-1976",Y,,400-lb shark,"NY Times 4/30/1976, p.14, col.8",1976.04.28-HumanRemains-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.04.28-HumanRemains-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.04.28-HumanRemains-Galveston.pdf,1976.04.28,1976.04.28,3032,, +1976.03.12.b,12-Mar-76,1976,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Standing,Glen Wright,M,21 or 26,Lacerations to left leg,N,14h30,,Winnipeg Free Press. 3/17/1976,1976.03.12.b-GlenWright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.12.b-GlenWright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.12.b-GlenWright.pdf,1976.03.12.b,1976.03.12.b,3031,, +1976.03.12.a,12-Mar-76,1976,Boat,SOUTH AFRICA,Western Cape Province,Robberg Point,Fishing,"boat, occupants: Jacob Kruger & crew",,,"No injury to occupants, shark buckled prop shaft",N,,Whale shark,T. Wallett; GSAF,1976.03.12.a-Kruger-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.12.a-Kruger-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.12.a-Kruger-boat.pdf,1976.03.12.a,1976.03.12.a,3030,, +1976.03.09,09-Mar-76,1976,Boat,SOUTH AFRICA,Western Cape Province,"2 km from Macassar, False Bay",,5 m skiboat; Stephanie,,,Shark breached hull of boat,N,,White shark named �Spotty�,"T. Wallett, p.31",1976.03.09-Stephanie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.09-Stephanie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.09-Stephanie.pdf,1976.03.09,1976.03.09,3029,, +1976.03.02,02-Mar-76,1976,Boat,SOUTH AFRICA,Western Cape Province,"2 km from Macassar, False Bay",,"5 m skiboat Stephanie, occupants: Fanie Schoeman and Brigadier Bronkhorst",,,"Shark leapt into boat, hitting Fanie Schoeman on his back before sliding into the sea",N,,White shark named �Spotty�,"T. Wallett, pp.30-31",1976.03.02-Stephanie-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.02-Stephanie-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.02-Stephanie-boat.pdf,1976.03.02,1976.03.02,3028,, +1976.02.03,03-Feb-76,1976,Boat,SOUTH AFRICA,Western Cape Province,False Bay,Shark watching,"6 m boat Suki Saki, occupants: E.C. Landells & 2 friends",,,"No injury to occupants, shark rammed bow, driving its head into the hull",N,,2.5 m [8.25'] white shark,"T. Wallett, p.30",1976.02.03-Suki-Saki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.02.03-Suki-Saki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.02.03-Suki-Saki.pdf,1976.02.03,1976.02.03,3027,, +1976.01.13,13-Jan-76,1976,Provoked,SOUTH AFRICA,Western Cape Province,Hartenbos,Shark fishing,"6 m catamaran, occupants: Peter Robertson, Beauchamp Robertson, Gerald Spence & 3 crew",,,"No injury to occupants, After shark was harpooned & shot, it holed the boat PROVOKED INCIDENT",N,,4 m [13'] shark,T. Wallett,1976.01.13-catamaran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.13-catamaran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.13-catamaran.pdf,1976.01.13,1976.01.13,3026,, +1976.01.12,12-Jan-76,1976,Unprovoked,AUSTRALIA,Queensland,Harvey Bay,,Marlene Evler,F,,Survived,N,,,"R. McKenzie, Coast Sun, 9/6/1987, p.11",1976.01.12-Evler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.12-Evler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.12-Evler.pdf,1976.01.12,1976.01.12,3025,, +1976.01.11,11-Jan-76,1976,Provoked,SOUTH AFRICA,Western Cape Province,Kalk Bay,Fishing for snoek & yellowtail,"7 m fishing boat Metoo, occupants: Nicky & Paul Goles & 4 friends",,,"Hooked shark leapt onboard & into fish well, which it smashed PROVOKED INCIDENT",N,07h30,"White shark, 3 m [10'] "," T. Wallett, p.30",1976.01.11-Metoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.11-Metoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.11-Metoo.pdf,1976.01.11,1976.01.11,3024,, +1976.01.08,08-Jan-76,1976,Unprovoked,USA,Florida,"Off Fort Pierce, St Lucie County",Spearfishing / scuba diving,Hank Greenberg,M,25,Puncture wounds to head & neck,N,,6' shark,"Naples Daily News, 1/9/1976",1976.01.08-Greenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.08-Greenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.08-Greenberg.pdf,1976.01.08,1976.01.08,3023,, +1976.01.02,02-Jan-76,1976,Unprovoked,NEW ZEALAND,North Island,"Te Kaha, East coast",Spearfishing,John Grainger Leith,M,,FATAL,Y,13h00,Bronze whaler shark,"R.D. Weeks, GSAF; New Zealand Herald, 3/3/2001",1976.01.02-Leith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.02-Leith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.02-Leith.pdf,1976.01.02,1976.01.02,3022,, +1976.00.00.b,1976,1976,Unprovoked,USA,Hawaii,"Off Lahaina, Maui",Scuba diving,Danson Nakaima,M,,"FATAL, lost consciousness at depth of 180'. Large sharks seen near partial remains of body",Y,,,"J. Borg, p.74; L. Taylor (1993), pp.104-105",1976.00.00.b-Nakaima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.00.00.b-Nakaima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.00.00.b-Nakaima.pdf,1976.00.00.b,1976.00.00.b,3021,, +1975.12.29,29-Dec-75,1975,Boat,AUSTRALIA,South Australia,Glenelg,Attempting to drive shark away from the beach,"rescue boat of the Glenelg Surf Club, captained by G.W. Scarfe",,N/A,"No injury, shark charged & rammed boat several times",N,,2.4 m [8'] shark,"A. Sharpe, p.125",1975.12.29-RescueBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.12.29-RescueBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.12.29-RescueBoat.pdf,1975.12.29,1975.12.29,3020,, +1975.12.06,06-Dec-75,1975,Unprovoked,USA,California,Farallon Islands,Scuba diving & spearfishing,Robin Buckley (male),M,27,Leg bitten,N,12h00,White shark,"D. Miller & R. Collier, R. Collier, pp.67-69; J. McCosker & R.N. Lea; NY Times, 12/7/1975, p.30, col.1",1975.12.06-Buckley_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.12.06-Buckley_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.12.06-Buckley_Collier.pdf,1975.12.06,1975.12.06,3019,, +1975.12.02,02-Dec-75,1975,Provoked,AUSTRALIA,New South Wales,"Porpoise Pool, Tweed Heads",Filming & feeding captive sharks,John Strand,M,35,Tooth mark in left elbow PROVOKED INCIDENT,N,,"Grey nurse shark, 10' ","J. Green, p.36",1975.12.02-Strand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.12.02-Strand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.12.02-Strand.pdf,1975.12.02,1975.12.02,3018,, +1975.11.19.b,19-Nov-75,1975,Unprovoked,AUSTRALIA,New South Wales,"Queenscliff, Sydney",Standing,Peter Cole,M,20,Laceration to posterior thigh,N,,5' shark,"The Age, 11/20/1975",1975.11.19.b-Cole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.19.b-Cole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.19.b-Cole.pdf,1975.11.19.b,1975.11.19.b,3017,, +1975.11.19.a,19-Nov-75,1975,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"South Beach, Durban",Standing,Michael van den Berg,M,33,Left foot lacerated,N,10h00,Juvenile dusky shark,"G. Charter, B. Davis, NSB",1975.11.19.a-VanDenBerg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.19.a-VanDenBerg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.19.a-VanDenBerg.pdf,1975.11.19.a,1975.11.19.a,3016,, +1975.11.07,07-Nov-75,1975,Unprovoked,AUSTRALIA,Queensland,Lookout Point,,John Haig,M,,Puncture wounds in hand,N,,,"R. McKenzie, Sunday Mail, 3/27/1994, p.107",1975.11.07-Haig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.07-Haig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.07-Haig.pdf,1975.11.07,1975.11.07,3015,, +1975.11.02,02-Nov-75,1975,Unprovoked,USA,Florida,"Crescent Beach, St. Johns County",Surfing,Scott Lee Hurst,M,18,Foot bitten,N,,6' shark,"NY Times, 11/6/1975, p.8",1975.11.02-Hurst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.02-Hurst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.02-Hurst.pdf,1975.11.02,1975.11.02,3014,, +1975.10.21,21-Oct-75,1975,Invalid,USA,New Jersey,"Sandy Hook, Monmouth County",Surf fishing,,M,,"""Tooth marks"" in left leg",N,11h30,Shark involvement unconfirmed,"J. Stone; Asbury Park Press, 10/22/1975",1975.10.21-SandyHook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.21-SandyHook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.21-SandyHook.pdf,1975.10.21,1975.10.21,3013,, +1975.10.12,12-Oct-75,1975,Unprovoked,AUSTRALIA,New South Wales,"Lennox Head, Ballina",Surfing,Barry Neale,M,20,"Cracked jaw & broken tooth, shark took chunk out of surfboard",N,,Bronze whaler,"J. Green, p.36",1975.10.12-Neale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.12-Neale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.12-Neale.pdf,1975.10.12,1975.10.12,3012,, +1975.10.04,04-Oct-75,1975,Invalid,USA,California,"Seal Beach, Orange County",Surfing,,,,,UNKNOWN,,,Unconfirmed Report,1975.10.04-NV-California.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.04-NV-California.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.04-NV-California.pdf,1975.10.04,1975.10.04,3011,, +1975.09.00,Sep-75,1975,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Richards Bay,Paddleskiing,Tony Meehan,M,21,Right foot & ankle lacerated,N,,1.2 m [4'] shark,"G. Charter, NSB",1975.09.00-Meehan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.09.00-Meehan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.09.00-Meehan.pdf,1975.09.00,1975.09.00,3010,, +1975.08.17,17-Aug-75,1975,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Cape St. Francis,Surfing,David Robertson,M,19,Left leg & surfboard bitten,N,13h30,"White shark, 2.4 m [8']","D. Robertson, M. Levine, GSAF; J. Wallace, ORI; T. Wallett, p.40",1975.08.17-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.17-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.17-Robertson.pdf,1975.08.17,1975.08.17,3009,, +1975.08.12,12-Aug-75,1975,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Floating on a small orange raft ,Henry Peterson,M,20,"Calf bitten, leg surgically amputated below the knee Note: by late August, 3 more bathers had been bitten by sharks at Daytona Beach",N,12h00,1.5 m [5'] shark,"NY Times, 8/17/1975, p.27",1975.08.12-Peterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.12-Peterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.12-Peterson.pdf,1975.08.12,1975.08.12,3008,, +1975.08.09,09-Aug-75,1975,Unprovoked,USA,California,"Usal Creek, Bear Harbor, Mendocino County",Free diving for abalone,Gilbert Brown,M,44,"Shoulder, arm & hand lacerated",N,13h30,White shark,"D. Miller & R. Collier, R. Collier, pp.65-67; J. McCosker & R.N. Lea",1975.08.09-Brown_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.09-Brown_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.09-Brown_Collier.pdf,1975.08.09,1975.08.09,3007,, +1975.08.04,04-Aug-75,1975,Unprovoked,HONG KONG,Mirs Bay ,,Freedom swimming,male,M,24,"Leg bitten, surgically amputated",N,,,"Corpus Christi Times, 8/4/1975",1975.08.04-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.04-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.04-HongKong.pdf,1975.08.04,1975.08.04,3006,, +1975.07.30.b,30-Jul-75,1975,Sea Disaster,USA,Oregon,,Sea disaster,Grace Conger ,F,62,"FATAL, arms & legs bitten",Y,,,"Times, 8/1/1975, Yuma Daily Sun, 8/1/1975 ",1975.07.30.b-Conger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.30.b-Conger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.30.b-Conger.pdf,1975.07.30.b,1975.07.30.b,3005,, +1975.07.30.a,30-Jul-75,1975,Unprovoked,AUSTRALIA,Tasmania,"Fluted Cape, Bruny Island",Scuba diving for abalone,Robert Slack,M,37,FATAL,Y,Afternoon,White shark,"Times, 8/1/1975, Yuma Daily Sun, 8/1/1975; C. Black pp. 153-157 ",1975.07.30.a-Slack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.30.a-Slack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.30.a-Slack.pdf,1975.07.30.a,1975.07.30.a,3004,, +1975.07.26.b,26-Jul-1975.b,1975,Unprovoked,USA,Florida,"Off Hutchinson Island, St Lucie County",Free diving,Charles Cook,M,24,Forearms lacerated,N,,,"News-Tribune, 7/28/1975",1975.07.26.b-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.26.b-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.26.b-Cook.pdf,1975.07.26.b,1975.07.26.b,3003,, +1975.07.26.a,26-Jul-75,1975,Unprovoked,AUSTRALIA,Queensland,Maroochydore,Surfing,Gary Grace,M,21,Buttocks & leg bitten,N,,12' shark,"Bucks County Courier Times, 7/28/1975; Sunday Mail (QLD), 1//7/1996,p.4; J. Green, p.36",1975.07.26.a-Grace.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.26.a-Grace.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.26.a-Grace.pdf,1975.07.26.a,1975.07.26.a,3002,, +1975.07.23,23-Jul-75,1975,Unprovoked,USA,California,"Perch Rock, Point Conception, Santa Barbara County",Scuba diving for abalone (at surface),Robert Revstock,M,23,Legs bitten,N,14h30,"White shark, 5.8 m [19'] ","D. Miller & R. Collier; R. Collier, pp.64-65; G. Ambrose, pp.103 & 112 ",1975.07.23-Rebstock_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.23-Rebstock_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.23-Rebstock_Collier.pdf,1975.07.23,1975.07.23,3001,, +1975.07.19,19-Jul-75,1975,Unprovoked,USA,California,"Point Conception, Santa Barbara County",Hookah diving for abalone,Gary Johnson,M,34,"No injury, swim fin torn",N,13h30,"White shark, 5m to 6m",R. Collier,1975.07.19-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.19-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.19-Johnson.pdf,1975.07.19,1975.07.19,3000,, +1975.07.15,15-Jul-75,1975,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,Beverly White,F,14,Arm lacerated,N,Mid-morning,1.2 m [4'] shark,"E. Ritter, GSAF",1975.07.15-BeverlyWhite-X.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.15-BeverlyWhite-X.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.15-BeverlyWhite-X.pdf,1975.07.15,1975.07.15,2999,, +1975.07.05,05-Jul-75,1975,Provoked,AUSTRALIA,Western Australia,"15 km north of Lancelin, north of Perth",Spearfishing,Dennis Thompson,M,29,Speared shark bit his arm between elbow and shoulder PROVOKED INCIDENT,N,,2.4 m [8'] whaler shark,"Washington Post, 7/7/1975",1975.07.05-DennisThompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.05-DennisThompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.05-DennisThompson.pdf,1975.07.05,1975.07.05,2998,, +1975.07.04,04-Jul-75,1975,Unprovoked,USA,Florida,"Indiatlantic, Brevard County",Surfing,Robert Clark,M,16,"Foot bitten, tendons damaged",N,,,"NY Times, 7/6/1975, p.5",1975.07.04-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.04-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.04-Clark.pdf,1975.07.04,1975.07.04,2997,, +1975.06.23.b,23-Jun-75,1975,Unprovoked,USA,South Carolina,"Windy Hill, near Myrtle Beach, Horry County",Swimming ,Jim Krents,M,18,Lacerations to right foot,N,16h30,4' shark,"Morning Herald (Uniontown, PA), 7/2/1975",1975.06.23.b-Krents.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.23.b-Krents.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.23.b-Krents.pdf,1975.06.23.b,1975.06.23.b,2996,, +1975.06.23.a,23-Jun-75,1975,Unprovoked,USA,South Carolina,"North Myrtle Beach, Horry County",Standing,Donna Hutson,F,15,Hand & wrist bitten,N,14h30,,"Morning Herald (Uniontown, PA), 6/26/1975",1975.06.23.a-Hutson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.23.a-Hutson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.23.a-Hutson.pdf,1975.06.23.a,1975.06.23.a,2995,, +1975.06.15,15-Jun-75,1975,Unprovoked,USA,Alabama,5 miles off the coast,Swimming near his boat,William Wayne Daniels,M,27,Left leg bitten,N,,,"The News, 6/16/1975",1975.06.15-Daniels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.15-Daniels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.15-Daniels.pdf,1975.06.15,1975.06.15,2994,, +1975.06.02.R,Reported 02-Jun-1975,1975,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Surfing,Jeffrey Hanrahan,M,20,"No injury, board bumped",N,,,"Sarasota Herald Tribune, 6/2/1975",1975.06.02.R-Hanrahan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.02.R-Hanrahan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.02.R-Hanrahan.pdf,1975.06.02.R,1975.06.02.R,2993,, +1975.06.00.c,Jun-75,1975,Provoked,USA,Florida," New Smyrna Beach, Volusia County",,,M,,Slightly injured when he stepped on a shark PROVOKED INCIDENT,N,,,undated press clipping - see 1975.06.00.b,1975.06.00.c-stepped-on-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.00.c-stepped-on-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.00.c-stepped-on-shark.pdf,1975.06.00.c,1975.06.00.c,2992,, +1975.05.25,25-May-75,1975,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Edward Bassett,M,17,Right foot bitten,N,10h00,,"Sumter Daily Item, 7/9/1975",1975.05.25-Bassett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.05.25-Bassett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.05.25-Bassett.pdf,1975.05.25,1975.05.25,2991,, +1975.05.20,20-May-75,1975,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Bathing,Cindy Jones,F,10,Leg bitten,N,,,"Pacifc Stars and Stripes, 6/3/1975",1975.05.20-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.05.20-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.05.20-Jones.pdf,1975.05.20,1975.05.20,2990,, +1975.04.25,25-Apr-75,1975,Invalid,ITALY,Genoa Province,Cervara,Scuba diving,Walter Sansoni,M,37,"The press reported this as a shark attack, but the diver was the agressor",N,,2 m shark,"C. Moore, GSAF",1975.04.25-Sansoni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.04.25-Sansoni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.04.25-Sansoni.pdf,1975.04.25,1975.04.25,2989,, +1975.04.18,18-Apr-75,1975,Invalid,SOUTH AFRICA,KwaZulu-Natal,Durban,,Indian male,M,,Probable drowning / scavenging,Y,,,"B. Davis, NSB",1975.04.18-IndianMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.04.18-IndianMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.04.18-IndianMale.pdf,1975.04.18,1975.04.18,2988,, +1975.04.05,05-Apr-75,1975,Unprovoked,SOUTH AFRICA,Western Cape Province,Millers Point,Spearfishing Competition,Kevin Thompson,M,,"No injury, rammed by shark",N,Afternoon,"White shark, 600-kg [1323-lb]","Cape Times, 4/7/1975",1975.04.05-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.04.05-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.04.05-Thompson.pdf,1975.04.05,1975.04.05,2987,, +1975.03.29,29-Mar-75,1975,Invalid,SOUTH AFRICA,KwaZulu-Natal,Tongaat,Swimming,Indian male,M,,Probable drowning / scavenging,Y,,White shark,"B. Davis, Natal Sharks Board",1975.03.29-Tongaat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.29-Tongaat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.29-Tongaat.pdf,1975.03.29,1975.03.29,2986,, +1975.03.18,18-Mar-75,1975,Unprovoked,AUSTRALIA,Queensland,Mornington Island,,female,F,,Hand bitten,N,,,"R. McKenzie, Sunday Mail, 9/6/1987, p.11",1975.03.18-MorningtonIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.18-MorningtonIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.18-MorningtonIsland.pdf,1975.03.18,1975.03.18,2985,, +1975.03.16,16-Mar-75,1975,Unprovoked,USA,Florida,"Clearwater Beach, Pinellas County",Floating in inner tube,William Hodges,M,14,Left leg & foot bitten,N,,10' shark,"News Tribune, 5/17/1975",1975.03.16-Hodges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.16-Hodges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.16-Hodges.pdf,1975.03.16,1975.03.16,2984,, +1975.03.13,13-Mar-75,1975,Provoked,AUSTRALIA,Queensland,Southport Aquarium,Diving & force-feeding the shark,William Hookway,,18,Laceration to thigh by captive shark PROVOKED INCIDENT,N,,"Bronze whaler shark, 6'","The Age, 3/14/1975",1975.03.13-Hookway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.13-Hookway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.13-Hookway.pdf,1975.03.13,1975.03.13,2983,, +1975.03.09,09-Mar-75,1975,Provoked,SOUTH AFRICA,Western Cape Province,"Boggomsbaai, Mossel Bay",Attempting to drag hooked shark ashore by its tail,Frans Swanepoel,M,,Left leg bitten PROVOKED INCIDENT,N,,1.5 m [5'] shark,"M. Levine, GSAF",1975.03.09-Swanepoel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.09-Swanepoel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.09-Swanepoel.pdf,1975.03.09,1975.03.09,2982,, +1975.03.00,Mar-75,1975,Sea Disaster,BANGLADESH,Ganges-Brahmaputra delta,,Ferry capsized,,,,"FATAL, of 190 passengers & crew thrown into the water, 50 people were said to have been killed by sharks",Y,,,"M. McDiarmid, p.67",1975.03.00-Bangladesh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.00-Bangladesh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.00-Bangladesh.pdf,1975.03.00,1975.03.00,2981,, +1975.02.23,23-Feb-75,1975,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Inyoni Rocks, Amanzimtoti",Surfing,Bretton Russell Jones,M,16,Foot severed,N,10h55,1.5 m [5'] shark,"S. Jooste; B.R. Jones, M. Levine, GSAF; T. Wallett, pp.22-24",1975.02.23-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.23-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.23-Jones.pdf,1975.02.23,1975.02.23,2980,, +1975.02.14.R,Reported 14-Feb-1975,1975,Boat,SOUTH AFRICA,Western Cape Province,Plettenberg Bay,,"hobiecat, occupants: Judy Lambert & a friend",,,Shark bit rudder & hull,N,,"Mako shark, 3 m [10'] ",GSAF,1975.02.14-Hobiecat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.14-Hobiecat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.14-Hobiecat.pdf,1975.02.14.R,1975.02.14.R,2979,, +1975.02.10,10-Feb-75,1975,Unprovoked,AUSTRALIA,South Australia,(Point Sinclair) Penong,Swimming underwater from crayfish cage to a fishing bait,Wade Shipard,M,12,Right leg severed FATAL,Y,18h00,"White shark, 3 m [10'] "," A. Sharpe, pp.124-125; Sydney Morning Herald, 2/3/2001 ed.",1975.02.10-Shipard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.10-Shipard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.10-Shipard.pdf,1975.02.10,1975.02.10,2978,, +1975.02.09,09-Feb-75,1975,Unprovoked,AUSTRALIA,Victoria,Anglesea,Crayfishing,John Lear,M,45,Puncture wounds to right shoulder,N,,"Carpet shark, 10' ","The Age, 2/11/1975",1975.02.09-Lear.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.09-Lear.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.09-Lear.pdf,1975.02.09,1975.02.09,2977,, +1975.02.07,07-Feb-75,1975,Unprovoked,AUSTRALIA,Queensland,Currumbin Rock,,M. Worman,M,,Survived,N,,,"J. Green, p. 36",1975.02.07-Worman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.07-Worman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.07-Worman.pdf,1975.02.07,1975.02.07,2976,, +1975.02.01,01-Feb-75,1975,Provoked,SOUTH AFRICA,Western Cape Province,"Beespens, False Bay",Fishing,Gerhard Visser,M,12,Foot bitten by shark he was gaffing PROVOKED INCIDENT,N,,"Copper shark, 50-kg [110-b] ","The Argus, 2/3/1975",1975.02.01-Visser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.01-Visser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.01-Visser.pdf,1975.02.01,1975.02.01,2975,, +1975.01.19,19-Jan-75,1975,Unprovoked,AUSTRALIA,South Australia,Coffin Bay,Surfing,David Barrowman,M,17,"FATAL, body not recovered",Y,,,"J. West; Adelaide Advertiser, 1/20/1975; P. Kemp, GSAF",1975.01.19-Barrowman.pdf,,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.01.19-Barrowman.pdf,1975.01.19,1975.01.19,2974,, +1975.00.00.b,1975,1975,Unprovoked,BERMUDA,,,Spearfishing,Geeteh Toussaint,M,25,Laceration to right ankle,N,,8' blue shark,"E. Pace, FSAF",1975.00.00.b-Toussaint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.00.00.b-Toussaint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.00.00.b-Toussaint.pdf,1975.00.00.b,1975.00.00.b,2973,, +1975.00.00.a,1975,1975,Unprovoked,REUNION,,,,a soldier,M,,FATAL,Y,,,Reunion Marine Observatory,1975.00.00.a-NV-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.00.00.a-NV-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.00.00.a-NV-Reunion.pdf,1975.00.00.a,1975.00.00.a,2972,, +1974.12.10,12-Dec-74,1974,Unprovoked,AUSTRALIA,Western Australia,Geographe Bay,,G. Allen,,32,Survived,N,,,"J. Green, p.36",1974.12.10-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.12.10-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.12.10-Allen.pdf,1974.12.10,1974.12.10,2971,, +1974.11.01,01-Nov-74,1974,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Standing,Dwayne W. Ortwine,M,24,Laceration to foot,N,Afternoon,,"Daytona Beach Morning Journal, 11/2/1974",1974.11.01-Ortwine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.11.01-Ortwine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.11.01-Ortwine.pdf,1974.11.01,1974.11.01,2970,, +1974.09.28,28-Sep-74,1974,Unprovoked,USA,California,"North of Point Sur, Monterey County",Surfing,Kirk Johnston,M,17,"Thigh, lower back and surfboard bitten",N,07h30,"White shark, 5.5 m to 6 m [18' to 20'] ","D. Miller & R. Collier, R. Collier, pp.59-62, J. McCosker & R. N. Lea",1974.09.28-Johnston_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.28-Johnston_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.28-Johnston_Collier.pdf,1974.09.28,1974.09.28,2969,, +1974.09.14,14-Sep-74,1974,Unprovoked,USA,California,"North Farallon Island, Farallon Islands",Hookah diving for abalone,Jon Holcomb,M,29,Major injuries,N,13h45,"White shark, 4 m to 5 m ","D. Miller & R. Collier, R. Collier, pp.57-59; J. McCosker & R.N. Lea",1974.09.14-Holcomb_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.14-Holcomb_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.14-Holcomb_Collier.pdf,1974.09.14,1974.09.14,2968,, +1974.09.07,07-Sep-74,1974,Unprovoked,ISRAEL,Red Sea,"North Beach, Eilat",Swimming,Beatrice Aharonowich,F,20,"Bitten 12 times: multiple lacerations on hands, arms, shoulder breast thigh, both legs, left forearm surgically amputated ",N,17h00,"Shortfin mako shark, 2.3 m [7.5'] ","The Times (London), 9/9/1974, p. 7; J. Randall & M. F. Levy (1976)",1974.09.07-Aharonowich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.07-Aharonowich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.07-Aharonowich.pdf,1974.09.07,1974.09.07,2967,, +1974.09.02.b,02-Sep-74,1974,Unprovoked,USA,California,"Franklin Point, San Mateo County",Scuba diving (but on surface),Jack Greenlaw,M,41,Minor injuries to hand,N,17h30,"White shark, 5 m to 6 m [16.5 to 20'] ","D. Miller & R. Collier, R. Collier, pp. 56-57; J. McCosker & R.N. Lea",1974.09.02.b-Greenlaw.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.02.b-Greenlaw.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.02.b-Greenlaw.pdf,1974.09.02.b,1974.09.02.b,2966,, +1974.09.02.a,02-Sep-74,1974,Unprovoked,USA,California,"Franklin Point, San Mateo County",Scuba diving (but on surface),Dale Webster,M,48,Minor bite on foot & swimfin,N,17h30,"White shark, 5 m to 6 m [16.5 to 20'] ","D. Miller & R. Collier, R. Collier, pp. 56-57; J. McCosker & R.N. Lea",1974.09.02.a.-DaleWebster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.02.a.-DaleWebster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.02.a.-DaleWebster.pdf,1974.09.02.a,1974.09.02.a,2965,, +1974.09.01,01-Sep-74,1974,Sea Disaster,AUSTRALIA,Queensland,"Junpinpin, off Stradbroke Island",3.3 m fishing boat sank. Treveluwe & Peter Hodgson (wearing lifejackets) were drifting in the current,Adrian Treveluwe,M,30,"Missing, believed taken by a shark",N,,,"J. Green, p.36; A. Sharpe, pp.102-103",1974.09.01-Treveuwe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.01-Treveuwe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.01-Treveuwe.pdf,1974.09.01,1974.09.01,2964,, +1974.09.00,Sep-74,1974,Unprovoked,USA,Oregon,Myers Creek,Surfing,Curt Brown,M,24,No injury,N,Morning,"White shark, 4.5 m ",R. Collier,1974.09.00-Brown_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.00-Brown_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.00-Brown_Collier.pdf,1974.09.00,1974.09.00,2963,, +1974.08.23,23-Aug-74,1974,Unprovoked,HONG KONG,Mirs Bay ,,Freedom Swimming,male,M,22,Survived,N,,,"Washington Post, 8/24/1974,p.D6",1974.08.23-FreedomSwimmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.23-FreedomSwimmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.23-FreedomSwimmer.pdf,1974.08.23,1974.08.23,2962,, +1974.08.16.c,16-Aug-74,1974,Unprovoked,HONG KONG,Mirs Bay ,,Freedom swimming,male,M,,FATAL,Y,,,"A. MacCormick, p.157",1974.08.16.c-Freedom swimmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.16.c-Freedom swimmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.16.c-Freedom swimmer.pdf,1974.08.16.c,1974.08.16.c,2961,, +1974.08.16.b,16-Aug-74,1974,Unprovoked,HONG KONG,Mirs Bay ,,Freedom swimming,Ho-Sin-Ming (male),M,19,Arm broken & severely lacerated,N,,,"A. MacCormick, p.157",1974.08.16.b-Ming.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.16.b-Ming.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.16.b-Ming.pdf,1974.08.16.b,1974.08.16.b,2960,, +1974.08.16.a,16-Aug-74,1974,Unprovoked,HONG KONG,Mirs Bay ,,Freedom swimming,Yee Wing Ping (male),M,18,Left foot bitten,N,,,"A. MacCormick, p.157",1974.08.16.a-Ping.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.16.a-Ping.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.16.a-Ping.pdf,1974.08.16.a,1974.08.16.a,2959,, +1974.08.10,10-Aug-74,1974,Unprovoked,CROATIA, Split-Dalmatia County," Lokva Rogoznica, Omis",,Rolf Schneider,M,21,Foot severed FATAL,Y,15h00,"White shark, 5 m [16.5'] ",A. De Maddalena; R. Rocconi,1974.08.10-Schneider.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.10-Schneider.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.10-Schneider.pdf,1974.08.10,1974.08.10,2958,, +1974.08.05,05-Aug-74,1974,Unprovoked,USA,California,"San Gregorio Beach, San Mateo County",Surfing,Robert Sanders,M,,Minor injuries to hand,N,,"White shark, 5 m ",R.Collier,1974.08.05-Sanders_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.05-Sanders_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.05-Sanders_Collier.pdf,1974.08.05,1974.08.05,2957,, +1974.07.26,26-Jul-74,1974,Unprovoked,USA,California,"Albion Cove, Albion, Mendocino County",Free diving for abalone (submerged),Robert Kehl,M,36,Minor bite on heel & swim fin bitten,N,,"White shark, 5.5 m [18'] ","D. Miller & R. Collier, R. Collier, pp.54-56; J. McCosker & R.N. Lea",1974.07.26-Kehl_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.07.26-Kehl_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.07.26-Kehl_Collier.pdf,1974.07.26,1974.07.26,2956,, +1974.07.20,20-Jul-74,1974,Unprovoked,USA,Georgia,"Back River, Savannah Beach, Chatham County",Swimming,John Carter,M,17,FATAL,Y,,small sharks',"Rome News Tribune, 7/31/1974",1974.07.20-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.07.20-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.07.20-Carter.pdf,1974.07.20,1974.07.20,2955,, +1974.07.02,02-Jul-74,1974,Sea Disaster,USA,Florida ,Gulf of Mexico,Adrift after the sinking of the motor yacht Princess Dianne,Billy Horne,M,10,Arm bitten FATAL,Y,,3.7 m [12'] sharks,"Wilmington Star, 7/3/1974, p.3A",1974.07.02-BillyHorne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.07.02-BillyHorne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.07.02-BillyHorne.pdf,1974.07.02,1974.07.02,2954,, +1974.06.20,20-Jun-74,1974,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,Olive Heaton,F,61,Lacerations to hip and leg,N,08h55,,"Daytona Beach Morning Journal, 6/21/1974",1974.06.20-Heaton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.06.20-Heaton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.06.20-Heaton.pdf,1974.06.20,1974.06.20,2953,, +1974.05.26,26-May-74,1974,Unprovoked,USA,California,"Tomales Point, Marin County",Free diving (but on surface),Leroy Hancock,M,45,Leg bitten,N,11h30,"White shark, 5 m [16.5']","D. Miller & R. Collier, R. Collier, p.53; J. McCosker & R.N. Lea",1974.05.26-Hancock_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.05.26-Hancock_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.05.26-Hancock_Collier.pdf,1974.05.26,1974.05.26,2952,, +1974.04.25.R,Reported 25-Apr-1974,1974,Sea Disaster,BRAZIL,,,Fishing boat swamped in a storm,5 men,M,,FATAL,Y,,,"Fresno Bee Republican, 4/25/1974",1974.04.25.R-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.25.R-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.25.R-Brazil.pdf,1974.04.25.R,1974.04.25.R,2951,, +1974.04.20,20-Apr-74,1974,Unprovoked,SOUTH AFRICA,Western Cape Province,Arniston,Spearfishing,Andre Hartman,M,22,Left knee lacerated,N,Late afternoon,"Raggedtooth shark, 1.5 m [5'] ","A. Hartman, M. Levine, GSAF; Cape Argus, 4/26/1974",1974.04.20-Hartman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.20-Hartman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.20-Hartman.pdf,1974.04.20,1974.04.20,2950,, +1974.04.14,14-Apr-74,1974,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Glengariff,Standing,Simon Parkin,M,19,Lower right leg lacerated,N,15h30,,"S. Parkin, M. Levine, GSAF; T. Wallett, p.40",1974.04.14-Parkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.14-Parkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.14-Parkin.pdf,1974.04.14,1974.04.14,2949,, +1974.04.12,12-Apr-74,1974,Unprovoked,USA,Florida,"Haulover Beach, Miami-Dade County",Swimming,Stacie Alexander,F,11,Foot bitten,N,,,"Chicago Tribune, 4/13/1974",1974.04.12-Alexander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.12-Alexander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.12-Alexander.pdf,1974.04.12,1974.04.12,2948,, +1974.04.04,04-Apr-74,1974,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Inyoni Rocks, Amanzimtoti",Surfing,Anthony Kenneth Baker,M,17,Right foot lacerated,N,16h30,Juvenile dusky shark,"A. Baker, M. Levine, GSAF; G. Charter & B. Davis, NSB; T. Wallett, p.21",1974.04.04-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.04-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.04-Baker.pdf,1974.04.04,1974.04.04,2947,, +1974.03.21,21-Mar-74,1974,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Amanzimtoti,Surfing,James Arthur Gurr,M,21,"No injury, surfboard bitten",N,16h30 or 18h00,1.8 m [6'] shark,"J. Gurr, M. Levine, GSAF; G. Charter, NSB; T. Wallett, p.20",1974.03.21-Gurr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.03.21-Gurr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.03.21-Gurr.pdf,1974.03.21,1974.03.21,2946,, +1974.03.00,Mar-74,1974,Boat,SOUTH AFRICA,Western Cape Province,Macassar,Fishing for kob,"skiboat, occupant: Danie Schoeman",,,"No injury to occupant, shark holed boat",N,,White shark,"T. Wallett, p.37",1974.03.00-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.03.00-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.03.00-Schoeman.pdf,1974.03.00,1974.03.00,2945,, +1974.02.13.b,13-Feb-74,1974,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Inyoni Rocks, Amanzimtoti",Swimming,Damon Kendrick,M,14,"Right calf removed, leg surgically amputated below the knee",N,19h00,,"D. Kendrick, S. Jooste, G. Charter, B. Davis, M. Levine, GSAF; T. Wallett, pp.18-19 ",1974.02.13.b-Kendrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.13.b-Kendrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.13.b-Kendrick.pdf,1974.02.13.b,1974.02.13.b,2944,, +1974.02.13.a,13-Feb-74,1974,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Inyoni Rocks, Amanzimtoti",Swimming,Joe Kool,M,19,Right shin lacerated,N,19h00,,"J. Kool, S. Jooste; M. Levine, GSAF",1974.02.13.a-Kool.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.13.a-Kool.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.13.a-Kool.pdf,1974.02.13.a,1974.02.13.a,2943,, +1974.02.00.b,Feb-74,1974,Boat,SOUTH AFRICA,Western Cape Province,Macassar,Fishing for red fish,"skiboat, occupant: Danie Schoeman",,,"No injury to occupant, but a shark chasing a hooked fish holed his boat above the waterline",N,,5 m white shark,"T. Wallett, p.37",1974.02.00.b-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.00.b-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.00.b-Schoeman.pdf,1974.02.00.b,1974.02.00.b,2942,, +1974.02.00.a,Early Feb-1974,1974,Boat,SOUTH AFRICA,Western Cape Province,Macassar,Fishing for kob,"skiboat, occupants: Danie & Fanie Schoeman",,,"No injury, shark leapt into boat & bit one of the boat's seats",N,Night,White shark,"T. Wallett, pp.35-37",1974.02.00.a-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.00.a-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.00.a-Schoeman.pdf,1974.02.00.a,1974.02.00.a,2941,, +1974.01.13,13-Jan-74,1974,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Cape Vidal,Sitting,James Viljoen,M,42,2 minor lacerations in foot,N,,"Raggedtooth shark, 1 m ","Daily News (Durban), 1/29/1974; GSAF",1974.01.13-Viljoen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.13-Viljoen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.13-Viljoen.pdf,1974.01.13,1974.01.13,2940,, +1974.01.09,09-Jan-74,1974,Unprovoked,AUSTRALIA,South Australia,Streaky Bay,Diving for abalone,Terry Manuel,M,26,"FATAL, right leg severed ",Y,,White shark,"H. Hall; A. Sharpe, p.124;",1974.01.09-Manuel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.09-Manuel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.09-Manuel.pdf,1974.01.09,1974.01.09,2939,, +1974.01.07.c,07-Jan-74,1974,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Amanzimtoti,Swimming,Cornelius �Les� Pyper,M,33,Knee & calf lacerated,N,14h10,2 m to 2.5 m [6.75' to 8.25'] shark,"L. Pyper, J. Bass, G. Charter; B. Davis, M. Levine, GSAF; T. Wallett, pp.17-18. ",1974.01.07.c-Pyper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.07.c-Pyper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.07.c-Pyper.pdf,1974.01.07.c,1974.01.07.c,2938,, +1974.01.07.b,07-Jan-74,1974,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Swimming,Oaulkurt-Pape,M,,FATAL,Y,,,"Johannesburg Star, 1/8/1974",1974.01.07.b-Oaulkurt-Pape.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.07.b-Oaulkurt-Pape.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.07.b-Oaulkurt-Pape.pdf,1974.01.07.b,1974.01.07.b,2937,, +1974.01.07.a,07-Jan-74,1974,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Swimming,male,M,32,FATAL,Y,,,"P. Logan, GSAF",1974.01.07.a-Xai-Xai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.07.a-Xai-Xai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.07.a-Xai-Xai.pdf,1974.01.07.a,1974.01.07.a,2936,, +1974.00.00.b,Summer 1974,1974,Unprovoked,AUSTRALIA,Western Australia,Emu Channel,Spearfishing,Glen Tunbridge,M,,8 to 10 puncture marks around knee,N,,"Bronze whaler shark, 4' ",G. Tunbridge,1974.00.00.b-Tunbridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.00.00.b-Tunbridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.00.00.b-Tunbridge.pdf,1974.00.00.b,1974.00.00.b,2935,, +1974.00.00.a,1974,1974,Unprovoked,CROATIA,Primorje-Gorski Kotar County ,Preluka Harbour,,2 Czech tourists,,,FATAL,Y,,,A. DeMaddalena,1974.00.00.a-2Tourists.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.00.00.a-2Tourists.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.00.00.a-2Tourists.pdf,1974.00.00.a,1974.00.00.a,2934,, +1973.12.25,25-Dec-73,1973,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Spearfishing,Christiaan Weissig,M,41,"Right leg severed at knee, abrasion on left ankle",N,11h20,,"J. Bass; M Levine, GSAF",1973.12.25-Weissig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.25-Weissig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.25-Weissig.pdf,1973.12.25,1973.12.25,2933,, +1973.12.21.b,21-Dec-73,1973,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Swimming ,Hans Reiner,M,20,FATAL,Y,12h00,,Natal Witness Newspaper,1973.12.21-Reiner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.21-Reiner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.21-Reiner.pdf,1973.12.21.b,1973.12.21.b,2932,, +1973.12.19.R,Reported 18-Dec-1973,1973,Unprovoked,PHILIPPINES,Luzon,,Swimming,Ron Arney,M,19,FATAL,Y,,,"Washington Post, 12/19/1973",1973.12.19.R-Arney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.19.R-Arney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.19.R-Arney.pdf,1973.12.19.R,1973.12.19.R,2931,, +1973.12.18,18-Dec-73,1973,Unprovoked,USA,Hawaii,"Kalama Beach, Kihei, Maui",Swimming,Gary W. Floyd,M,,Leg bitten,N,,,"J. Borg, p.74; L. Taylor (1993), pp.102-103",1973.12.18-Floyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.18-Floyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.18-Floyd.pdf,1973.12.18,1973.12.18,2930,, +1973.12.00,Dec-73,1973,Unprovoked,MEXICO,Guerrero,Acapulco Bay,Swimming alongside yacht Mexico Fiesta,American male,M,20s,FATAL,Y,Late afternoon,,"A.Resciniti, pp.107-108",1973.12.00-MexicanFiesta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.00-MexicanFiesta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.00-MexicanFiesta.pdf,1973.12.00,1973.12.00,2929,, +1973.11.25,25-Nov-73,1973,Unprovoked,AUSTRALIA,Western Australia,Swan River,,Copley,,,Survived,N,,,"J. Green, p.36",1973.11.25-Copley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.11.25-Copley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.11.25-Copley.pdf,1973.11.25,1973.11.25,2928,, +1973.11.24,24-Nov-73,1973,Unprovoked,USA,Florida,"Ormond By The Sea, Volusia County",Surfing,Chip Trout,M,13,Foot bitten,N,Afternoon,,"Daytona Beach Sunday News-Journal, 11/25/1973",1973.11.24-Trout.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.11.24-Trout.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.11.24-Trout.pdf,1973.11.24,1973.11.24,2927,, +1973.11.03,03-Nov-73,1973,Unprovoked,AUSTRALIA,Queensland,Gin Arm Creek,,a Solomon Islander,,,Knee lacerated,N,,,"R. McKenzie, Sunday Mail, 9/6/1987, p.11",1973.11.03-SolomonIslander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.11.03-SolomonIslander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.11.03-SolomonIslander.pdf,1973.11.03,1973.11.03,2926,, +1973.09.29,29-Sep-73,1973,Sea Disaster,SOUTH AFRICA,KwaZulu-Natal,Mission Rocks,Being pulled to shore from wreck of 25-ton fishing vessel Alan S,male,,,"FATAL, thigh bitten ",Y,,,"Natal Mercury, 10/5/1973",1973.09.29-AlanS.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.29-AlanS.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.29-AlanS.pdf,1973.09.29,1973.09.29,2925,, +1973.09.14,14-Sep-73,1973,Unprovoked,BAHAMAS,Grand Bahama Island,"Memory Rock, 18 miles from NW end of the Island","Free diving, Spearfishing",Kevin G. Schlusemeyer,M,11,Left hand & forearm lacerated,N,14h30,7' to 8' bull shark,"M.Vorenberg, GSAF",1973.09.14-Schlusemeyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.14-Schlusemeyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.14-Schlusemeyer.pdf,1973.09.14,1973.09.14,2924,, +1973.09.10.R,Reported 10-Sep-1973,1973,Unprovoked,HONG KONG,Mirs Bay ,,Freedom Swimming,Tsang Kai-shing,M,20,FATAL,Y,,,"Charleston Daily Mail, 9/10/1973",1973.09.10.R-Tsang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.10.R-Tsang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.10.R-Tsang.pdf,1973.09.10.R,1973.09.10.R,2923,, +1973.09.09,09-Sep-73,1973,Unprovoked,MEXICO,Baja California,Guadalupe Island,"Free diving, Spearfishing",Al Schneppershoff,M,37,"FATAL, leg bitten ",Y,16h45,White shark,"Washington Post, 9/12/1973; J. McCosker & R.N. Lea",1973.09.09-Schneppershoff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.09-Schneppershoff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.09-Schneppershoff.pdf,1973.09.09,1973.09.09,2922,, +1973.09.00,Sep-73,1973,Unprovoked,EGYPT,Red Sea,Southern end of the Sinai Peninsula,,Soldier,M,,Massive wound on right thigh with femur exposed,N,,Tiger shark,R. Davis,1973.09.00-NV-RedSea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.00-NV-RedSea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.00-NV-RedSea.pdf,1973.09.00,1973.09.00,2921,, +1973.08.27,27-Aug-73,1973,Unprovoked,AUSTRALIA,Queensland,Palm Cove Beach,,G. Cole,,21,,UNKNOWN,,,"J. Green, p.36",1973.08.27-Cole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.27-Cole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.27-Cole.pdf,1973.08.27,1973.08.27,2920,, +1973.08.25,25-Aug-73,1973,Unprovoked,AUSTRALIA,Queensland,"Point Lookout, Stradbroke Island",Surfing,Bruce Lawlor (or Lawler),M,16,Right foot severed,N,,12' shark,"L.A. Times, 8/16/1973, p.B4; R. McKenzie, Sunday Mail, 9/6/1987, p.11; J. Green, p.36",1973.08.25-Lawler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.25-Lawler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.25-Lawler.pdf,1973.08.25,1973.08.25,2919,, +1973.08.16,16-Aug-73,1973,Unprovoked,USA,Virginia,False Cape,Crabbing (spearing crabs),Chris DeFord,M,17,Elbow bitten,N,,1.5 m to 1.8 m [5' to 6'] blacktip shark,"A. MacCormick, p.11, cites New Orleans Times-Picayune, 8/17/1983 ",1973.08.16-DeFord.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.16-DeFord.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.16-DeFord.pdf,1973.08.16,1973.08.16,2918,, +1973.06.13,13-Jun-73,1973,Unprovoked,HONG KONG,,,Freedom Swimming,2 youths,M,,"One man was killed by a shark, the other was injured",N,,,"The Age, 6/15/1973",1973.06.13-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.06.13-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.06.13-HongKong.pdf,1973.06.13,1973.06.13,2917,, +1973.04.04,04-Apr-73,1973,Unprovoked,MEXICO,Guerrero,"Revolcadero Beach, Acapulco",Wading,John P.R. Nicholls,M,45,"FATAL, multiple bites ",Y,18h00,,"A.Resciniti, p.108",1973.04.04-Nicolls.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.04.04-Nicolls.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.04.04-Nicolls.pdf,1973.04.04,1973.04.04,2916,, +1973.03.26,26-Mar-73,1973,Unprovoked,AUSTRALIA,Queensland,Palm Island,,Stuart Baddock,M,,Survived,N,,,"R. McKenzie, Sunday Mail, 9/6/1987, p.11",1973.03.26-Baddock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.03.26-Baddock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.03.26-Baddock.pdf,1973.03.26,1973.03.26,2915,, +1973.03.05,05-Mar-73,1973,Unprovoked,MOZAMBIQUE,Gaza,"Chongeone, Xai Xai",Spearfishing,William C. Lamb,M,28,FATAL,Y,Morning,,"M. Levine, GSAF",1973.03.05-Lamb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.03.05-Lamb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.03.05-Lamb.pdf,1973.03.05,1973.03.05,2914,, +1973.03.00,Mar-73,1973,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Scottburgh,Spearfishing,Kevin Cole,M,26,Hip bruised,N,Morning,"2 m shark, possibly a dusky or blacktip shark","D. Davies; K. Cole, M. Levine, GSAF",1973.03.00-Cole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.03.00-Cole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.03.00-Cole.pdf,1973.03.00,1973.03.00,2913,, +1973.02.27,27-Feb-73,1973,Unprovoked,MEXICO,Guerrero,"Revolcadero Beach, Acapulco",Swimming,Dr. Leo Ephraim Fischer,,57,"FATAL, multiple bites ",Y,,,"Reno Gazette, 4/8/1973; A.Resciniti, pp.108-109",1973.02.27-Ephraim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.02.27-Ephraim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.02.27-Ephraim.pdf,1973.02.27,1973.02.27,2912,, +1973.01.21,21-Jan-73,1973,Provoked,SOUTH AFRICA,KwaZulu-Natal,Durban,Fishing from paddleski,C. Thackwray,M,,Hooked & gaffed shark bit his right elbow PROVOKED INCIDENT,N,,1 m shark,"M. Levine, GSAF",1973.01.21-Thackwray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.01.21-Thackwray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.01.21-Thackwray.pdf,1973.01.21,1973.01.21,2911,, +1973.01.09,09-Jan-73,1973,Unprovoked,USA,Hawaii,"Ho'okipa Beach, Pa'ia, Maui",Surfing,Robert Sterling,M,,Leg bitten,N,,1.2 m to 1.8 m [4' to 6'] shark observed in area,"J. Borg, p.74; L. Taylor (1993), pp.102-103",1973.01.09-Sterling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.01.09-Sterling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.01.09-Sterling.pdf,1973.01.09,1973.01.09,2910,, +1973.00.00.c,1973,1973,Unprovoked,PALAU,Aulong Island,Aulong Channel,Scuba diving (submerged),Mitchell Warner,M,,"No injury, shark grabbed scuba tank and descended to 110' before releasing him ",N,,Tiger shark,M.P. Warner,1973.00.00.c-Warner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.00.00.c-Warner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.00.00.c-Warner.pdf,1973.00.00.c,1973.00.00.c,2909,, +1973.00.00.b,1973,1973,Unprovoked,PALAU,Western Caroline Islands,,Scuba diving & U/W photography,Bill Curtsinger,M,,Hand & right shoulder lacerated,N,,Grey reef shark," National Geographic, January 1995, p.56-57",1973.00.00.b-Curstinger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.00.00.b-Curstinger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.00.00.b-Curstinger.pdf,1973.00.00.b,1973.00.00.b,2908,, +1973.00.00.a,1973,1973,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Queensberry Bay,Surfing,Gordon Harmer,M,13,"No injury, surboard flung into air & dented",N,08h00,,G. Harmer,1973.00.00.a-Harmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.00.00.a-Harmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.00.00.a-Harmer.pdf,1973.00.00.a,1973.00.00.a,2907,, +1972.12.31,31-Dec-72,1972,Unprovoked,SOUTH AFRICA,Western Cape Province,Millers Point,Treading water,Charles Lubbe,M,29,Lower left leg & foot bitten,N,14h00,,"J. Bass & A. Heydorn; Cape Argus, 1/2/1973",1972.12.31-Lubbe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.31-Lubbe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.31-Lubbe.pdf,1972.12.31,1972.12.31,2906,, +1972.12.26,26-Dec-72,1972,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Swimming,Helmut Pfosse,M,25,"Hip, leg, arm, hand & shoulder bitten",N,15h00,2 m to 3 m shark,GSAF,1972.12.26-Pfosse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.26-Pfosse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.26-Pfosse.pdf,1972.12.26,1972.12.26,2905,, +1972.12.25,25-Dec-72,1972,Unprovoked,MEXICO,Guerrero,"Revolcadero Beach, Acapulco",Body surfing,Gerald Soukoff,M,17,"FATAL, hand severed, right leg and torso bitten ",Y,Afternoon,,"The Gleaner, 1/3/1973; A. Resciniti, p.109",1972.12.25-Sockoff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.25-Sockoff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.25-Sockoff.pdf,1972.12.25,1972.12.25,2904,, +1972.12.24,24-Dec-72,1972,Unprovoked,SOUTH AFRICA,Western Cape Province,Hartenbos,Swimming,Johan Brink,M,,"No injury, swim fin bitten",N,09h00,"White shark, > 3 m [10']","J. Bass, ORI; M. Levine, GSAF",1972.12.24-Brink.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.24-Brink.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.24-Brink.pdf,1972.12.24,1972.12.24,2903,, +1972.12.22,21-Dec-72,1972,Unprovoked,AUSTRALIA,Queensland,Currumbin Rock,,Mark Worman,M,,Hand bitten,N,,,"Canberra Times, 12/23/1972",1972.12.22-Worman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.22-Worman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.22-Worman.pdf,1972.12.22,1972.12.22,2902,, +1972.12.08,08-Dec-72,1972,Provoked,AUSTRALIA,New South Wales,"Marineland, Sydney",,R. Bartlett,,24,PROVOKED INCIDENT,N,,,"J. Green, p.36",1972.12.08-Bartlett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.08-Bartlett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.08-Bartlett.pdf,1972.12.08,1972.12.08,2901,, +1972.12.01,01-Dec-72,1972,Unprovoked,REUNION,Saint-Philippe,Basse Vall�e,Spearfishing,,,,FATAL,Y,,,G. Van Grevelynghe,1972.12.01-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.01-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.01-Reunion.pdf,1972.12.01,1972.12.01,2900,, +1972.10.22,21-Oct-72,1972,Unprovoked,AUSTRALIA,Queensland,"Stevens Reef, 70 miles from Mackay",Spearfishing,Norman Hargreaves,M,24,Right arm bitten,N,,,"R. McKenzie, Sunday Mail, 9/6/1987, p.11",1972.10.22-Hargreaves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.22-Hargreaves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.22-Hargreaves.pdf,1972.10.22,1972.10.22,2899,, +1972.10.21,21-Oct-72,1972,Unprovoked,AUSTRALIA,New South Wales,Tabourie Beach,Surfing,Terry Cooper,M,19,Lacerations to thigh & buttocks,N,,"Bronze whaler shark, 10' ","The Age, 10/23/1972",1972.10.21-Cooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.21-Cooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.21-Cooper.pdf,1972.10.21,1972.10.21,2898,, +1972.10.14.b,14-Oct-72,1972,Unprovoked,USA,US Virgin Islands,"St. Croix, Cane Bay",Scuba diving,Rodney Temple,M,,"FATAL, body not recovered",Y,,Oceanic whitetip shark x 2,"H.D. Baldridge, pp.177 & 185",1972.10.14.b-Temple.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.14.b-Temple.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.14.b-Temple.pdf,1972.10.14.b,1972.10.14.b,2897,, +1972.10.14.a,14-Oct-72,1972,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Kenneth Hiles,M,17,Survived,N,,,"Daytona Beach Morning Journal, 10/18/1972",1972.10.14.a-Hiles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.14.a-Hiles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.14.a-Hiles.pdf,1972.10.14.a,1972.10.14.a,2896,, +1972.10.10.R,Reported 10-Oct-1972,1972,Unprovoked,NEW ZEALAND,North Island,Wanganui,Swimming,Barry Kumara,M,17,"No injury, leg of jeans torn off",N,,,"European Stars and Stripes, 10/10/1973 ",1972.10.10.R-Kumara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.10.R-Kumara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.10.R-Kumara.pdf,1972.10.10.R,1972.10.10.R,2895,, +1972.09.09,09-Sep-72,1972,Unprovoked,USA,California,"Point Sur, Monterey County",Surfing,Hans Kretschmer,M,,Legs & board bitten,N,10h00,"White shark, 6 m [20'] ","D. Miller & R. Collier, R. Collier, pp. 52-53; J. McCosker & R.N. Lea",1972.09.09-Kretschmer_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.09.09-Kretschmer_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.09.09-Kretschmer_Collier.pdf,1972.09.09,1972.09.09,2894,, +1972.09.04,04-Sep-72,1972,Invalid,MOZAMBIQUE,Maputo Province,Inhaca Island,Swimming,Yvonne Vladislavick,F,20,Feet injured,N,,,"Daily News, 9/6/1972",1972.09.04-Vladislavick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.09.04-Vladislavick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.09.04-Vladislavick.pdf,1972.09.04,1972.09.04,2893,, +1972.08.29,29-Aug-72,1972,Unprovoked,USA,Florida,"Crescent Beach, St. Johns County",Surfing,Mark Van Leer,M,15,Left calf bitten,N,Evening,,"Ocala Star Banner, 8/30/1972",1972.08.29-VanLeer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.08.29-VanLeer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.08.29-VanLeer.pdf,1972.08.29,1972.08.29,2892,, +1972.08.17,17-Aug-72,1972,Unprovoked,USA,Hawaii,"Waimanu, Honoka'a, Hawai'i",Spearfishing,Eric Fotherby,M,,Forearm bitten,N,,2.4 m [8'] shark,"J. Borg, p.74; L. Taylor (1993), pp.102-103",1972.08.17-Fotherby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.08.17-Fotherby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.08.17-Fotherby.pdf,1972.08.17,1972.08.17,2891,, +1972.08.08,08-Aug-72,1972,Unprovoked,AUSTRALIA,Tasmania,Tasman Island,Diving for abalone,Gordon Johnson,M,45,Left foot bitten,N,,"White shark, 10'","The Age, 8/10/1972; J. Green, p.36; C. Black, pp 151-153",1972.08.08-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.08.08-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.08.08-Johnson.pdf,1972.08.08,1972.08.08,2890,, +1972.07.05,05-Jul-72,1972,Invalid,USA,California,"Laguna Beach, Orange County",Diving,,,,Sharks reportedly bit legs & fins ,N,,2 sharks,Unconfirmed Report,1972.07.05-NV-California.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.07.05-NV-California.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.07.05-NV-California.pdf,1972.07.05,1972.07.05,2889,, +1972.06.26.b,Reported 26-Jun-1972,1972,Unprovoked,AUSTRALIA,Queensland,Pancake Creek,,Kenneth Murchison,M,,FATAL,Y,,,"Canberra Times, 6/26/1972",1972.06.26.b-Murchison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.26.b-Murchison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.26.b-Murchison.pdf,1972.06.26.b,1972.06.26.b,2888,, +1972.06.26.a,Reported 26-Jun-1972,1972,Unprovoked,AUSTRALIA,Queensland,Pancake Creek,,Ronald Kelly,M,,FATAL,Y,,,"Canberra Times, 6/26/1972",1972.06.26.a-Kelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.26.a-Kelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.26.a-Kelly.pdf,1972.06.26.a,1972.06.26.a,2887,, +1972.06.10,10-Jun-72,1972,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,Richard Salick,M,22,Buttocks bitten,N,11h30,4.5' shark,P. Salick,1972.06.10-Salick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.10-Salick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.10-Salick.pdf,1972.06.10,1972.06.10,2886,, +1972.05.28,28-May-72,1972,Unprovoked,USA,California,"Bird Rock, near Tomales Point, Marin County",Free diving for abalone,Helmut Himmrich,M,32,Bitten on legs & buttock,N,13h30,"White shark, 4.4 m to 5 m [14.5' to 16.5'] ","D. Miller & R. Collier, R. Collier, pp.48-50; Evening Tribune (San Diego) 7/17/1972; H.D. Baldridge, p.78; J. McCosker & R.N. Lea ",1972.05.28-Himmrich_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.05.28-Himmrich_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.05.28-Himmrich_Collier.pdf,1972.05.28,1972.05.28,2885,, +1972.05.06,06-May-72,1972,Unprovoked,FRENCH POLYNESIA,Tuamotus,Ah� Atoll,Spearfishing,B.T.,M,27,Thigh bitten,N,,1.5 m grey reef shark,"M. Fouques, et.al, pp. 318-319",1972.05.06-BT.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.05.06-BT.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.05.06-BT.pdf,1972.05.06,1972.05.06,2884,, +1972.04.16,16-Apr-72,1972,Unprovoked,WESTERN SAMOA,Upolu Island,Nu�ulua,Swimming,"Alan Banner, Peace Corps volunteer",M,25,FATAL,Y,,Thought to involve a tiger shark,J. Gregory,1972.04.16-Banner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.04.16-Banner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.04.16-Banner.pdf,1972.04.16,1972.04.16,2883,, +1972.04.01.b,01-Apr-72,1972,Unprovoked,AUSTRALIA,Queensland,Wellington Point,,Sonja Kuelsen,F,,Left leg bitten,N,,,"R. McKenzie, Sunday Mail, 9/6/1987, p.11",1972.04.01.b-Kuelsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.04.01.b-Kuelsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.04.01.b-Kuelsen.pdf,1972.04.01.b,1972.04.01.b,2882,, +1972.04.01.a,01-Apr-72,1972,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Swimming,Richard George Wilson,M,19,FATAL,Y,17h00,,Note: The Johannesburg Star initially recorded his name as Richard Wilson Gordon,1972.04.01.a-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.04.01.a-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.04.01.a-Wilson.pdf,1972.04.01.a,1972.04.01.a,2881,, +1972.03.21,21-Mar-72,1972,Provoked,PACIFIC OCEAN ,,,Fishing,John Fairfax,M,33,Arm bitten by hooked shark PROVOKED INCIDENT,N,,,NY Times 4/2/1972,1972.03.21-Fairfax.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.03.21-Fairfax.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.03.21-Fairfax.pdf,1972.03.21,1972.03.21,2880,, +1972.03.16,16-Mar-72,1972,Unprovoked,USA,Hawaii,"Waihe'e, Wailuku, Maui",Spearfishing,"Adam Gomes, Jr.",M,,Leg bitten,N,,,"J. Borg, p.74; L. Taylor (1993), pp.102-103",1972.03.16-Gomes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.03.16-Gomes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.03.16-Gomes.pdf,1972.03.16,1972.03.16,2879,, +1972.02.20,20-Feb-72,1972,Unprovoked,AUSTRALIA,Victoria,"Wilson's Promontory, Waratah Bay",Surfing,Stuart Rogers,M,18,Laceration above knee,N,11h00,7' shark,"Sydney Morning Herald, 2/21/1972 ",1972.02.20-Rogers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.02.20-Rogers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.02.20-Rogers.pdf,1972.02.20,1972.02.20,2878,, +1972.02.12,12-Feb-72,1972,Unprovoked,AUSTRALIA,Tasmania,Elliot's Cove,,D. Trayling,,,Survived,N,,,"C. Black, GSAF; J. Green, p.36",1972.02.12-Trayling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.02.12-Trayling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.02.12-Trayling.pdf,1972.02.12,1972.02.12,2877,, +1972.01.01.c,01-Jan-72,1972,Unprovoked,SOUTH AFRICA,Eastern Cape Province,St. George�s Strand,Swimming,Jacob Nkomo,M,20,"FATAL, coroner's Verdict: ""Death presumably through shark attack & drowning""",Y,,,"M. Levine, GSAF",1972.01.01.c-Nkomo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.01.01.c-Nkomo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.01.01.c-Nkomo.pdf,1972.01.01.c,1972.01.01.c,2876,, +1972.01.01.b,01-Jan-71,1972,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Kosi Bay,Sitting in shallows,Janie Pelser,F,30,Foot bitten,N,20h00,Zambesi shark,"J. Bass & G. Hughes; J. Pelser, M. Levine, GSAF",1972.01.01.b-Pelser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.01.01.b-Pelser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.01.01.b-Pelser.pdf,1972.01.01.b,1972.01.01.b,2875,, +1972.01.01.a,01-Jan-71,1972,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Standing,Robert Richard,M,24,"Leg severed at knee, hand severed, arms, torso & buttock severely lacerated",N,16h20,"White shark, 2.5 m [8.25'] ","J. Bass; M. Levine, GSAF",1972.01.01.a-Richard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.01.01.a-Richard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.01.01.a-Richard.pdf,1972.01.01.a,1972.01.01.a,2874,, +1972.00.00.b,1972,1972,Unprovoked,FRANCE,Antibes,,Swimming,,,,Shoulder injured,N,,White shark,C. Moore,1972.00.00.b-Antibes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.00.00.b-Antibes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.00.00.b-Antibes.pdf,1972.00.00.b,1972.00.00.b,2873,, +1972.00.00.a,1972,1972,Unprovoked,MARSHALL ISLANDS,Illeginni Atoll,,"Free diving, collecting shells",Alan Titchenal,M,,Right hand & torso lacerated,N,,1.8 m [6'] grey reef shark,"G. Ambrose, pp.78-86",1972.00.00.a-Titchenal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.00.00.a-Titchenal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.00.00.a-Titchenal.pdf,1972.00.00.a,1972.00.00.a,2872,, +1971.12.23,23-Dec-71,1971,Unprovoked,AUSTRALIA,New South Wales,Smokey Cape,,G. Byron,,22,Survived,N,,,"J. Green, p.36",1971.12.23-Byron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.12.23-Byron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.12.23-Byron.pdf,1971.12.23,1971.12.23,2871,, +1971.12.16,16-Dec-71,1971,Unprovoked,SOUTH AFRICA,Western Cape Province,"Fish Hoek, False Bay",Swimming,Cheryl Teague,F,16,Right forearm bitten,N,14h45,"White shark, 3 m [10']rk","C. Teague, M. Levine, GSAF; A. Heydorn, ORI; T. Wallett, p.40",1971.12.16-Teague.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.12.16-Teague.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.12.16-Teague.pdf,1971.12.16,1971.12.16,2870,, +1971.12.05,05-Dec-71,1971,Unprovoked,AUSTRALIA,Queensland,Gladstone,,Gregory Carroll,M,20,FATAL,Y,,,"The Age, 12/9/1971",1971.12.05-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.12.05-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.12.05-Carroll.pdf,1971.12.05,1971.12.05,2869,, +1971.11.27,Reported 25-Nov-1971,1971,Unprovoked,HONG KONG,Mirs Bay ,,Freedom Swimming,Chan Sze-king,M,20,"Left leg severely bitten, surgically amputated",N,Just before dawn,,"The Advocate, 11/25/1971; Post Crescent, 11/28/1971",1971.11.27-Tracy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.11.27-Tracy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.11.27-Tracy.pdf,1971.11.27,1971.11.27,2868,, +1971.11.25.R,27-Oct-71,1971,Provoked,AUSTRALIA,New South Wales,"Marineland, Sydney",,K. Tracy,,20,PROVOKED INCIDENT,N,,,"J. Green, p.36",1971.11.25.R-Chan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.11.25.R-Chan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.11.25.R-Chan.pdf,1971.11.25.R,1971.11.25.R,2867,, +1971.10.23,23-Oct-71,1971,Unprovoked,USA,Florida,"Ft. Pierce, St Lucie County",Surfing,"Walter E. Milford, Jr.",M,18,"Right shoulder, arm & hand bitten",N,Afternoon,5' to 6' shark,"News Tribune, 10/25/1971 ",1971.10.23-Milford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.10.23-Milford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.10.23-Milford.pdf,1971.10.23,1971.10.23,2866,, +1971.10.14,14-Oct-71,1971,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Swimming,Werner Bayer,M,25,Wrist & hand lacerated,N,Evening,1.5 m to 2 m shark,J. Bass,1971.10.14-Bayer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.10.14-Bayer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.10.14-Bayer.pdf,1971.10.14,1971.10.14,2865,, +1971.10.02,02-Oct-71,1971,Unprovoked,USA,California,"Sea Ranch, Sonoma County",Scuba diving,Calvin Ward,M,30,Bitten on legs,N, 14h00,"White shark, 5 m to 6 m [16.5' to 20'] ","D. Miller & R. Collier; R. Collier, p. 48",1971.10.02-Ward_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.10.02-Ward_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.10.02-Ward_Collier.pdf,1971.10.02,1971.10.02,2864,, +1971.09.25,25-Sep-71,1971,Unprovoked,USA,North Carolina,"Emerald Isle, Carteret County",Surfing,J. Horner,,17,Left foot injured,N,,,"F. Schwartz, p.23",1971.09.25-Horner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.09.25-Horner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.09.25-Horner.pdf,1971.09.25,1971.09.25,2863,, +1971.09.07,07-Sep-71,1971,Unprovoked,CROATIA,Istria County,Ika,Swimming,Stanislav Klepa,M,34,FATAL,Y,10h30,White shark,"R. Rocconi & C. Moore, GSAF",1971.09.07-Klepa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.09.07-Klepa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.09.07-Klepa.pdf,1971.09.07,1971.09.07,2862,, +1971.09.05,05-Sep-71,1971,Unprovoked,AUSTRALIA,South Australia,Adelaide,Fishing,Leslie Oswald Harris,M,51," FATAL. Shark bite was minor injury, but he suffered a heart attack afterwards and died 6 hours later",Y,,,"J. West, Adelaide Advertiser, 9/7/1971, p.10; P. Kemp, GSAF",1971.09.05-Harris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.09.05-Harris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.09.05-Harris.pdf,1971.09.05,1971.09.05,2861,, +1971.08.21,21-Aug-71,1971,Provoked,AUSTRALIA,New South Wales,"Manly Marineland, Sydney",Scuba diving & feeding fish,Jim Allman,M,26,Eight puncture wounds to right leg by captive shark PROVOKED INCIDENT,N,13h15,"Grey nurse shark, 11'","Sydney Morning Herald, 8/22/1971",1971.08.21-Allman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.08.21-Allman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.08.21-Allman.pdf,1971.08.21,1971.08.21,2860,, +1971.07.26,26-Jul-71,1971,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Wading,Michael Prather,M,8,Laceration to left ankle,N,Afternoon,,"Miami News, 7/27/1971",1971.07.26-Prather.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.07.26-Prather.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.07.26-Prather.pdf,1971.07.26,1971.07.26,2859,, +1971.07.19,19-Jul-71,1971,Unprovoked,USA,California,"Point Purisima, Santa Barbara County",Hookah diving (submerged),Kenneth Gray,M,,"Major injuries to head, buttocks & back",N,,"White shark, 5.5 m to 6 m [18' to 20'] ","D. Miller & R. Collier, R. Collier, pp.51-52; J. McCosker & R.N. Lea",1971.07.19-Gray_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.07.19-Gray_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.07.19-Gray_Collier.pdf,1971.07.19,1971.07.19,2858,, +1971.06.30,30-Jun-71,1971,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Surfing,Gideon Scheltema,M,21,Leg & surfboard bitten,N,15h35,"White shark, 3 m [10'], species identity confirmed by witnesses & tooth pattern in leg & board ","G. Scheltema, M. Levine, GSAF; J. Bass, ORI",1971.06.30-Scheltema.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.06.30-Scheltema.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.06.30-Scheltema.pdf,1971.06.30,1971.06.30,2857,, +1971.06.01,01-Jun-71,1971,Unprovoked,BRITISH ISLES,South Devon,Beesands,Scuba diving,Jimmy Johnson,M,32,"No injury, said to have been attacked by shark but drove it away with a lobster hook",N,,3.6 m porbeagle shark,J. Steel (1989),1971.06.01-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.06.01-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.06.01-Johnson.pdf,1971.06.01,1971.06.01,2856,, +1971.04.16R,Reported 16-Apr-1971,1971,Unprovoked,KENYA,Coast Province,Watamu,Swimming,a German tourist,M,16,Right foot bitten,N,,"2 m [6'9""] shark",M. v. Schoor,1971.04.16-Watamu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.16-Watamu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.16-Watamu.pdf,1971.04.16R,1971.04.16R,2855,, +1971.04.11,11-Apr-71,1971,Unprovoked,SOUTH AFRICA,Western Cape Province,Buffels Bay,Swimming,Theo Klein,M,>50,"FATAL, multiple bites ",Y,11h30,White shark according to tooth pattern and witnesses,"J. Wallace, ORI; M. Levine, GSAF; T. Wallett, pp.39-40",1971.04.11-TheoKlein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.11-TheoKlein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.11-TheoKlein.pdf,1971.04.11,1971.04.11,2854,, +1971.04.06,06-Apr-71,1971,Unprovoked,MEXICO,Guerrero,"Copacabana Beach, Acapulco",Surfing,Jimmy Rowe,M,19,"FATAL, left thigh bitten ",Y,11h00,,"A.Resciniti, p.109",1971.04.06-Rowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.06-Rowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.06-Rowe.pdf,1971.04.06,1971.04.06,2853,, +1971.04.05.b,05-Apr-71,1971,Unprovoked,VENEZUELA,,,,Alberto Mayora ,M,14,"FATAL, body not recovered",Y,,,H.D. Baldridge (1994) SAF Case #1646,1971.04.05.b-NV-A-Mayora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.05.b-NV-A-Mayora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.05.b-NV-A-Mayora.pdf,1971.04.05.b,1971.04.05.b,2852,, +1971.04.05.a,05-Apr-71,1971,Unprovoked,VENEZUELA,,,,Tarcisio Mayora,M,66,"FATAL, body not recovered",Y,,,H.D. Baldridge (1994) SAF Case #1646,1971.04.05.a-NV-T-Mayora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.05.a-NV-T-Mayora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.05.a-NV-T-Mayora.pdf,1971.04.05.a,1971.04.05.a,2851,, +1971.04.00,Late Apr-1971,1971,Sea Disaster,MOZAMBIQUE,Between Beira & Maputo,,Wreck of the 1689-ton Portuguese coaster Angoche,"Sailed with 23 crew, half survived the explosion",,,"FATAL, it was thought the surviving crew were taken by sharks",Y,,,"M. Levine, GSAF",1971.04.00-Angoche.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.00-Angoche.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.00-Angoche.pdf,1971.04.00,1971.04.00,2850,, +1971.03.30,30-Mar-71,1971,Unprovoked,NEW ZEALAND,South Island,Dunedin,Surfing,Barry Watkins,M,16,Lacerations to left leg ,N,10h20,"White shark, 4.6 m [15'] ","B. Watkins, R. D. Weeks, GSAF ",1971.03.30-Watkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.03.30-Watkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.03.30-Watkins.pdf,1971.03.30,1971.03.30,2849,, +1971.01.02,02-Jan-71,1971,Unprovoked,AUSTRALIA,Tasmania,,Swimming,Ralph Painter,M,,Torso lacerated,N,16h30,,"C. Black, GSAF; H.D. Baldridge (1994) SAF Case #1650",1971.01.02-Painter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.01.02-Painter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.01.02-Painter.pdf,1971.01.02,1971.01.02,2848,, +1971.00.00.c,1971,1971,Unprovoked,AUSTRALIA,South Australia,Southport,Surfing,Tim Franklin,M,15,Severe lacerations to thigh,N,,White shark,The Advertiser (undated),1971.00.00.c-Franklin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.00.00.c-Franklin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.00.00.c-Franklin.pdf,1971.00.00.c,1971.00.00.c,2847,, +1971.00.00.b,1971,1971,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",,Mr. Nagib,M,,Survived,N,,,B. Coad,1971.00.00.b-Nagib.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.00.00.b-Nagib.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.00.00.b-Nagib.pdf,1971.00.00.b,1971.00.00.b,2846,, +1971.00.00.a,1971,1971,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",,Mr. Kalantar,M,,Survived,N,,,B. Coad,1971.00.00.a-Kalantar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.00.00.a-Kalantar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.00.00.a-Kalantar.pdf,1971.00.00.a,1971.00.00.a,2845,, +1970.12.17,17-Dec-70,1970,Unprovoked,MOZAMBIQUE,Inhambe Province,"Inhasoka, Inhambe Bay",Fishing for prawns,Castigo Litura,M,18,"FATAL, arm severed ",Y,15h00,,"GSAF; H.D. Baldridge, p.22",1970.12.17-Litura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.17-Litura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.17-Litura.pdf,1970.12.17,1970.12.17,2844,, +1970.12.13,13-Dec-70,1970,Unprovoked,MOZAMBIQUE,Inhambe Province,"Inhambe Bay Estuary, 10 to 12 miles inland from the sea",Fishing for prawns,black male,M,18 to 22,"FATAL, decapitated and arm severed",Y,,,"GSAF; H.D. Baldridge, p.22",1970.12.13-BlackMale-Mozambique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.13-BlackMale-Mozambique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.13-BlackMale-Mozambique.pdf,1970.12.13,1970.12.13,2843,, +1970.12.07,07-Dec-70,1970,Unprovoked,MICRONESIA,Namonuito Atoll,Pisarach (Pisaras),Fishing,Santiago Kapriel,M,,Laceration to thigh,N,23h00,1.8 m shark,R.S. Jones,1970.12.07-Kapriel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.07-Kapriel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.07-Kapriel.pdf,1970.12.07,1970.12.07,2842,, +1970.12.03,03-Dec-70,1970,Sea Disaster,USA,Hawaii,Kauai,Shipwreck,Dikios Leopold,M,41,Right thigh lacerated,N,,,"The Argus, 12/7/1970, p.2",1970.12.03-Leopold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.03-Leopold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.03-Leopold.pdf,1970.12.03,1970.12.03,2841,, +1970.11.00,Nov-70,1970,Unprovoked,,,,,Heinz Plotsky,M,,Extensive injuries,N,,," H.D. Baldridge (1994), SAF Case #1645",1970.11.00-NV-Plotsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.11.00-NV-Plotsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.11.00-NV-Plotsky.pdf,1970.11.00,1970.11.00,2840,, +1970.10.24,24-Oct-70,1970,Unprovoked,USA,Hawaii,"Brennecke Beach, Po'ipu, Kaua'i",Body surfing,James C. Mattan,M,,Shoulder & arm bitten,N,,,"J. Borg, p.74; L. Taylor (1993), pp.102-103",1970.10.24-Mattan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.10.24-Mattan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.10.24-Mattan.pdf,1970.10.24,1970.10.24,2839,, +1970.10.00,Oct-70,1970,Unprovoked,USA,Florida,"Matanzas Inlet, St Johns County",Surfing,Robbie Baker,M,,Bitten on right leg above the ankle,N,,,"H. Wessel, Orlando Sentinel, 8/1/2001 ",1970.10.00-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.10.00-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.10.00-Baker.pdf,1970.10.00,1970.10.00,2838,, +1970.09.28,28-Sep-70,1970,Unprovoked,MICRONESIA,Eastern Caroline Islands,Truk Lagoon,Diving,Mike Uramai,M,43,Lacerations & punctures to right arm & shoulder ,N,10h00,1.8 to 2 m C. albimarginatus,R.S. Jones,1970.09.28-Urumai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.28-Urumai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.28-Urumai.pdf,1970.09.28,1970.09.28,2837,, +1970.09.13,13-Sep-70,1970,Provoked,PALAU,Western Caroline Islands (North Pacific Ocean),Outside barrier reef,Spearfishing,Aismerael Samsel,M,20,"Another diver shot shark, shark bit his left foream PROVOKED INCIDENT",N,,1 m shark,"K.R.H. Read; H.D. Baldridge, p.192",1970.09.13-Samsel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.13-Samsel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.13-Samsel.pdf,1970.09.13,1970.09.13,2836,, +1970.09.05,05-Sep-70,1970,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Floating on a raft,Reggie Hodgson,M,18,Laceration to left foot,N,11h30,,"St. Petersburg Times, 9/7/1970, p.12B",1970.09.05-Hodgson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.05-Hodgson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.05-Hodgson.pdf,1970.09.05,1970.09.05,2835,, +1970.09.02,02-Sep-70,1970,Provoked,AUSTRALIA,New South Wales,"Marineland, Sydney",,David Cook,M,20,PROVOKED INCIDENT,N,,,"J. Green, p.36",1970.09.02-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.02-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.02-Cook.pdf,1970.09.02,1970.09.02,2834,, +1970.09.00.c,Sep-70,1970,Unprovoked,USA,South Carolina,,Swimming,Gary Kirakas,M,,Foot lacerated,N,,"""Dog shark""","H.D. Baldridge (1994), SAF Case #1630",1970.09.00.c-Kirakas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.00.c-Kirakas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.00.c-Kirakas.pdf,1970.09.00.c,1970.09.00.c,2833,, +1970.09.00.a,Sep-70,1970,Unprovoked,USA,Florida,Pinellas County,Scuba diving,male,M,,Calf / knee injured?,N,,,SAF Case #1485,1970.09.00.a-NV-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.00.a-NV-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.00.a-NV-male.pdf,1970.09.00.a,1970.09.00.a,2832,, +1970.08.02,02-Aug-70,1970,Invalid,,Caribbean Sea,Between St. Kitts & Nevis,Sea Disaster Sinking of ferryboat Christina,,,,"Sharks scavenged on bodies, but no record of them injuring survivors ",Y,Afternoon,,"Rome News Tribune, 8/3/1970",1970.08.02-Christina-ferryboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.08.02-Christina-ferryboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.08.02-Christina-ferryboat.pdf,1970.08.02,1970.08.02,2831,, +1970.07.05,05-Jul-70,1970,Unprovoked,,,,,male,M,,Finger or toe severed,N,Night,Mako shark,"H.D. Baldridge (1994), SAF Case #1628",1970.07.05-NV-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.07.05-NV-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.07.05-NV-male.pdf,1970.07.05,1970.07.05,2830,, +1970.06.22,22-Jun-70,1970,Provoked,USA,Florida,"Dania, Broward County",Fishing,William Faulkner,M,13,Bitten on calf by hooked shark PROVOKED INCIDENT,N,,7.5' shark,Bridgeport Post 6/22/1970,1970.06.22-Faulkner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.22-Faulkner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.22-Faulkner.pdf,1970.06.22,1970.06.22,2829,, +1970.06.15,15-Jun-70,1970,Provoked,SOUTH AFRICA,KwaZulu-Natal,"Shark tank, Oceanographic Research Institute, Durban",Scuba Diving,Anand Govindsamy,M,25,2 cm laceration on knee PROVOKED INCIDENT,N,16h00,"Raggedtooth shark, 2 m [6'9""], 5-year-old, captive female ","D. Davies; A.J. Bass, ORI",1970.06.15-Govindsamy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.15-Govindsamy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.15-Govindsamy.pdf,1970.06.15,1970.06.15,2828,, +1970.06.13.b,13-Jun-70,1970,Unprovoked,GRENADA,St. Andrew Parish,Grenville,Wading,Lincoln Alpheus,M,16,"FATAL, multiple injuries to both legs ",Y,14h00,,"E. Pace, FSAF",1970.06.13.b-LincolnJohn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.13.b-LincolnJohn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.13.b-LincolnJohn.pdf,1970.06.13.b,1970.06.13.b,2827,, +1970.06.13.a,13-Jun-70,1970,Unprovoked,GRENADA,St. Andrew Parish,Grenville,Wading,John Alpheus,M,18,"FATAL, body not recovered",Y,14h00,,"E. Pace, FSAF",1970.06.13.a-AlpheusJohn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.13.a-AlpheusJohn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.13.a-AlpheusJohn.pdf,1970.06.13.a,1970.06.13.a,2826,, +1970.06.00,Jun-70,1970,Sea Disaster,PHILIPPINES,200 nm southeast of Manila,,Motor launch Baby Princesa capsized with 22 people on board,,,,"2 people survived, 6 drowned & the others were killed by sharks",Y,,,"The Daily Intelligencer, 6/12/1970, p.2; The Times (London), September 24, 1970",1970.06.00-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.00-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.00-Philippines.pdf,1970.06.00,1970.06.00,2825,, +1970.04.04,04-Apr-70,1970,Unprovoked,GRENADA,St. Andrew Parish,Grenville,Swimming,Rudolf Daily,M,14,"FATAL, body not recovered",Y,16h00,,"E. Pace, FSAF",1970.04.04-Daily.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.04.04-Daily.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.04.04-Daily.pdf,1970.04.04,1970.04.04,2824,, +1970.04.00.b,Apr-70,1970,Provoked,,,,Freediving,Lionel Jarvis,M,,Arm abraded & lacerated. Recorded as PROVOKED INCIDENT,N,,Wobbegong shark ,"H.D. Baldridge (1994), SAF Case #1616",1970.04.00.b-NV-Jarvis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.04.00.b-NV-Jarvis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.04.00.b-NV-Jarvis.pdf,1970.04.00.b,1970.04.00.b,2823,, +1970.04.00.a,Apr-70,1970,Unprovoked,SOLOMON ISLANDS,,,Swimming,David Vota,M,,No details,UNKNOWN,,Wobbegong shark,H.D. Baldridge (1994) SAF Case #1655,1970.04.00.a-NV-Vota.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.04.00.a-NV-Vota.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.04.00.a-NV-Vota.pdf,1970.04.00.a,1970.04.00.a,2822,, +1970.03.31,31-Mar-70,1970,Invalid,USA,Hawaii,"Waimea Bay, O'ahu",Body surfing,Ernie Reathaford,M,,"Swept out to sea, body not recovered",Y,,5.5 m [18'] shark seen in the vicinity,"J. Borg, p.74",1970.03.31-Reathaford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.03.31-Reathaford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.03.31-Reathaford.pdf,1970.03.31,1970.03.31,2821,, +1970.03.23,23-Mar-70,1970,Unprovoked,USA,Florida,Manatee County,Wading,Robert Fetterman,M,19,Foot & calf lacerated,N,Late afternoon,,H.D. Baldridge (1994) SAF Case #1620,1970.03.23-Fetterman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.03.23-Fetterman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.03.23-Fetterman.pdf,1970.03.23,1970.03.23,2820,, +1970.02.05,05-Feb-70,1970,Unprovoked,,,,Wading,Sally Anne Irvine,F,8,Lacerations to lower leg,N,,Carpet shark,H.D. Baldridge (1994) SAF Case #1626,1970.02.05-NV-Irvine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.02.05-NV-Irvine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.02.05-NV-Irvine.pdf,1970.02.05,1970.02.05,2819,, +1970.01.23.d,23-Jan-70,1970,Unprovoked,MOZAMBIQUE,Limpopo River,3.2 km inland,Swimming,Zulu Soto,M,14,"Hands severed, forearm severely lacerated",N,,,"Natal Daily News, 2/4/1970; D. Davies",1970.01.23.d-Soto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.d-Soto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.d-Soto.pdf,1970.01.23.d,1970.01.23.d,2818,, +1970.01.23.c,23-Jan-70,1970,Unprovoked,MOZAMBIQUE,Limpopo River,"Gijana, 150 km inland",Swimming,Betual Tivane,M,16,Leg severed at knee,N,,Zambesi shark,"Natal Daily News, 2/4/1970; D. Davies",1970.01.23.c-Tivane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.c-Tivane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.c-Tivane.pdf,1970.01.23.c,1970.01.23.c,2817,, +1970.01.23.b,23-Jan-70,1970,Unprovoked,MOZAMBIQUE,Limpopo River,"Gijana, 150 km inland",Swimming,Mabua Mogadura,M,12,"Arm severed, thigh bitten",N,,Zambesi shark,"Natal Daily News, 2/4/1970; D. Davies",1970.01.23.b-Mogadura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.b-Mogadura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.b-Mogadura.pdf,1970.01.23.b,1970.01.23.b,2816,, +1970.01.23.a,23-Jan-70,1970,Unprovoked,MOZAMBIQUE,Limpopo River,"Gijana, 150 km inland",Swimming,Elissane Mobunda,M,10,Leg severed at knee,N,,Zambesi shark,"Natal Daily News, 2/4/1970; D. Davies",1970.01.23.a-Mobunda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.a-Mobunda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.a-Mobunda.pdf,1970.01.23.a,1970.01.23.a,2815,, +1970.01.16, 16-Jan-1970,1970,Sea Disaster,EGYPT,Red Sea,A few miles south of Port Suez,Air disaster,pilot of Israeli skyhawk,M,,FATAL,Y,,,"The Progress, 1/17/1970",1970.01.16-IsraeliPilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.16-IsraeliPilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.16-IsraeliPilot.pdf,1970.01.16,1970.01.16,2814,, +1970.01.10,10-Jan-70,1970,Unprovoked,MEXICO,Guerrero,Acapulco,Swimming,Jack Kardell,M,22,Leg bitten,N,,,"A. Resciniti, p.110",1970.01.10-Kardell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.10-Kardell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.10-Kardell.pdf,1970.01.10,1970.01.10,2813,, +1970.01.09.R,Reported 09-Jan-1970,1970,Unprovoked,ENGLAND,Devon,Teignmouth,Attempted to return injured shark to the sea,a fisherman,M,,Leg bitten,N,,8' blue shark,"Reading Eagle, 1/9/1970",1970.01.09.R-England.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.09.R-England.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.09.R-England.pdf,1970.01.09.R,1970.01.09.R,2812,, +1970.01.00, Jan-1970,1970,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,,Freediving,Mosley,M,15,Lacerations to back,N,,,"Brainerd Daily Dispatch, 1/13/1970",1970.01.00-NV-Mosley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.00-NV-Mosley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.00-NV-Mosley.pdf,1970.01.00,1970.01.00,2811,, +1970.00.00.h,1970s,1970,Unprovoked,SRI LANKA,Western Province,Colombo Harbor,Spearfishing / freediving,Hiran Wickremartne,M,,Swim fins badly torn by the shark's teeth,N,,,R. I. DeSilva,1970.00.00.h-Wickremaratne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.h-Wickremaratne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.h-Wickremaratne.pdf,1970.00.00.h,1970.00.00.h,2810,, +1970.00.00.g,Late 1970s,1970,Unprovoked,SPAIN,Canary Islands,"Icod de los Vinos, Tenerife",Spearfishing,,M,,Minor injury,N,,Blue shark,C. Moore,1970.00.00.g-Tenerife.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.g-Tenerife.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.g-Tenerife.pdf,1970.00.00.g,1970.00.00.g,2809,, +1970.00.00.f,Ca. 1970,1970,Boat,ITALY,Sardinia,Golfo di Oristano,Fishing on a boat,male,M,,No injury,N,,White shark,A. De Maddalena; M. Cottiglia (pers. Comm.),1970.00.00.f-Sardinia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.f-Sardinia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.f-Sardinia.pdf,1970.00.00.f,1970.00.00.f,2808,, +1970.00.00.e,1970,1970,Unprovoked,CROATIA,Zadar County,Novigrad,Spearfishing,Mr. Jurincic,M,,No details,UNKNOWN,,White shark,A. De Maddalena; A. Mojetta (pers. Comm.),1970.00.00.e-Jurincic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.e-Jurincic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.e-Jurincic.pdf,1970.00.00.e,1970.00.00.e,2807,, +1970.00.00.d,1970s,1970,Unprovoked,IRAQ,Basrah,Shatt-al-Arab River,Washing cooking pans,female,F,28,Left hand severed,N,Afternoon,,B.W. Coad & L.A.J. Al-Hassan,1970.00.00.d-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.d-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.d-Shatt-al-Arab.pdf,1970.00.00.d,1970.00.00.d,2806,, +1970.00.00.c,1970s,1970,Unprovoked,IRAQ,Basrah,Shatt-al-Arab River near Abu al Khasib,Washing clothes on stairs,female,F,25,Left foot severed,N,,,B.W. Coad & L.A.J. Al-Hassan,1970.00.00.c-Abu-a-Khasib.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.c-Abu-a-Khasib.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.c-Abu-a-Khasib.pdf,1970.00.00.c,1970.00.00.c,2805,, +1970.00.00.b,1970s,1970,Unprovoked,IRAQ,Basrah,Shatt-al-Arab River,Swimming,male,M,35,"FATAL, left leg severed",Y,12h00,,B.W. Coad & L.A.J. Al-Hassan,1970.00.00.b-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.b-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.b-Shatt-al-Arab.pdf,1970.00.00.b,1970.00.00.b,2804,, +1970.00.00.a,1970s,1970,Unprovoked,IRAQ,Basrah,Shatt-al-Arab River,"Fishing, trying to catch the end of his fishing line",male,M,35,Left hand bitten,N,Afternoon,,B.W. Coad & L.A.J. Al-Hassan,1970.00.00.a-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.a-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.a-Shatt-al-Arab.pdf,1970.00.00.a,1970.00.00.a,2803,, +1969.11.30,30-Nov-69,1969,Unprovoked,AUSTRALIA,Western Australia,"Swan River, 13 miles upstream",Swimming,Graham Cartwright,M,15,Left thigh lacerated,N,Afternoon,,"Sydney Morning Herald, 12/1/1969 ",1969.11.30-Cartwright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.11.30-Cartwright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.11.30-Cartwright.pdf,1969.11.30,1969.11.30,2802,, +1969.11.11,11-Nov-69,1969,Unprovoked,USA,Hawaii,"Barber�s Point, O'ahu",Scuba diving for lobsters,D.R. McGinnis,M,,"Abrasions on upper leg, laceration on ankle, scuba tank bitten",N,,>2.4 m [8'] shark,"H.D. Baldridge, p.185; J. Borg, p.74; L. Taylor (1993), pp.102-103",1969.11.11-McGinnis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.11.11-McGinnis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.11.11-McGinnis.pdf,1969.11.11,1969.11.11,2801,, +1969.11.05,05-Nov-69,1969,Provoked,AUSTRALIA,New South Wales,"Marineland, Sydney",,A. Robson,M,27,PROVOKED INCIDENT,N,,,"J. Green, p.36",1969.11.05-Robson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.11.05-Robson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.11.05-Robson.pdf,1969.11.05,1969.11.05,2800,, +1969.10.14,14-Oct-69,1969,Unprovoked,USA,Hawaii,Hawaii,Diving,Richard Hegeman,M,,No injury,N,Morning,Oceanic whitetip shark,H.D. Baldridge (1994) SAF Case #1579,1969.10.14-NV-Hegeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.10.14-NV-Hegeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.10.14-NV-Hegeman.pdf,1969.10.14,1969.10.14,2799,, +1969.09.06,06-Sep-69,1969,Unprovoked,USA,California,"Bird Rock, Tomales Point, near Marin County / Sonoma County border",Free diving for abalone,Donald Joslin,M,53,Leg & ankle severely bitten,N,11h20,"White shark, 4.3 m 4.9 m [14' to 16'] ","D. Miller & R. Collier; R. Collier, pp.42-44; H.D. Baldridge, p.78;",1969.09.06-DonaldJoslin_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.09.06-DonaldJoslin_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.09.06-DonaldJoslin_Collier.pdf,1969.09.06,1969.09.06,2798,, +1969.08.29,29-Aug-69,1969,Unprovoked,USA,Florida,"North Beach, St. Lucie County",Floating on his back,D.C. Barnes,M,,Laceration to right leg,N,Afternoon,,"News Tribune, 8/30/1969",1969.08.29-Barnes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.29-Barnes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.29-Barnes.pdf,1969.08.29,1969.08.29,2797,, +1969.08.22,22-Aug-69,1969,Provoked,USA,Massachusetts,40 miles south of Nantucket,Fishing,Robert Eleniefsky,M,28,Leg bitten by netted shark PROVOKED INCIDENT,N,,,"Portsmouth Herald, 8/23/1969",1969.08.22-Eleniefsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.22-Eleniefsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.22-Eleniefsky.pdf,1969.08.22,1969.08.22,2796,, +1969.08.02,02-Aug-69,1969,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,John. Wilson,M,15,Lacerations to lower leg,N,Morning,,"St. Petersburg Times, 8/3/1969; H.D. Baldridge (1994) SAF Case #1570",1969.08.02-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.02-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.02-Wilson.pdf,1969.08.02,1969.08.02,2795,, +1969.08.01,02-Aug-69,1969,Unprovoked,USA,Florida,"St. Petersburg, Pinnellas County",Body surfing,Robert Wamser,M,13,Lacerations to right lower leg & left arm and hand,N,16h30,4' shark,"NYTimes, 8/3/1969",1969.08.01-Wamser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.01-Wamser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.01-Wamser.pdf,1969.08.01,1969.08.01,2794,, +1969.08.00,Aug-69,1969,Unprovoked,,,,,Rodney Hughes,M,25,Am lacerated,N,,,H.D. Baldridge (1994) SAF Case #1602,1969.08.00-NV-Hughes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.00-NV-Hughes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.00-NV-Hughes.pdf,1969.08.00,1969.08.00,2793,, +1969.07.27,27-Jul-69,1969,Provoked,ENGLAND,,,,Eric Brown,M,,Arm lacerated. Recorded as PROVOKED INCIDENT,N,,,H.D. Baldridge (1994) SAF Case #1611,1969.07.27-NV-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.07.27-NV-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.07.27-NV-Brown.pdf,1969.07.27,1969.07.27,2792,, +1969.07.22,22-Jul-69,1969,Provoked,USA,Florida,Florida Keys,,Walter Griffin,M,13,Scrape on head. Recorded as PROVOKED INCIDENT,N,16h00,Nurse shark,H.D. Baldridge (1994) SAF Case #1603,1969.07.22-NV-Griffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.07.22-NV-Griffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.07.22-NV-Griffin.pdf,1969.07.22,1969.07.22,2791,, +1969.07.20,20-Jul-69,1969,Unprovoked,USA,California,"Pigeon Point, San Mateo County",Freediving for abalone (at surface),Robert Colby,M,,"Foot bitten, minor injury",N,13h00,"White shark, 5 m [16.5'] ","D. Miller & R. Collier; R. Collier, p. 42",1969.07.20-Colby_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.07.20-Colby_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.07.20-Colby_Collier.pdf,1969.07.20,1969.07.20,2790,, +1969.06.27,27-Jun-69,1969,Unprovoked,USA,Florida,Florida Keys,Wading,Steven Benham,M,22,No details,UNKNOWN,1600,,H.D.Baldridge (1994) SAF Case #1652,1969.06.27-NV-Benham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.06.27-NV-Benham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.06.27-NV-Benham.pdf,1969.06.27,1969.06.27,2789,, +1969.06.12,12-Jun-69,1969,Unprovoked,JAMAICA,Clarendon,Off Rocky Point,Diving,Dennis Washington,M,27,Multiple lacerations,N,Morning,,"The Gleaner, 6/20/1969",1969.06.12-Washington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.06.12-Washington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.06.12-Washington.pdf,1969.06.12,1969.06.12,2788,, +1969.06.00,Jun-69,1969,Unprovoked,USA,Florida,Sarasota County,Wading,"John Holmes, Jr.",M,8,No injury,N,20h00,,H.D.Baldridge (1994) SAF Case #1609,1969.06.00-NV-Holmes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.06.00-NV-Holmes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.06.00-NV-Holmes.pdf,1969.06.00,1969.06.00,2787,, +1969.05.25,25-May-69,1969,Provoked,USA,Texas,Packery Channel,Surf-fishing,Walter Barnett,M,,Foot lacerated when he stepped on the shark PROVOKED INCIDENT,N,19h00,2' to 3' shark,"Corpus Christi Times, 5/26/1969; H.D.Baldridge (1994) SAF Case #1629",1969.05.25-Barnett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.25-Barnett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.25-Barnett.pdf,1969.05.25,1969.05.25,2786,, +1969.05.24,24-May-69,1969,Provoked,USA,Florida,Sarasota County,Diving,Brian Martel,M,23,Laceration to buttocks Recorded as PROVOKED INCIDENT,N,11h00,Nurse shark,H.D.Baldridge (1994) SAF Case #1596,1969.05.24-NV-Martel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.24-NV-Martel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.24-NV-Martel.pdf,1969.05.24,1969.05.24,2785,, +1969.05.22,22-May-69,1969,Unprovoked,DOMINICAN REPUBLIC,,,Surfing,"Douglas Kuchn, Jr.",M,18,,UNKNOWN,16h00,,H.D.Baldridge (1994) SAF Case #1607,1969.05.22-NV-Kuchn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.22-NV-Kuchn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.22-NV-Kuchn.pdf,1969.05.22,1969.05.22,2784,, +1969.05.14,14-May-69,1969,Unprovoked,AUSTRALIA,Queensland,Broomfield Reef,,J. Gillies,,,Survived,N,,,"J. Green, p.36",1969.05.14-Gillies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.14-Gillies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.14-Gillies.pdf,1969.05.14,1969.05.14,2783,, +1969.04.22,22-Apr-69,1969,Invalid,AUSTRALIA,New South Wales,"Kingscliffe Beach, south of Tweed Heads",Netting pilchards,David Anderson,M,,No injury,N,,"Considered a ""Doubtful"" incident","J. Green, p.36",1969.04.22-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.04.22-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.04.22-Anderson.pdf,1969.04.22,1969.04.22,2782,, +1969.04.19,19-Aug-69,1969,Provoked,USA,Florida,"Marathon, Monroe County",Fishing,Jack Horner,M,adult,Laceration to foot from dead shark PROVOKED INCIDENT,N,,"Lemon shark, 9' ","Tri-City Herald, 4/21/1969",1969.04.19-Horner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.04.19-Horner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.04.19-Horner.pdf,1969.04.19,1969.04.19,2781,, +1969.03.25,25-Mar-69,1969,Provoked,AUSTRALIA,New South Wales,Newcastle,,William Hill,M,65,Foot lacerated. Recorded as PROVOKED INCIDENT,N,,Mako shark,H.D.Baldridge (1994) SAF Case #1612,1969.03.25-NV-WilliamHill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.03.25-NV-WilliamHill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.03.25-NV-WilliamHill.pdf,1969.03.25,1969.03.25,2780,, +1969.03.09,09-Mar-69,1969,Unprovoked,USA,Hawaii,"Makaha, O'ahu",Surfing,Licius Lee,M,16,Leg & surfboard bitten,N,17h30,"White shark, identified by tooth fragments in surfboard","J. Borg, p.73; L. Taylor (1993), pp.102-103",1969.03.09-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.03.09-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.03.09-Lee.pdf,1969.03.09,1969.03.09,2779,, +1969.02.17.R,Reported 17-Feb-1969,1969,Provoked,AUSTRALIA,Tasmania,Taroona,Fishing,George Pacey,M,49,Lacerations to hand from hooked shark PROVOKED INCIDENT,N,Daytime,7-gill shark,"C. Black, GSAF",1969.02.17.R-Pacey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.02.17.R-Pacey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.02.17.R-Pacey.pdf,1969.02.17.R,1969.02.17.R,2778,, +1969.02.00,Feb-69,1969,Invalid,AUSTRALIA,Queensland,Cooktown,Hard hat diving,Elin Anderson,M,52,No details,UNKNOWN,,Unconfirmed incident,H.D.Baldridge (1994) SAF Case #1591,1969.02.00-NV-ElinAnderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.02.00-NV-ElinAnderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.02.00-NV-ElinAnderson.pdf,1969.02.00,1969.02.00,2777,, +1969.01.27,27-Jan-69,1969,Unprovoked,AUSTRALIA,New South Wales,Beecroft Head,Freediving,Kevin Deacon,M,21,Abrasions and lacerations to lower right leg,N,07h30,,H.D.Baldridge (1994) SAF Case #1560,1969.01.27-Deacon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.01.27-Deacon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.01.27-Deacon.pdf,1969.01.27,1969.01.27,2776,, +1969.01.00,Jan-69,1969,Unprovoked,AUSTRALIA,Victoria,Port MacDonnel,,W.D. Simpson,M,,Minor injury ,N,,Carpet shark,"H.D.Baldridge (1994), SAF Case #1594",1969.01.00-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.01.00-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.01.00-Simpson.pdf,1969.01.00,1969.01.00,2775,, +1969.00.00,Winter 1969,1969,Provoked,BAHAMAS,Eleuthera,,Sight-seeing,"14' boat, occupant: Jonathan Leodorn",,,"No injury to occupants, shark grabbed prop, Leodorn hit shark with oar, shark bit oar in half PROVOKED INCIDENT",N,,10' shark,"M. Vorenberg, p.154",1969.00.00-Leodorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.00.00-Leodorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.00.00-Leodorn.pdf,1969.00.00,1969.00.00,2774,, +1968.12.29,29-Dec-68,1968,Invalid,SOUTH AFRICA,KwaZulu-Natal,Port St. John's,Freediving,John Domoney,M,,No injury,N,,,H.D.Baldridge (1994) SAF Case #1588. Note: Unable to verify in local records,1968.12.29-NV-Domoney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.29-NV-Domoney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.29-NV-Domoney.pdf,1968.12.29,1968.12.29,2773,, +1968.12.26,26-Dec-68,1968,Provoked,AUSTRALIA,New South Wales,"Marineland Aquarium, Manley, Sydney",Feeding mullet to sharks,Peter Jones,M,27,Laceration to finger by a captive shark PROVOKED INCIDENT,N,Morning,"Grey nurse shark, 10' ","The Age, 12/27/1968",1968.12.26-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.26-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.26-Jones.pdf,1968.12.26,1968.12.26,2772,, +1968.12.25,25-Dec-68,1968,Unprovoked,NEW ZEALAND,South Island,"St. Clair Beach, Dunedin",Surfing,Gary Barton,M,17,"Hit in face by shark, arm abraded, surfboard bitten",N,17h45,White shark,"R. D. Weeks, GSAF; Otago Daily Times, 12/26/1968",1968.12.25-Barton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.25-Barton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.25-Barton.pdf,1968.12.25,1968.12.25,2771,, +1968.12.09,09-Dec-68,1968,Unprovoked,AUSTRALIA,South Australia,Thistle Island,,Dick O�Brien,M,,Survived,N,,White shark,"T. Peake, GSAF",1968.12.09-O'Brien.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.09-O'Brien.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.09-O'Brien.pdf,1968.12.09,1968.12.09,2770,, +1968.12.02,02-Dec-68,1968,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Bluff, Durban",Spearfishing,Chris Van Niekerk,M,28,"No injury, left elbow & torso bumped by sharks",N,,"2 scalloped hammerhead sharks, 1.5 m & 1.8 m [5' & 6']","A. Heydorn, ORI",1968.12.02-VanNiekerk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.02-VanNiekerk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.02-VanNiekerk.pdf,1968.12.02,1968.12.02,2769,, +1968.12.00,Dec-68,1968,Invalid,SOUTH AFRICA,KwaZulu-Natal,,,Jasper Gwynn,M,30,No injury,N,,,H.D. Baldridge (1994) SAF Case #1587; Unable to authenticate,1968.12.00-NV-Gwynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.00-NV-Gwynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.00-NV-Gwynn.pdf,1968.12.00,1968.12.00,2768,, +1968.11.06,06-Nov-68,1968,Boat,SOUTH AFRICA,KwaZulu-Natal,Ramsgate,Fishing,"fishing boat, occupants: Simon Hlope & 4 other men",M,22,"Shark leapt into boat, landed on Hlope's back, then bit his left forearm",N,,"90-kg ""blackfin"" shark","M. Levine, GSAF",1968.11.06-Hlope.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.11.06-Hlope.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.11.06-Hlope.pdf,1968.11.06,1968.11.06,2767,, +1968.11.02,02-Nov-68,1968,Provoked,AUSTRALIA,Western Australia,,,Roy Rosser,M,16,Abrasion on shoulder Recorded as PROVOKED INCIDENT,N,15h00,,H.D. Baldridge (1994) SAF Case #1533,1968.11.02-NV-Rosser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.11.02-NV-Rosser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.11.02-NV-Rosser.pdf,1968.11.02,1968.11.02,2766,, +1968.10.29,29-Oct-68,1968,Provoked,BAHAMAS,,,,John DeBry,M,,Calf injured Recorded as PROVOKED INCIDENT,N,22h00,,H.D. Baldridge (1994) SAF Case #1565,1968.10.29-NV-DeBry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.10.29-NV-DeBry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.10.29-NV-DeBry.pdf,1968.10.29,1968.10.29,2765,, +1968.10.13,13-Oct-68,1968,Unprovoked,USA,Florida,"Egmont Key, Hillsborough County",Spearfishing using Scuba,Jim C. Johnson,M,,Swim fin bitten,N,,3 m [10'] bull shark,"H.D. Baldridge, p.185",1968.10.13-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.10.13-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.10.13-Johnson.pdf,1968.10.13,1968.10.13,2764,, +1968.10.10,10-Oct-68,1968,Sea Disaster,PHILIPPINES,Moro Gulf,,Sinking of the ferryboat Dumaguete ,a passenger,,,Survived,N,,,"Fresno Bee Republican, 10/12/1968",1968.10.10-FerryDisaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.10.10-FerryDisaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.10.10-FerryDisaster.pdf,1968.10.10,1968.10.10,2763,, +1968.09.22,22-Sep-68,1968,Invalid,USA,Florida,"Riviera Beach, Palm Beach County",Surfing,,,,,UNKNOWN,12h48,Shark involvement not confirmed, M. Vorenberg,1968.09.22-NV-RivieraBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.09.22-NV-RivieraBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.09.22-NV-RivieraBeach.pdf,1968.09.22,1968.09.22,2762,, +1968.09.15,15-Sep-68,1968,Unprovoked,NEW ZEALAND,South Island,Otago Harbor,Spearfishing,Graham Hitt,M,24,"FATAL, left leg bitten, femoral artery severed ",Y,10h15,"White shark, 4.3 m [14'], (tooth fragment recovered)","R.D. Weeks, GSAF; Otago Daily Times, 9/16/1968; H.D. Baldridge, pp.18-19",1968.09.15-Hitt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.09.15-Hitt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.09.15-Hitt.pdf,1968.09.15,1968.09.15,2761,, +1968.08.24,24-Aug-68,1968,Unprovoked,USA,Florida,Half mile north of Juno Beach Pier,Playing with a frisbee in the shallows,Colleen Chamberlin & Scott Chamberlin,,9 & 12,"Shark bumped Colleen, the nudged Scott, then bit Frisbee & swam away with it",N,16h00,a small hammerhead shark,"M. Vorenberg, GSAF",1968.08.24-Chamberlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.24-Chamberlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.24-Chamberlin.pdf,1968.08.24,1968.08.24,2760,, +1968.08.21,21-Aug-68,1968,Unprovoked,USA,Florida,Okaloosa County,Standing,Peter S. Ball,M,15,Leg & arm bitten,N,17h00,,"Brownsville Herald, 8/14/1968; H.D.Baldridge, SAF Case #1553",1968.08.21-PeterBall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.21-PeterBall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.21-PeterBall.pdf,1968.08.21,1968.08.21,2759,, +1968.08.13,13-Aug-68,1968,Unprovoked,FRENCH POLYNESIA,Society Islands,Tahiti,Swimming,Blake Tenville,M,12,Finger severed,N,,,"H.D.Baldridge, SAF Case #1531",1968.08.13-Tennville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.13-Tennville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.13-Tennville.pdf,1968.08.13,1968.08.13,2758,, +1968.08.11,11-Aug-68,1968,Unprovoked,MALAYSIA,Johor,Pulau Aur,Leaving the water,Inche Bin Saini,,41,Hand lacerated,N,08h00,,"H.D.Baldridge, SAF Case #1541",1968.08.11-NV-InceBinSaini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.11-NV-InceBinSaini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.11-NV-InceBinSaini.pdf,1968.08.11,1968.08.11,2757,, +1968.08.08,08-Aug-68,1968,Unprovoked,COLUMBIA,Magdalena Department,"Makuaka Ca�o, Taganga",Dynamite fishing,Abel Mattos Antoniou Vasquez,M,18,Lacerations to head,N,10h30,2 m shark,"SoHo.com, 11/19/2-11",1968.08.08-Vasquez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.08-Vasquez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.08-Vasquez.pdf,1968.08.08,1968.08.08,2756,, +1968.07.27,27-Jul-68,1968,Unprovoked,USA,California,"Bodega Rock, Sonoma County",Free diving,Frank Logan,M,25,Major injury to torso,N,11h00,"White shark, 4 m [13'] ","D. Miller & R. Collier; R. Collier, pp.41-42; H.D. Baldridge, p.76, 138, 191, 194, 206",1968.07.27-FrankLogan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.27-FrankLogan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.27-FrankLogan_Collier.pdf,1968.07.27,1968.07.27,2755,, +1968.07.23,23-Jul-68,1968,Unprovoked,USA,Florida,Florida Keys,Wading,H. Meacham,M,33,Abrasions on lower leg,N,13h30,,"H.D.Baldridge, SAF Case #1542",1968.07.23-NV-Meacham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.23-NV-Meacham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.23-NV-Meacham.pdf,1968.07.23,1968.07.23,2754,, +1968.07.16,16-Jul-68,1968,Unprovoked,USA,South Carolina,"Stono Inlet, near Charleston, Charleston County",Spearfishing using Scuba,Paul Hughes,M,33,Swimfin & knee bitten,N,Afternoon,4m [13'] shark,"H.D.Baldridge, p.284",1968.07.16-Hughes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.16-Hughes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.16-Hughes.pdf,1968.07.16,1968.07.16,2753,, +1968.07.10,10-Jul-68,1968,Unprovoked,BAHAMAS,Great Exuma Island,Children's Bay Cay near Rollerville,Small boat with 2 men onboard hit a submerged coral formation. Men began swimming to shore,male,M,,"FATAL, taken by shark ",Y,,,"Reported by F.S.T. Baker to M. Vorenberg, pp.154-155",1968.07.10-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.10-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.10-Bahamas.pdf,1968.07.10,1968.07.10,2752,, +1968.07.00,Jul-68,1968,Invalid,MEXICO,Baja California,,,Robert Slatzer,M,43,No injury,N,Afternoon,Not authenticated,"H.D.Baldridge, SAF Case #1613",1968.07.00-NV-Slatzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.00-NV-Slatzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.00-NV-Slatzer.pdf,1968.07.00,1968.07.00,2751,, +1968.06.25,25-Jun-68,1968,Unprovoked,BAHAMAS,Eleuthera,Spanish Wells ,Spearfishing,Roy Pinder,M,17,"Bumped shoulder, bit head",N,,1.5 m to 2 m [5' to 6.75'] Caribbean reef shark ,"H.D. Baldridge, p.260; Clark, p.87",1968.06.25-Pinder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.06.25-Pinder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.06.25-Pinder.pdf,1968.06.25,1968.06.25,2750,, +1968.06.09,09-Jun-68,1968,Unprovoked,USA,Florida,"Mullet Key, Pinellas County",Clamming,Peter Nash,M,17,Lacerations to lower right leg & andkle,N,09h30,,"Evening Indeipendent, 6/10/1968, p.3",1968.06.09-Nash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.06.09-Nash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.06.09-Nash.pdf,1968.06.09,1968.06.09,2749,, +1968.06.00,Jun-68,1968,Unprovoked,ENGLAND,,,,Roy Cloke,M,,Arm severely lacerated,N,,Blue shark,"H.D. Baldridge (1994), SAF Case #1515",1968.06.00-NV-Cloke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.06.00-NV-Cloke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.06.00-NV-Cloke.pdf,1968.06.00,1968.06.00,2748,, +1968.05.18,18-May-68,1968,Invalid,TANZANIA,Mafia Island,,Schooner sank during a storm,,,,"6 people rescued, 3 shark-scavenged bodies recovered, 14 people lost ",Y,,Shark involvement not confirmed,R. Wharton,1968.05.18-MafiaIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.05.18-MafiaIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.05.18-MafiaIsland.pdf,1968.05.18,1968.05.18,2747,, +1968.05.00,May-68,1968,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,,Standing,Tamuk Gilaba,M,17,Lower leg severely lacerated,N,,,H.D. Baldridge (1994) SAF Case #1520,1968.05.00-NV-Gilaba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.05.00-NV-Gilaba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.05.00-NV-Gilaba.pdf,1968.05.00,1968.05.00,2746,, +1968.04.29,29-Apr-68,1968,Invalid,USA,Florida,"Fort Lauderdale, Broward County",Wading,Frank Carrell,M,63,Foot severely injured,N,14h00,Shark involvement not confirmed,"News Journal, 5/1/1968",1968.04.29-Carrell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.29-Carrell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.29-Carrell.pdf,1968.04.29,1968.04.29,2745,, +1968.04.20,20-Apr-68,1968,Unprovoked,USA,Florida,"Palm Beach Shores, Riviera Beach, Singer Island, Palm Beach County",,Steven Samples,M,10,"Buttock, both legs & arm bitten",N,12h30,2.7 m [9'] silky shark,"M. Vorenberg, GSAF; R. Skocik, pp.168-169; H.D. Baldridge, p.203; Note: A. Resciniti, p.35, also refers to an earlier attack on a snorkeler. The shark bit the boy's calf and both swim fins.",1968.04.20-Samples.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.20-Samples.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.20-Samples.pdf,1968.04.20,1968.04.20,2744,, +1968.04.15,15-Apr-68,1968,Unprovoked,AUSTRALIA,New South Wales,South Coast,"Diving. Shark �swallowed� his hand, so he threw his other around the shark and went �shark-back riding� for 30 yards until the shark opened its jaws",Rodney Castle,M,21,Hand lacerated,N,,"Bronze whaler shark, 1.8 m [6'] ","Sydney Morning Herald, 4/28/1968 ",1968.04.15-Castle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.15-Castle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.15-Castle.pdf,1968.04.15,1968.04.15,2743,, +1968.04.11.R,Reported 11-Apr-1968,1968,Unprovoked,PAPUA NEW GUINEA,Gulf Province,Orokolo Bay,Swimming,Hukolapa Laiokeke,M,7,FATAL Laceration to chest,Y,,,"The Age, 4/11/1968, p.4",1968.04.11.R-Laiokeke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.11.R-Laiokeke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.11.R-Laiokeke.pdf,1968.04.11.R,1968.04.11.R,2742,, +1968.04.07,07-Apr-68,1968,Provoked,AUSTRALIA,New South Wales,Stockton Bight,,Ray Weaver,M,47,Foot lacerated Recorded as PROVOKED INCIDENT,N,Early morning,"""Blue whaler"" (Galeolamna)","J. Green, p.36; H. D. Baldridge (1994) SAF Case #1528",1968.04.07-Weaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.07-Weaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.07-Weaver.pdf,1968.04.07,1968.04.07,2741,, +1968.03.25,25-Mar-68,1968,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Richards Bay,Wading & pushing dinghy toward the shallows,Almon Mtiyane,M,35,Left thigh lacerated,N,Afternoon,1.5 m to 1.8m [5' to 6'] shark,"J. Bass, H.A. Jones, A. Heydorn & D. Illing",1968.03.25-Mtiyane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.03.25-Mtiyane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.03.25-Mtiyane.pdf,1968.03.25,1968.03.25,2740,, +1968.03.10,10-Mar-68,1968,Unprovoked,USA,Florida,"Jensen Beach, Martin County",Surfing,Jan Icyda,M,20,Foot lacerated,N,Afternoon,,H.D. Baldridge (1994) SAF Case #1548,1968.03.10-Icyda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.03.10-Icyda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.03.10-Icyda.pdf,1968.03.10,1968.03.10,2739,, +1968.03.00,Mar-68,1968,Invalid,USA,Florida,Florida Keys,Treading water,Jared Voorhees,M,28,No injury,N,Night,,H.D. Baldridge (1994) SAF Case #1530,1968.03.00-NV-Voorhees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.03.00-NV-Voorhees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.03.00-NV-Voorhees.pdf,1968.03.00,1968.03.00,2738,, +1968.02.26,26-Feb-68,1968,Unprovoked,USA,Florida,Palm Beach County,Surfing,Fred Hennessee,M,17,Foot lacerated,N,13h30,Bull shark,"H.D. Baldridge, #1549",1968.02.26-Hennessee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.26-Hennessee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.26-Hennessee.pdf,1968.02.26,1968.02.26,2737,, +1968.02.20,20-Feb-68,1968,Unprovoked,AUSTRALIA,Western Australia,Swan River,Swimming,Ingrid Germanis,F,14,Thigh lacerated,N,Late afternoon,,"J. Green, p.36",1968.02.20-Germanis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.20-Germanis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.20-Germanis.pdf,1968.02.20,1968.02.20,2736,, +1968.02.18,18-Feb-68,1968,Provoked,NEW ZEALAND,North Island,"Pilot Bay, Mt Maunganui ",Picking up shark by the tail,Lynne Campbell,F,,Wrist bitten PROVOKED INCIDENT,N,,3' shark,"R.D. Weeks, GSAF; Otago Daily Times, 2/20/1968; H.D. Baldridge (1994) SAF Case #1525",1968.02.18-Campbell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.18-Campbell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.18-Campbell.pdf,1968.02.18,1968.02.18,2735,, +1968.02.04,04-Feb-68,1968,Unprovoked,AUSTRALIA,South Australia,Cape Jervis,Spearfishing,Howard Forster,M,26,"No injury, speargun bitten",N,18h30,"Bronze whaler shark, 3 m [10'] ","H.D. Baldridge, p.199",1968.02.04-Forster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.04-Forster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.04-Forster.pdf,1968.02.04,1968.02.04,2734,, +1968.02.02,02-Feb-68,1968,Unprovoked,AUSTRALIA,New South Wales,Brunswick Heads,,R. Vidler,,,Survived,N,,,"J. Green, p.36",1968.02.02-Vidler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.02-Vidler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.02-Vidler.pdf,1968.02.02,1968.02.02,2733,, +1968.02.00,Feb-68,1968,Unprovoked,MOZAMBIQUE,,,Diving,Sergio Peres,,24,No injury,N,,,H.D. Baldridge (1994) SAF Case #1522,1968.02.00-NV-Peres.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.00-NV-Peres.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.00-NV-Peres.pdf,1968.02.00,1968.02.00,2732,, +1968.01.17,17-Jan-68,1968,Unprovoked,PAPUA NEW GUINEA,Morobe Province,Finschafen,Swimming,Awin Ieromia,,13,FATAL,Y,17h30,,H.D. Baldridge (1994) SAF Cases #1519 & #1584,1968.01.17-NV-Ieromia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.01.17-NV-Ieromia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.01.17-NV-Ieromia.pdf,1968.01.17,1968.01.17,2731,, +1968.00.00.c,1968,1968,Unprovoked,COSTA RICA,Lim�n Province,Parismina,Swimming after his canoe capsized,male,M,,FATAL,Y,,,"Kokomo Tribune, 5/11/1969",1968.00.00.c-Parisima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.c-Parisima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.c-Parisima.pdf,1968.00.00.c,1968.00.00.c,2730,, +1968.00.00.b,1968,1968,Invalid,USA,Florida,"Key West, Monroe County",Diving,,,,Recovered,N,13h00,"Nurse shark, 1 m ",Unverified,1968.00.00.b-NV-KeyWestDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.b-NV-KeyWestDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.b-NV-KeyWestDiver.pdf,1968.00.00.b,1968.00.00.b,2729,, +1968.00.00.a,1968,1968,Invalid,USA,Florida,"Jensen Beach, Martin County",Surfing,,,,,UNKNOWN,17h00,,Unverified,1968.00.00.a-NV-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.a-NV-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.a-NV-JensenBeach.pdf,1968.00.00.a,1968.00.00.a,2728,, +1967.12.30,30-Dec-67,1967,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Surfing,Brian Pearson,M,22,Right ankle & foot bitten,N,14h00,1.5 m to 1.8 m [5' to 6'] shark,"B. Pearson, M. Levine, GSAF",1967.12.30-Pearson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.30-Pearson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.30-Pearson.pdf,1967.12.30,1967.12.30,2727,, +1967.12.21.R,Reported 21-Dec-1967,1967,Invalid,PAPUA NEW GUINEA,Central Province,Port Moresby,Spearfishing,Bob Valentine,M,32,No injury,N,,Mako shark,H.D. Baldridge (1994) ,1967.12.21.R-Valentine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.21.R-Valentine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.21.R-Valentine.pdf,1967.12.21.R,1967.12.21.R,2726,, +1967.12.18,18-Dec-67,1967,Unprovoked,FIJI,,,,Tera Tetapana,M,27,Arm lacerated,N,09h00,,H.D.Baldridge (1994) SAF Case #1532,1967.12.18-NV-Tetapana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.18-NV-Tetapana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.18-NV-Tetapana.pdf,1967.12.18,1967.12.18,2725,, +1967.12.17,17-Dec-67,1967,Unprovoked,AUSTRALIA,Victoria,"Cheviot Beach, Portsea, Port Phillip Bay",Swimming,Prime Minister Harold Holt,M,59,"FATAL, presumed taken by a shark, body not recovered",Y,A.M.,,"H. Edwards, p.137-138",1967.12.17-PrimeMinister.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.17-PrimeMinister.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.17-PrimeMinister.pdf,1967.12.17,1967.12.17,2724,, +1967.12.14,14-Dec-67,1967,Provoked,USA,,,,Joe Stinson,M,,"Head, shoulder, arm lacerated. Recorded as PROVOKED INCIDENT",N,,,H.D.Baldridge (1994) SAF Case #1566,1967.12.14-NV-Stinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.14-NV-Stinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.14-NV-Stinson.pdf,1967.12.14,1967.12.14,2723,, +1967.11.30.b,30-Nov-67,1967,Provoked,AUSTRALIA,New South Wales,Wollongong,Freediving,Jeff Short,M,15,Recorded as PROVOKED INCIDENT,N,,Grey nurse shark,H.D. Baldridge (1994) SAF Case #1516,1967.11.30.b- NV-JeffShort.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.30.b- NV-JeffShort.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.30.b- NV-JeffShort.pdf,1967.11.30.b,1967.11.30.b,2722,, +1967.11.30.a,30-Nov-67,1967,Unprovoked,AUSTRALIA,Queensland,Surfer's Paradise,,Jan Ligrov,M,18,Arm lacerated,N,,Grey nurse shark,(1994) SAF Case #1524,1967.11.30.a-Ligrov.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.30.a-Ligrov.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.30.a-Ligrov.pdf,1967.11.30.a,1967.11.30.a,2721,, +1967.11.15,15-Nov-67,1967,Provoked,FIJI,,,Freediving,Stephen Wiltshire,M,21,Hand lacerated by speared shark PROVOKED INCIDENT,N,Morning,,H.D.Baldridge (1994) SAF Case #1537,1967.11.15-NV-Wiltshire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.15-NV-Wiltshire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.15-NV-Wiltshire.pdf,1967.11.15,1967.11.15,2720,, +1967.11.04,04-Nov-67,1967,Sea Disaster,PHILIPPINES,Rombion Province,Off Sibuyan Island,Sinking of the M/V Mindoro during a typhoon,,,,Passengers taken by sharks,Y,,,"Canberra Times, 11/9/1967",1967.11.04-Mindoro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.04-Mindoro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.04-Mindoro.pdf,1967.11.04,1967.11.04,2719,, +1967.11.00,Nov-67,1967,Invalid,SOUTH AFRICA,KwaZulu-Natal,Brighton Beach,,female,F,,"Bones and brightly colored bangles recovered 3.35 m, 145.5-kg tiger shark�s gut ",Y,,,"A. Heydorn, ORI",1967.11.00-BrightonBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.00-BrightonBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.00-BrightonBeach.pdf,1967.11.00,1967.11.00,2718,, +1967.10.26.R,Reported 26-Oct-1967,1967,Unprovoked,MEXICO,Veracruz,Veracruz,Swimming,"""a youth""",,,FATAL,Y,,,"Chicago Tribune, 10/27/1967",1967.10.26.R-Veracruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.26.R-Veracruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.26.R-Veracruz.pdf,1967.10.26.R,1967.10.26.R,2717,, +1967.10.17,17-Oct-67,1967,Unprovoked,USA,Florida,"McArthur Beach, Singer Island, Palm Beach Shores",Standing on sandbar,Peter J. White,M,19,Left foot bitten,N,16h30,small blacktip shark,"M. Vorenberg, GSAF",1967.10.17-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.17-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.17-White.pdf,1967.10.17,1967.10.17,2716,, +1967.10.00,Oct-67,1967,Unprovoked,TONGA,,,Swimming,Toetuu Hopoi,M,17,Arm & leg bitten,N,,,H.D.Baldridge (1994) SAF Case #1480,1967.10.00-NV-Hopoi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.00-NV-Hopoi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.00-NV-Hopoi.pdf,1967.10.00,1967.10.00,2715,, +1967.09.20,20-Sep-67,1967,Invalid,USA,Hawaii,"Kailua Bay, O'ahu",Boat capsized between O'ahu & Molokai,male,M,,Remains found in a 3.4 m (11') tiger shark. Probable drowning & scavenging,Y,,,"J. Borg, p.73; L. Taylor (1993), pp.102-103",1967.09.20-male-Oahu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.20-male-Oahu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.20-male-Oahu.pdf,1967.09.20,1967.09.20,2714,, +1967.09.13,13-Sep-67,1967,Provoked,ITALY,Brindisi Province,Brindisi,Scuba diving,Romeo Guarini,M,21,"Diver shot the shark, then it injured his arm and broke his leg with its tail. PROVOKED INCIDENT",,,2 m shark,C. Moore. GSAF,1967.09.13-Guarini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.13-Guarini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.13-Guarini.pdf,1967.09.13,1967.09.13,2713,, +1967.09.07.b,07-Sep-67,1967,Provoked,PAPUA NEW GUINEA,New Ireland Province,,Diving,Parang,,,"No details, listed as PROVOKED INCIDENT",UNKNOWN,,,"H.D.Baldridge, SAF Case #1546",1967.09.07.b-NV-Parang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.07.b-NV-Parang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.07.b-NV-Parang.pdf,1967.09.07.b,1967.09.07.b,2712,, +1967.09.07.a,07-Sep-67,1967,Unprovoked,USA,Florida,"Key West, Monroe County",Spearfishing,,,,Survived,N,14h30,,,1967.09.07.a-NV-KeyWest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.07.a-NV-KeyWest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.07.a-NV-KeyWest.pdf,1967.09.07.a,1967.09.07.a,2711,, +1967.09.06,06-Sep-67,1967,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,Lambom Island,Spearfishing,Parang,M,,FATAL,Y,,,"The Age, 9/7/1967 ",1967.09.06-Parang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.06-Parang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.06-Parang.pdf,1967.09.06,1967.09.06,2710,, +1967.09.01,01-Sep-67,1967,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,"Lamassa Island, 16 miles from Lambon Island",Spearfishing,Tony Kamage,M,23,FATAL,Y,,3.7 m [12'] shark,"F. Dennis, pp.23-24",1967.09.01-Kamage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.01-Kamage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.01-Kamage.pdf,1967.09.01,1967.09.01,2709,, +1967.08.27,27-Aug-67,1967,Provoked,USA,California,Ventura,Pulling shark from the water,Jim Beatty,M,24,Nipped on shoulder by captive shark PROVOKED INCIDENT,N,14h30,5' blue shark,"Ventura County Ad-Visor, 8/31/1967",1967.08.27-Beatty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.27-Beatty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.27-Beatty.pdf,1967.08.27,1967.08.27,2708,, +1967.08.26,26-Aug-67,1967,Unprovoked,JAPAN,Kagawa Prefecture,Sakaide,,Masanori Ishikawa,M,19,FATAL,Y,14h30,,K. Nakaya,1967.08.26-Ishikawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.26-Ishikawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.26-Ishikawa.pdf,1967.08.26,1967.08.26,2707,, +1967.08.25,25-Aug-67,1967,Unprovoked,ITALY,Liguria," Marinella Sarzana, La Spezia ",Spearfishing on Scuba,Gian Paolo Porta Casucci,M,,Minor injuries to face & forearm,N,,,"C. Moore, GSAF",1967.08.25-Casucci.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.25-Casucci.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.25-Casucci.pdf,1967.08.25,1967.08.25,2706,, +1967.08.19,19-Aug-67,1967,Unprovoked,AUSTRALIA,Western Australia,Jurien Bay,"Spearfishing, dived to pick up a float line",Robert Bartle,M,23,"FATAL, ""bitten in two""",Y,11h00,White shark,"H. Edwards, pp.35-42; H.D. Baldridge, p.28; A. Sharpe, pp.132-133; A. MacCormick, p.86; J. West, ASAF",1967.08.19-Bartle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.19-Bartle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.19-Bartle.pdf,1967.08.19,1967.08.19,2705,, +1967.08.15,15-Aug-67,1967,Unprovoked,BERMUDA,Hamilton,Hamilton,Floating,Sue Ferguson,F,19,Right foot abraded & lacerated,N,16h00,,"Gettysburg Times, 8/15/1967",1967.08.15-Ferguson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.15-Ferguson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.15-Ferguson.pdf,1967.08.15,1967.08.15,2704,, +1967.08.14.R,Reported 14-Aug-1967,1967,Unprovoked,COLUMBIA,,,,Thomas Walsh,M,,3 fingers were bitten by a shark,N,,,"New York Times, 8/14/1967",1967.08.14.R-Walsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.14.R-Walsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.14.R-Walsh.pdf,1967.08.14.R,1967.08.14.R,2703,, +1967.08.10,10-Aug-67,1967,Invalid,AUSTRALIA,New South Wales,Jervis Bay,Anti-sabotage night dive exercise alongside destroyer (Scuba diving),"J.T. Hales and Kenneth J. Hislop, Australian Navy frogmen",M,? & 19,"Disappeared, no trace of men or equipment, shark attack considered",Y,Night,,"H.D. Baldridge, p.184",1967.08.10-Hales-Hislop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.10-Hales-Hislop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.10-Hales-Hislop.pdf,1967.08.10,1967.08.10,2702,, +1967.08.07,07-Aug-67,1967,Unprovoked,USA,Florida,Near Key West,Spearfishing,Donald Ritter,M,15,Shark grasped thigh,N,14h30,"Nurse shark, 106 cm, 28-lb, male ","H.D. Baldridge, p.193; Clark, p.86",1967.08.07-Ritter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.07-Ritter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.07-Ritter.pdf,1967.08.07,1967.08.07,2701,, +1967.08.00.b,Aug-67,1967,Unprovoked,BAHAMAS,Out Islands,Andros Island,Photographing sharks underwater using Scuba,Richard Winer,M,41,"No injury, shark struck camera",N,Early afternoon,1.5 m to 1.8 m [5' to 6'] sandbar shark,"H.D. Baldridge, p.185",1967.08.00.b-Winer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.00.b-Winer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.00.b-Winer.pdf,1967.08.00.b,1967.08.00.b,2700,, +1967.08.00.a,Aug-67,1967,Unprovoked,SENEGAL,Cap Vert Peninsula,Hann,Beach seine netting,B.D.,M,,Ankle bitten,N,04h00,1.8 m shark,S. Trape,1967.08.00.a-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.00.a-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.00.a-Senegal.pdf,1967.08.00.a,1967.08.00.a,2699,, +1967.07.29,29-Jul-67,1967,Unprovoked,USA,Florida,Florida Keys,Snorkeling,Joseph McGonigal,M,20,Foot lacerated,N,Afternoon,,"H.D.Baldridge, SAF Case #1538",1967.07.29-NV-McGonigal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.07.29-NV-McGonigal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.07.29-NV-McGonigal.pdf,1967.07.29,1967.07.29,2698,, +1967.07.05,05-Jul-67,1967,Unprovoked,TURKEY,Mugla Province,Kucukada Island,Spearfishing,Gungor Guven,M,36,FATAL,Y,13h40,,"C. Moore, GSAF",1967.07.05-Guven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.07.05-Guven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.07.05-Guven.pdf,1967/07.05,1967.07.05,2697,, +1967.07.00,Jul-67,1967,Invalid,USA,South Carolina,,Surfing,Tim Dowdy,M,18,Incident not confirmed,N,16h30,,H.D. Baldridge (1994) SAF Case #1637,1967.07.00-NV-Dowdy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.07.00-NV-Dowdy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.07.00-NV-Dowdy.pdf,1967.07.00,1967.07.00,2696,, +1967.06.13,13-Jun-67,1967,Provoked,USA,Florida,"Key West, Monroe County",Spearfishing,Andres Puma (or Pruna),M,26,"After shark was speared & hit on head, it bit the diver�s foot PROVOKED INCIDENT",N,17h30,"Nurse shark, 1 m ","H.D. Baldridge, p.192; M. McDiarmid, p.70",1967.06.13-Pruna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.06.13-Pruna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.06.13-Pruna.pdf,1967.06.13,1967.06.13,2695,, +1967.06.00,Jun-67,1967,Provoked,ITALY,Sicily,Stretto di Messina,Fishing boat,,M,,"No injury to occupants, harpooned shark sank boat PROVOKED INCIDENT",N,,"White shark, 4 to 5 m [13' to 16.5'] ",A. De Maddalena; Giudici & Fino (1989),1967.06.00-Messina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.06.00-Messina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.06.00-Messina.pdf,1967.06.00,1967.06.00,2694,, +1967.05.13,13 or 30-May-1967,1967,Provoked,AUSTRALIA,South Australia,Outer Harbor,,Rodney Baim,M,30,Thigh abraded & lacerated Recorded as PROVOKED INCIDENT,N,Morning,Bronze whaler shark,"J. Green, p.36; H. D. Baldridge (1994) SAF Case #1464",1967.05.13-NV-Baim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.05.13-NV-Baim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.05.13-NV-Baim.pdf,1967.05.13,1967.05.13,2693,, +1967.05.09,09-May-67,1967,Provoked,AUSTRALIA,,Aquarium,Feeding a shark,Rod Stanley,M,22,Recorded as PROVOKED INCIDENT,N,Afternoon,Grey nurse shark,H.D.Baldridge (1994) SAF Case #1536,1967.05.09-NV-Stanley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.05.09-NV-Stanley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.05.09-NV-Stanley.pdf,1967.05.09,1967.05.09,2692,, +1967.04.00,Apr-67,1967,Provoked,UNITED KINGDOM,Gibraltar,,Fishing,Bernard Venables,M,60,Tooth knocked out by hooked shark PROVOKED INCIDENT,N,,,C. Moore,1967.04.00-Venables-Gibraltar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.04.00-Venables-Gibraltar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.04.00-Venables-Gibraltar.pdf,1967.04.00,1967.04.00,2691,, +1967.03.20,20-Mar-67,1967,Provoked,NEW ZEALAND,North Island,Leigh,Freediving,Peter Clark,M,21,Abrasions to lower leg Recorded as PROVOKED INCIDENT,N,Afternoon,,H.D. Baldridge (1994) SAF Case #1521,1967.03.20-NV-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.20-NV-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.20-NV-Clark.pdf,1967.03.20,1967.03.20,2690,, +1967.03.19,19-Mar-67,1967,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Paradise Reef,Spearfishing,Len Jones,M,32,"Punctures in right buttock & thigh, abrasion on right forearm",N,06h50,"White shark, 3 m [10'] ","L. Jones, M. Levine, GSAF;. D'Aubrey, ORI",1967.03.19-LenJones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.19-LenJones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.19-LenJones.pdf,1967.03.19,1967.03.19,2689,, +1967.03.12,12-Mar-67,1967,Provoked,AUSTRALIA,Victoria,Geelong,Spearfishing,Brian Marendaz,M,36,Speared shark lacerated his arm PROVOKED INCIDENT,N,15h00,Grey nurse shark,"H.D. Baldridge, SAF Case #1466",1967.03.12-NV-Marendez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.12-NV-Marendez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.12-NV-Marendez.pdf,1967.03.12,1967.03.12,2688,, +1967.03.10,10-Mar-67,1967,Invalid,AUSTRALIA,New South Wales,"Dover Heights, Sydney",Vehicle plunged over cliff into the water,passenger in an automobile,,,"Fatal or scavenging by ""a pack of sharks""",Y,,,Evening Express (Cardiff),1967.03.10-passenger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.10-passenger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.10-passenger.pdf,1967.03.10,1967.03.10,2687,, +1967.03.09,09-Mar-67,1967,Unprovoked,NEW ZEALAND,South Island,St. Kilda Beach,Lifesaving drill,William Black,M,21,"FATAL, seen taken by a shark ",Y,19h45,Thought to involve a white shark,"R.D. Weeks, GSAF; J. Garrick; West Australian (Perth), 3/10/1967",1967.03.09-Black.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.09-Black.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.09-Black.pdf,1967.03.09,1967.03.09,2686,, +1967.03.01,01-Mar-67,1967,Unprovoked,PAPUA NEW GUINEA,New Britain,"Barawon Beach, near Rabaul",,black male,M,14,Leg bitten,N,,3.7 m [12'] shark,"F. Dennis, p.23; H.D. Baldridge (1994) SAF Case #1534",1967.03.01-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.01-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.01-boy.pdf,1967.03.01,1967.03.01,2685,, +1967.02.06,06-Feb-67,1967,Sea Disaster,MEXICO,Veracruz,Cabo Rojo,The shrimper Loless Maurine capsized in heavy seas & the men were swimming ashore ,Carlos Humberto Mendez & Esteban Robles,M,,FATAL,Y,14h00,,"Brownsville Herald, 1/28/1968",1967.02.06-Mendez-Robles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.02.06-Mendez-Robles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.02.06-Mendez-Robles.pdf,1967.02.06,1967.02.06,2684,, +1967.01.27,27-Jan-67,1967,Boat,SOUTH AFRICA,Western Cape Province,Melkbosstrand,Fishing for rock lobster,"Lobster boat, occupants: Mr. P. Valentine & Mr. J. van Schalkwyk ",,,"Holed & sank boat, 1 man flung into water but ignored by the shark",N,,White shark or thresher shark,GSAF,1967.01.27-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.27-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.27-boat.pdf,1967.01.27,1967.01.27,2683,, +1967.01.22,22-Jan-67,1967,Provoked,SOUTH AFRICA,Western Cape Province,Whittle Rock False Bay,Spearfishing Competition,Ian Gericke,M,,"No injury, shark bit support boat, removing pieces of wood after Gerricke shot it PROVOKED INCIDENT",N,,2.1 m [7'] sandtiger shark,"H.D. Baldridge, p.128",1967.01.22-Gericke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.22-Gericke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.22-Gericke.pdf,1967.01.22,1967.01.22,2682,, +1967.01.21,21-Jan-67,1967,Unprovoked,MOZAMBIQUE,Bay of Maputo,Xefina Island,Swimming in the channel,Alberto Caravallo Santos,M,31,Right leg severely lacerated,N,,,"M. Levine, GSAF",1967.01.21-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.21-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.21-Santos.pdf,1967.01.21,1967.01.21,2681,, +1967.01.06,06-Jan-67,1967,Provoked,AUSTRALIA,Victoria,Goolwa,Splashing,Gregory Loane,M,15,Foot bitten when he kicked shark PROVOKED INCIDENT,N,,"""sand shark""",H.D.Baldridge (1994) SAF Case #1465,1967.01.06-NV-Loane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.06-NV-Loane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.06-NV-Loane.pdf,1967.01.06,1967.01.06,2680,, +1966.12.31,31-Dec-66,1966,Unprovoked,AUSTRALIA,Tasmania,"Piccaninny Point, 10 miles from Bicheno",Fishing,Alf Bosworth,M,30,"6"" laceration to left forearm ",N,,2.1 m [7'] shark,"J. Green, p.35; Sun (Sydney), 1/3/1967",1966.12.31-Bosworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.31-Bosworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.31-Bosworth.pdf,1966.12.31,1966.12.31,2679,, +1966.12.27.b,27-Dec-66,1966,Provoked,AUSTRALIA,New South Wales,South West Rocks,Spearfishing,Robert Lusted,M,29,The shark bit the diver's leg after he shot it PROVOKED INCIDENT,N,,"Grey nurse shark, 1.5 m [5'] ","Sun (Sydney), 12/29/1966; J. Green, p.36; H.D. Baldridge, p.166 ",1966.12.27.b-Lusted.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.27.b-Lusted.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.27.b-Lusted.pdf,1966.12.27.b,1966.12.27.b,2678,, +1966.12.27.a,27-Dec-66,1966,Unprovoked,AUSTRALIA,New South Wales,Trial Bay,Spearfishing,Lyle Fielding,M,19,Right hand lacerated,N,,"Grey nurse shark, 1.5 m [5']","Sun (Sydney), 12/29/1966; J. Green, p.36",1966.12.27.a-Fielding.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.27.a-Fielding.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.27.a-Fielding.pdf,1966.12.27.a,1966.12.27.a,2677,, +1966.12.26,26-Dec-66,1966,Unprovoked,SINGAPORE,,Singapore,Wading,Hussain Ali,M,39,Thigh bitten,N,Afternoon,,"H.D. Baldridge, SAF Case #1458",1966.12.26-NV-Hussain-Ali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.26-NV-Hussain-Ali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.26-NV-Hussain-Ali.pdf,1966.12.26,1966.12.26,2676,, +1966.12.26,26-Dec-66,1966,Unprovoked,AUSTRALIA,New South Wales,Coogee,Spearfishing,David Jensen,M,29,Right leg bitten,N,,1.8 m [6'] shark,"Sun (Sydney), 12/29/1966; H.D. Baldridge, p.137",1966.12.26-Jensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.26-Jensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.26-Jensen.pdf,1966.12.26,1966.12.26,2675,, +1966.11.14,14-Nov-66,1966,Unprovoked,THAILAND,,,,Vinit Tantikarn,,28,No details,UNKNOWN,,,H.D. Baldridge (1994) SAF Case #1509,1966.11.14-NV-Tantikam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.11.14-NV-Tantikam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.11.14-NV-Tantikam.pdf,1966.11.14,1966.11.14,2674,, +1966.11.00,Early Nov-1966,1966,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,,A father bathing his smallest daughter when the shark bumped her out of his arms and carried her into deep water,Theresa Maineri,F,9 months,FATAL,Y,,3.7 m [12'] shark,"A. McNaught; Times-Courier (Lae, PNG), 12/10/1966; F. Dennis, p.23",1966.11.00-Maineri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.11.00-Maineri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.11.00-Maineri.pdf,1966.11.00,1966.11.00,2673,, +1966.10.30,30-Oct-66,1966,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,"Lamassa Island, 16 miles from Lambom Island",Swimming,Ridel Pogias (female),F,13,FATAL,Y,Morning,3.7 m [12'] shark,"A. McNaught; Times-Courier (Lae, PNG), 12/10/1966; F. Dennis, p.23",1966.10.30-Pogias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.10.30-Pogias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.10.30-Pogias.pdf,1966.10.30,1966.10.30,2672,, +1966.10.29,19-Oct-66,1966,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,"Mission Beach, Lambon Island, near Duke of York Islands",Bathing,Dakel (female),F,8,FATAL,Y,09h00,3.7 m [12'] shark,"A. McNaught; Times-Courier (Lae, PNG), 12/10/1966; F. Dennis, p.23",1966.10.29-Dakel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.10.29-Dakel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.10.29-Dakel.pdf,1966.10.29,1966.10.29,2671,, +1966.09.27,27-Sep-66,1966,Unprovoked,AUSTRALIA,Queensland,"Broomfield Island, 11 miles from Heron Island on the Great Barrier Reef","Free diving, carrying speargun",Barry Dawson,M,32,Shoulder lacerated,N,16h45,"Bronze whaler shark, 2.1 m [7'], a tooth was embedded in the speargun ","B. Dawson, J.Green, pp.50-52; The Cairns Post, 9/28/1966 (Note: the press erroneously reported the diver's name as Davidson.)",1966.09.27-Dawson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.27-Dawson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.27-Dawson.pdf,1966.09.27,1966.09.27,2670,, +1966.09.19,19-Sep-66,1966,Provoked,USA,Hawaii,50 miles NE of Honolulu,Fishing,Akiyoshi Morita,M,20,Left elbow or hand bitten PROVOKED INCIDENT,N,,,"Japan Times, 9/23/1966; Mainichi News, 9/25/1966 edtion",1966.09.19-Morita.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.19-Morita.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.19-Morita.pdf,1966.09.19,1966.09.19,2669,, +1966.09.18,18-Sep-66,1966,Invalid,AUSTRALIA,Western Australia,"Little Beach Reef, Bremer Bay",Spearfishing,John Marsh,M,," The 2.9 m [9.5'] shark never made contact with him. No attack, no injury.",N,,,"The West Australian (Perth), 9/14/1966; D. H.Baldridge, p.136; SAF Case #1424",1966.09.18-Marsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.18-Marsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.18-Marsh.pdf,1966.09.18,1966.09.18,2668,, +1966.09.13,13-Sep-66,1966,Provoked,AUSTRALIA,Western Australia,Albany,Spearfishing,Terry Adams,M,,Involved a speared shark but no other details PROVOKED INCIDENT,UNKNOWN,Late afternoon,,"H.D.Baldridge, SAF Case #1425",1966.09.13-NV-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.13-NV-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.13-NV-Adams.pdf,1966.09.13,1966.09.13,2667,, +1966.09.10,10-Sep-66,1966,Unprovoked,AUSTRALIA,Western Australia,Roe Reef off Rottnest Island,Spearfishing,Frank Paxman,M,43,No injury,N,12h00,"Mako shark, 1.9 m [6.5'] ","The West Australian (Perth), 9/14/1966; H.D.Baldridge, p.136",1966.09.10-Paxman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.10-Paxman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.10-Paxman.pdf,1966.09.10,1966.09.10,2666,, +1966.09.08.b,08-Sep-66,1966,Provoked,USA,Florida,"Florida Keys, Monroe County",Hunting crayfish ,David Redmond,M,14,Abdomen abraded when he seized shark PROVOKED INCIDENT,N,,"Nurse shark, 2.5' ","San Antonio Express, 9/9/1966",1966.09.08-Redmond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.08-Redmond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.08-Redmond.pdf,1966.09.08.b,1966.09.08.b,2665,, +1966.09.00,Sep-66,1966,Invalid,BAHAMAS,Bimini Islands,Tongue of the Ocean,Diving / UW photography,Jerry Greenberg,M,,"2.4 to 3 m [8' to 10'] oceanic whitetip shark buzzed him. No attack, no injury",N,,, ISAF Case #1421,1966.09.00-Greenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.00-Greenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.00-Greenberg.pdf,1966.09.00,1966.09.00,2664,, +1966.08.28,28-Aug-66,1966,Boat,AUSTRALIA,Northern Territory,Darwin Harbour,,"catamaran, occupant: Neil Fowler",M,,"No injury to occupant. Shark struck vessel, jamming centreboard",N,,,"Adelaide Advertiser, 9/1/1966; SAF Case #1426",1966.08.28-Fowler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.28-Fowler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.28-Fowler.pdf,1966.08.28,1966.08.28,2663,, +1966.08.27.b,27-Aug-66,1966,Invalid,SOUTH AFRICA,KwaZulu-Natal,Durban,Netting sharks,"trawler Jacoba, occupant Jan van der Bent",M,,"No attack, no injury to occupant: a 400-lb grey shark k bit nets in the water ",N,,,ISAF Case #1439,1966.08.27-Jacoba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.27-Jacoba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.27-Jacoba.pdf,1966.08.27.b,1966.08.27.b,2662,, +1966.08.27.a,27-Aug-66,1966,Unprovoked,BAHAMAS,Bimini Islands,,Snorkeling,Patricia Hodge,F,18,"Survived, no details",N,17h00,,"P. Gilbert & H.D. Baldridge, SAF Case #1433",1966.08.27.a-NV-Hodge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.27.a-NV-Hodge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.27.a-NV-Hodge.pdf,1966.08.27.a,1966.08.27.a,2661,, +1966.08.21.b,23-Aug-66,1966,Unprovoked,NEW BRITAIN,Duke of York Islands,"Butliwan Village, 15 miles north of Rabaul",Swimming,Memilana Bokset (female - rescuer),F,13,FATAL,Y,Midday,A pack of 6 sharks,"Age (Melbourne), Hudderfield Daily Examiner (Yorkshire), Evening Press (Dublin), 8/23/196;; Irish News (Belfast), 8/24/1966; A. MacCormick, p.161",1966.08.21.b-Bokset.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.21.b-Bokset.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.21.b-Bokset.pdf,1966.08.21.b,1966.08.21.b,2660,, +1966.08.21.a,23-Aug-66,1966,Unprovoked,NEW BRITAIN,Duke of York Islands,"Butliwan Village, 15 miles north of Rabaul",Diving into water,Loding Etwat (female),F,9,FATAL,Y,Midday,A pack of 6 sharks,"Age (Melbourne), Hudderfield Daily Examiner (Yorkshire), Evening Press (Dublin), 8/23/1966; Irish News (Belfast), 8/24/1966; A. MacCormick, p.161",1966.08.21.a-Etwat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.21.a-Etwat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.21.a-Etwat.pdf,1966.08.21.a,1966.08.21.a,2659,, +1966.08.16,16-Aug-66,1966,Unprovoked,CROATIA,Primorje-Gorski Kotar County ,Bakar,Swimming,Josef Treliac,M,33,FATAL,Y,,White shark,"R. Rocconi; A. De Maddalena & C. Moore, GSAF",1966.08.16-Treliac.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.16-Treliac.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.16-Treliac.pdf,1966.08.16,1966.08.16,2658,, +1966.08.14,14-Aug-66,1966,Unprovoked,TAIWAN,,Ye Leow,Lobster diving using Scuba,Jack W. Caldwell,M,,"No injury, but shark struck his calf",N,17h30,1.5 m to 2.1 m [5' to 7'] shark,"H.D.Baldridge, p.184",1966.08.14-Caldwell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.14-Caldwell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.14-Caldwell.pdf,1966.08.14,1966.08.14,2657,, +1966.08.13,13-Aug-66,1966,Unprovoked,ITALY,Taranto province,"Pulsano, near Taranto",Attacked shark with fists,Cosimo Piccinni,M,21,Arm lacerated,N,,"""small shark""","Evening Standard (London) 8/13/1966; Sunday Express (London), 8/14/1966",1966.08.13-CosimoPiccinni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.13-CosimoPiccinni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.13-CosimoPiccinni.pdf,1966.08.13,1966.08.13,2656,, +1966.08.00.b,Mid Aug-1966,1966,Invalid,USA,Delaware,Fenwick Island,Spearfishing on Scuba,Charles T. Henderson,M,26,"No attack, no injury, shark took speared fish & approached diver closely ",N,17h00,,H.D. Baldridge (1994) SAF Case #1440,1966.08.00.b-Henderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.00.b-Henderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.00.b-Henderson.pdf,1966.08.00.b,1966.08.00.b,2655,, +1966.08.00.a,Aug-66,1966,Unprovoked,USA,Florida,"Municipal Bathing area, Riviera Beach, Palm Beach County",Wading,Shawn Carpenter,M,8,"No injury, mother lifted him from the water",N,15h00,Spinner or blacktip sharks,M. Vorenberg,1966.08.00.a-Carpenter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.00.a-Carpenter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.00.a-Carpenter.pdf,1966.08.00.a,1966.08.00.a,2654,, +1966.07.31,31-Jul-66,1966,Unprovoked,USA,Texas,"South Jetty, Galveston",Diving for sand dollars,Robert W. Russell,M,16,Dorsum of right foot grazed,N,,Lemon shark or sandtiger shark,"M. Vorenberg, H.D. Baldridge, p.191",1966.07.31-Russell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.31-Russell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.31-Russell.pdf,1966.07.31,1966.07.31,2653,, +1966.07.19,19-Jul-66,1966,Provoked,USA,South Carolina,"Folly Beach, Charleston County",Killing a shark,Marvin Estridge,M,34,"Arm bitten, PROVOKED INCIDENT",N,18h40,4' shark,"News & Courier, 7/20/1966",1966.07.19-Estridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.19-Estridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.19-Estridge.pdf,1966.07.19,1966.07.19,2652,, +1966.07.17.b,17-Jul-66,1966,Unprovoked,USA,Texas,"Point Comfort, Calhoun County",Fishing,Tommy Barilek,M,14,Lacerations to right foot,N,15h00,,"Victoria Advocate, 7/20/1966, p.8",1966.07.17.b-Barilek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.17.b-Barilek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.17.b-Barilek.pdf,1966.07.17.b,1966.07.17.b,2651,, +1966.07.17.a,17-Jul-66,1966,Unprovoked,TAIWAN,Northern Taiwan,Tamsui Beach,Swimming,Yang Ching-Hui,M,20,"FATAL, left leg severed",Y,,,"South China Morning Post (Hong Kong), 7/19/1966 ",1966.07.17.a-Yang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.17.a-Yang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.17.a-Yang.pdf,1966.07.17.a,1966.07.17.a,2650,, +1966.07.14,14-Jul-66,1966,Unprovoked,PAPUA NEW GUINEA,"Admiralty Islands, Manus Province",Manus Island,Swimming,Sasa,F,25,FATAL,Y,,,H.D.Baldridge (1994) SAF Case #1415,1966.07.14-NV-Sasa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.14-NV-Sasa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.14-NV-Sasa.pdf,1966.07.14,1966.07.14,2649,, +1966.07.03,03-Jul-66,1966,Invalid,USA,Florida,"Key Biscayne, Miami, Dade County",Free diving,John Brothers,M,46,No injury. A 1.1 m [3.5'] blacktip shark shark made a threat display & bit gig,N,07h00,,"H.D. Baldridge, p.210",1966.07.03-Brothers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.03-Brothers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.03-Brothers.pdf,1966.07.03,1966.07.03,2648,, +1966.07.02,02-Jul-66,1966,Boat,CARIBBEAN SEA,,Between USA & Cuba,,"rowboat, occupants: refugees fleeing Cuba",,,"No injury to occupants, sharks bit chunks from boat",N,,,P. Gilbert; SAF Case #1436,1966.07.02-CubanRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.02-CubanRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.02-CubanRefugees.pdf,1966.07.02,1966.07.02,2647,, +1966.06.22,22-Jun-66,1966,Provoked,USA,New Jersey,"Reeds Bay, Brigantine, Atlantic County",Clamming,Harry Hiksdal,M,15,3 lacerations on right leg by speared fish PROVOKED INCIDENT,N,16h00,"Local authorities speculated that the water was too cold for sharks, but a 2.1 m [7'], 200-lb pregnant sandbar shark was caught next day",Press clippings,1966.06.22-Hiksdal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.22-Hiksdal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.22-Hiksdal.pdf,1966.06.22,1966.06.22,2646,, +1966.06.11,11-Jun-66,1966,Provoked,USA,Florida,"Ft. Lauderdale, Broward County",Fishing,Burton Chamberlin,M,18,Hand & forearm bitten by hooked shark PROVOKED INCIDENT,N,09h00,1.2 m [4'] hammerhead shark,T. Bailey,1966.06.11-Chamberlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.11-Chamberlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.11-Chamberlin.pdf,1966.06.11,1966.06.11,2645,, +1966.06.04,04-Jun-66,1966,Unprovoked,USA,Texas,Bolivar Peninsula,Swimming,David N. Holmgreen,M,18,Punctures on thigh & buttock,N,17h00,a small shark,D. Holmgreen,1966.06.04-Holmgreen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.04-Holmgreen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.04-Holmgreen.pdf,1966.06.04,1966.06.04,2644,, +1966.06.02,02-Jun-66,1966,Provoked,FRENCH POLYNESIA,Society Islands,Tahiti,Fishing,Faarei Tuhei,M,,Arm lacerated by netted shark PROVOKED INCIDENT,N,Afternoon,,"H.D. Baldridge (1994), SAF Case #1434",1966.06.02-Tuhei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.02-Tuhei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.02-Tuhei.pdf,1966.06.02,1966.06.02,2643,, +1966.05.20.c,20-May-66,1966,Sea Disaster,AUSTRALIA,New South Wales,Jervis Bay,Sinking of the dredge World Atlas,Kor Van Helden,M,40,FATAL,Y,Night,," J. Green, p.35",1966.05.20.c-VanHelden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.20.c-VanHelden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.20.c-VanHelden.pdf,1966.05.20.c,1966.05.20.c,2642,, +1966.05.20.b,20-May-66,1966,Unprovoked,AUSTRALIA,New South Wales, Bellingen,Fishing,Colin Oxenbridge,M,,Foot bitten,N,01h00,1.8 m [6'] shark,"Bellingen Courier-Sun; J. Green, p.35",1966.05.20.b-Oxenbridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.20.b-Oxenbridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.20.b-Oxenbridge.pdf,1966.05.20.b,1966.05.20.b,2641,, +1966.05.20.a,20-May-66,1966,Sea Disaster,AUSTRALIA,,7 miles offshore on east coast of Australia,Shipwreck,"Daniel Mangel, seaman",M,38,"FATAL, other human remains bitten by sharks, 13 people missing",Y,Dark,Believed white shark and other smaller species of sharks involved.,Barker & Ritson,1966.05.20.a-Mangel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.20.a-Mangel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.20.a-Mangel.pdf,1966.05.20.a,1966.05.20.a,2640,, +1966.05.16.b,16-May-66,1966,Invalid,USA,Florida,"Fernandina Beach, Nassau County",Spearfishing / Scuba diving,Steven Oschosky,M,24,"White shark, 3.7 m [12'] made threat display. No injury, no attack",N,14h00,,"H.D. Baldridge,p.184; SAF Case #1412",1966.05.16.b-Oschoskey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.16.b-Oschoskey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.16.b-Oschoskey.pdf,1966.05.16.b,1966.05.16.b,2639,, +1966.05.16.a,16-May-66,1966,Sea Disaster,PHILIPPINES,,Off Cebu,The passenger ship Pioneer Cebu capsized & sank in Typhoon Irma,male,M,,130 perished; 136 survived including a man whose foot was severed by a shark,Y,,,"Maryborough Chronicle (Queensland), Lancashire Evening Post 6/20/1966 ",1966.05.16.a-PioneerCebu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.16.a-PioneerCebu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.16.a-PioneerCebu.pdf,1966.05.16.a,1966.05.16.a,2638,, +1966.04.08,08-Apr-66,1966,Unprovoked,USA,Puerto Rico,,Swimming,John Seaver,M,25,Foot lacerated,N,16h30,,H.D. Baldridge (1994) SAF Case #1483,1966.04.08-NV-Seaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.04.08-NV-Seaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.04.08-NV-Seaver.pdf,1966.04.08,1966.04.08,2637,, +1966.04.00,Apr-66,1966,Sea Disaster,AUSTRALIA,New South Wales,"Botany Bay, Sydney",Overturned skiff,"Occupants: Jack Munro, Quinton Graham & Donald Shadler",M,,Survived,N,,,SAF Case #1413,1966.04.00-NV-skiff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.04.00-NV-skiff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.04.00-NV-skiff.pdf,1966.04.00,1966.04.00,2636,, +1966.03.20,20-Mar-66,1966,Provoked,AUSTRALIA,New South Wales,Maroubra,Fishing (big game),"35' cruiser, Maluka II, occupants: Mr & Mrs E. Potts",,,"No injury to occupants, hooked shark rammed boat, PROVOKED INCIDENT",N,,"Alleged to involve a White shark, 7.6 m [25'] ",P. W. Gilbert; SAF Case #1435,1966.03.20-Maroubra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.03.20-Maroubra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.03.20-Maroubra.pdf,1966.03.20,1966.03.20,2635,, +1966.03.12,14-Mar-66,1966,Sea Disaster,SUDAN,Red Sea,,"The World Liberty and the tanker Mosli collided. The Halcyon Breeze sent a lifeboat to the rescue, but it was smashed, throwing 6 men in the water.",,M,,FATAL,Y,,,"G. Burns; Befast News-Letter, 3/30/1966",1966.03.12-RedSea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.03.12-RedSea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.03.12-RedSea.pdf,1966.03.12,1966.03.12,2634,, +1966.02.27,27-Feb-66,1966,Unprovoked,AUSTRALIA,New South Wales,Coledale Beach,Treading water,Raymond Short,M,13,"Left leg & lower right leg bitten, taken ashore with shark still grasping his leg",N,14h00,"White shark, 2.5 m [8.25'], an immature female, previously injured","T. B. Gorman & D.J. Dunatan, NSW State Fisheries Laboratories; H.D. Baldridge, p.58; A. Sharpe, pp.77-79; A. MacCormick, p.162",1966.02.27-Short.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.02.27-Short.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.02.27-Short.pdf,1966.02.27,1966.02.27,2633,, +1966.01.29,29-Jan-66,1966,Provoked,SOUTH AFRICA,Western Cape Province,Strandfontein Beach,Helping men land a shark,John Campbell,M,33,Left leg lacerated by hooked shark PROVOKED INCIDENT,N,Afternoon,Copper shark,"Daily News, 2/31/1966; J. Penrith & J. D'Aubrey",1966.01.29-Campbell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.29-Campbell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.29-Campbell.pdf,1966.01.29,1966.01.29,2632,, +1966.01.25,25-Jan-66,1966,Sea Disaster,INDONESIA,North Sumatra,Near Belawan,wreck of the State Oil Company ship Permina,,,,Sharks said to have killed some of the 80 people lost,Y,,,Sydney Daily Telegraph,1966.01.25-Permina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.25-Permina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.25-Permina.pdf,1966.01.25,1966.01.25,2631,, +1966.01.22,22-Jan-66,1966,Unprovoked,USA,California,"Pebble Beach, Cypress Point, Monterey County",Free diving / spearfishing (resting on the surface),Donald Barthman,M,29,"Hand, arm & thigh bitten",N,10h00 / 11h00,"White shark, 3 m [10'] ","D. Miller & R. Collier; R. Collier, pp.40-41; H.D. Baldridge, p.76",1966.01.22-Barthman_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.22-Barthman_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.22-Barthman_Collier.pdf,1966.01.22,1966.01.22,2630,, +1966.01.15,15-Jan-66,1966,Unprovoked,AUSTRALIA,New South Wales,Bellambi,Spearfishing,Cornelius Meyer,M,30,Buttocks bitten,N,,"Wobbegong shark, 5' ","The Age, 1/17/1966, p.1",1966.01.15-Meyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.15-Meyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.15-Meyer.pdf,1966.01.15,1966.01.15,2629,, +1966.01.14,14-Jan-66,1966,Sea Disaster,COLUMBIA,,Off Cartagena,Colombian (Avianca) DC-4 airliner plunged into the sea 5 minutes after takeoff,,,,"10 survived, 51 perished. ",Y,,Shark involvement not confirmed,"Virgin Islands Daily News, 1/17/1966; SAF Case #1399",1966.01.14-AviancaCrash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.14-AviancaCrash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.14-AviancaCrash.pdf,1966.01.14,1966.01.14,2628,, +1966.01.11,11-Jan-66,1966,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Riet River,Standing,Robin Michael Long,M,16,Right calf lacerated,N,09h00,1.5 m to 1.8 m [5' to 6'] Zambesi shark,"J.L.B. Smith, J. Wallace, M. Levine, GSAF",1966.01.11-Long.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.11-Long.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.11-Long.pdf,1966.01.11,1966.01.11,2627,, +1966.01.10,10-Jan-66,1966,Unprovoked,AUSTRALIA,Western Australia,Woodman Point,Jumped into the water,Marko Kovacich,M,43,"Lower leg nipped, arm bruised when he landed in boat",N,,76 cm [2.5'] carpet shark,"West Australian (Perth), 1/20/1966 ",1966.01.10-Kovacich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.10-Kovacich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.10-Kovacich.pdf,1966.01.10,1966.01.10,2626,, +1966.01.09,09-Jan-66,1966,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umkomaas,Body surfing,Dennis Vorster,M,15,Lower legs bitten,N,14h00,"1.8 m to 2 m [6' to 6'9""] shark","J. D�Aubrey, M. Levine, GSAF",1966.01.09-Vorster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.09-Vorster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.09-Vorster.pdf,1966.01.09,1966.01.09,2625,, +1966.01.08,08-Jan-66,1966,Unprovoked,NEW ZEALAND,North Island,"Oakura Beach, Taranaki",Body surfing ,Rae Marion Keightley (female),F,15,"FATAL, left leg bitten thigh to calf ",Y,15h30,,"R.D. Weeks, GSAF; Dr. G. E. Walker",1966.01.08-Knightley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.08-Knightley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.08-Knightley.pdf,1966.01.08,1966.01.08,2624,, +1966.01.05,05-Jan-66,1966,Unprovoked,USA,Florida,"Hollywood, Broward County",Swimming,George A. C. Scherer,M,35,Thigh gashed,N,16h00,Hammerhead shark,J. Ulsh,1966.01.05-Scherer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.05-Scherer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.05-Scherer.pdf,1966.01.05,1966.01.05,2623,, +1966.00.00,Summer of 1996,1966,Invalid,USA,California,"Huntington Beach, Orange County",Walking,Jane Derry,F,15,Minor lacerations & abrasions to lower leg. ,N,"""After lunch""",Shark involvement not confirmed,R. Collier,1966.00.00-Derry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.00.00-Derry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.00.00-Derry.pdf,1966.00.00,1966.00.00,2622,, +1965.12.28,28-Dec-65,1965,Unprovoked,AUSTRALIA,Western Australia,"Bathurst Reef, Rottnest Island","Spearfishing, but standing in knee-deep water",male,M,40,Thigh & swim fin bitten,N,,1.8 m [6'] carpet shark,"Orange Daily (NSW), 12/29/1965; T. Peake, GSAF",1965.12.28-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.12.28-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.12.28-male.pdf,1965.12.28,1965.12.28,2621,, +1965.12.19,19-Dec-65,1965,Unprovoked,JOHNSTON ISLAND,,,Freediving,David Fellows,M,,No injury,N,14h00,Grey reef shark,"H.D. Baldridge (1994), SAF Case #1617",1965.12.19-Fellows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.12.19-Fellows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.12.19-Fellows.pdf,1965.12.19,1965.12.19,2620,, +1965.12.10,10-Dec-65,1965,Boat,AUSTRALIA,South Australia,Cape Jervis,Fishing,19' clinker-built craft. Occupants: Ray Peckham & Mr. L.C. Wells,,,No injury to occupants. Shark gouged planks of boat,N,10h30,15' shark,"Adelaide Advertiser, 12/11/1965, SAF Case 1345",1965.12.10-Jervisboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.12.10-Jervisboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.12.10-Jervisboat.pdf,1965.12.10,1965.12.10,2619,, +1965.11.21.b,21-Nov-65,1965,Provoked,AUSTRALIA,Queensland,Near Brisbane,Fishing from 34' boat when pulled overboard by hooked shark,Gordon Hobrook,M,43,FATAL PROVOKED INCIDENT,Y,,4.6 m [15'] shark,"Evening Press (Dublin, Ireland) 11/22/1965 ",1965.11.21.b-Holbrook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.21.b-Holbrook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.21.b-Holbrook.pdf,1965.11.21.b,1965.11.21.b,2618,, +1965.11.21.a,21-Nov-65,1965,Unprovoked,PACIFIC OCEAN ,"250 miles southwest of O'ahu, Hawaii",Japanese fishing boat Taihei Maru No.10,"Hauling dead shark aboard, when another shark leapt out of the water & bit him",Takashi Kameya,M,44,"Left forearm bitten, surgically amputated",N,23h30,,"P. Resos & J. Souza, Pararescue, 76th Air Rescue Squadron, Hickam AFB, Hawaii",1965.11.21.a-Kameya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.21.a-Kameya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.21.a-Kameya.pdf,1965.11.21.a,1965.11.21.a,2617,, +1965.11.03.b,03-Nov-65,1965,Invalid,PANAMA,Caribbean Sea,Golfo de los Mosquitos,Argentine Air Force C-54,68 people missing (crew & passengers) ,,,2 life preservers had been bitten by sharks,Y,07h32,Shark involvement not confirmed,Tropic Survival School; RCC; SAF Case #1394,1965.11.03.b-ArgentineAircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.03.b-ArgentineAircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.03.b-ArgentineAircraft.pdf,1965.11.03.b,1965.11.03.b,2616,, +1965.11.03.a,03-Nov-65,1965,Unprovoked,AUSTRALIA,Queensland,Oak Beach,Surfing,Roy McGuffie,M,24,Puncture wounds to right thigh,N,16h30,"Grey nurse shark, 2.4 m [8'] ","Telegraph (Sydney), Mirror (Sydney), Post (Cairns), 11/4/1965; J. Green, p.35",1965.11.03.a-McGuffie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.03.a-McGuffie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.03.a-McGuffie.pdf,1965.11.03.a,1965.11.03.a,2615,, +1965.10.21,21-Oct-65,1965,Unprovoked,,,Florida Strait,The boat Caribou II sank,Mario Castellanos,M,39,Survived,N,,,"Lodi News Sentinel, 10/30/1965",1965.10.21-Castellanos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.21-Castellanos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.21-Castellanos.pdf,1965.10.21,1965.10.21,2614,, +1965.10.16.b,16-Oct-65,1965,Unprovoked,BAHAMAS,New Providence Island,Nassau,Sunbathing on beach when he saw child being attacked by the shark,"Bruce Johnson, rescuer",M,32,Right arm & right leg bitten,N,,"1.8 m [6'], 180-lb shark","St. Paul Dispatch, 10/27/1965",1965.10.16.b-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.16.b-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.16.b-Johnson.pdf,1965.10.16.b,1965.10.16.b,2613,, +1965.10.16.a,16-Oct-65,1965,Unprovoked,BAHAMAS,New Providence Island,Nassau,Playing in the water,young girl,F,,FATAL,Y,,"1.8 m [6'], 180-lb shark","St. Paul Dispatch, 10/27/1965",1965.10.16.a-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.16.a-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.16.a-girl.pdf,1965.10.16.a,1965.10.16.a,2612,, +1965.10.10,10-Oct-65,1965,Unprovoked,NEW BRITAIN,West coast,"Outside the reef off Moputu Village, near Talasea","Spearfishing, shot a turtle",Kaleva,M,15,FATAL,Y,,2 sharks involved,Morning Herald (Sydney) 10/17/1965,1965.10.10-Kaleva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.10-Kaleva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.10-Kaleva.pdf,1965.10.10,1965.10.10,2611,, +1965.10.00,Oct-65,1965,Unprovoked,PAPUA NEW GUINEA,New Britain,,Wading,John Guge,M,27,Toe severed,N,,,H.D. Baldridge (1994) SAF Case #1475,1965.10.00-NV-Guge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.00-NV-Guge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.00-NV-Guge.pdf,1965.10.00,1965.10.00,2610,, +1965.09.21,21-Sep-65,1965,Provoked,PAPUA NEW GUINEA,Madang Province,Sek Harbor,Spearing fish,"Dabek Orou, male",M,,"Minor injury, speared shark lacerated his kneecap & leg PROVOKED INCIDENT",N,,"""small shark""","South Pacific Post, 9/22/2965; SAF Case #1386",1965.09.21-Orou.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.09.21-Orou.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.09.21-Orou.pdf,1965.09.21,1965.09.21,2609,, +1965.09.12,12-Sep-65,1965,Provoked,PAPUA NEW GUINEA,East Sepik,Moem Village near Wewak,Fishing (rod & line),Ilu,M,,Leg & hand bitten by shark that had been speared by another fisherman PROVOKED INCIDENT,N,14h00,0.9 m [3'] shark,"The Times (London), ",1965.09.12-Ilu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.09.12-Ilu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.09.12-Ilu.pdf,1965.09.12,1965.09.12,2608,, +1965.09.08,08-Sep-65,1965,Unprovoked,MEXICO,Veracruz,Playa Villa del Mar,,Miguel Salas Gonzalez,M,23,Leg & arm bitten,N,18h00,300-kg [662-lb] shark,F. Piskur; press clipping dated 9/9/1965,1965.09.08-Gonzalez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.09.08-Gonzalez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.09.08-Gonzalez.pdf,1965.09.08,1965.09.08,2607,, +1965.08.30,30-Aug-65,1965,Invalid,PHILIPPINES,,"Grounded off Scarborough Shoals, 150 miles northwest of Manila in the South China Sea","Arsinoe, a French tanker",French seaman,M,,"One man was lost, but he may have drowned",Y,,Shark involvement not confirmed,"Manila Daily Bulletin, 9/3/1965; SAF Case #1388",1965.08.30-Arsinoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.08.30-Arsinoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.08.30-Arsinoe.pdf,1965.08.30,1965.08.30,2606,, +1965.08.26,26-Aug-65,1965,Unprovoked,USA,New Jersey,"Steel Pier, Atlantic City, Atlantic County",Swimming,"James Bloodworth, Jr.",M,15,Right thigh lacerated,N,17h30,,J. Bloodworth; Philadelphia Inquirer 8/27/1965,1965.08.26-Bloodworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.08.26-Bloodworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.08.26-Bloodworth.pdf,1965.08.26,1965.08.26,2605,, +1965.07.30,30-Jul-64,1965,Provoked,BAHAMAS,Bimini Islands,Lerner Marine Lab,Attempting to anesthetize shark,Karl Kuchnow,M,,Chest bitten PROVOKED INCIDENT,N,,"Lemon shark, 0.5 m","H.D. Baldridge, p. 93",1965.07.30-Kuchnow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.30-Kuchnow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.30-Kuchnow.pdf,1965.07.30,1965.07.30,2604,, +1965.07.26,26-Jul-65,1965,Unprovoked,MEXICO,Veracruz,Mocambo,Bathing,Hector Serfio Trillio Jimenez,M,25,"FATAL, both legs severed ",Y,17h00,,"Latin American Times (New York), 8/3/1965 ",1965.07.26-Jimenez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.26-Jimenez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.26-Jimenez.pdf,1965.07.26,1965.07.26,2603,, +1965.07.02.R,Reported 02-Jul-1965,1965,Boat,BERMUDA,Hamilton,,,"12' boat Sio Ag, occupant: John Riding",,,"No injury to occupant, shark bit boat",N,,,"Daily Express, 7/2/1965; SAF Case #1375",1965.07.02.R-Riding.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.02.R-Riding.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.02.R-Riding.pdf,1965.07.02.R,1965.07.02.R,2602,, +1965.06.19,19-Jun-65,1965,Invalid,USA,Florida,"In front of Key Biscayne Beach Club, Key Biscayne",Wading,Eugene Rihl III,M,6,Parallel lacerations on right calf. Thought to be a barracuda bite ,N,,,"Miami Herald, 6/20/1965; SAF Case #1372",1965.06.19-Rihl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.19-Rihl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.19-Rihl.pdf,1965.06.19,1965.06.19,2601,, +1965.06.18,18-Jun-65,1965,Invalid,USA,Florida,150 miles southeast of Cape Kennedy,"Diving, retrieving film package from Titan 3C rocket","Sgt James Lacasse & Sgt David Milsten, USAF divers",M,,"No injury, chased by 4.6 m [15'] oceanic whitetip sharks",N,,,"Evening Standard (London) 6/9/1965; Sunday Express (London), 6/20/1965 ",1965.06.18-TitanRocket.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.18-TitanRocket.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.18-TitanRocket.pdf,1965.06.18,1965.06.18,2600,, +1965.06.09,09-Jun-65,1965,Unprovoked,MEXICO,Veracruz,Mocambo,Swimming,"Father Miguel de Jesus Chavez, a Catholic priest",M,38,"Right forearm severed, right leg bitten and surgically amputated",N,14h00,,J. Carranza (This is apparently a different case than 1965.05.00.a),1965.06.09-Chavez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.09-Chavez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.09-Chavez.pdf,1965.06.09,1965.06.09,2599,, +1965.06.00.b,Jun-65,1965,Unprovoked,PAPUA NEW GUINEA,Near Bougainville (North Solomons),Huhunoti Island,Spearfishing,"Mr. Belle Yang, a school teacher",M,,Minor injury,N,,,Age (Melbourne) 6/7/1965 ,1965.06.00-NV-Naruchima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.00-NV-Naruchima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.00-NV-Naruchima.pdf,1965.06.00.b,1965.06.00.b,2598,, +1965.06.00,Jun-65,1965,Unprovoked,SOUTH PACIFIC OCEAN,,,Treading water,Kikio Naruchima,M,,"FATAL, body not recovered",Y,Morning, ,H.D.Baldridge (1994) SAF Case #1510,1965.06.00-Yang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.00-Yang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.00-Yang.pdf,1965.06.00,1965.06.00,2597,, +1965.05.29,29-May-65,1965,Unprovoked,MEXICO,Veracruz,Playa Mocambo,Swimming,Ignacio Mill�n,M,,"FATAL, left leg & right arm severed ",Y,12h00,,The News (Mexico City) 6/1/1965 ,1965.05.29-Millan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.29-Millan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.29-Millan.pdf,1965.05.29,1965.05.29,2596,, +1965.05.28,28-May-65,1965,Unprovoked,MEXICO,Veracruz,Playa Mocambo,Swimming,Fidel Garcia Montero,M,,"FATAL, left arm & right leg severed ",Y,,,The News (Mexico City) 6/1/1965,1965.05.28-Montero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.28-Montero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.28-Montero.pdf,1965.05.28,1965.05.28,2595,, +1965.05.00.c,May-Jun-1965,1965,Unprovoked,EGYPT,,,Standing,male,M,,Leg bitten,N,,,Falconer-Barker,1965.05.00.c-Falconer-Barker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.00.c-Falconer-Barker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.00.c-Falconer-Barker.pdf,1965.05.00.c,1965.05.00.c,2594,, +1965.05.00.b,May-65,1965,Unprovoked,JAMAICA,,,Diving,Ken Bernard,M,,Minor injury,N,,,H.D.Baldridge (1994) SAF Case #1498,1965.05.00.b-NV-Bernard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.00.b-NV-Bernard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.00.b-NV-Bernard.pdf,1965.05.00.b,1965.05.00.b,2593,, +1965.05.00.a,May-65,1965,Unprovoked,MEXICO,Veracruz,Mocambo,Swimming,"Father Jose de Jesus Gomez, a priest",M,35,"Right arm severed, right leg bitten, not known if he survived",N,,,The News (Mexico City) 6/12/1965,1965.05.00.a-Gomez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.00.a-Gomez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.00.a-Gomez.pdf,1965.05.00.a,1965.05.00.a,2592,, +1965.04.29,29-Apr-65,1965,Unprovoked,USA,Florida,"Hobe Sound, Martin County",,Morris M. Vorenberg,M,49,"Thighs abraded, puncture wounds in dorsal surface of left hand",N,15h00,Bull shark,M. Vorenberg,1965.04.29-Vorenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.29-Vorenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.29-Vorenberg.pdf,1965.04.29,1965.04.29,2591,, +1965.04.25,25-Apr-65,1965,Invalid,USA,California,"Pacifica, San Mateo County",Surfing,Michael Sammut,M,19,Drowned & his body was not recovered. Sharks seen in area later that day but no shark involvement in surfer's death,Y,16h00,,"H.D. Baldridge, SAF Case #1370; R. Collier, p.xxxvi.",1965.04.25-Sammut.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.25-Sammut.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.25-Sammut.pdf,1965.04.25,1965.04.25,2590,, +1965.04.10,10-Apr-65,1965,Unprovoked,USA,Florida,American Shoals off Key West,Spearfishing,Dr. J. D. Morgan,M,28,Left hand severely lacerated,N,11h00,"White shark, 10' to 12' ","J. D. Morgan, M.D. ",1965.04.10-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.10-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.10-Morgan.pdf,1965.04.10,1965.04.10,2589,, +1965.04.04.b,04-Apr-65,1965,Unprovoked,PALAU,Western Caroline Islands,Koror,Walking on reef,Barry Nakamura,M,8,Right leg bitten,N,15h30,"Tiger shark, tooth fragment recovered",P.T. Wilson,1965.04.04.b-Nakamura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.04.b-Nakamura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.04.b-Nakamura.pdf,1965.04.04.b,1965.04.04.b,2588,, +1965.04.04.a,04-Apr-65,1965,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Paddling on surfboard,William F. Lachmund,M,17,Left hand punctured & lacerated,N,07h15,Blacktip or spinner shark,"M. Vorenberg; R. Greer, M.D.",1965.04.04.a-Lachmund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.04.a-Lachmund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.04.a-Lachmund.pdf,1965.04.04.a,1965.04.04.a,2587,, +1965.03.23,23-Mar-65,1965,Invalid,USA,Puerto Rico,60 miles offshore north of San Juan,Aircraft exploded,15 Royal Canadian Airforce crew & 1 passenger,M,,"All 16 onboard perished, recovery efforts hampered by sharks",N,11h30,,Dr. S.D. Caller; SAF Case #1360,1965.03.23-CanadianAircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.03.23-CanadianAircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.03.23-CanadianAircraft.pdf,1965.03.23,1965.03.23,2586,, +1965.03.14,14-Mar-65,1965,Unprovoked,USA,Florida,"Pompano Beach, Palm Beach County",Free diving,Rick MacNeilly,M,16,Survived,N,13h30,Mako shark,R. MacNeilly,1965.03.14-MacNeilly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.03.14-MacNeilly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.03.14-MacNeilly.pdf,1965.03.14,1965.03.14,2585,, +1965.02.14,14-Feb-65,1965,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Amatikulu,Treading water,Geoffrey Walter Black,M,25,"Abdomen, buttock, thigh, arm & hand bitten",N,15h00 or 15h45,"1.8 m [6'], 136-kg [300-lb] shark ","G.W. Black, M. Levine, GSAF; T. McHugh, A. Heydorn. J. D'Aubrey & P.H. Jacques; T. Wallett, pp.51-52",1965.02.14-Black.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.02.14-Black.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.02.14-Black.pdf,1965.02.14,1965.02.14,2584,, +1965.02.04,04-Feb-65,1965,Unprovoked,USA,Massachusetts,"Granite Pier, Rockport",Scuba diving,Ronald R. Powell,M,18,Punctures on left thigh,N,14h30,1.2 m [4'] shark,"R. Powell; Boston Traveler 2/11/1965; H.D. Baldridge, p.184",1965.02.04-Powell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.02.04-Powell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.02.04-Powell.pdf,1965.02.04,1965.02.04,2583,, +1965.01.25,25-Jan-65,1965,Invalid,USA,California,"Newport Beach, Orange County",Motor boat Rebel Belle lost,Jack A. Zittel,M,21,"Puncture marks on chest may have been post mortem, 4 other bodies in area were undamaged",Y,,,H.L. Johnson; SAF Case #1353,1965.01.25-RebelBelle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.25-RebelBelle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.25-RebelBelle.pdf,1965.01.25,1965.01.25,2582,, +1965.01.23,23-Jan-65,1965,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Country Club Beach, Durban",Paddling rescue ski,Ronald Bowers,M,22,"No injury, ski bitten",N,13h00,"White shark, 3.7 m [12'] ","D. Davies, J. D'Aubrey & H. Haicker, ORI; M. Levine, GSAF",1965.01.23-Bowers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.23-Bowers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.23-Bowers.pdf,1965.01.23,1965.01.23,2581,, +1965.01.16,16-Jan-65,1965,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Country Club Beach, Durban",Body surfing,A.W.F. Patterson,M,20,Right thigh punctured,N,16h40,,"D. Davies & J. D'Aubrey, GSAF",1965.01.16-AWFPatterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.16-AWFPatterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.16-AWFPatterson.pdf,1965.01.16,1965.01.16,2580,, +1965.01.10,10-Jan-65,1965,Unprovoked,AUSTRALIA,Victoria,"East of Station Pier, Port Melbourne",Swimming,Arthur Wootton,M,,Thigh gashed,N,,1.5 m [5'] shark,The Australian 1/11/1965,1965.01.10-Wootton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.10-Wootton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.10-Wootton.pdf,1965.01.10,1965.01.10,2579,, +1965.01.09,09-Jan-65,1965,Unprovoked,NEW GUINEA,Central Province,Off Gaire Village,Free diving,"Lohia Raho, a male",M,30,FATAL,Y,,4.9 m [16'] whaler,"South Pacific Post (Port Moresby), 1/11/1965",1965.01.09-Raho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.09-Raho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.09-Raho.pdf,1965.01.09,1965.01.09,2578,, +1965.00.00.g,Summer 1965,1965,Unprovoked,USA,Texas,"Port Lavaca, Calhoun County",Dangling feet in the water,Thomas Darilek,M,13,Foot bitten,N,,,"Victoria Advocate, 7/11/2011",1965.00.00.g-Darilek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.g-Darilek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.g-Darilek.pdf,1965.00.00.g,1965.00.00.g,2577,, +1965.00.00.f,1965,1965,Provoked,USA,California,"Dana Point, San Clemente, Orange County",Surfing,Barry Berg,M,Teen,Puncture wounds to foot when he stepped on a shark PROVOKED INCIDENT,N,,,"Orange County Register, 1/28/2998",1965.00.00.f-Berg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.f-Berg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.f-Berg.pdf,1965.00.00.f,1965.00.00.f,2576,, +1965.00.00.e,Early 1965,1965,Provoked,USA,Florida,"Between Palm & Salerno Inlets, Martin County",Collecting marine specimens,Frank ---,M,,"No injury, shark tore his wetsuit after he grabbed it by the tail PROVOKED INCIDENT",N,,"Nurse shark, 0.94 m to 1.2 m [3' to 4'] ",M. Vorenberg,1965.00.00.e-Frank-RivieraBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.e-Frank-RivieraBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.e-Frank-RivieraBeach.pdf,1965.00.00.e,1965.00.00.e,2575,, +1965.00.00.d,May-Jun-1965,1965,Unprovoked,RED SEA,East of the Gulf of Aqaba,,Standing in waist-deep water,male,M,,Leg bitten three times,N,,Small shark with white-tipped dorsal fin,Captain T. Falcon-Barker,1965.00.00.d-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.d-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.d-male.pdf,1965.00.00.d,1965.00.00.d,2574,, +1965.00.00.c,May-Jun-1965,1965,Unprovoked,EGYPT,,South of Hurghada,"Spearfishing, but standing in the water",male,M,25 to 35,Ankle and thigh bitten; shark made three strikes,N,,"1.5 m to 2.1 m [5' to 7'] shark, possibly a mako shark",Captain T. Falcon-Barker,1965.00.00.c-spearfishing-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.c-spearfishing-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.c-spearfishing-male.pdf,1965.00.00.c,1965.00.00.c,2573,, +1965.00.00.b,1965,1965,Unprovoked,VANUATU,Malampa Province,Island of Paam'a,,3 males,M,,FATAL. Said to have been killed by sorcerers that turned themselves into sharks. The alleged sorcerers were taken into custody by authorities but released due to lack of evidence. ,Y,,,"M. Levine, GSAF",1965.00.00.b-Pamaa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.b-Pamaa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.b-Pamaa.pdf,1965.00.00.b,1965.00.00.b,2572,, +1965.00.00.a,Ca. 1965,1965,Invalid,SOUTH AFRICA,Eastern Cape Province,Pollock Beach,Bather,,,,No details,UNKNOWN,,,"M. Levine, GSAF, Possible confusion in press with Huskisson incident",1965.00.00.a-NV-PollockBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.a-NV-PollockBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.a-NV-PollockBeach.pdf,1965.00.00.a,1965.00.00.a,2571,, +1964.12.25,25-Dec-64,1964,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port Alfred,Swimming,W. A. Strijdom,M,19,"Hand, ankle & calf lacerated",N,17h00,Raggedtooth shark ,"Dr. Macrae; J. D'Aubrey, M. Levine, GSAF",1964.12.25-Strijdom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.25-Strijdom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.25-Strijdom.pdf,1964.12.25,1964.12.25,2570,, +1964.12.10.b,10-Dec-64,1964,Unprovoked,PAPUA NEW GUINEA,Bougainville (North Solomons),Buka Island,,male,M,,Thigh severely lacerated,N,,,H.D.Baldridge (1994) SAF Case #1558,1964.12.10.b-NV-Buja.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.10.b-NV-Buja.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.10.b-NV-Buja.pdf,1964.12.10.b,1964.12.10.b,2569,, +1964.12.10.a,10-Dec-64,1964,Boat,AUSTRALIA,New South Wales,Port Jervis,Fishing,"19' boat, occupants: Ray Peckham, L.C. Wells",,,"No injury to occupants, shark rammed boat, bit planks & sheared off copper rivet at stern of boat",N,10h30,4.6 m [15'] shark,"Adelaide Advertiser, 12/11/1965",1964.12.10.a-NV-Boat-Peckham-Wells.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.10.a-NV-Boat-Peckham-Wells.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.10.a-NV-Boat-Peckham-Wells.pdf,1964.12.10.a,1964.12.10.a,2568,, +1964.12.09,09-Dec-64,1964,Unprovoked,PAPUA NEW GUINEA,Bougainville (North Solomons),"Off Sing Village, Buka Island","Canoe swamped, swimming back to canoe","Soso, a male",M,28,Survived,N,Late afternoon,2.1 m [7'] shark,"South Pacific Post (Port Moresby), 12/16/1964",1964.12.09-Soso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.09-Soso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.09-Soso.pdf,1964.12.09,1964.12.09,2567,, +1964.12.06,06-Dec-64,1964,Unprovoked,KENYA,Coast Province,"Kilindini Harbor, Mombasa",Fishing with hand line tied to wrist & was pulled into the water,Musa Mohammed,M,10,FATAL,Y,,,"Star, 12/7/1964",1964.12.06-Mohammed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.06-Mohammed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.06-Mohammed.pdf,1964.12.06,1964.12.06,2566,, +1964.11.29,29-Nov-64,1964,Unprovoked,AUSTRALIA,Victoria ,Lady Julia Percy Island,Free diving with seals,Henri Bource,M,25,Left leg severed,N,14h30,"White shark, 2.4 m [8'] ","A. Sharpe, pp.115-116; H. Edwards, pp.67-71; J. Green, p.35; A. MacCormick, pp.88-91; J. West, ASAF",1964.11.29-Bource.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.29-Bource.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.29-Bource.pdf,1964.11.29,1964.11.29,2565,, +1964.11.18,18-Nov-64,1964,Unprovoked,AUSTRALIA,Queensland,"Fingal Beach, near Tweed Heads",Swimming out to rescue swimmers in difficulty,Glenthorne Prior,M,29,FATAL,Y,13h30,,"Daily Mirror (Sydney), 11/19/1964",1964.11.18-Prior.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.18-Prior.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.18-Prior.pdf,1964.11.18,1964.11.18,2564,, +1964.11.13,13-Nov-64,1964,Provoked,AUSTRALIA,New South Wales,"North Solitary Island, 8 miles from Wolli","Filming underwater, carrying powerhead",Jon Harding,M,25,"Shark made threat display, then diver hit it with powerhead PROVOKED INCIDENT",N,,"White shark, 2.7 m [9'1""], 750-lb ","H.D. Baldridge, p.57",1964.11.13-Harding.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.13-Harding.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.13-Harding.pdf,1964.11.13,1964.11.13,2563,, +1964.11.05,05-Nov-64,1964,Boat,USA,Puerto Rico,,Longline fishing,"18 hp Boston Whaler boat, occupant: G. W. Bane, Jr.",,,"No injury to occupant, shark bit propeller of outboard motor",N,18h00,Mako shark,"G. W. Bane, Jr.",1964.11.05-NV-BostonWhaler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.05-NV-BostonWhaler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.05-NV-BostonWhaler.pdf,1964.11.05,1964.11.05,2562,, +1964.10.31,31-Oct-64,1964,Provoked,SOUTH AFRICA,KwaZulu-Natal,Umkomaas,Surf fishing,Robin Clausen,M,,Right leg bitten while attempting to gaff hooked shark PROVOKED INCIDENT,N,,,"M. Levine, GSAF",1964.10.31-Clausen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.10.31-Clausen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.10.31-Clausen.pdf,1964.10.31,1964.10.31,2561,, +1964.10.25,25-Oct-64,1964,Invalid,USA,Florida,"Near US Air Force Base at Elgin, Okaloosa County",Boat Miss Becky sank 12 miles from shore,"James C. Beason & Calvin E. Smith, Jr. spent 16 hours in life raft",,,"No injury to occupants, drove sharks away with paddles",N,Night,,"Miami News, 10/26/1964; SAF Case #1338",1964.10.25-MissBecky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.10.25-MissBecky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.10.25-MissBecky.pdf,1964.10.25,1964.10.25,2560,, +1964.10.04,04-Oct-64,1964,Unprovoked,AUSTRALIA,Western Australia,"Avalon Beach, near Mandurah, 50 miles south of Perth","Surfing, but swimming to his board",Murray Henderson,M,19,Abrasions & 11 teethmarks on right lower leg,N,09h30,"Grey nurse shark, 1.8 m [6']",The Australian 10/5/1964,1964.10.04-Henderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.10.04-Henderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.10.04-Henderson.pdf,1964.10.04,1964.10.04,2559,, +1964.09.27,27-Sep-64,1964,Invalid,,,,Spearfishing,Giancarlo Griffon,M,24,"Disappeared, probable drowning but sharks in area led to speculation that he was taken by a shark",,11h00,,C. Moore. GSAF,1964.09.27-Griffon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.09.27-Griffon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.09.27-Griffon.pdf,1964.09.27,1964.09.27,2558,, +1964.09.20,20-Sep-64,1964,Unprovoked,TAIWAN,Northern Taiwan,"Tamsui Beach, Taipai",Swimming,Ko Tien-fu,M,32,FATAL,Y,14h00,,"China Post (Taipai, Taiwan) 9/22/1964",1964.09.20-Tien-fu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.09.20-Tien-fu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.09.20-Tien-fu.pdf,1964.09.20,1964.09.20,2557,, +1964.09.07,07-Sep-64,1964,Unprovoked,TAIWAN,Northern Taiwan,Tamsui Beach,Swimming,LO Chiu-yang,M,20,Right thigh & elbow bitten,N,13h30,1.8 m [6'] shark,"China Post (Taipei, Taiwan) 9/22/1964; J. Wong",1964.09.07-Yang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.09.07-Yang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.09.07-Yang.pdf,1964.09.07,1964.09.07,2556,, +1964.08.26,26-Aug-64,1964,Unprovoked,USA,Florida,"Hollywood Beach, Broward County",Swimming,Marc Tayman,M,14,Bruised & abraded ankle,N,14h30,,M. Tayman,1964.08.26-Tayman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.26-Tayman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.26-Tayman.pdf,1964.08.26,1964.08.26,2555,, +1964.08.23,23-Aug-64,1964,Unprovoked,MEXICO,Guerrero,Acapulco,Floating on his back in an inner tube,Thad T. Moore,M,19,Right thigh bitten,N,14h00,1.8 to 2.4 m [6' to 8'] shark,T.T. Moore,1964.08.23-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.23-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.23-Moore.pdf,1964.08.23,1964.08.23,2554,, +1964.08.22,22-Aug-64,1964,Invalid,USA,Florida,5 miles south of Palm Beach,Spearfishing / free diving,Kenny Ruszenas,M,18,3 m to 3.7 m [10' to 12'] great hammerhead shark shark only made a threat display. No injury,N,11h30,,M. Vorenberg,1964.08.22-Ruszenas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.22-Ruszenas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.22-Ruszenas.pdf,1964.08.22,1964.08.22,2553,, +1964.08.21,21-Aug-64,1964,Unprovoked,USA,Florida,"Panama City, Bay County",Swimming,Ron Kopenski,M,,"No injury, bumped repeatedly",N,11h30,3' shark,W.H. Tobert,1964.08.21-Kopenski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.21-Kopenski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.21-Kopenski.pdf,1964.08.21,1964.08.21,2552,, +1964.08.08,08-Aug-64,1964,Unprovoked,USA,Florida,"2 miles off Jupiter, Palm Beach County",Spearfishing using scuba,James R. Webb,M,28,"No injury, shark hit scuba tank",N,12h00,Hammerhead shark,"H.D. Baldridge, p.183",1964.08.08-Webb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.08-Webb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.08-Webb.pdf,1964.08.08,1964.08.08,2551,, +1964.08.03,03-Aug-64,1964,Unprovoked,JAPAN,Okayama Prefecture,Saidaiji,Swimming,Yoshio Ukita,M,12,"Leg bitten, surgically amputated",N,,,K. Nakaya,1964.08.03-Ukita.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.03-Ukita.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.03-Ukita.pdf,1964.08.03,1964.08.03,2550,, +1964.08.00,Aug-64,1964,Unprovoked,PANAMA,San Blas,Off Achutuppu Island near Ailigandi,Free diving / Spearfishingat edge of reef,male,M,21,Foot lacerated,N,,Less than 1.2 m [4'],H. Loftin,1964.08.00-Achtupu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.00-Achtupu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.00-Achtupu.pdf,1964.08.00,1964.08.00,2549,, +1964.07.27,27-Jul-64,1964,Provoked,USA,Puerto Rico,,,Manuel Alvelo,M,22,Arm lacerated by speared shark PROVOKED INCIDENT,N,11h00,Nurse shark,H.D.Baldridge (1994) SAF Case #1547,1964.07.27-NV-Alvelo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.27-NV-Alvelo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.27-NV-Alvelo.pdf,1964.07.27,1964.07.27,2548,, +1964.07.16,16-Jul-64,1964,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Island Rock,Searching for remains of Dr. Marais,Len Jones,M,30,"No injury, shark charged & impaled itself on spear",N,,Zambesi shark,"L. Jones, M. Levine,GSAF",1964.07.16-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.16-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.16-Jones.pdf,1964.07.16,1964.07.16,2547,, +1964.07.15,15-Jul-64,1964,Invalid,USA,Connecticut,"3 days out of Old Saybrook, Connecticut, 37.04'N, 67.57'W, Southern fringe of Gulf Stream","Yacht Gooney Bird foundered, 4 survivors on raft",,,,"No injury, no attack; sharks ate their food tied to a line over the side of the raft",N,,,SAF Case #1313,1964.07.15-GooneyBird.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.15-GooneyBird.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.15-GooneyBird.pdf,1964.07.15,1964.07.15,2546,, +1964.07.08.b,08-Jul-64,1964,Invalid,SOUTH AFRICA,KwaZulu-Natal,Island Rock,Spearfishing ,Dr. J. J. Marais,M,52,"Remains recovered, probable drowning and scavenging",Y,,,"M. Levine, L. Jones, GSAF",1964.07.08.b-Marais.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.08.b-Marais.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.08.b-Marais.pdf,1964.07.08.b,1964.07.08.b,2545,, +1964.07.08.a,08-Jul-64,1964,Provoked,USA,Florida,"Palm Beach, Palm Beach County",Tagging sharks,18' boat of Morris Vorenberg,M,,"No injury to occupant, hooked shark rammed & bit boat PROVOKED INCIDENT",N,,white shark,M. Vorenberg,1964.07.08.a-Vorenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.08.a-Vorenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.08.a-Vorenberg.pdf,1964.07.08.a,1964.07.08.a,2544,, +1964.07.00.b,Jul-64,1964,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,A reef off New Hanover (Northern end),Standing / fishing,"Kambagil, male",M,,"FATAL, leg severed ",Y,,,"Times Courier (Lae, PNG) 7/29/1964 ",1964.07.00.b-Kambagil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.00.b-Kambagil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.00.b-Kambagil.pdf,1964.07.00.b,1964.07.00.b,2543,, +1964.07.00.a,Jul-64,1964,Boat,PAPUA NEW GUINEA,New Ireland Province,Southern end,canoeing,occupant: child,,,"No injury to occupant, canoe struck several times by shark ",N,,,"Times Courier (Lae, PNG) 7/29/1964",1964.07.00.a-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.00.a-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.00.a-child.pdf,1964.07.00.a,1964.07.00.a,2542,, +1964.06.29.a,29-Jun-64,1964,Sea Disaster,BERMUDA,Hamilton,2 miles south of Castle Island Harbour entrance to Hamilton,Conducting a promotional film project for the Gemini space program (a practice astronaut recovery),2 USAF 4-engine planes (an HC-54 & a HC-97) each with 12 onboard collided in mid-air at low altitude and plunged into the Atlantic Ocean,,,"7 rescued, 7 bodies recovered, 10 missing. Many sharks in crash area.",Y,,,"Washington Post, 6/30/1964; SAF Case #1295",1964.06.29-Air-Collision.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.29-Air-Collision.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.29-Air-Collision.pdf,1964.06.29.a,1964.06.29.a,2541,, +1964.06.28,28-Jun-64,1964,Invalid,USA,New York,Long Island,Attempting to swim across the Atlantic Ocean,Britt Sullivan,F,29,"Disappeared, probable drowning but sharks in area led to speculation that she was taken by a shark",Y,Night,,"Oakland Tribune, 6/29/1964",1964.06.28-Sullivan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.28-Sullivan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.28-Sullivan.pdf,1964.06.28,1964.06.28,2540,, +1964.06.24,24-Jun-64,1964,Boat,USA,California,"Long Beach, Los Angeles County",Fishing,"boat, occupant: Harvey Birch",,,"No injury to occupants, shark crashed through windshield of boat",N,,2.1 m [7'] shark,"Valley News (Gardena), 6/28/1964 ",1964.06.24-BirchBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.24-BirchBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.24-BirchBoat.pdf,1964.06.24,1964.06.24,2539,, +1964.06.17,17-Jun-64,1964,Boat,PAPUA NEW GUINEA,New Britain,Near Rabaul,Fishing,"canoe, occupant: Herman Taman",M,,"No injury to occupant, shark lifted canoe's outrigger",N,,2.4 m [8'] shark,SAF Case #1300,1964.06.17-TamanCanoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.17-TamanCanoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.17-TamanCanoe.pdf,1964.06.17,1964.06.17,2538,, +1964.06.23,23-Jun-64,1964,Unprovoked,FIJI,Lau Group,"Tovu, Totoya Island",Spearfishing,Isireli Mara,M,23,Buttocks bitten,N,,,"Fiji Times, 6/26/1963 ",1964.06.23-IsireliMara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.23-IsireliMara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.23-IsireliMara.pdf,1964.06.23,1964.06.23,2537,, +1964.06.02,02-Jun-64,1964,Invalid,SOUTH AFRICA,KwaZulu-Natal,Port Edward,Swimming,Dawood Pili,M,40,"Skeletonized, except for head & feet. Possibly a drowning / scavenging",Y,>17h00,,D. Davies,1964.06.02-Pili.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.02-Pili.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.02-Pili.pdf,1964.06.02,1964.06.02,2536,, +1964.05.30,30-May-64,1964,Unprovoked,PANAMA,Caribbean Coast,,Standing,W.W. Fitzsimmons,M,47,No injury,N,,Lemon shark ,"H.D. Baldridge, SAF Case #1496",1964.05.30-NV-Fitzsimmons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.05.30-NV-Fitzsimmons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.05.30-NV-Fitzsimmons.pdf,1964.05.30,1964.05.30,2535,, +1964.05.08,08-May-64,1964,Unprovoked,FIJI,Vita Levu,Naviti,Spearfishing,Sailasa Ratubalavu,M,35,"FATAL, buttocks, lower abdomen & genitalia removed ",Y,11h30,Tiger shark,"H.D. Baldridge, p.196; Clark, p.87",1964.05.08-Ratubalavu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.05.08-Ratubalavu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.05.08-Ratubalavu.pdf,1964.05.08,1964.05.08,2534,, +1964.05.00,May-64,1964,Unprovoked,PANAMA,San Blas Islands,"Achutupu, a small island ner Ailigandi",Skin diving,male,M,13,"FATAL, torso / abdomen severely bitten ",Y,,1.8 m [6'] shark,H. Loftin,1964.05.00-Achtupu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.05.00-Achtupu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.05.00-Achtupu.pdf,1964.05.00,1964.05.00,2533,, +1964.04.07,07-Apr-64,1964,Unprovoked,PAPUA NEW GUINEA,Madang Province,Inshore side of reef near Madang,Fishing,Simon Kilaleg,M,,FATAL,Y,,,"Daily News (Perth), 4/8/1964",1964.04.07-Kialeg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.04.07-Kialeg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.04.07-Kialeg.pdf,1964.04.07,1964.04.07,2532,, +1964.03.28.b,28-Mar-64,1964,Unprovoked,AUSTRALIA,South Australia,Surfers Paradise Beach near Victor Harbour,Surfing,Allan Spry,M,19,Left thigh lacerated,N,,1.8 m [6'] shark,"Advertiser (Adelaide) and Telegraph (Sydney), 3/30/1964 ",1964.03.28.b-Spry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.28.b-Spry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.28.b-Spry.pdf,1964.03.28.b,1964.03.28.b,2531,, +1964.03.28.a,28-Mar-64,1964,Sea Disaster,PAPUA NEW GUINEA,Central Province,30 miles from Port Moresby,"Canoe capsized with 10 occupants, 8 survived, Hamilton swam off to seek help",Donald Hamilton,M,32,Presumed FATAL,Y,Midnight,,"Daily Mirror (Sydney), 3/311964; SAF Case 1333",1964.03.28.a-Hamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.28.a-Hamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.28.a-Hamilton.pdf,1964.03.28.a,1964.03.28.a,2530,, +1964.03.05,05-Mar-64,1964,Unprovoked,USA,Florida,"Fort Lauderdale, Broward County",Skin diving ,James R. Duryea,M,38,"Minor injury, abdomen abraded when he collided with the shark",N,16h00,1.7 m [5.5'] shark,"Sun Sentinel, 3/6/1964 ",1964.03.05-Duryea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.05-Duryea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.05-Duryea.pdf,1964.03.05,1964.03.05,2529,, +1964.03.00,Mar-64,1964,Unprovoked,SENEGAL,Cap Vert Peninsula,"Bel Air, Dakar",Free diving for shell,O.D.,M,,Thigh & hand bitten,N,,3 m shark,,1964.03.00-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.00-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.00-Senegal.pdf,1964.03.00,1964.03.00,2528,, +1964.02.17.R,Reported 17-Feb-1964,1964,Provoked,FIJI,,Savuli Reef,Fishing,"boat, occupant: R. Southey of Lautoka",,,Hooked shark bit boat PROVOKED INCIDENT,N,,"Tiger shark, 3.5 m, 250-lb female","Fiji Times, 2/17/1964",1964.02.17.R-Fiji-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.17.R-Fiji-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.17.R-Fiji-boat.pdf,1964.02.17.R,1964.02.17.R,2527,, +1964.02.14.b,14-Feb-64,1964,Unprovoked,NEW CALEDONIA,,,Diving for trochus shell,Bernard Taye,M,15,"FATAL, foot & part of other leg severed ",Y,,,"Sydney Daily Telegraph, 2/15/1964 ",1964.02.14.b-Taye.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.14.b-Taye.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.14.b-Taye.pdf,1964.02.14.b,1964.02.14.b,2526,, +1964.02.14.a,14-Feb-64,1964,Unprovoked,FIJI,Vanua Levu,"Nailou Village, Tunuloa Natewa Bay",Spearfishing,Ivo Berabi,M,17,"FATAL, thigh and abdomen bitten ",Y,10h30,,Fiji Times; L. Schultz,1964.02.14.a-Berabi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.14.a-Berabi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.14.a-Berabi.pdf,1964.02.14.a,1964.02.14.a,2525,, +1964.02.11,11-Feb-64,1964,Unprovoked,NEW ZEALAND,North Island,"Palliser Bay, Whatarangi (east of Wellington)",preparing to go skin diving,male,M,,Hand lacerated,N,12h00,,"R.D.Weeks, GSAF; Otago Daily Times, 2/13/1964, p.5",1964.02.11-male-Palliser Bay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.11-male-Palliser Bay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.11-male-Palliser Bay.pdf,1964.02.11,1964.02.11,2524,, +1964.02.10,10-Feb-64,1964,Unprovoked,NEW ZEALAND,North Island,"West of Pukerua Bay, Wellington",Spearfishing,Dr. Ken R. Markham,M,26,"No injury to diver, shark bit speargun",N,18h30,"White shark, 3 m [10'] ","R.D. Weeks, GSAF; Otago Daily Times, 2/11/1964, p1; Wellington Evening Post, 2/17/1960",1964.02.10-Markham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.10-Markham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.10-Markham.pdf,1964.02.10,1964.02.10,2523,, +1964.02.08,08-Feb-54,1964,Unprovoked,SOUTH AFRICA,Western Cape Province,Muizenberg,Body boarding,Alan Saffery,M,25,Right ankle lacerated,N,08h45,"White shark, 1.5 m [5'] k","D. Davies; M. Levine, GSAF",1964.02.08-Saffery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.08-Saffery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.08-Saffery.pdf,1964.02.08,1964.02.08,2522,, +1964.02.05.b,05-Feb-64,1964,Unprovoked,NEW ZEALAND,North Island,"Hokio Beach, near Levin",Lying in 2 feet of water,male,M,,Right leg & shoulder lacerated,N,,"""sand shark""","R.D. Weeks, GSAF",1964.02.05.b-Hokio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.05.b-Hokio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.05.b-Hokio.pdf,1964.02.05.b,1964.02.05.b,2521,, +1964.02.05.a,05-Feb-64,1964,Unprovoked,NEW ZEALAND,South Island,"St. Clair Beach, Dunedin",Swimming,Leslie Francis Jordan,M,19,"FATAL, both legs bitten & right leg severed at knee ",Y,06h45,"White shark, 3 m to 3.7 m [10' to 12'] ","R.D. Weeks, GSAF; Otago Daily Times, 2/6/1964 & 2/7/1964",1964.02.05.a-Jordan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.05.a-Jordan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.05.a-Jordan.pdf,1964.02.05.a,1964.02.05.a,2520,, +1964.02.02,02-Feb-64,1964,Invalid,AUSTRALIA,Queensland,Brisbane,Swimming,Neil Buckley,M,23,Body not recovered / May have drowned prior to shark involvement,Y,09h30,,H.D.Baldridge (1994) SAF Case #1336,1964.02.02-NV-Buckley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.02-NV-Buckley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.02-NV-Buckley.pdf,1964.02.02,1964.02.02,2519,, +1964.02.01,01-Feb-64,1964,Boat,NEW ZEALAND,South Island,"Ngatuka Bay, near Picton",Rowing,"dinghy, occupants: T. Shipston, T. Whitta, L Cox, T. Jones, R. Genet & W. Pearce",,,"No injury to occupants , shark nudged oars",N,12h00,1.8 m [6'] shark,"New Zealand Herald, 2/2/1964; SAF Case #1335",1964.02.01-Dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.01-Dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.01-Dinghy.pdf,1964.02.01,1964.02.01,2518,, +1964.02.00.b,Feb-64,1964,Unprovoked,USA,Florida,Palm Beach County,Floating,Noel Feustel,M,12,No injury,N,,Hammerhead shark,"H.D.Baldridge, SAF Case #1487",1964.02.00.b-NV-Feustel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.00.b-NV-Feustel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.00.b-NV-Feustel.pdf,1964.02.00.b,1964.02.00.b,2517,, +1964.02.00.a,Feb-64,1964,Unprovoked,COSTA RICA,Puntarenas Province,Puntarenas,Swimming,male,M,,"FATAL, right arm & left thigh bitten ",Y,,,"E. Vargas, M.D.",1964.02.00.a-CostaRica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.00.a-CostaRica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.00.a-CostaRica.pdf,1964.02.00.a,1964.02.00.a,2516,, +1964.01.27,27-Jan-64,1964,Unprovoked,FIJI,,70 miles from Suva,Spearfishing,Dr. George Lapin,,,FATAL,Y,,,"Long Beach Independent, 1/281964 ",1964.01.27-Lapin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.27-Lapin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.27-Lapin.pdf,1964.01.27,1964.01.27,2515,, +1964.01.23,23-Jan-64,1964,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Body surfing,John Carlson,M,39,Heel & ankle bitten,N,16h00,,"D. Davies, Daily Dispatch (East London), 1/24/1964 M. Levine, GSAF",1964.01.23-Carlson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.23-Carlson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.23-Carlson.pdf,1964.01.23,1964.01.23,2514,, +1964.01.22,22-Jan-64,1964,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Standing,Gerald Holder,M,17,Heel bitten,N,11h00,,"D. Davies; Daily Dispatch (East London), 1/23/1964, M. Levine, GSAF",1964.01.22-Holder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.22-Holder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.22-Holder.pdf,1964.01.22,1964.01.22,2513,, +1964.01.21,21-Jan-64,1964,Boat,SOUTH AFRICA,Western Cape Province,20 m from shore at Strand,Shark watching,"Motor boat, occupants: Quintus Du Toit, J.H. van Heerden & J.P. Marais",,,"No injury to occupants, shark holed boat",N,11h00,"White shark, 3.6 m [11'9""] ",GSAF,1964.01.21-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.21-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.21-boat.pdf,1964.01.21,1964.01.21,2512,, +1964.01.18,18-Jan-64,1964,Unprovoked,AUSTRALIA,Western Australia,Hamelin Bay,Freediving,Frank Hastie,M,,Arm lacerated,N,,Wobbegong,"G.P. Whitley, citing Sydney Morning Herald, 1/21/1964",1964.01.18-Hastie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.18-Hastie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.18-Hastie.pdf,1964.01.18,1964.01.18,2511,, +1964.01.11,11-Jan-64,1964,Unprovoked,USA,California,Southeast Farallon Island,Spearfishing / Scuba diving (at surface),Jack Rochette,M,21,Leg & thigh bitten,N,12h00,White shark (tooth fragment recovered),"R. Collier, p.261-264; D. Miller & R. Collier; R. Collier, pp.26-40",1964.01.11-Rochette_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.11-Rochette_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.11-Rochette_Collier.pdf,1964.01.11,1964.01.11,2510,, +1964.01.06.R,Reported 06-Jan-1964,1964,Unprovoked,PAPUA NEW GUINEA,New Britain,,Fishing,male,M,,FATAL,Y,,Tiger shark,"Oldham Evening Chronicle, 1/6/1964",1964.01.06.R-NewBritain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.06.R-NewBritain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.06.R-NewBritain.pdf,1964.01.06.R,1964.01.06.R,2509,, +1964.01.04,04-Jan-64,1964,Unprovoked,FIJI,"Lomaloma, Lau",Tuvuca Isalnd,Swimming,Tale Meve (female),F,20,Deep lacerations to her right thigh,N,15h00,,SAF Case #1250,1964.01.04-Meve.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.04-Meve.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.04-Meve.pdf,1964.01.04,1964.01.04,2508,, +1964.01.01.b,01-Jan-64,1964,Unprovoked,AUSTRALIA,Western Australia,Metro coast,,Edwards,,,,UNKNOWN,,,"T. Peake, GSAF",1964.01.01.b-NV-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.01.b-NV-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.01.b-NV-Edwards.pdf,1964.01.01.b,1964.01.01.b,2507,, +1964.01.01.a,01-Jan-64,1964,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Diving for sinkers,Jakobus Christiaan Steyn,M,,Lacerations and puncture wounds in right arm ,N,19h00 / 20h00,2.1 m to 2.4 m [7' to 8'] shark,"The Argus, 1/3/1964",1964.01.01.b-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.01.b-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.01.b-Edwards.pdf,1964.01.01.a,1964.01.01.a,2506,, +1964.01.00,Jan-64,1964,Invalid,NEW ZEALAND,North Island,White Island,Snorkeling,J.H. Seddon,M,,No injury,N,07h30,White shark,"H.D.Baldridge (1994) SAF Case #1484, Note: Unable to verify in local records.",1964.01.00-NV-Sneddon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.00-NV-Sneddon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.00-NV-Sneddon.pdf,1964.01.00,1964.01.00,2505,, +1963.12.29,29-Dec-63,1963,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Catfish Rock, between Salt Rock & Shaka�s Rock",Standing,Barbara Elsa Strauss,F,20,"Right hand & foot severed, thigh & buttock lacerated",N,14h00,"Zambesi shark, 1.8 m [6'] ","B. Strauss, D. Davies, 121-122; Daily Dispatch, 4/24/1964; M. Levine, GSAF",1963.12.29-Strauss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.29-Strauss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.29-Strauss.pdf,1963.12.29,1963.12.29,2504,, +1963.12.26.b,26-Dec-63,1963,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umhlanga Rocks,Swimming ,Ronnie De Wet,M,24,"Lower leg bitten & foot severed, leg surgically amputated below knee",N,15h00,1.8 m [6'] shark,"D. Davies, pp.120-121; M. Levine, GSAF",1963.12.26.b-deWet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.26.b-deWet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.26.b-deWet.pdf,1963.12.26.b,1963.12.26.b,2503,, +1963.12.26.a,26-Dec-63,1963,Unprovoked,AUSTRALIA,Queensland,"Figtree Ledge, Hervey Bay",Sitting on gunwale of boat,Mr. N. Warry,M,,"No injury, shark's tail struck his armpit",N,Dawn,"4.3 m [14'], 1000-lb shark","Maryborough Chronicle (Qld), 12/28/1963",1963.12.26.a-Warry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.26.a-Warry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.26.a-Warry.pdf,1963.12.26.a,1963.12.26.a,2502,, +1963.12.25,25-Dec-63,1963,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Gonubie River Mouth,Swimming,Chester Wienand,M,18,"FATAL, shoulders, arms, abdomen & foot bitten ",Y,15h45,,"G.V. Wienand, M. Levine, GSAF",1963.12.25-Wienand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.25-Wienand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.25-Wienand.pdf,1963.12.25,1963.12.25,2501,, +1963.12.22.b,22-Dec-63,1963,Invalid,ATLANTIC OCEAN,Between Southampton & Canary Islands,,"Greek steamship Lakonia caught fire, 98 of her 646 passengers, and 30 of her crew of 376 perished",woman,F,,"One woman reported to have suffered fish bites, but cause of her death was exposure & drowning""",N,,Shark involvement unconfirmed,Bath Coronor report NLSC 20/64; SAF Case #1324,1963.12.22.b-Lakonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.22.b-Lakonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.22.b-Lakonia.pdf,1963.12.22.b,1963.12.22.b,2500,, +1963.12.22.a,22-Dec-63,1963,Provoked,SOUTH AFRICA,KwaZulu-Natal,"Next to West Street groyne, Durban",Helping friend land hooked shark,Desmond Woodhams,M,13,Foot lacerated PROVOKED INCIDENT,N,18h30,"Dusky shark, 1 m ","M. Levine, GSAF",1963.12.22.a-Woodhams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.22.a-Woodhams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.22.a-Woodhams.pdf,1963.12.22.a,1963.12.22.a,2499,, +1963.12.21,21-Dec-63,1963,Provoked,AUSTRALIA,New South Wales,"Woolgoolga, Coffs Harbour",Fishing,Leslie Cook,M,,7 puncture wounds in right forearm from hooked shark PROVOKED INCIDENT,N,,"Wobbegong shark, 3' ","Daily Examiner (Grafton, NSW), 12/23/1963; J. Green, p.30",1963.12.21-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.21-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.21-Cook.pdf,1963.12.21,1963.12.21,2498,, +1963.12.20.b,20-Dec-63,1963,Unprovoked,SOUTH AFRICA,Western Cape Province,Hartenbos,Spearfishing,Cornelius G. Coetzee,M,,Foot lacerated,N,12h00,"White shark, 1.7 m [5.5']","D. Davies; M. Levine, GSAF",1963.12.20.b-Coetzee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.20.b-Coetzee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.20.b-Coetzee.pdf,1963.12.20.b,1963.12.20.b,2497,, +1963.12.20.a,20-Dec-63,1963,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umvoti,Splashing in surf,Matangusa Mzize,M,15,"FATAL, arm severed, leg bitten",Y,12h40,300- to 400-lb Zambesi shark,"G.D. Campbell; D. Davies, pp.119-120",1963.12.20.a-Mzize.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.20.a-Mzize.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.20.a-Mzize.pdf,1963.12.20.a,1963.12.20.a,2496,, +1963.12.08,08-Dec-63,1963,Unprovoked,AUSTRALIA,South Australia,55 miles south of Adelaide,Spearfishing,Rodney Fox,M,23,Torso & hand lacerated,N,12h45,White shark,"H. Edwards, pp.65-66: H.D. Baldridge, pp.18-19; J. West;",1963.12.08-Fox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.08-Fox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.08-Fox.pdf,1963.12.08,1963.12.08,2495,, +1963.12.04.R,04-Dec-63,1963,Unprovoked,NEW BRITAIN,"South Coast, East New Britain",Pomio,Spearfishing,Patape,M,22,"FATAL, leg severely bitten",Y,,Tiger shark,"Times Courier (Lae, PNG), 12/4/1963; Oldham Evening Chronicle 1/6/1964",1963.12.04.R-Patape.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.04.R-Patape.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.04.R-Patape.pdf,1963.12.04.R,1963.12.04.R,2494,, +1963.11.30.b,30-Nov-63,1963,Unprovoked,NEW ZEALAND,South Island,"Charteris Bay, Lyttleton Harbour",Treading water while alongside capsized yacht,Charlie Dudley,M,20,Hand & lower leg severely injured,N,13h00,Possibly a broadnose 7-gill shark,"C. Dudley, R.D. Weeks, GSAF; H.D. Baldridge, SAF Case #1467; Otago Daily Times, 12/2/1963, p.7",1963.11.30.b-Dudley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.30.b-Dudley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.30.b-Dudley.pdf,1963.11.30.b,1963.11.30.b,2493,, +1963.11.30.a,30-Nov-63,1963,Provoked,PAPUA NEW GUINEA,Gulf Province,"Kukipi, 150 miles west of Port Moresby in the Lakekamu River area",Fishing / standing in waist deep water,"Siara Ikui, female",F,18,Left arm lacerated PROVOKED INCIDENT,N,14h00,Tiger shark,"M. Malin; The Sun (Melbourne), 12/2/1963",1963.11.30.a-Siara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.30.a-Siara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.30.a-Siara.pdf,1963.11.30.a,1963.11.30.a,2492,, +1963.11.28,28-Nov-63,1963,Unprovoked,FIJI, Lau Province,"Dravuwalu, Totoya Island",Fishing,"Mereseini Wati, female",F,21,Elbow bitten,N,11h00,>1.2 m [4'] tiger shark,Capt. S. B. Brown,1963.11.28-Wati.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.28-Wati.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.28-Wati.pdf,1963.11.28,1963.11.28,2491,, +1963.11.25,25-Nov-63,1963,Unprovoked,FIJI,Vita Levu,Rewa River,Spearing fish,Sumia Qio,M,25,Ankle & foot bitten,N,14h00,,GSAF,1963.11.25-Sumia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.25-Sumia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.25-Sumia.pdf,1963.11.25,1963.11.25,2490,, +1963.11.16.R,Reported 16-Nov-1963,1963,Unprovoked,ITALY,Sicily,Off Mondello Lighthouse,Spearfishing,Dr. Salito,M,28,No injury,N,,,"C. Moore, GSAF",1963.11.16.R-Salito.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.16.R-Salito.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.16.R-Salito.pdf,1963.11.16.R,1963.11.16.R,2489,, +1963.11.14,14-Nov-63,1963,Provoked,AUSTRALIA,Queensland,Mermaid Beach,Catching sharks under government contract,"boat Nora, occupant Bruce Harris",M,,"No injury to occupant, netted shark rammed & bit boat PROVOKED INCIDENT",N,,"White shark, 15'2"" ","Miner (WA) & Warwick Daily News (Qld), 11/15/1963 ",1963.11.14-Nora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.14-Nora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.14-Nora.pdf,1963.11.14,1963.11.14,2488,, +1963.11.12,12-Nov-63,1963,Provoked,USA,Florida,"8 miles south of Elliot Key, Miami-Dade County",Testing anti-shark cage,"D. R. Nelson, J. Greenberg & S.H. Gruber",M,,No injury PROVOKED INCIDENT,N,11h40,"Silky shark, 1.9 m [6.5']",D.R. Nelson,1963.11.12-DonNelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.12-DonNelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.12-DonNelson.pdf,1963.11.12,1963.11.12,2487,, +1963.11.05.R,Reported 05-Nov-1963,1963,Unprovoked,PAPUA NEW GUINEA,New Britain,,Wading,Tule,M,,Thigh lacerated ,N,,6' shark,H.D. Baldridge (1994) SAF Case #1478,1963.11.05.R-Tule.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.05.R-Tule.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.05.R-Tule.pdf,1963.11.05.R,1963.11.05.R,2486,, +1963.11.04,04-Nov-63,1963,Unprovoked,PALAU,Western Caroline Islands,Koror,Fishing,Saburo Dooley,M,35,Left calf lacerated,N,03h00,Dooley believed his Injury was caused by stingray (Dasyatidae family),"R. Yalap, M.D.; H.D. Baldridge, p..104 ",1963.11.04-Dooley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.04-Dooley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.04-Dooley.pdf,1963.11.04,1963.11.04,2485,, +1963.10.16,16-Oct-63,1963,Unprovoked,USA,Florida,"Biltmore Beach, near Panama City","Surf fishing, wading ",William Cheatham,M,28,"Right thigh & foot bruised, right calf lacerated",N,17h30,500-lb shark,"H.D. Baldridge, p.109",1963.10.16-Cheatham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.10.16-Cheatham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.10.16-Cheatham.pdf,1963.10.16,1963.10.16,2484,, +1963.10.15,15-Oct-63,1963,Provoked,NORTH PACIFIC OCEAN,,,Fishing for sharks,"Eichi Nakata, of the the crew of the trawler Kayo Maru",M,20,"Right hand lacerated, PROVOKED INCIDENT",N,,,"J.L. Holland; The Honolulu Advertiser, 10/19/1963; SAF Cse #1209",1963.10.15-Nakata.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.10.15-Nakata.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.10.15-Nakata.pdf,1963.10.15,1963.10.15,2483,, +1963.09.29,29-Sep-63,1963,Unprovoked,CHILE,,"El Panul, 12km south of Coquimbo",Spearfishing / free diving,Crisolog Urizar,M,,FATAL,Y,11h00,"White shark, 4 m [13'] rk",J. McCosker & A.C. Engana,1963.09.29-Urizar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.29-Urizar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.29-Urizar.pdf,1963.09.29,1963.09.29,2482,, +1963.09.26,26-Sep-63,1963,Invalid,USA,Florida,100 miles offshore,"Commercial fishing vessel, Ev-nn, struck object & sank. Ken Crosby and Jame & Ann Dumas adrift on makeshift raft.","After 2 days, Ann Dumas, 7,5 months pregnant, died of exposure & exhaution& her body was lashed to raft.",,25,Sharks tried to overturn raft and took Mrs. Dumas' body; scavenging by shark/s,Y,,numerous dusky sharks & a 3 m to 4.6 m [10' to 15'] to tiger shark,"Washington Post, 9/27/1963; SAF Case #1221",1963.09.26-Dumas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.26-Dumas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.26-Dumas.pdf,1963.09.26,1963.09.26,2481,, +1963.09.22,22-Sep-63,1963,Unprovoked,SOLOMON ISLANDS,Ysabel Island,Susukana Plantation,Spearing fish,Dovi,M,30,"FATAL, right thigh, calf & foot bitten ",Y,13h00,5.5 m [18'] shark,"M.L. Aylett, Fisheries Officer; H.D. Baldridge, p.148 ",1963.09.22-Dovi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.22-Dovi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.22-Dovi.pdf,1963.09.22,1963.09.22,2480,, +1963.09.13,13-Sep-63,1963,Provoked,AUSTRALIA,New South Wales,Wanda Beach,Surfing,Peter Barron,M,18,"A ""dead"" shark grabbed by the tail bit his right torso PROVOKED INCIDENT",N,09h30,1.5 m [5'] shark,"P. Barron; Goulburn Evening Post; J. Green, p.35",1963.09.13-Barron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.13-Barron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.13-Barron.pdf,1963.09.13,1963.09.13,2479,, +1963.09.10,10-Sep-63,1963,Provoked,USA,Florida,"Snapper Point Jetty, Miami, Dade County","Spearfishing, pulled shark�s tail",Robert Olsen,M,16,Minor injury to left forearm PROVOKED INCIDENT,N,13h30,"Nurse shark, 1.2 m [4'] ","H.D. Baldridge, p.166; SAF Case #1284",1963.09.10-Olsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.10-Olsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.10-Olsen.pdf,1963.09.10,1963.09.10,2478,, +1963.08.00,Aug-63,1963,Unprovoked,DOMINICAN REPUBLIC,Santo Domingo,Rio Haina Port,"Swimming, when caught in heavy seas",2 males,M,23 & 26,"FATAL. Eyewitness said, ""One was thrown in the air like a basketball, and while in the air another shark took a bite out of his belly."" ",Y,,8 sharks,"A. Gigante, Jr; H.D. Baldridge; M. McDiarmid, p.72",1963.08.00-2males.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.08.00-2males.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.08.00-2males.pdf,1963.08.00,1963.08.00,2477,, +1963.07.28,28-Jul-63,1963,Unprovoked,FEDERATED STATES OF MICRONESIA,Eastern Caroline Islands,"Koop Reef, Truk (Chuuk)",Spearfishing,Akira,M,26,Upper left arm bitten,N,08h00,Tiger shark,"K. Aniol, Medical Officer",1963.07.28-Akira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.28-Akira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.28-Akira.pdf,1963.07.28,1963.07.28,2476,, +1963.07.15,15-Jul-63,1963,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Bathing,Robert Driscoll,M,14,"Left forearm bitten, surgically amputated?",N,Late afternoon,,"Orlando Sentinel, 7/16/1963",1963.07.15-Driscoll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.15-Driscoll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.15-Driscoll.pdf,1963.07.15,1963.07.15,2475,, +1963.07.11,11-Jul-63,1963,Provoked,USA,Mississippi,Horn Island,"Fishing, on charter boat Silver Dollar","James Ronald Mason, deckhand",M,24,"Cuts on right hand, PROVOKED INCIDENT",N,,1.2 m [4'] shark,"Gulfport Herald, 7/12/1963; SAF Case #1218",1963.07.11-Mason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.11-Mason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.11-Mason.pdf,1963.07.11,1963.07.11,2474,, +1963.07.10.R,Reported 10-Jul-1963,1963,Sea Disaster,JAMAICA,,,63' fishing boat Sno' Bay foundered,40 people were onboard,,,No survivors & a body sighted could not be recovered because of sharks,Y,,,"The Blade (Toledo, OH), 7/10/1963",1963.07.10.R-Sno'Boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.10.R-Sno'Boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.10.R-Sno'Boy.pdf,1963.07.10.R,1963.07.10.R,2473,, +1963.07.00,Jul-63,1963,Unprovoked,PANAMA,San Blas coast,"4 miles from Tuwala, near Mulatuppu","Seining for bait, standing in chest-deep water",an Indian male,M,,"FATAL, foot nearly severed ",Y,,,H. Loftin,1963.07.00-Tuwala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.00-Tuwala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.00-Tuwala.pdf,1963.07.00,1963.07.00,2472,, +1963.06.01.b,01-Jun-63,1963,Unprovoked,GREECE,Thessaly,near Trikerion Island,Swimming,Helga Pogl,F,42,FATAL,Y,16h30,"White shark, 3 m ",A. De Maddalena,1963.06.01.b-Pogl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.06.01.b-Pogl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.06.01.b-Pogl.pdf,1963.06.01.b,1963.06.01.b,2471,, +1963.06.01.a,01-Jun-63,1963,Provoked,PAPUA NEW GUINEA,Central Province,Near Fisherman's Island,Fishing,Au Kila (male),M,30,"Hooked shark bit his nose, arm and leg PROVOKED INCIDENT",N,Morning,1.8 m [6'] shark,"Pacific Post (Port Moresby), 6/4/1963",1963.06.01.a-Au_Kila.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.06.01.a-Au_Kila.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.06.01.a-Au_Kila.pdf,1963.06.01.a,1963.06.01.a,2470,, +1963.05.18,18-May-63,1963,Invalid,USA,California,San Mateo County,Swimming,Gregory Moffatt,M,,3 lacerations below right knee,N,,Shark involvement not confirmed,"San Mateo Times, 5/22/1963",1963.05.18-Moffatt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.05.18-Moffatt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.05.18-Moffatt.pdf,1963.05.18,1963.05.18,2469,, +1963.05.14,14-May-63,1963,Sea Disaster,PHILIPPINES,Luzon Island,100 miles southeast of Manila,"Boat, with 42 passengers onboard, capsized in rough seas",Most were women & children,,,"Of the 42 people on board, 5 died of exposure, others drowned or were taken by sharks, and survivors were rescued after spending 3 days in the water.",Y,,,"Advertiser (Adelaide), 5/21/1963 ",1963.05.14-PhilippineBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.05.14-PhilippineBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.05.14-PhilippineBoat.pdf,1963.05.14,1963.05.14,2468,, +1963.04.22,22-Apr-63,1963,Provoked,AUSTRALIA,New South Wales,Clarence Head,Fishing,Jack Sonter,M,,Foot lacerated by netted shark PROVOKED INCIDENT,N,,Grey nurse shark,H.D. Baldridge (1994) SAF Case #1472,1963.04.22-NV-Sonter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.22-NV-Sonter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.22-NV-Sonter.pdf,1963.04.22,1963.04.22,2467,, +1963.04.20,20-Apr-63,1963,Unprovoked,USA,US Virgin Islands,"St. Thomas, Magens Bay",Swimming,Naval Lt. (jg) John Gibson,M,25,"FATAL, hand severed, shoulder, hip, foot, thigh bitten & femoral artery severed ",Y,13h50,"Hand found in gut of 2.9 m to 3.3 m [9'7"" to 10'11""] Galapagos shark, C. galapagensis","G.W. Kirby, Jr.; NY Times, 1/22/1963",1963.04.20-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.20-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.20-Gibson.pdf,1963.04.20,1963.04.20,2466,, +1963.04.17,17-Apr-63,1963,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Amanzimtoti,Swimming,Errol Fourie,M,15,Buttock bitten,N,12h45,,"D. Davies, p.118-119; M. Levine, GSAF",1963.04.17-Fourie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.17-Fourie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.17-Fourie.pdf,1963.04.17,1963.04.17,2465,, +1963.04.13,13-Apr-63,1963,Unprovoked,AUSTRALIA,Western Australia,Yallingup,"Surfing on ""chest board"" (boogie board?)",Brian Audas,M,25,Arm bitten,N,,1.8 m to 2.4 m [6' to 8'] shark,"G.P. Whitley; NSW newspapers of 4/14&15/1963; H.D. Baldridge, p. 142",1963.04.13-Audas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.13-Audas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.13-Audas.pdf,1963.04.13,1963.04.13,2464,, +1963.04.12,12-Apr-63,1963,Unprovoked,USA,Hawaii,"Awili, South Kona, Hawai'i",Surfing ,Aiona Aka,M,15,Left foot & leg bitten,N,14h00,3.7 to 4.5 m [12' to 15'] shark seen in vicinity,"L. Taylor (1993), pp.102-103",1963.04.12-Aka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.12-Aka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.12-Aka.pdf,1963.04.12,1963.04.12,2463,, +1963.04.08,08-Apr-63,1963,Invalid,USA,Hawaii,"Hapuna Beach, Hawai'i",Washed into sea while picking opihi,Roy C. Kametani,M,,"May have drowned prior to shark involvement, partial remains recovered",Y,,,"J. Borg, p.73; L. Taylor (1993), pp.102-103",1963.04.08-Kametani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.08-Kametani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.08-Kametani.pdf,1963.04.08,1963.04.08,2462,, +1963.03.30,30-Mar-63,1963,Sea Disaster,SOLOMON ISLANDS,Bougainville (North Solomons),,The 500-ton coastal trader Polurrian foundered ,"Daniel Viva, missionary",M,,FATAL,Y,Night,,"Sydney Morning Herald, 4/6/1963",1963.03.30-Viva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.03.30-Viva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.03.30-Viva.pdf,1963.03.30,1963.03.30,2461,, +1963.02.27,27-Feb-63,1963,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,Namatanai,Swimming,Joseph To Toba,M,,Right shoulder bitten,N,11h00,,"Times-Courier (Lae), 3/6/1963",1963.02.27-Totoba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.27-Totoba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.27-Totoba.pdf,1963.02.27,1963.02.27,2460,, +1963.02.24,24-Feb-63,1963,Unprovoked,AUSTRALIA,New South Wales,Wombarra Beach near Austinmeer,Spearfishing,Charles Dunn,M,18,Left leg lacerated,N,Afternoon,"Bronze whaler shark, 3 m [10'] ","R. Funnell in Australian Skindiver Magazine, June/July 1963, p.8; J. Green, p.35",1963.02.24-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.24-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.24-Dunn.pdf,1963.02.24,1963.02.24,2459,, +1963.02.08,08-Feb-63,1963,Unprovoked,FIJI,Lomaiviti Island Group,"Taibaisa Passage, Gau Island",Spearfishing,Jone Waiteatei,M,28,Left arm bitten,N,10h00,"White shark, 2.1 m [7'] ","S. Brown, P. Helfrich",1963.02.08-Waiteatei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.08-Waiteatei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.08-Waiteatei.pdf,1963.02.08,1963.02.08,2458,, +1963.02.06,06-Feb-63,1963,Unprovoked,MAURITIUS,Rodrigues,,,Iren� Rose,M,24,Laceration to right forearm,N,,,"L'Express, 5/2/2007",1963.02.06-Rose.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.06-Rose.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.06-Rose.pdf,1963.02.06,1963.02.06,2457,, +1963.02.04,04-Feb-63,1963,Invalid,USA,Florida,Off Key West,"S.S. Marine Sulphur Queen, laden with molten sulphur was bound from Beaumont, Texas for Norfolk, VA, when she disappeared with 39 on board",2 males,M,,Shark involvement unconfirmed. Two shark-bitten lifejackets were recovered leading to speculation that sharks took at least 2 of the 39 missing crewmen,Y,,,"NY Journal of Commerce, 3/29/1963;Wikipedia ",1963.02.04-MarineSulphurQueen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.04-MarineSulphurQueen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.04-MarineSulphurQueen.pdf,1963.02.04,1963.02.04,2456,, +1963.01.30,30-Jan-63,1963,Unprovoked,FIJI,,,Freediving,Savenaca Kuruvakarua,M,41,Hand & arm severely lacerated,N,,,"H.D. Baldridge, SAF Case #1477",1963.01.30-NV-Kuruvakaruai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.30-NV-Kuruvakaruai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.30-NV-Kuruvakaruai.pdf,1963.01.30,1963.01.30,2455,, +1963.01.28,28-Jan-63,1963,Unprovoked,AUSTRALIA,New South Wales,"Sugarloaf Bay, Middle Harbour, Sydney",Wading,Marcia Hathaway,F,32,"FATAL, right femoral artery severed, thigh, calf, buttock & left hand bitten ",Y,13h30,"Tooth fragments of �whaler� shark were recovered, a bull shark, according to Edwards","Dr. P.R. Coyne; A. Sharpe, pp.7-12; A. MacCormick, pp.15-18; H. Edwards, pp.102 & 108",1963.01.28-Hathaway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.28-Hathaway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.28-Hathaway.pdf,1963.01.28,1963.01.28,2454,, +1963.01.26,26-Jan-63,1963,Invalid,AUSTRALIA,New South Wales,Evans Head,Swimming,Shaun Wilmot,M,25,"9' shark in area when he disappeared, body not recovered",Y,16h30,,"Sydney Morning Herald, 1/29/1963 ",1963.01.26-Wilmot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.26-Wilmot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.26-Wilmot.pdf,1963.01.26,1963.01.26,2453,, +1963.01.22,22-Jan-63,1963,Boat,SOUTH AFRICA,Western Cape Province,False Bay,Fishing ,boat,,,"No injury to occupant, shark leapt inside boat",N,,193-lb shark,"Scarborough Evening News (Yorks, England), 1/22/1963 ",1963.01.22.R-FalseBayBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.22.R-FalseBayBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.22.R-FalseBayBoat.pdf,1963.01.22,1963.01.22,2452,, +1963.01.14,14-Jan-63,1963,Provoked,NEW ZEALAND,North Island,"Petone Beach, Wellington",Fishing,Ian Alexander,,14,Minor lacerations to hand and arm after he seized the shark's tail PROVOKED INCIDENT,N,Afternoon,"Grey nurse shark, 1.8 m [6'] ","R.D. Weeks, GSAF; Otago Daily Times, 1/15/1963, p.1",1963.01.14-Alexander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.14-Alexander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.14-Alexander.pdf,1963.01.14,1963.01.14,2451,, +1963.01.12,12-Jan-63,1963,Provoked,SOUTH AFRICA,Eastern Cape Province,Humewood,Fishing,,M,,Foot bitten by shark hooked & taken on boat PROVOKED INCIDENT,N,,<1.5 m shark,GSAF,1963.01.12-Mankowitz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.12-Mankowitz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.12-Mankowitz.pdf,1963.01.12,1963.01.12,2450,, +1963.01.11,11-Jan-63,1963,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Peace Cottage, Umdhloti","Free diving, hunting crayfish",Barry E. Blackmore,M,27,Lacerations & punctures on left forearm,N,12h15,1 m shark,"D. Davies, D'Aubrey; B. Blackmore; M. Levine, GSAF",1963.01.11-Blackmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.11-Blackmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.11-Blackmore.pdf,1963.01.11,1963.01.11,2449,, +1963.01.06,06-Jan-63,1963,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Selection Reef, Umdhloti",Spearfishing,Clive Passmore,M,24,Lacerations to right arm,N,16h00,"Zambesi shark, 2 m [6'9""] ","D. Davies, p.117-118; C. Passmore, M. Levine, GSAF",1963.01.06-Passmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.06-Passmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.06-Passmore.pdf,1963.01.06,1963.01.06,2448,, +1963.01.04,04-Jan-63,1963,Provoked,AUSTRALIA,South Australia,Off Franklin Island between Streaky Bay & Ceduna,Shark fishing,"boat, occupants: Alf Dean, Jack Hood & Otto Bells",,,No injury to occupants; hooked shark slammed into side of boat PROVOKED INCIDENT,N,,"White shark, 16', 2,312-lb ",SAF Case #1184,1963.01.04-AlfDean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.04-AlfDean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.04-AlfDean.pdf,1963.01.04,1963.01.04,2447,, +1963.01.00,Jan-63,1963,Boat,MOZAMBIQUE,,"Limpopo River, 547 km from the sea",,"Canoe, occupant: Jopie Averes",,,"No injury to occupant. Shark tore chunk from canoe, then bumped 2 other canoes",N,,Zambesi shark,"D. Davies, p.185; GSAF",1963.01.00-JopieAveres.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.00-JopieAveres.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.00-JopieAveres.pdf,1963.01.00,1963.01.00,2446,, +1963.00.00.b,Early 1963,1963,Unprovoked,FIJI,Vita Levu,Korolevu (South coast between Nadi & Suva),,,,,No details,UNKNOWN,,,"S. Brown, P. Helfrich",1963.00.00.b-NV-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.00.00.b-NV-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.00.00.b-NV-Fiji.pdf,1963.00.00.b,1963.00.00.b,2445,, +1963.00.00.a,1963,1963,Unprovoked,SEYCHELLES,,,Fishing for turtles,male,M,,Fatal,Y,,,V.C. Harvey-Grain,1963.00.00.a-Seychelles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.00.00.a-Seychelles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1963.00.00.a-Seychelles.pdf,1963.00.00.a,1963.00.00.a,2444,, +1962.12.30,30-Dec-62,1962,Provoked,SOUTH AFRICA,KwaZulu-Natal,Shark tank at Oceanographic Research Institute,Scuba diving,"A. B. ""Lofty"" Roets",M,,Captive shark bit air hose & minor lacerations on diver's cheek PROVOKED INCIDENT,N,10h30,"Dusky shark, 1 m ",D. Davies,1962.12.30-Roets.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.12.30-Roets.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.12.30-Roets.pdf,1962.12.30,1962.12.30,2443,, +1962.12.09,09-Dec-62,1962,Unprovoked,AUSTRALIA,South Australia,Carrickalinga Head,Spearfishing,Geoffrey Martin Corner,M,16,"FATAL, right leg bitten thigh to calf ",Y,14h30,"White shark, 4.3 m [14'] (or bronze whaler)","H. Edwards, p.63; H.D. Baldridge, p.197; A. MacCormick, pp.91-93; A. Sharpe, p.124; J. West",1962.12.09-Corner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.12.09-Corner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.12.09-Corner.pdf,1962.12.09,1962.12.09,2442,, +1962.12.00,Dec-62,1962,Boat,SOUTH AFRICA,Western Cape Province,Swartklip,Fishing,"boat Swift, occupants: Dolly Samuels & 8 other men",,,"No injury to occupants, shark jumped onboard, knocking 2 anglers onto the deck",N,,"2 m [6'9""], 87.5-kg [193-lb] shark",T. Wallet; GSAF,1962.12.00-Swift.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.12.00-Swift.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.12.00-Swift.pdf,1962.12.00,1962.12.00,2441,, +1962.11.29,29-Nov-62,1962,Unprovoked,AUSTRALIA,New South Wales,Sydney,"Spearfishing, Scuba diving",B. May,M,26,"No injury, shark bit spear & dragged diver 90'",N,,3 m [10'] shark,"H.D. Baldridge, p.183; SAF #1130",1962.11.29-May.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.29-May.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.29-May.pdf,1962.11.29,1962.11.29,2440,, +1962.11.25,25-Nov-62,1962,Invalid,AUSTRALIA,Queensland,Townsville,,Hugh Meikel,M,,"Skeletonized, except for head & feet. Possible drowning / scavenging",Y,,,"H.D. Baldridge, p.162; SAF Case #1124",1962.11.25-Meikel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.25-Meikel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.25-Meikel.pdf,1962.11.25,1962.11.25,2439,, +1962.11.11,11-Nov-62,1962,Unprovoked,USA,California,Farallon Islands,Spearfishing / Scuba diving (at surface),Leroy French,M,24,"Arm, hand, buttock, leg and thigh bitten",N,12h45 / 13h45,"White shark, 4.3 m to 4.9m [14' to 16']","D. Miller & R. Collier; R. Collier, pp.35-36; H.D. Baldridge, pp.73 & 78 ",1962.11.11-LeroyFrench_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.11-LeroyFrench_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.11-LeroyFrench_Collier.pdf,1962.11.11,1962.11.11,2438,, +1962.11.10,10-Nov-62,1962,Boat,AUSTRALIA,New South Wales,Off Kisma,Fishing,"wooden boat, occupants: Jack Bullman & Keith Campbell",,,No injury to occupants. Shark rammed boat as they were pulling in a flathead,N,,3 m [10'] blue whaler,"Sydney Sunday Mirror, 11/11/1962 ",1962.11.10-Bullman-Campbell-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.10-Bullman-Campbell-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.10-Bullman-Campbell-boat.pdf,1962.11.10,1962.11.10,2437,, +1962.11.00,Nov-62,1962,Sea Disaster,MID ATLANTIC OCEAN,,Off Bermuda,Abandoning burning ship Captain George in raging seas,"Martin Fisher, radio operator",M,,"No injury, shark bit his boot",N,06h00,,Press clippings,1962.11.00-Fisher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.00-Fisher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.00-Fisher.pdf,1962.11.00,1962.11.00,2436,, +1962.10.28,28-Oct-62,1962,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Paradise Reef,Spearfishing,Noel Holliday,M,30,Arm lacerated (minor injury),N,15h00,,"D. Davies; M. Levine, GSAF",1962.10.28-Holliday.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.28-Holliday.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.28-Holliday.pdf,1962.10.28,1962.10.28,2435,, +1962.10.25,25-Oct-62,1962,Unprovoked,MEXICO,Veracruz,"Villa del Mar Beach, Veracruz",Wading,"Nicolas Jimenez Nunez, a Catholic priest",M,32,"FATAL, both legs bitten ",Y,08h30,2.7 m [9'] shark,C.G. Robles,1962.10.25-Nunez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.25-Nunez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.25-Nunez.pdf,1962.10.25,1962.10.25,2434,, +1962.10.15,15-Oct-62,1962,Unprovoked,ADMIRALTY ISLANDS,Manus Island,Sisi (west coast of island),,Pasingan,M,26,Facial lacerations,N,,,SAF Case #1116,1962.10.15-Pasigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.15-Pasigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.15-Pasigan.pdf,1962.10.15,1962.10.15,2433,, +1962.10.14,14-Oct-62,1962,Boat,AUSTRALIA,South Australia,Port Phillip Bay,Adrift after wave swamped engine,"speedboat, occupant: Michael Wilson",M,,"No injury to occupant, shark ""nibbled"" at boat",N,,Grey nurse shark,"Strand (London), 10/15/1962",1962.10.14-Wilson-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.14-Wilson-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.14-Wilson-boat.pdf,1962.10.14,1962.10.14,2432,, +1962.10.06,06-Oct-62,1962,Invalid,USA,California,2 miles off Santa Catalina Island,"Overcome by CO fumes, fell overboard from 36' fishing cruiser & prop slashed arm",Marian Leaf,F,43,Drowned due to CO2 poisoning - Post Mortem Scavaging,N,,Blue shark bites present ,"Long Beach Independent, 10/9/1962; H.D. Baldridge, p147; SAF Case #1080",1962.10.06-Leaf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.06-Leaf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.06-Leaf.pdf,1962.10.06,1962.10.06,2431,, +1962.10.00,Oct-62,1962,Unprovoked,PANAMA,Pinas Bay,,Sitting in shallows,"infant, male ",M,1,"FATAL, body not recovered",Y,,,J. Hardie; D. de Sylva,1962.10.00-babyboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.00-babyboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.00-babyboy.pdf,1962.10.00,1962.10.00,2430,, +1962.09.30,30-Sep-62,1962,Unprovoked,BRITISH WEST INDIES,Grand Turk Island,Long Cay,Spearfishing,Wesley Vickrey,M,24,Left thigh & hand & speargun bitten,N,14h30," Blacktip shark, C. maculipinnis. 1.9 m to 2.1 m [6.5' to 7'] ","H.D. Baldridge, p.197",1962.09.30-Vickrey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.30-Vickrey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.30-Vickrey.pdf,1962.09.30,1962.09.30,2429,, +1962.09.22,22-Sep-62,1962,Unprovoked,MEXICO,Veracruz,"Villa del Mar Beach, Veracruz",Swimming,Nestor Valenzuela,M,20,"Left arm severely bitten, surgically amputated",N,15h00,,C.G. Robles,1962.09.22-Valenzuela.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.22-Valenzuela.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.22-Valenzuela.pdf,1962.09.22,1962.09.22,2428,, +1962.09.13,13-Sep-62,1962,Unprovoked,SOUTH ATLANTIC OCEAN,Off coast of West Africa,Off the passenger liner Stirling Castle,"When a deckhand jumped overboard, McIver dived after him with a rescue line.",John MacIver,M,29,"FATAL, he died within minutes of being hauled back onboard the Stirling Castle",Y,,,"Daily Express (London), et. al, 9/22/1962 ",1962.09.13-MacIver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.13-MacIver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.13-MacIver.pdf,1962.09.13,1962.09.13,2427,, +1962.09.02,02-Sep-62,1962,Unprovoked,ITALY,Tyrrhenian Sea,"Circeo, Secca del Quadro",Spearfishing with Scuba gear,Maurizio Sarra,M,28,"FATAL, multiple injuries to both legs ",Y,10h20,White shark,"A. De Maddalena & C. Moore, GSAF; Carletti (1973), Gianturco (1978), Marini (1989), Gilioli (1989), Giudici & Fino (1989); E. Tortonese; H.D. Baldridge, p.183. Note: A.Resciniti, p.104 lists date as 22-Sep-1962",1962.09.02-Sarra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.02-Sarra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.02-Sarra.pdf,1962.09.02,1962.09.02,2426,, +1962.08.31.R,Reported 31-Aug-1962,1962,Provoked,ISRAEL,Sharon,2 km north of Apollonia,Fishing,fisherman,M,,"Details unknown, possibly a PROVOKED INCIDENT",UNKNOWN,,2.5 m [8.25'] shark,"C. Moore, GSAF",1962.08.31.R-Israel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.31.R-Israel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.31.R-Israel.pdf,1962.08.31.R,1962.08.31.R,2425,, +"1962,08.30.b",30-Aug-62,1962,Boat,TURKEY,Antalya Province,Ucagiz,,Occupant: Hasan Olta,M,,No injury ,N,,,"C.Moore, GSAF",1962.08.30.b-pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.30.b-pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.30.b-pdf,1962.08.30.b,"1962,08.30.b",2424,, +1962.08.30.a,30-Aug-62,1962,Provoked,PAPUA NEW GUINEA,Northern District,Kufulu Point,Fishing,Enigo Setiro,M,49,Posterior lower left leg lacerated by netted shark PROVOKED INCIDENT,N,Midday,"""A long thin brown-colored shark""",SAF Case #1192,1962.08.30.a-Setiro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.30.a-Setiro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.30.a-Setiro.pdf,1962.08.30.a,1962.08.30.a,2423,, +1962.08.29,29-Aug-62,1962,Provoked,USA,California,"Solana Beach, San Diego County",Diving for abalone,Knox Harris,M,39,"Struck shark with abalone bar to scare it away from abalone, but shark bit his shoulder PROVOKED INCIDENT",N,08h30,"Horn shar,k Heterodontus francisci, 1.2 m [4'] ","SAF Case #1059; D. Miller & R. Collier; R. Collier, p. xxv; H.D. Baldridge, p.164 ",1962.08.29-Harris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.29-Harris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.29-Harris.pdf,1962.08.29,1962.08.29,2422,, +1962.08.26,26-Aug-62,1962,Boat,USA,Florida,6 miles north of Palm Beach,,"21' boat sank. Occupants: Max Butcher, George Hardy & Peter Thorne",,,"No injury to occupants, sharks tore Max Butcher's life jacket & pants",N,,,"New York Post, 8/27/1962; SAF Case #1061",1962.08.26 - Thorne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.26 - Thorne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.26 - Thorne.pdf,1962.08.26,1962.08.26,2421,, +1962.08.23,23-Aug-62,1962,Boat,SOUTH AFRICA,Western Cape Province,Robbesteen,Fishing,"4 m dinghy, occupants: Cecil Holmes, Chris Augustyn & Allen Varley ",,,"No injury to occupants, shark hit boat, lifting it from the water, bit & dented propeller",N,12h00,4.3 m [14'] shark,GSAF,1962.08.23-HolmesBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.23-HolmesBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.23-HolmesBoat.pdf,1962.08.23,1962.08.23,2420,, +1962.08.19,19-Aug-62,1962,Unprovoked,USA,Texas,"Off Andy Bowie Park, Padre Island, near Port Isabel",Surf fishing in waist-deep water,Hans Fix,M,40,"FATAL, lower right leg bitten",Y,15h30,Unknown,"J. A. Hockaday, M.D.",1962.08.19-Fix.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.19-Fix.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.19-Fix.pdf,1962.08.19,1962.08.19,2419,, +1962.08.12,12-Aug-62,1962,Unprovoked,USA,New Jersey,"Manasquan, Ocean County",Standing,Michael Roman,M,24,Left thigh & hand bitten,N,14h00 - 15h00,1.8 m [6'] shark," L. Schultz & M. Malin, p.514, et.al.",1962.08.12 - Roman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.12 - Roman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.12 - Roman.pdf,1962.08.12,1962.08.12,2418,, +1962.08.01,01-Aug-62,1962,Unprovoked,PAPUA NEW GUINEA,"New Ireland Province, Bismarck Archipelago","Pekinberui Village, Tabar Island",Spearfishing,"Tarara, a male",M,(adult),"FATAL, right thigh severely bitten, right ankle lacerated ",Y,17h00,,P.M. Moodie,1962.08.01-Tarara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.01-Tarara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.01-Tarara.pdf,1962.08.01,1962.08.01,2417,, +1962.08.00.b,Late Aug-1962,1962,Unprovoked,ITALY,Tyrrhenian Sea,"Circeo, Secca del Faro",Diving,Dante Matacchione,M,,No injury,N,,White shark,"A. De Maddalena; Carletti (1973), Giudici & Fino (1989)",1962.08.00.b-Mattacchione.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.00.b-Mattacchione.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.00.b-Mattacchione.pdf,1962.08.00.b,1962.08.00.b,2416,, +1962.08.00.a,Aug-62,1962,Unprovoked,SENEGAL,Cap Vert Peninsula,,Beach seine netting,M.G.,M,23,Ankle bitten,N,,3.5 m shark,S. Trape,1962.08.00.a-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.00.a-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.00.a-Senegal.pdf,1962.08.00.a,1962.08.00.a,2415,, +1962.07.28,28-Jul-62,1962,Unprovoked,USA,South Carolina,"Off Hilton Head, Beaufort County ",Standing,Robert Stein,M,21,Lacerations on left foot & hand,N,,1.8 m to 2.4 m [6' to 8'] shark,R. Stein,1962.07.28-Stein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.28-Stein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.28-Stein.pdf,1962.07.28,1962.07.28,2414,, +1962.07.20,20-Jul-62,1962,Provoked,MADAGASCAR,,"Onboard tuna boat, M.V. Toscui Maru",Finning the shark,Takemoto Masnori,M,20,Right calf lacerated by boated shark PROVOKED INCIDENT,N,Morning,"2 m [6'9""] shark",J. D'Aubrey,1962.07.20-Masnori.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.20-Masnori.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.20-Masnori.pdf,1962.07.20,1962.07.20,2413,, +1962.07.19,19-Jul-62,1962,Provoked,USA,California,30 miles south of San Clemente Island,Fishing for albacore,Esteban L. Cervantes,M,19,"2 lacerations on left hand by hooked shark, PROVOKED INCIDENT",N,16h30,Blue shark,"R. Zarkas; San Diego Union, 7/30/1962 ",1962.07.19-Cervantes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.19-Cervantes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.19-Cervantes.pdf,1962.07.19,1962.07.19,2412,, +1962.07.10,10-Jul-62,1962,Unprovoked,USA,Georgia,"St. Simons Island or Jeykll Island, Glynn County",Playing in surf with his child (9),Leonard Harrison Hancock,M,41,"Cuts on fingers, hand & wrist",N,17h00,,L.H. Hancock,1962.07.10-Hancock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.10-Hancock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.10-Hancock.pdf,1962.07.10,1962.07.10,2411,, +1962.07.07,07-Jul-62,1962,Unprovoked,USA,Georgia,"Jekyll Island, Glynn County",Dived from inner-tube,Gary Duncan,M,13,Laceration on hand,N,14h10,,"J. M. Hicks, M.D.; Washington Star, 7/14/1962",1962.07.07-Duncan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.07-Duncan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.07-Duncan.pdf,1962.07.07,1962.07.07,2410,, +1962.07.03.R,Reported 03-Jul-1962,1962,Invalid,GREECE,Cyclades,Near Mykonos Island,,Boat with tourists onboard,,,No injury,N,,5.5 m [18'] shark,"C. Moore, GSAF",1962.07.03.R-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.03.R-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.03.R-Greece.pdf,1962.07.03.R,1962.07.03.R,2409,, +1962.06.25,25-Jun-62,1962,Invalid,USA,Florida,"Fernandina Beach, Nassau County",U.S. Airforce crewman reported missing after bailing out of jet,male,M,,FATAL,Y,,Shark involvement not confirmed,SAF Case #1106,1962.06.25-NV-AirForce-bailout.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.25-NV-AirForce-bailout.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.25-NV-AirForce-bailout.pdf,1962.06.25,1962.06.25,2408,, +1962.06.21,21-Jun-62,1962,Boat,SOUTH AFRICA,Western Cape Province,"Millers Point, False Bay","On a ""shark hunt""","2.4 m rowboat, occupants: Edgar Brown, Jerry Welz & Cornelius Stakenburg",,,"No injury to occupants, shark charged boat, then 2 more sharks hit boat, oar grabbed, boat finally drifted ashore at 02h00",N,21h00,2.7 m to 3 m [9' to 10'] sharks,"M. Levine, GSAF",1962.06.21-MillersPointBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.21-MillersPointBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.21-MillersPointBoat.pdf,1962.06.21,1962.06.21,2407,, +1962.06.17,17-Jun-62,1962,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Rolled off raft,Barry Bryan Reed,M,11,"8"" laceration on left calf",N,11h50,1.8 m [6'] shark,"D. Reed; Hobart Gazette, 6/28/ 1962 s",1962.06.17-BarryReed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.17-BarryReed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.17-BarryReed.pdf,1962.06.17,1962.06.17,2406,, +1962.06.11.b,11-Jun-62,1962,Unprovoked,USA,California,San Francisco Bay,Escaping from Alacatraz,Clarence Anglin,M,31,2 toes bitten off ,N,night,,"San Francisco Chronicle, 5/3/1986",1962.06.11.c-Anglin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.11.c-Anglin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.11.c-Anglin.pdf,1962.06.11.b,1962.06.11.b,2405,, +1962.06.11.b,11-Jun-62,1962,Unprovoked,USA,California,San Francisco Bay,Escaping from Alacatraz,John William Anglin ,M,32,"FATAL, but shark involvement uncomfirmed. Death may have been due to drowning.",Y,Night,,"San Francisco Chronicle, 5/3/1986",1962.06.11.b-Anglin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.11.b-Anglin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.11.b-Anglin.pdf,1962.06.11.b,1962.06.11.b,2404,, +1962.06.11.a,11-Jun-62,1962,Unprovoked,USA,California,San Francisco Bay,Escaping from Alacatraz,Frank Lee Morris,M,35,"FATAL, but shark involvement uncomfirmed. Death may have been due to drowning.",Y,Night,,"San Francisco Chronicle, 5/3/1986",1962.06.11.a-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.11.a-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.11.a-Morris.pdf,1962.06.11.a,1962.06.11.a,2403,, +1962.06.10.b,10-Jun-62,1962,Unprovoked,PAPUA NEW GUINEA,Madang Province,"Mouth of Suareng River, a mile from Taludig",Washing,"boy from Aitape, West Sepik",M,,"FATAL, chest & leg bitten ",Y,Midday,Possibly a bronze whaler shark,"L. Malcolmson, Fisheries Officer",1962.06.10.b-boy-Aitape.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.10.b-boy-Aitape.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.10.b-boy-Aitape.pdf,1962.06.10.b,1962.06.10.b,2402,, +1962.06.10.a,10-Jun-62,1962,Unprovoked,USA,South Carolina,"Hilton Head, Beaufort County",Standing,Frank Glenn,M,13,Thigh bitten,N,16h00,,"F. Glenn; Dr. H.C. Yeatman; D. E. Gatch, M.D. ",1962.06.10.a-Glenn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.10.a-Glenn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.10.a-Glenn.pdf,1962.06.10.a,1962.06.10.a,2401,, +1962.06.07,07-Jun-62,1962,Boat,AUSTRALIA,Western Australia,Emu Point,Fishing,"10' rowboat, occupant: John Stephensen",,,"No injury to occupant, shark grabbed anchor rope, pulling bow of boat downward & then bit bow of boat",N,07h00,,"West Australian (Perth), 6/8/1962 ",1962.06.07-StephensenBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.07-StephensenBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.07-StephensenBoat.pdf,1962.06.07,1962.06.07,2400,, +1962.06.04,04-Jun-62,1962,Provoked,USA,California,"12' tank at Steinhart Aquarium, San Francisco","Scuba diving, attempting to catch a captive shark","Norval J. ""Tom"" Green",M,55,Right forearm bitten PROVOKED INCIDENT,N,13h30," Sevengill shark, 1.2 m [4'] ","San Francisco Chronicle, 6/5/1962; H.D. Baldridge, p.183",1962.06.04-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.04-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.04-Green.pdf,1962.06.04,1962.06.04,2399,, +1962.06.03,03-Jun-62,1962,Unprovoked,USA,Florida,"Riviera Beach, near Palm Beach Inlet, Palm Beach County",Free diving,Paul Dammann,M,31,Left foot bitten,N,12h00,,"M. Vorenberg; Palm Beach Post, 6/4/1962 ",1962.06.03-Dammann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.03-Dammann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.03-Dammann.pdf,1962.06.03,1962.06.03,2398,, +1962.05.29,29-May-62,1962,Unprovoked,USA,Florida,"Jupiter, Palm Beach County",,boy,M,17,Bitten on leg or ankle,N,,,M. Vorenberg,1962.05.29-Jupiter-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.05.29-Jupiter-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.05.29-Jupiter-boy.pdf,1962.05.29,1962.05.29,2397,, +1962.05.12,12-May-62,1962,Sea Disaster,USA,California,"8 miles off Newport Beach, Orange County",25-foot cabin cruiser Happy Jack sank in heavy seas,,,,Bodies of 5 of the 6 men on board were bitten by by sharks. Sharks may have contributed to the death of some of them.,Y,03h45 - 04h00,,"Enquirer & News (Battle Creek, MI), 5/14/1962; L. Schultz & M. Malin, p.562",1962.05.12-HappyJack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.05.12-HappyJack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.05.12-HappyJack.pdf,1962.05.12,1962.05.12,2396,, +1962.05.00.R,May-62,1962,Boat,FIJI,Viti Levu,Near Suva,Fishing,17' fishing boat; occupants 2 men,,,"No injury, sharks rammed boat and bit outboard motor",N,,,"Yorkshire Evening News, 5/5/1962",1962.05.00-Suva-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.05.00-Suva-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.05.00-Suva-Fiji.pdf,1962.05.00.R,1962.05.00.R,2395,, +1962.04.20,20-Apr-62,1962,Provoked,AUSTRALIA,Queensland,Nobbys Beach,Fishing,"surf boat, occupants: Ray Sturdy and 4 other fishermen",,,"No injury to occupants, hooked shark cracked hull PROVOKED INCIDENT",N,,"Bronze whaler shark, 3.7 m [12'] ","Sydney Daily Telegraph, 4/21/1962 ",1962.04.20-Sturdy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.20-Sturdy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.20-Sturdy.pdf,1962.04.20,1962.04.20,2394,, +1962.04.09,09-Apr-62,1962,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Swimming,Brian Lawrence Martin,M,16,"Leg bitten, surgically amputated at knee",N,10h30,,"M. Levine, GSAF;P.H. Jacques, M.D.; D. Davies, pp.126-127",1962.04.09-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.09-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.09-Martin.pdf,1962.04.09,1962.04.09,2393,, +1962.04.07,07-Apr-62,1962,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umhlali,Wading,John Blane,M,13,Left ankle & foot bitten,N,11h30,"Zambesi shark, 1.2 m [4'] ","D. Davies, p.117; D. Blane, M. Levine, GSAF ",1962.04.07-Blane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.07-Blane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.07-Blane.pdf,1962.04.07,1962.04.07,2392,, +1962.04.05,05-Apr-62,1962,Provoked,SOUTH AFRICA,Eastern Cape Province,East London,Fishing,"4.8 m skiboat, occupants: C. Cockroft & 3 men",,,Hooked shark bit boat PROVOKED INCIDENT,N,,4.9 m [16']shark,T. Wallett,1962.04.05-Cockroft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.05-Cockroft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.05-Cockroft.pdf,1962.04.05,1962.04.05,2391,, +1962.03.25.b,25-Mar-62,1962,Provoked,NEW ZEALAND,"Off the Coromandel Peninsula, North Island",Alderman Islands,,W.T. Luxton,M,,Left foot bitten by hooked shark PROVOKED INCIDENT,N,,1.8 m [6'] shark ,"Christchurch Star, 3/26/1962",1962.03.25.b-Luxton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.03.25.b-Luxton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1962.03.25.b-Luxton.pdf,1962.03.25.b,1962.03.25.b,2390,, +1962.03.25.a,25-Mar-62,1962,Boat,AUSTRALIA,New South Wales,Norah Head,Fishing & spearfishing,boat of Dennis Kemp & 4 other occupants,,,No injury to occupants. Shark holed boat & they swam 200 yards to shore,N,,"Bronze whaler shark, 4.6 m [15'] ",Sunday Mirror (Sydney),1962.03.25.a-KempBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.03.25.a-KempBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.03.25.a-KempBoat.pdf,1962.03.25.a,1962.03.25.a,2389,, +1962.03.24,24-Mar-62,1962,Unprovoked,PAPUA NEW GUINEA,Madang,Matukar village ,Swimming,"Kes, a native boy",M,10,"FATAL, calf bitten, other leg severed below knee",Y,Late afternoon,Possibly a bronze whaler shark,"South Pacific Post (Port Moresby) 3/4/1962; L. Malcolmson, Fisheries Officer ",1962.03.24-Kes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.03.24-Kes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.03.24-Kes.pdf,1962.03.24,1962.03.24,2388,, +1962.02.23,23-Feb-62,1962,Unprovoked,PAPUA NEW GUINEA,Central Province,Fisherman�s Island near Port Moresby,Swimming along a row of nets,Hitola Hekure,M,,Torso lacerated,N,,1.2 m [4'] shark,"South Pacific Post, 2/27/1962; V.M. Coppleson (1962), p.248",1962.02.23-Hekure.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.23-Hekure.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.23-Hekure.pdf,1962.02.23,1962.02.23,2387,, +1962.02.18,18-Feb-62,1962,Provoked,NEW ZEALAND,Southland,Long Beach,Swimming,Fred Mason,M,15,"Mistook shark's tail for kelp & grabbed it, legs abraded by shark's fins PROVOKED INCIDENT",N,,1.8 m [6'] shark,"SAF Case #1118; Southland Daily News 2/20/1962, ",1962.02.18-Mason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.18-Mason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.18-Mason.pdf,1962.02.18,1962.02.18,2386,, +1962.02.15,15-Feb-62,1962,Unprovoked,AUSTRALIA,Queensland,Between Smith�s Rock & Moreton Island,Fishing for snappers & cleaning mullet. Put mullet over side of boat to wash it,John Hansen,M,,Middle finger of right hand lacerated,N,A.M.,3.7 m [12'] shark,"Brisbane Courier Mail, 2/16/1962",1962.02.15-Hansen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.15-Hansen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.15-Hansen.pdf,1962.02.15,1962.02.15,2385,, +1962.02.07,07-Feb-62,1962,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Winkelspruit,Swimming,Clifford Hoogvorst,M,22,"FATAL, calf bitten twice",Y,09h00,,"M. Levine, J. D'Aubrey, GSAF; D. Davies, pp.114-116",1962.02.07-Hoogvorst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.07-Hoogvorst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.07-Hoogvorst.pdf,1962.02.07,1962.02.07,2384,, +1962.02.05,05-Feb-62,1962,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Winkelspruit,Treading water,Reece Nielsen,M,13,"FATAL, tissue removed from thigh, femoral artery severed ",Y,16h20,"White shark, 3 m ","M. Nielsen, M. Levine, GSAF; D. Davies, p.115",1962.02.05-Nielsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.05-Nielsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.05-Nielsen.pdf,1962.02.05,1962.02.05,2383,, +1962.02.04,04-Feb-62,1962,Unprovoked,AUSTRALIA,Queensland,Greenmount Beach,Swimming,Lance Maloney,M,35,Shin bitten,N,14h30,60 cm shark ,"Courier Mail (Brisbane), 2/5/1962",1962.02.04-Maloney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.04-Maloney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.04-Maloney.pdf,1962.02.04,1962.02.04,2382,, +1962.02.02,02-Feb-62,1962,Boat,NEW ZEALAND,North Island,South of New Plymouth,Fishing,"17' fishing launch, occupants: A. Burkitt & C. Brooke",,,,UNKNOWN,,,SAF Case #1125,1962.02.02-NV-Burkitt-Brooke-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.02-NV-Burkitt-Brooke-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.02-NV-Burkitt-Brooke-launch.pdf,1962.02.02,1962.02.02,2381,, +1962.02.00,Feb-62,1962,Unprovoked,SOLOMON ISLANDS,Guadalcanal Province,"North Coast, Guadalcanal Island",Swimming outside fishing net,"Mr. Loloi, a constable",M,,"FATAL, shoulder & thigh bitten ",Y,,,"Auckland Herald, 2/26/1962",1962.02.00-Loloi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.00-Loloi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.00-Loloi.pdf,1962.02.00,1962.02.00,2380,, +1962.01.27,27-Jan-62,1962,Unprovoked,NEW ZEALAND,South Island,Oreti Beach,Splashing ,Norman McEwan,M,18,"Left hand injured: gash on back of hand, toothmarks on palm",N,16h00,1.5 m [5'] shark,"R. Weeks, GSAF; V.M. Coppleson (1962), p.247; H. D. Baldridge, p.16",1962.01.27-McEwan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.27-McEwan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.27-McEwan.pdf,1962.01.27,1962.01.27,2379,, +1962.01.26,26-Jan-62,1962,Unprovoked,MOZAMBIQUE,Gaza,Praia Sepulveda,,Domingos Zefanias Cumbe,M,16,,UNKNOWN,,,D. Davies,1962.01.26-Cumbe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.26-Cumbe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.26-Cumbe.pdf,1962.01.26,1962.01.26,2378,, +1962.01.21,21-Jan-62,1962,Provoked,AUSTRALIA,New South Wales,Cronulla,Spearfishing,Robert Smith,M,19,Suffered from shock & immersion after being dragged underwater by speared shark PROVOKED INCIDENT,N,,"Bronze whaler shark, 3m [10'] ","Daily Mirror (Sydney) & Sydney Morning Herald, 1/22/1962 ",1962.01.21-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.21-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.21-Smith.pdf,1962.01.21,1962.01.21,2377,, +1962.01.18,18-Jan-62,1962,Invalid,SOUTH AFRICA,KwaZulu-Natal,Margate,"Fishing, slipped on rocks & fell into sea",Jacobus Vermaak,M,40,Possible drowning / post mortem scavenging,Y,13h10,Zambesi shark,"D. Davies, p.114; A. Cowan, M. Levine, GSAF",1962.01.18-Vermaak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.18-Vermaak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.18-Vermaak.pdf,1962.01.18,1962.01.18,2376,, +1962.01.16,16-Jan-62,1962,Provoked,NEW ZEALAND,South Island,"Pigeon Bay, Canterbury",Fishing,Mr. Reynish & Mr. Meikle,,,"No injury to occupants, hooked shark attacked boat PROVOKED INCIDENT",N,,"Said to involve a 4.9 m [16'] ""red shark""","The Sun (Australia), 1/17/1962",1962.01.16-RedShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.16-RedShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.16-RedShark.pdf,1962.01.16,1962.01.16,2375,, +1962.01.15,15-Jan-62,1962,Unprovoked,NEW ZEALAND,North Island,"Slipper Island, Coromandel Peninsula",Spearfishing,John Till,M,44,Shark struck him on shoulder injuring skin under suit,N,12h00,,"V.M. Coppleson (1962), p.254; H.D. Baldridge, p.1432",1962.01.15-Till.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.15-Till.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.15-Till.pdf,1962.01.15,1962.01.15,2374,, +1962.01.14.c,14-Jan-62,1962,Unprovoked,USA,California,Farallon Islands,Spearfishing / Scuba diving (at surface),"Floyd Pair, Jr.",M,29,Buttock bitten & major leg wound,N,10h30,"White shark, 4 m [13'] ","D. Miller & R. Collier; R. Collier, pp.34-35; H.D. Baldridge, p.74; Clark, pp.98-99",1962.01.14.c-Pair_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.14.c-Pair_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.14.c-Pair_Collier.pdf,1962.01.14.c,1962.01.14.c,2373,, +1962.01.14.b,14-Jan-62,1962,Provoked,AUSTRALIA,New South Wales,"Long Reef, North Manly",Spearfishing,boat of Wally Gibbons,,,Speared shark bit gunwale of boat as it was being hauled onboard PROVOKED INCIDENT,N,," Grey nurse shark, 3 m [10'] ","Sydney Daily Telegraph, 1/15/1962 ",1962.01.14.b-Gibbons-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.14.b-Gibbons-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.14.b-Gibbons-boat.pdf,1962.01.14.b,1962.01.14.b,2372,, +1962.01.14.a,14-Jan-62,1962,Unprovoked,AUSTRALIA,New South Wales,"Lennox Head, Ballina",Surfing,Gary Raymond Hiscocks,M,19,Dorsum of foot lacerated & toe severed,N,13h30,"2.1 m [7'] shark, a shark's serrated tooth recovered from toe","The Star (Johannesburg), Daily Telegraph (Sydney), Sydney Morning Herald, The Examiner (Launceston) 1/15/1962; V.M. Coppleson (1962), p.246; R.D. Weeks, GSAF",1962.01.14.a-Hiscocks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.14.a-Hiscocks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.14.a-Hiscocks.pdf,1962.01.14.a,1962.01.14.a,2371,, +1962.01.11.c,11-Jan-62,1962,Boat,AUSTRALIA,South Australia,Marino,Fishing,12' boat of Alf Laundy,,,"No injury to occupant, shark bit propeller & lifted boat several feet",N,,Said to involve a Grey nurse shark 3.7 m [12'] ,"Adelaide News, 1/12/1962",1962.01.11.c-Laundy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.11.c-Laundy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.11.c-Laundy.pdf,1962.01.11.c,1962.01.11.c,2370,, +1962.01.11.b,11-Jan-62,1962,Unprovoked,PAPUA NEW GUINEA,"10�S, 142�E",Jukuataia Village,Spearfishing,Yagirua Agiramon,M,24,Left leg & buttocks bitten,N,12h00,White shark,SAF Case #1193,1962.01.11.b-Agiramon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.11.b-Agiramon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.11.b-Agiramon.pdf,1962.01.11.b,1962.01.11.b,2369,, +1962.01.11.a,11-Jan-62,1962,Unprovoked,NEW ZEALAND,South Island,"Fairdown Beach, 5 miles north of Westport",Surf fishing,Mrs. Beryl Grant,F,54,Right foot lacerated ,N,18h00,"36"" shark","R. D. Weeks, GSAF; Dr. C. Foote; The Evening Post, 1/12/1962 ",1962.01.11.a-BerylGrant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.11.a-BerylGrant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.11.a-BerylGrant.pdf,1962.01.11.a,1962.01.11.a,2368,, +1962.01.10,10-Jan-62,1962,Boat,AUSTRALIA,South Australia,Ceduna,Fishing for sharks,25-foot cutter,,,No injury to fisherman Alf Dean & other occupants; shark bit stern of boat,N,,White shark,"Adelaide News, 1/10/1962",1962.01.10.R-AlfDean-cutter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.10.R-AlfDean-cutter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.10.R-AlfDean-cutter.pdf,1962.01.10,1962.01.10,2367,, +1962.01.08,08-Jan-62,1962,Invalid,AUSTRALIA,New South Wales,Lake Illawarra,Swimming,William McLeod,M,25,"Remains recovered from shark, but shark involvement prior to death unconfirmed",Y,,10' whale,"Canberra Times, 1/11/1962",1962.01.08-McLeod.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.08-McLeod.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.08-McLeod.pdf,1962.01.08,1962.01.08,2366,, +1962.01.07.b,07-Jan-62,1962,Provoked,AUSTRALIA,Queensland,Dicky Beach,Rowing,Lifesavers' surf patrol boat,,,"No injury to occupants, shark bit 3"" piece from oar after they accidentally struck the shark PROVOKED INCIDENT",N,,,"Sydney Daily Telegraph, 1/8/1962 ",1962.01.07.b-DickyBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.07.b-DickyBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.07.b-DickyBeach.pdf,1962.01.07.b,1962.01.07.b,2365,, +1962.01.07.a,07-Jan-62,1962,Unprovoked,AUSTRALIA,New South Wales,Sydney,Surfing,Tony Frost,,,"No injury, shark bumped board flipping him into the water",N,,,08/01/1962,1962.01.07.a-Frost.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.07.a-Frost.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.07.a-Frost.pdf,1962.01.07.a,1962.01.07.a,2364,, +1962.01.06,06-Jan-62,1962,Boat,SOUTH AFRICA,Western Cape Province,6 km off Groot Brak River,Fishing,"4.8 m boat Peggy, occupants: John Oktober, L.A. van Zyl and 4 others",,,Shark rammed boat 5 times & holed it,N,,,T. Wallett,1962.01.06-FishingboatPeggy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.06-FishingboatPeggy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.06-FishingboatPeggy.pdf,1962.01.06,1962.01.06,2363,, +1962.01.02,02-Jan-62,1962,Provoked,AUSTRALIA,New South Wales,"Seaspray, near Sale",Fishing,surf patrol boat,,,"No injury to occupants, hooked shark dragged boat 2 miles PROVOKED INCIDENT",N,,2.7 m [9'] shark,"Sydney Daily Telegraph, 1/3/1962 ",1962.01.02-NV-Surf-Patrol-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.02-NV-Surf-Patrol-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.02-NV-Surf-Patrol-boat.pdf,1962.01.02,1962.01.02,2362,, +1962.01.01,01-Jan-62,1962,Unprovoked,MARSHALL ISLANDS,Kwajalein Atoll,Roi-namur Island,Fishing with hand net in 2' of water,Stanley Caberto,M,57,"2.5"" laceration on right hand",N,13h00,1.8 m [6'] shark,"L. R. Fletcher, M.D.",1962.01.01-Caberto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.01-Caberto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.01-Caberto.pdf,1962.01.01,1962.01.01,2361,, +1962.00.00.c,1962,1962,Unprovoked,SPAIN,Catalonia,Aigua Blava,Dangling feet in the water,female,F,,Feet severed,N,,,"C. Moore, GSAF",1962.00.00.c-AiguaBlava.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.00.00.c-AiguaBlava.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.00.00.c-AiguaBlava.pdf,1962.00.00.c,1962.00.00.c,2360,, +1962.00.00.b,Jan-Jun-1962,1962,Unprovoked,INDONESIA,East Flores,Waewerang,,9 fishermen & pregnant woman,,,FATAL,Y,,,"Djakarta Daily Mail, 7/20/1962",1962.00.00.b-Indonesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.00.00.b-Indonesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.00.00.b-Indonesia.pdf,1962.00.00.b,1962.00.00.b,2359,, +1962.00.00.a,Ca. 1962,1962,Unprovoked,AUSTRALIA,South Australia,Dangerous Reef,Diving,Dan Argyll,M,,Right leg bitten,N,,,"F. Dennis, p.76",1962.00.00.a-Argyll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.00.00.a-Argyll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.00.00.a-Argyll.pdf,1962.00.00.a,1962.00.00.a,2358,, +1961.12.28.c,28-Dec-61,1961,Unprovoked,AUSTRALIA,Queensland,"Lambert's Beach, Mackay",Standing,Margaret Hobbs,F,18,"FATAL, right arm severed at shoulder, left hand severed, right thigh bitten & surgically amputated. Died day after the attack",Y,16h15,3 m [10'] shark,"V.M. Coppleson (1962), p.246; A. MacCormick, pp.19-21; A. Sharpe, p.101 ",1961.12.28.c-Hobbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.28.c-Hobbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.28.c-Hobbs.pdf,1961.12.28.c,1961.12.28.c,2357,, +1961.12.28.b,28-Dec-61,1961,Unprovoked,AUSTRALIA,Queensland,"Lambert�s Beach, Mackay",Standing,Martyn Steffens,M,24,"Hand bitten, surgically amputated",N,16h15,3 m [10'] shark,"V.M. Coppleson (1962), p.246; A. MacCormick, pp.19-21; A. Sharpe, p.101",1961.12.28.b-Steffens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.28.b-Steffens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.28.b-Steffens.pdf,1961.12.28.b,1961.12.28.b,2356,, +1961.12.28.a,28-Dec-61,1961,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umhlanga Rocks,Treading water,Glynn Wessels,M,18,Lower right leg & ankle bitten,N,16h50,Zambesi shark,"D. Davies, pp.113-114; D. Davies & J. D'Aubrey; T. McDonnell, M. Levine, GSAF",1961.12.28.a-Wessels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.28.a-Wessels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.28.a-Wessels.pdf,1961.12.28.a,1961.12.28.a,2355,, +1961.12.27,27-Dec-61,1961,Provoked,AUSTRALIA,Western Australia,"North of main swimming area in Waterman's Bay Beach, Perth",Spearfishing,John Parker ,M,23,"No injury, Parker shot the shark when it came close to his nephew, Bill Bradbury (14), then the shark bent his speargun PROVOKED INCIDENT",N,07h00,"Grey nurse shark, 2.4 m [8'] ","The West Australia, 12/28/1961 ",1961.12.27-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.27-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.27-Parker.pdf,1961.12.27,1961.12.27,2354,, +1961.12.19,19-Dec-61,1961,Boat,AUSTRALIA,South Australia,Cowell,"Fishing, hauling in a 5-lb snapper",20' boat of Frank Stocker,,,No injury to occupant; shark leapt into boat,N,,2.7 m [9'] shark,"Adelaide Advertiser, 12/20/1961",1961.12.19-NV-boat-Stocker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.19-NV-boat-Stocker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.19-NV-boat-Stocker.pdf,1961.12.19,1961.12.19,2353,, +1961.12.18.b,18-Dec-61,1961,Unprovoked,MOZAMBIQUE,Gaza,Praia Sepulveda,Bathing,Gaspar Rodrigues Correia,M,20,His left leg was severely bitten,N,16h00,,Dr. C. d. Nacimento,1961.12.18.b-Correia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.18.b-Correia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.18.b-Correia.pdf,1961.12.18.b,1961.12.18.b,2352,, +1961.12.18.a,18-Dec-61,1961,Unprovoked,AUSTRALIA,Queensland,Noosa Heads,"Surfing, pushing board ashore",John Grayson Andrews,M,22,"FATAL, right wrist and hand bitten, left leg severed above knee ",Y,06h15,Next morning a 3 m [10'] shark was caught that had Andrews' leg in its gut,"Natal Daily News, 12/19/1961; Sydney Morning Herald, 12/20/1961; V.M. Coppleson (1962), p.246; H.D. Baldridge, p.172; A. Sharpe, pp.100-101",1961.12.18.a-Andrews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.18.a-Andrews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.18.a-Andrews.pdf,1961.12.18.a,1961.12.18.a,2351,, +1961.12.13,13-Dec-61,1961,Unprovoked,AUSTRALIA,Torres Strait,"Horn Island, near Thursday Island",Swimming with other crew near wharf,"George �Jimmy� Stevens, aborgine from the lugger Rebecca",M,17,Right thigh and leg lacerated,N,14h00,1.8 m [6'] shark,"Brisbane Courier Mail, 12/14/1961; V.M. Coppleson (1962), p.246",1961.12.13-Stevens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.13-Stevens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.13-Stevens.pdf,1961.12.13,1961.12.13,2350,, +1961.11.14,14-Nov-61,1961,Invalid,MEXICO,Guerrrero,Northwest of Acapulco,,,,,"Bodies of hurricane victims bitten by shoals of sharks, post mortem scavenging",Y,,,"Sydney Daily Telegraph, 11/19/1961; SAF Case #1018",1961.11.14-Hurricane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.11.14-Hurricane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.11.14-Hurricane.pdf,1961.11.14,1961.11.14,2349,, +1961.10.27,17-Oct-61,1961,Unprovoked,PHILIPPINES,Western Luzon Island,Manila Bay,Gathering shells,fisherman,M,,Right leg severed,N,,,"Newcastle Morning Herald, 10/28/1961 ",1961.10.27-FilipinoFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.27-FilipinoFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.27-FilipinoFisherman.pdf,1961.10.27,1961.10.27,2348,, +1961.10.09,09-Oct-61,1961,Invalid,USA,Florida,"Ocean Ridge, Boca Raton, Palm Beach County",Swimming,Alfred Haen,M,45,"Skeletonized, but shark involvement may have occurred after death.",Y,,,"H.D. Baldridge, p.162",1961.10.09-Haen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.09-Haen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.09-Haen.pdf,1961.10.09,1961.10.09,2347,, +1961.10.00.b,Oct-61,1961,Boat,VANUATU,Shefa Province, Lelepa Island,Paddling outrigger canoe,male from Lelepa Island,M,,"No injury to occupant, canoe bitten & overturned by shark",N,,Two shark's teeth recovered from canoe,"Pacific Islands Monthly, October 1961 ",1961.10.00.b-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.00.b-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.00.b-Vanuatu.pdf,1961.10.00.b,1961.10.00.b,2346,, +1961.10.00.a,Oct-61,1961,Unprovoked,USA,Florida,"Boca Raton, Palm Beach County",,Jacob Horn,M,45,"FATAL. His body washed ashore, presumed shark attack",Y,,,"V.M. Coppleson (1962), p.249",1961.10.00.a-Horn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.00.a-Horn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.00.a-Horn.pdf,1961.10.00.a,1961.10.00.a,2345,, +1961.09.26,26-Sep-61,1961,Provoked,USA,Florida,"Florida Keys, Monroe County",,Paul Walter,M,16,Foot & lower leg abraded and lacerated when he kicked the shark PROVOKED INCIDENT,N,16h30,,H.D.Baldridge (1994) SAF Case #923,1961.09.26-NV-PaulWalter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.26-NV-PaulWalter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.26-NV-PaulWalter.pdf,1961.09.26,1961.09.26,2344,, +1961.09.24.b,24-Sep-61,1961,Unprovoked,CROATIA,Primorje-Gorski Kotar County ,"Opatija, northwestern coast of Rijeka Bay",Swimming,Sabit Plana,M,19,"FATAL, hand severed & legs bitten ",Y,Early afternoon,White shark,"The Mid-Ocean News, 9/28/1961; H.D. Baldridge, p.15; A. De Maddalena & C. Moore, GSAF;; Anon. (1961), Giudici & Fino (1989), Fergusson (1996)",1961.09.24.b-Plana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.24.b-Plana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.24.b-Plana.pdf,1961.09.24.b,1961.09.24.b,2343,, +1961.09.24.a,24-Sep-61,1961,Provoked,TANZANIA,,Near entrance to Dar-es-Salaam Harbour,Fishing,Yusef Mohamed,M,42,PROVOKED INCIDENT Right hand severed by hooked shark,N,07h00,,Mombasa Times 9/25/1961,1961.09.24.a-YusefMohamed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.24.a-YusefMohamed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.24.a-YusefMohamed.pdf,1961.09.24.a,1961.09.24.a,2342,, +1961.09.23,23-Sep-61,1961,Unprovoked,MID ATLANTIC OCEAN,165 miles from Bermuda,,"Survived US Naval aircraft crash, climbing onboard rescue vessel when he fell back into sea ",Patrick Imhof,M,22,Right shoulder blade & back lacerated,N,06h00,"Oceanic whitetip shar,; identified by Dr. W.C. Schoeder on photograph & Dr. L.P. L. Schultz on sketch by observer","E.L.de Wilton; V.M. Coppleson (1962), p.246; H.D. Baldridge, p.102",1961.09.23-Imhof.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.23-Imhof.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.23-Imhof.pdf,1961.09.23,1961.09.23,2341,, +1961.09.07,07-Sep-61,1961,Unprovoked,PERSIAN GULF,25 km off the coast of Iran & 483km from mouth of Persian Gulf,Khark Island,"Free diving, surveying a pipeline & examing cathodes under jetty",I. Padden,M,,"3"" cut on sole of foot",N,10h30,1.5 m to 1.8 m [5' to 6'] shark,"Underseas, Ltd (London)",1961.09.07-Padden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.07-Padden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.07-Padden.pdf,1961.09.07,1961.09.07,2340,, +1961.09.02.R,Reported 06-Sep-1961,1961,Provoked,ITALY,Venice Province, Chioggia,Fishing,Pollione Perrini & Fioravante Perini ,M,33 & 37,Left foot & right hand bitten by netted shark PROVOKED INCIDENT,N,,1 m shark,"C. Moore, GSAF",1961.09.06.R-Chioggia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.06.R-Chioggia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.06.R-Chioggia.pdf,"1961.09,06.R",1961.09.02.R,2339,, +1961.09.06,06-Sep-61,1961,Invalid,AUSTRALIA,Western Australia,Broome,Attaching a line at sea,a sailor from the Fukuichi Maru,,,Shark involvement prior to death priunconfirmed,Y,,,"Canberra Times, 9/8/1962",1961.09.06-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.06-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.06-Sailor.pdf,1961.09.06,1961.09.06,2338,, +1961.08.20,20-Aug-61,1961,Unprovoked,USA,California,"Portuguese Beach at mouth of Salmon Creek, Sonoma County",Swimming,David Vogensen,M,16,"Foot, leg & groin lacerated",N,09h30 / 15h30,"White shark, 4 m [13'] ","L.A. Times, 8/21/1961; D. Miller & R. Collier; R. Collier, p.33; V.M. Coppleson (1962), p.249; H.D. Baldridge, p.72",1961.08.20-Vogensen_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.20-Vogensen_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.20-Vogensen_Collier.pdf,1961.08.20,1961.08.20,2337,, +1961.08.16,16-Aug-61,1961,Unprovoked,USA,South Carolina,"Pawley�s Island, Georgetown County",Wading,William Lee Bailey,M,19,"Right arm bitten. Left leg bitten, surgically amputated ",N,08h00,White shark,C.O. Adams,1961.08.16-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.16-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.16-Bailey.pdf,1961.08.16,1961.08.16,2336,, +1961.08.04,04-Aug-61,1961,Unprovoked,BERMUDA,,6 miles from shore,Spearfishing,Robert Sato,M,22,Right hand lacerated,N,11h00,"Blacktip shark, 1.8 m to 2.1 m [6' to 7'] ","R. McAllister; H.D. Baldridge, p.134",1961.08.04-Sato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.04-Sato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.04-Sato.pdf,1961.08.04,1961.08.04,2335,, +1961.08.02,02-Aug-61,1961,Unprovoked,USA,Hawaii,"Pearl Harbor Channel, O'ahu","Net fishing, picking catch from the net",Kazuhiho Kato,M,38,Hand bitten,N,17h30,2.4 m [8'] shark,"K. Kato; V.M. Coppleson (1962), p.246",1961.08.02-Kato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.02-Kato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.02-Kato.pdf,1961.08.02,1961.08.02,2334,, +1961.08.01,01-Aug-61,1961,Provoked,PAPUA NEW GUINEA,Sandaun Province,Vanimo on Musu side of Wutong anchorage,"Fishing, two large sharks passed. He speared one and it bit him",male,M,,Thigh lacerated PROVOKED INCIDENT,N,,,"A.M. Rapson, p.147",1961.08.01-Vanimo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.01-Vanimo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.01-Vanimo.pdf,1961.08.01,1961.08.01,2333,, +1961.07.29,29-Jul-61,1961,Provoked,USA,New York,Whitewood Point on Lloyd Neck in Oyster Bay,Spearfishing,Bruno Junker,M,57,Puncture wound on right shin & fingers lacerated by speared shark PROVOKED INCIDENT,N,14h30,"43"" shark",B. Junker,1961.07.29-Junker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.29-Junker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.29-Junker.pdf,1961.07.29,1961.07.29,2332,, +1961.07.16,16-Jul-61,1971,Unprovoked,TURKEY,Anatolia,"?nciralti Beach, ?zmir ",Swimming,?brahim Karag�z,M,16,Left leg injured,N,,,"C. Moore, GSAF",1961.07.16-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.16-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.16-Turkey.pdf,1961.07.16,1961.07.16,2331,, +1961.07.07.b,07-Jul-61,1961,Provoked,AUSTRALIA,Queensland,Cape Moreton,Shark fishing,"35' motor launch, occupants: Bill Fulham & T. Fanning",,,"No injury to occupant, hooked shark bit boat's rudder PROVOKED INCIDENT",N,,"White shark, 5.2 m [17'], 2500-lb ","Brisbane Courier-Mail, 7/10/1961; SAF Case #894",1961.07.07.b-boat-Fulham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.07.b-boat-Fulham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.07.b-boat-Fulham.pdf,1961.07.07.b,1961.07.07.b,2330,, +1961.07.00.b,Jul-61,1961,Unprovoked,ITALY,Adriatic Sea,Riccione,Spearfishing,Manfred Gregor,M,21,Foot bitten,N,14h00,"White shark, 4.5 m ","M. Gregor; H.D. Baldridge, p.135; A. De Maddalena; Ellis (1973), Fergusson (1996), Mojetta et al. (1997)",1961.07.00.b-Gregor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.00.b-Gregor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.00.b-Gregor.pdf,1961.07.00.b,1961.07.00.b,2329,, +1961.07.00.a,Jul-61,1961,Provoked,PANAMA,,"Jarque, just south of Pi?as Bay",Fishing (trolling) from canoe,boy,M,10,"FATAL, hooked shark pulled him into the water PROVOKED INCIDENT",Y,,,"J. Hardie, D. DeSylva",1961.07.00.a-youngboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.00.a-youngboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.00.a-youngboy.pdf,1961.07.00.a,1961.07.00.a,2328,, +1961.06.24,24-Jun-61,1961,Unprovoked,USA,Florida,"500 yards from Fowey Rock Light, 9 miles east of Key Biscayne, Miami",Scuba diving & spearfishing ,William J. Dandridge,M,23,"FATAL, arm severed & left side of torso removed ",Y,09h30,,"D. McGee, J. Quillian, W. M. Stephens; V.M. Coppleson (1962), p.249; H.D. Baldridge, p.183",1961.06.24-Dandridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.24-Dandridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.24-Dandridge.pdf,1961.06.24,1961.06.24,2327,, +1961.06.18,18-Jun-61,1961,Unprovoked,USA,Florida,"Jensen Beach, Martin County",Standing,Bill Hawkins,M,25,Lacerations to left leg,N,Afternoon,,"News Tribune, 6/20/1961",1961.06.18-Hawkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.18-Hawkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.18-Hawkins.pdf,1961.06.18,1961.06.18,2326,, +1961.06.06.R,Reported 06-Jun-1961,1961,Boat,USA,Florida,"Ponte Vedra Beach, St. Johns County",Spearfishing on Scuba,W. Davidson,M,,"No injury to diver or occupants of the boat, shark butted boat ",N,,Hammerhead shark,"Florida Times-Union, 6/6/1961 ",1961.06.06.R-W.E.-Davidson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.06.R-W.E.-Davidson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.06.R-W.E.-Davidson.pdf,1961.06.06.R,1961.06.06.R,2325,, +1961.06.02,02-Jun-61,1961,Unprovoked,NEW BRITAIN,East New Britain Province,Rabaul,Spearfishing,male,M,,Minor injuries to arm,N,,,"A.M. Rapson, p.150",1961.06.02-Rabaul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.02-Rabaul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.02-Rabaul.pdf,1961.06.02,1961.06.02,2324,, +1961.06.01,01-Jun-61,1961,Provoked,PAPUA NEW GUINEA,"Admiralty Islands, Manus Province","Rossun, Manus","Fishing, speared shark upset canoe & man fell in water",Marik-Pokas,M,19,"Left thigh severely bitten, but he regained the canoe, then shark bit canoe PROVOKED INCIDENT",N,,2.7 m [9']shark,"J. McDonough; A. M. Rapson, p.147; Papua and New Guinea Agricultural Journal;",1961.06.01-Marik-Pokas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.01-Marik-Pokas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.01-Marik-Pokas.pdf,1961.06.01,1961.06.01,2323,, +1961.05.21,21-May-61,1961,Unprovoked,USA,California,"Tomales Point, Marin County",Free diving for abalone,Rodney Orr,M,20,"No injury, wetsuit bitten",N,08h00 / 09h30,White shark,"D. Miller & R. Collier; R. Collier, pp.32-33 ",1961.05.21-Orr_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.21-Orr_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.21-Orr_Collier.pdf,1961.05.21,1961.05.21,2322,, +1961.05.17,17-May-61,1961,Unprovoked,NEW BRITAIN,East New Britain Province,Kokopo,Collecting dynamited fish,male,M,,Thumb & 2 fingers severed,N,,,"A.M. Rapson, p. 150]",1961.05.17-Kokopo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.17-Kokopo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.17-Kokopo.pdf,1961.05.17,1961.05.17,2321,, +1961.05.15,15-May-61,1961,Unprovoked,USA,Florida,"Laguna Beach, Bay County",Walking in chest-deep water,G.L. Morris,M,52,Middle finger of left hand & right forearm lacerated,N,11h30,"Hammerhead shark, 500-llb ","G.L. Morris; Post Herald (Birmingham, Alabama) 5/18/1961; V.M. Coppleson (1962), p.249",1961.05.15-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.15-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.15-Morris.pdf,1961.05.15,1961.05.15,2320,, +1961.05.07,07-May-61,1961,Provoked,AUSTRALIA,Western Australia,"Quinn�s Rocks, south of Yanchep",Spearfishing,Graeme Arbuckle,M,,"No injury, speared shark hit speargun PROVOKED INCIDENT",N,,,"The West Australian (Perth), 5/8/1961 ",1961.05.07-Arbuckle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.07-Arbuckle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.07-Arbuckle.pdf,1961.05.07,1961.05.07,2319,, +1961.04.30,30-Apr-61,1961,Invalid,USA,Florida,Palm Beach County,Splashing ,Earl Brewster,M,10,Abdomen abraded,N,15h00,Shark involvement not confirmed,H.D.Baldridge (1994) SAF Case #942,1961.04.30-NV-Brewster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.30-NV-Brewster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.30-NV-Brewster.pdf,1961.04.30,1961.04.30,2318,, +1961.04.25,25-Apr-61,1961,Provoked,AUSTRALIA,New South Wales,"Trial Bay, north of Kempsey",Spearfishing,John Davy & John Pierpoint,M,,Speared shark bit Davy's ankle & Pierpont's right leg PROVOKED INCIDENT,N,12h00,"Wobbegong shark, 1.4 m [4'6""] ","Kempsey Macleay Argus (N.S.W.), 4/27/1961",1961.04.25-Davy-Pierpoint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.25-Davy-Pierpoint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.25-Davy-Pierpoint.pdf,1961.04.25,1961.04.25,2317,, +1961.04.21,21-Apr-61,1961,Unprovoked,MOZAMBIQUE,Gaza,"Sepulveda Beach, Xai Xai",Swimming,Brian Dewar,M,37,"Multiple injuries to both hands, left leg & foot",N,10h00,Zambesi shark,"D. Davies, pp.125-126; M. Levine,GSAF; Star, 4/23/1961",1961.04.21-Dewar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.21-Dewar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.21-Dewar.pdf,1961.04.21,1961.04.21,2316,, +1961.04.17,17-Apr-61,1961,Provoked,SOUTH AFRICA,Eastern Cape Province,Port Elizabeth Oceanarium,Diving,Kelvin Harvey,M,,Shark bit swimfin after diver kicked shark PROVOKED INCIDENT,N,,"2 m ""yellow belly"" captive shark. Shark destroyed by aquarium staff next day","G. Ross, M. Levine, GSAF",1961.04.17-Harvey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.17-Harvey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.17-Harvey.pdf,1961.04.17,1961.04.17,2315,, +1961.04.16.b,16-Apr-61,1961,Unprovoked,USA,Florida,"Fowey Rock Light, Miami",Spearfishing,Rolf Ericson,M,22,Thigh bitten,N,,"Tiger shark, 3 m [10']","W. M. Stephens; H.D. Baldridge, p.166; Clark, p.102 ",1961.04.16.b-Ericson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.16.b-Ericson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.16.b-Ericson.pdf,1961.04.16.b,1961.04.16.b,2314,, +1961.04.16.a,16-Apr-61,1961,Provoked,AUSTRALIA,New South Wales,Otford,Spearfishing,Douglas John Spooner,M,21,Speared shark bit his foot PROVOKED INCIDENT,N,,"Wobbegong shark, O. barbatus, 1.8 m [6'], identified by G.P. Whitley","Sydney Morning Herald, 4/17/1961; G. P. Whitley; Perth Daily News, 4/19/1961; V.M. Coppleson (1962), p.252; H.D. Baldridge, p.165",1961.04.16.a-Spooner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.16.a-Spooner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.16.a-Spooner.pdf,1961.04.16.a,1961.04.16.a,2313,, +1961.04.14,14-Apr-61,1961,Unprovoked,AUSTRALIA,New South Wales,10 miles off Nambucca Heads onboard trawler,"Checking fish traps, fell into the water",Keith Davis,M,40,Tiny cuts & bruises on neck ,N,Night," ""gummy"" shark (Rhizoprionodon or Loxodon) 1.2 m [4']","G. P. Whiltley citing Sydney Morning Herald, 4/15/1961 & 4/17/1961",1961.04.14-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.14-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.14-Davis.pdf,1961.04.14,1961.04.14,2312,, +1961.04.09,09-Apr-61,1961,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,"Swimming, using bundles of sticks as raft",Francisco Zimila,M,38,"FATAL, extensive abdominal wounds, died 4 days later ",Y,11h00,Zambesi shark,"D. Davies, p.125; Star, 4/14/1961",1961.04.09-Zimila.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.09-Zimila.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.09-Zimila.pdf,1961.04.09,1961.04.09,2311,, +1961.04.08,08-Apr-61,1961,Sea Disaster,PERSIAN GULF,United Arab Emirates,Dubai,Cargo ship Dara sank after collision with another ship during a severe storm,,,,Some of the survivors said to have been bitten by sharks,Y,,,"V.M. Coppleson (1962), p.260",1961.04.08-DaraDisaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.08-DaraDisaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.08-DaraDisaster.pdf,1961.04.08,1961.04.08,2310,, +1961.04.03,03-Apr-61,1961,Unprovoked,AUSTRALIA,Victoria,Flinders Island,Spearfishing,Joe Prosch,M,24,"No injury, right sleeve of wetsuit ripped, weight on belt gashed",N,,"Grey nurse shark, 2,7 m [9'], 200-lb ","Sydney Morning Herald, 4/4/1961 ; Launceston Examiner; H.D. Baldridge, pp.133-134",1961.04.03-Prosch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.03-Prosch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.03-Prosch.pdf,1961.04.03,1961.04.03,2309,, +1961.04.00,Apr-61,1961,Provoked,AUSTRALIA,Western Australia,Rottnest Island,Spearfishing,Gerry Greaves,M,,Speared shark bit his arm & seat of pants of diving suit PROVOKED INCIDENT,N,,"Wobbegong shark, 1.4 m [4.6'] ","Perth Daily News, 4/19/1961",1961.04.00-Greaves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.00-Greaves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.00-Greaves.pdf,1961.04.00,1961.04.00,2308,, +1961.03.30,30-Mar-61,1961,Unprovoked,AUSTRALIA,South Australia,Glenelg Breakwater,Spearfishing,Clyde Buttery,M,24,"Shark took his entire catch, lacerated his knee and tore his wet suit as it brushed past him",N,,"Bronze whaler shark, 2.4 m [8'] Identified by Clyde Buttery","G.P. Whitley citing Sydney Morning Herald, 4/1/1961; V.M. Coppleson (1962), p.252 ",1961.03.30-Buttery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.30-Buttery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.30-Buttery.pdf,1961.03.30,1961.03.30,2307,, +1961.03.18,18-Mar-61,1961,Unprovoked,AUSTRALIA,Victoria,Lady Beach at Warrnambool,Swimming,Kenneth Smith,M,24,"Abdomen & arm bitten. Shark, holding him by the arm, leapt 4' to 5' above the surface",N,Late afternoon,3 m [10'] shark,"Sun Herald (Sydney) 3/19/1961; Sydney Morning Herald, 3/20/1961; V.M. Coppleson (1962), p.246",1961.03.18-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.18-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.18-Smith.pdf,1961.03.18,1961.03.18,2306,, +1961.03.14,14-Mar-61,1961,Provoked,AUSTRALIA,Western Australia,Shark Bay,Fishing from dinghy,Kath. O�Neill,F,,Hooked shark hauled on board bit her foot PROVOKED INCIDENT,N,,,"Sydney Daily Telegraph, no date; L. Schultz & M. Malin, p.548",1961.03.14-O'Neill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.14-O'Neill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.14-O'Neill.pdf,1961.03.14,1961.03.14,2305,, +1961.03.12,12-Mar-61,1961,Unprovoked,AUSTRALIA,South Australia,Aldinga Beach,Spearfishing,Brian Rodgers,M,21,Left leg bitten & left forearm lacerated,N,14h30,"White shark, 3.7 m [12'] ","V.M. Coppleson (1962), pp.182 & 252; H. Edwards, pp.61-63; H.D. Baldridge, p.56; J. West, ASAF",1961.03.12-Rodger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.12-Rodger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.12-Rodger.pdf,1961.03.12,1961.03.12,2304,, +1961.03.09,09-Mar-61,1961,Unprovoked,NORTH PACIFIC OCEAN,Wake Island (EnenKio),"Leeward side of island, directly in back of Mid-Pac barrel storage area",Free diving,James K. Stewart,M,33,Right elbow bitten,N,15h30,"Grey reef shark, 1.8 m [6'] grey reef shark, identified by Dr. L.P. L. Schultz based on photographs; identified as C. melanopterus by Stewart","J.K. Stewart; Albert Tester; V.M. Coppleson (1962), p.254; H.D. Baldridge, p.207",1961.03.09-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.09-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.09-Stewart.pdf,1961.03.09,1961.03.09,2303,, +1961.03.07,07-Mar-61,1961,Provoked,SOUTH AFRICA,KwaZulu-Natal,St. Lucia,Fishing,Johannes J. Rickert,M,44,Landed shark in boat bit his left leg PROVOKED INCIDENT,N,,"Zambesi shark, 4'9""","GSAF; D. Davies, pp.112-113",1961.03.07-Rickert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.07-Rickert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.07-Rickert.pdf,1961.03.07,1961.03.07,2302,, +1961.03.00,Mar-61,1961,Unprovoked,FIJI,"19S, 178?E","Wotua Beach, 70 miles from Suva",Floating on back,Albert Bailey,M,,Right forearm bitten,N,11h00,,A. Bailey,1961.03.00-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.00-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.00-Bailey.pdf,1961.03.00,1961.03.00,2301,, +1961.02.17.b,17-Feb-61,1961,Provoked,USA,Pennsylvania,"Fairmount Park Aquarium, Philadelphia",Cleaning a tank,Charles Peterson,M,30,Thumb lacerated by captive shark PROVOKED INCIDENT,N,,,"The Bee, 2/18/1961",1961.02.17.b-Peterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.17.b-Peterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.17.b-Peterson.pdf,1961.02.17.b,1961.02.17.b,2300,, +1961.02.17.a,17-Feb-61,1961,Unprovoked,AUSTRALIA,Victoria,Mount Martha Beach,Standing,Mrs. Reg Fox,F,,"Ankle bitten by small �gummy� shark, minor injury",N,18h00,"2' ""banjo shark""","Morning Peninsular Post (Victoria, Australia), 2/22/1961; V.M. Coppleson (1962), p.246",1961.02.17.a-Fox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.17.a-Fox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.17.a-Fox.pdf,1961.02.17.a,1961.02.17.a,2299,, +1961.02.16,16-Feb-61,1961,Unprovoked,JAMAICA,,,,British sailor from the F-107,M,,FATAL,Y,,,"E. C. Raney; V.M. Coppleson (1962), p.247 ",1961.02.16-BritishSailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.16-BritishSailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.16-BritishSailor.pdf,1961.02.16,1961.02.16,2298,, +1961.02.12,12-Feb-61,1961,Unprovoked,SOUTH AFRICA,Western Cape Province,Sea Point,"Spearfishing, shark grabbed his white t-shirt and towed him ",Carl Derrick Benzoin,M,27,Torso bruised & abraded ,N,Late afternoon,1.5 m [5'] shark,"C.D. Benzoin, M. Levine, GSAF; J. D'Aubrey, ORI",1961.02.12-Benzoin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.12-Benzoin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.12-Benzoin.pdf,1961.02.12,1961.02.12,2297,, +1961.02.01.b,01-Feb-61,1961,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Swimming,Geoffrey Zimmerman,M,14,"FATAL, multiple injuries to both legs, feet & left arm ",Y,14h50,"2.1 m [7'], 90-kg shark","D. Davies & J. D'Aubrey; D. Davies, pp.122-124; M. Levine, GSAF",1961.02.01.b-Zimmerman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.01.b-Zimmerman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.01.b-Zimmerman.pdf,1961.02.01.b,1961.02.01.b,2296,, +1961.02.01.a,01-Feb-61,1961,Unprovoked,AUSTRALIA,Western Australia,Carnac Island,Collecting crayfish,Len McWhinney,M,,No injury,N,,"Grey nurse shark, 2.7 m [9'] ","H.D. Baldridge, p.134",1961.02.01.a-McWhinney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.01.a-McWhinney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.01.a-McWhinney.pdf,1961.02.01.a,1961.02.01.a,2295,, +1961.02.00,Feb-61,1961,Invalid,USA,California,"Topanga Canyon Beach, Santa Monica Bay",,Steven Friedman,M,,Considered a doubtful incident,N,,Shovel-nosed guitarfish,"R. Collier, G.. Helfman",1961.02.00-Friedman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.00-Friedman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.00-Friedman.pdf,1961.02.00,1961.02.00,2294,, +1961.01.25,25-Jan-61,1961,Boat,SOUTH AFRICA,Western Cape Province,Frikkies Bay,Fishing for kob,"dinghy, occupants: Willem & Jan Groenwald",,,"No injury to occupants, shark took a gaffed fish they were bringing aboard & hit their boat",N,,4.6 m [15'] shark,"Cape Times, 1/27/1961; SAF Case #945",1961.01.25-Groenwald-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.25-Groenwald-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.25-Groenwald-boat.pdf,1961.01.25,1961.01.25,2293,, +1961.01.22,22-Jan-61,1961,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Amanzimtoti,Swimming,Michael Murphy,M,15,Left thigh bitten ,N,14h20,White shark,"M. Murphy, M. Levine, GSAF; A.C. Copley; G. D. Campbell; D. Davies, pp.111-112",1961.01.22-Murphy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.22-Murphy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.22-Murphy.pdf,1961.01.22,1961.01.22,2292,, +1961.01.15,15-Jan-61,1961,Provoked,AUSTRALIA,New South Wales,Cook Island,Collecting aquarium specimens,Robert Webb,M,27,Right calf bitten by lassoed shark on deck of surf ski PROVOKED INCIDENT,N,Morning,"Wobbegong shark, 1.5 m [5'] ","Mackay Daily Mercury (Queensland), 1/16/196; H.D. Baldridge, p.134",1961.01.15-Webb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.15-Webb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.15-Webb.pdf,1961.01.15,1961.01.15,2291,, +1961.01.06.c,06-Jan-61,1961,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Winkelspruit,Standing,Michael Land,M,13,"Right foot, leg and hand bitten",N,19h35,"White shark, based on bite pattern","GSAF; D. Davies & J. D'Aubrey; D. Davies, pp.109-111",1961.01.06.c-Land.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.06.c-Land.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.06.c-Land.pdf,1961.01.06.c,1961.01.06.c,2290,, +1961.01.06.b,06-Jan-61,1961,Sea Disaster,ATLANTIC OCEAN,9.35N 79.35W,"East of La Grande Island, North of Panama Canal",Pacific Seafarer of US Navy,,,,"3 were lost, 3 survived",Y,,,"C.R. Wolf, M.D.",1961.01.06.b-PacificSeafarer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.06.b-PacificSeafarer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.06.b-PacificSeafarer.pdf,1961.01.06.b,1961.01.06.b,2289,, +1961.01.06.a,06-Jan-61,1961,Provoked,AUSTRALIA,Northern Territory,"Stokes Hill Wharf, Darwin",Fishing,Arthur Hopkins,M,,Finger bitten by hooked shark PROVOKED INCIDENT,N,,"Hammerhead shark, 1.8 m [6'] ","Darwin Northern Territory News, 1/10/1961",1961.01.06.a-Hopkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.06.a-Hopkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.06.a-Hopkins.pdf,1961.01.06.a,1961.01.06.a,2288,, +1961.01.05,05-Jan-61,1961,Unprovoked,MOZAMBIQUE,Limpopo River,190 km to 240 km from the sea,Swimming,African child (male),M,,Leg bitten ,N,16h00,Six Zambesi sharks seen to 1.5 m [5'] in length,"D. Davies, p.124-125",1961.01.05-AfricanChild.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.05-AfricanChild.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.05-AfricanChild.pdf,1961.01.05,1961.01.05,2287,, +1961.01.03.b,03-Jan-61,1961,Unprovoked,SOUTH AFRICA,Western Cape Province,Strandfontein,Standing,Peter Hendricks,M,25 or 28,"Lower left leg bitten, abrasions on back of right leg",N,15h30,,"Cape Times, 1/4/1961, M. Levine, GSAF",1961.01.03.b-Hendricks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.03.b-Hendricks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.03.b-Hendricks.pdf,1961.01.03.b,1961.01.03.b,2286,, +1961.01.03.a,03-Jan-61,1961,Invalid,SOUTH AFRICA,KwaZulu-Natal,Palm Beach,,,,,Human remains (patella & remnants of black swim suit) found in shark,Y,,"Raggedtooth shark, 147-kg [324-lb] ","D. Davies; M. Levine, GSAF",1961.01.03.a-Remains-in-raggie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.03.a-Remains-in-raggie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.03.a-Remains-in-raggie.pdf,1961.01.03.a,1961.01.03.a,2285,, +1961.01.02.R,Reported 02-Jan-1961,1961,Boat,AUSTRALIA,Tasmania,Off Tasman Island,Ocean racing,yacht Southerly Buster,,,"No injury to occupants, shark struck boat",N,,,C. Black. GSAF,1961.01.02.R-SoutherlyBuster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.02.R-SoutherlyBuster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.02.R-SoutherlyBuster.pdf,1961.01.02.R,1961.01.02.R,2284,, +1961.00.00.e,1961,1961,Boat,AUSTRALIA,New South Wales,South coast,Fishing for mackerel,boat,,,"No injury to occupant, shark took hooked fish then bit stern of boat",N,,,"Brisbane Courier Mail, 12/30/1961 ",1961.00.00.e-Mackerel-fishing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.e-Mackerel-fishing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.e-Mackerel-fishing.pdf,1961.00.00.e,1961.00.00.e,2283,, +1961.01.01,01-Jan-61,1961,Unprovoked,COLUMBIA,Roncador Bank,"Roncador Bank, 135 nm north of San Andres ",Taking boat from California to Florida when it ran aground & he was swimming back to boat,Joe Chaney ,M,,Leg bitten,N,,1.8 m [6'] shark,V.M. Coppleson (1962) p.246,1961.01.01-Chaney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.01-Chaney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.01-Chaney.pdf,1961.01.01,1961.01.01,2282,, +1961.00.00.d,1961,1961,Unprovoked,NEW CALEDONIA,,,Spearfishing,,,,Arm injured,N,,,SAF Case #1109,1961.00.00.d-NV-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.d-NV-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.d-NV-NewCaledonia.pdf,1961.00.00.d,1961.00.00.d,2281,, +1961.00.00.b,1961,1961,Unprovoked,SENEGAL,Cap Vert Peninsula,Thiaroye Guedi,Free diving for molluscs,A.N.,M,20,FATAL,Y,,> 3 m shark,S.Trape,1961.00.00.b-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.b-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.b-Senegal.pdf,1961.00.00.b,1961.00.00.b,2280,, +1961.00.00.a,1961,1961,Sea Disaster,USA,Hawaii,Maui,Light aircraft ditched at sea,5 people swimming for shore (pilot & 4 passengers),,,3 of the 4 passengers killed by sharks,Y,,,"F. Dennis, p.20",1961.00.00.a-aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.a-aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.a-aircraft.pdf,1961.00.00.a,1961.00.00.a,2279,, +1960.12.27.b,27-Dec-60,1960,Unprovoked,USA,Hawaii,"Maile Point, O'ahu",Swept out to sea while net fishing,Harold Riley,M,,"FATAL Shark seen attacking Riley, body recovered off Nanakuli",Y,,,"L. Taylor (1993), pp.100-101",1960.12.27.b-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.27.b-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.27.b-Riley.pdf,1960.12.27.b,1960.12.27.b,2278,, +1960.12.27.a.,27-Dec-60,1960,Unprovoked,AUSTRALIA,New South Wales,"Bondi Beach, Sydney",,Mrs. Despo Snow-Christensen ,F,27,"Shark brushed past, minor injuries if any", N,,3 m [10'] shark,"Baltimore Sun, 12/28/1960; Sydney Morning Herald 12/28/1960; V.M. Coppleson (1962), p.246; J. Green, p.35",1960.12.27.a -Despo Snow-Christensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.27.a -Despo Snow-Christensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.27.a -Despo Snow-Christensen.pdf,1960.12.27.a.,1960.12.27.a.,2277,, +1960.12.24,24-Dec-60,1960,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Margate,Swimming,"Serame ""Petrus"" Sithole",M,25,"FATAL, legs severed ",Y,16h30,"White shark, 3 m [10'], tooth fragment from wounds identified as that of a white shark","D. Davies & J. D'Aubrey; D. Davies, pp. 108-109; T. Wallett; M. Levine, GSAF",1960.12.24-Sithole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.24-Sithole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.24-Sithole.pdf,1960.12.24,1960.12.24,2276,, +1960.12.20,20-Dec-60,1960,Unprovoked,AUSTRALIA,Queensland,"College�s Crossing, 54 miles above mouth of the Brisbane River","Fishing, when line became snagged on rock & he dived into water to free it ",Lester McDougall,M,33,Left thigh lacerated, N,09h00,"Grey nurse shark, 1m ","Sydney Morning Herald, 12/21/1960; V.M. Coppleson (1962), p.246 ",1960.12.20-McDougall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.20-McDougall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.20-McDougall.pdf,1960.12.20,1960.12.20,2275,, +1960.12.01,01-Dec-60,1960,Unprovoked,AUSTRALIA,Queensland,"Colledge's Crossing, Brisbane River",Fishing,male,M,,Bitten & survived,N,,"Bull shark, 1m ","Sunday Mail, 3/27/1994, p.107",1960.12.01-BrisbaneRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.01-BrisbaneRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.01-BrisbaneRiver.pdf,1960.12.01,1960.12.01,2274,, +1960.11.27,27-Nov-60,1960,Unprovoked,AUSTRALIA,Queensland,"Black�s Beach, 9 miles north of Mackay",Swimming,Harry Bicknell,M,41,Right shoulder lacerated, N,14h45,3' shark,"Daily Mercury (Mackay), 11/28/1960 ",1960.11.27-Bicknell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.27-Bicknell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.27-Bicknell.pdf,1960.11.27,1960.11.27,2273,, +1960.11.22,22-Nov-60,1960,Invalid,USA,Florida,"Hutchinson Island Beach, Martin County","Fell overboard, prop slashed arm",Sarah Peggy Sargent,F,51,"FATAL, probable drowning & post mortem scavenging",Y,,,"News-Tribune (Fort Pierce, FL], 11/27/1960; SAF Case #803",1960.11.22-Sargent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.22-Sargent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.22-Sargent.pdf,1960.11.22,1960.11.22,2272,, +1960.11.11,11-Nov-60,1960,Provoked,AUSTRALIA,Queensland,"Scott�s Point, Redcliffe Peninsula",Chasing shark out of bathing area while riding on a surf-ski,Ken O�Connell,M,17,"Shark knocked him off surf-ski, he inhaled water & had to be resuscitated PROVOKED INCIDENT", N,15h00,,"Courier-Mail (Queensland), 11/12/1960; L. Schultz & M. Malin, p.547 ",1960.11.11-O'Connell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.11-O'Connell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.11-O'Connell.pdf,1960.11.11,1960.11.11,2271,, +1960.11.06,06-Nov-60,1960,Unprovoked,AUSTRALIA,Western Australia,Hamelin Bay,"Spearfishing, speared fish retreated to cave where shark grabbed his arm",Don Morrissey,M,24,Scratches on right upper arm, N,,"Wobbegong shark, 1.8 m [6'] ","The West Australian (Perth), 11/7/1960; V.M. Coppleson (1962), p.252 ",1960.11.06-Morrissey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.06-Morrissey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.06-Morrissey.pdf,1960.11.06,1960.11.06,2270,, +1960.11.00.d,Nov-60,1960,Boat,SOUTH AFRICA,Western Cape Province,"5 km from Gordon�s Bay, False Bay",Hand lining for shad,"7.5 m boat, occupants: 8 men",,,"No injury to occupants, shark bit 45 cm hole in hull",N,,White shark (tooth fragments recovered from hull of boat),"D. Davies; T. Wallett, p.27-30",1960.11.00.d-GordonsBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.00.d-GordonsBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.00.d-GordonsBay.pdf,1960.11.00.d,1960.11.00.d,2269,, +1960.11.00.c,Nov-60,1960,Provoked,NEW GUINEA,Western District,Toro Passage,,Fisheries trainee,M,,Left wrist bitten by netted shark placed in bottom of dinghy PROVOKED INCIDENT, N,,"1.4 m [4'6""] blacktip shark","A.M. Rapson, p.147",1960.11.00.c-ToroPassage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.00.c-ToroPassage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.00.c-ToroPassage.pdf,1960.11.00.c,1960.11.00.c,2268,, +1960.11.00.b,Nov-60,1960,Unprovoked,PAPUA NEW GUINEA,Central Province,Abau Subdistrict,Fishing,male,M,,"FATAL, severely bitten genitals & thighs ",Y,,,"A. Bleakley; A.M. Rapson, p.150 ",1960.11.00.b-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.00.b-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.00.b-Fisherman.pdf,1960.11.00.b,1960.11.00.b,2267,, +1960.10.25,25-Oct-60,1960,Sea Disaster,USA,California,"Off Point Mugu, Ventura County",Ejected from F3H-2 aircraft ,"Lt Cmdr. Lawrence Ernest Scheer USN, pilot",M,36,"No injury, shark hit his foot & circled",N,14h00,,"US Naval Aviation Safety Center; L. Schultz & M. Malin, p.562",1960.10.25-Scheer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.25-Scheer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.25-Scheer.pdf,1960.10.25,1960.10.25,2266,, +1960.10.24,24-Oct-60,1960,Boat,SOUTH AFRICA,Western Cape Province,"Jacobs Bay Reef, Saldanha Bay",Fishing for rock lobsters,"boat, occupants: 2 fishermen",,,"No injury to occupants, shark rammed & bit boat",N,,"White shark, 3.7 m to 4.6 m [12' to 15'] "," D. Davies, p.185; Natal Daily News, 10/25/1960; Natal Witness, 10/26/1960",1960.10.24-JacobsBayfishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.24-JacobsBayfishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.24-JacobsBayfishermen.pdf,1960.10.24,1960.10.24,2265,, +1960.10.02,01-Oct-60,1960,Invalid,AUSTRALIA,New South Wales,North Head,Fishing,B. Hooper ,M,24,"Swept off rocks & presumed to have drowned, shark seen in area", N,,Shark involvement not confirmed,"Letter from L. Schultz to G. P. Whitley, dated 2/24/1961",1960.10.02-NV-Hooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.02-NV-Hooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.02-NV-Hooper.pdf,1960.10.02,1960.10.02,2264,, +1960.10.00.e,Oct-60,1960,Unprovoked,PAPUA NEW GUINEA,New Britain,"East Nakanai, Talasea",Collecting shells,,M,26,Injuries to leg & foot, N,,,"A.M. Rapson, p.149",1960.10.00.e-Talasea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.e-Talasea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.e-Talasea.pdf,1960.10.00.e,1960.10.00.e,2263,, +1960.10.00.d,Oct-60,1960,Sea Disaster,RED SEA / INDIAN OCEAN,Enroute from Suez to Aden (Yemen),,Cargo ship El Gamil entroute Suez to Yemen (Aden) when her cargo shifted and she sank. 19 Egyption sailors jumped into the water and swam for several hours before being bitten by sharks,,M,,"Sharks attacked sailors in the water, several survivors picked up",Y,,,"V.M. Coppleson (1962), p.260",1960.10.00.d-El-Gamil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.d-El-Gamil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.d-El-Gamil.pdf,1960.10.00.d,1960.10.00.d,2262,, +1960.10.00.c,Oct-60,1960,Invalid,USA,Florida,Haulover Inlet,Diving,John Taylor Wilson,M,,"Apparently went missing while diving. Helicopter searching for him spotted school of sharks attacking a ""white object"" 15' below the surface",Y,,,"Miami Herald, 10/18/1960",1960.10.00.c-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.c-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.c-Wilson.pdf,1960.10.00.c,1960.10.00.c,2261,, +1960.10.00.b,Oct-60,1960,Boat,SOUTH AFRICA,Western Cape Province,False Bay,Fishing,boat,,,"Shark rammed boat, breaching its hull",N,,"White shark, 18 mm tooth fragment recovered from the hull",T. Wallett,1960.10.00.b-Gordon'sBayBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.b-Gordon'sBayBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.b-Gordon'sBayBoat.pdf,1960.10.00.b,1960.10.00.b,2260,, +1960.10.00.a,Oct-60,1960,Invalid,JOHNSTON ISLAND,,,"Free diving / photography, kneeling on sand",Raymond F. McAllister,M,37,"No injury, shark made threat display",N,12h00 to 14h00,,R. McAllister; SAF Case #958,1960.10.00.a-McAllister.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.a-McAllister.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.a-McAllister.pdf,1960.10.00.a,1960.10.00.a,2259,, +1960.09.24,24-Sep-60,1960,Provoked,USA,South Carolina,"Atlantic Beach, Horry County",Fishing inside net,Theldon Gore,M,,"Multiple superficial lacerations of leg, arm & hand PROVOKED INCIDENT",N,,"2.4 m [8'], 600-lb shark","News (Lancaster, SC), 10/3/1960; H.D. Baldridge, p.142",1960.09.24-Gore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.24-Gore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.24-Gore.pdf,1960.09.24,1960.09.24,2258,, +1960.09.22,22-Sep-60,1960,Sea Disaster,PACIFIC OCEAN,180 miles southeast of Okinawa,,R5D aircraft went down with 29 on board,male,M,,One body sighted but not recovered due to shark activity,N,,,"US Naval Aviation Safety Center; L. Schultz & M. Malin, p.562",1960.09.22-R5Daircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.22-R5Daircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.22-R5Daircraft.pdf,1960.09.22,1960.09.22,2257,, +1960.09.18,18-Sep-60,1960,Boat,AUSTRALIA,Western Australia,Frenchman Bay,,12' dinghy,,,"No injury to occupants, toothmarks on bottom & side of dinghy",N,,3.7 m [12'] shark,P.W. Gilbert,1960.09.18-Dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.18-Dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.18-Dinghy.pdf,1960.09.18,1960.09.18,2256,, +1960.09.02,02-Sep-60,1960,Invalid,MARSHALL ISLANDS,Eniwetok Atoll,Lagoon along Sand Island,Free diving / Spearfishing,E.S. Hobson ,M,,"No injury, shark made a threat display",N,12h00,"Grey reef shark, Identified as C. menisorrah, by E.S. Hobson, F. Mautin & E.S. Reese (1961)",E.S. Hobson; SAF Case #955,1960.09.02-E.S.Hobson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.02-E.S.Hobson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.02-E.S.Hobson.pdf,1960.09.02,1960.09.02,2255,, +1960.09.01,01-Sep-60,1960,Invalid,MARSHALL ISLANDS,Eniwetok Atoll,Parry Island,Free diving / Spearfishing,F. Mautin,M,,"No injury, shark made a threat display",N,12h00,"Grey reef shark, Identified by E.S. Hobson, F. Mautin & E.S. Reese (1961)",E.S. Hobson; SAF Case #954,1960.09.01-Mautin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.01-Mautin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.01-Mautin.pdf,1960.09.01,1960.09.01,2254,, +1960.08.30,30-Aug-60,1960,Unprovoked,USA,New Jersey,"Ocean City, Cape May County",Swimming 3 miles offshore,Richard Chung,M,25,Right leg severely lacerated,N,17h15,,"R. Chung; Dr. Godfrey; V.M. Coppleson (1962), p.249; R. Skocik, p.172",1960.08.30-Chung.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.30-Chung.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.30-Chung.pdf,1960.08.30,1960.08.30,2253,, +1960.08.29,29-Aug-60,1960,Sea Disaster,SENEGAL,Cap-Vert Peninsula,off Dakar,Air disaster: crash of Air France Super Constellation ,,,,All 63 on board perished when the aircraft hit the water. Sharks hampered retrieval of bodies,Y,,,"The Daily Telegram (Colombus, 8/30/1960, p.3",1960.08.29-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.29-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.29-Senegal.pdf,1960.08.29,1960.08.29,2252,, +1960.08.25,25-Aug-60,1960,Invalid,USA,Texas,30 miles east of Corpus Christi,Aircraft crashed into sea,Naval aviator,M,,"Partial human remains spotted by helicopter, shark involvement, if any, may have been post-mortum",Y,,3 hammerhead sharks nearby,"US Naval Aviation Safety Center; L. Schultz & M. Malin, p.558; SAF Case #1013",1960.08.25-NavalAviator.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.25-NavalAviator.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.25-NavalAviator.pdf,1960.08.25,1960.08.25,2251,, +1960.08.24,24-Aug-60,1960,Unprovoked,USA,Connecticut,"Off Eames Monument, Bridgeport, Fairfield County",Free diving,Clyde Trudeau,M,38,Superficial laceration of left arm,N,13h35,,M. McMahon,1960.08.24-Trudeau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.24-Trudeau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.24-Trudeau.pdf,1960.08.24,1960.08.24,2250,, +1960.08.22.R.,Reported 22-Aug-1960,1960,Unprovoked,PAPUA NEW GUINEA,Milne Bay Province,,Free-diving,"""a native""",M,,Lost left arm,N,,,"The Age, 8/22/1960",1960.08.22.R-Milne-PNG.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.22.R-Milne-PNG.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.22.R-Milne-PNG.pdf,1960.08.22.R.,1960.08.22.R.,2249,, +1960.08.22,22-Aug-60,1960,Unprovoked,USA,New Jersey,"Seaside Park, Ocean County",,Thomas McDonald,M,14,Knee ripped to bone,N,,,"T. Helm, p.250; R. Skocik, p.172",1960.08.22.a-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.22.a-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.22.a-McDonald.pdf,1960.08.22,1960.08.22,2248,, +1960.08.21,21-Aug-60,1960,Unprovoked,USA,New Jersey,"Sea Girt, Monmouth County",Standing in knee-deep water,John Brodeur,M,24,"Lower right leg bitten, surgically amputated 10 days later",N,16h00,,"C. G. Samaha, M.D., J. Filoramo; H. Axelrod; R. Skocik, p.172;",1960.08.21-Brodeur.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.21-Brodeur.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.21-Brodeur.pdf,1960.08.21,1960.08.21,2247,, +1960.08.14,14-Aug-60,1960,Invalid,MOZAMBIQUE,Delagoa Bay,Bella Vista,boat with 46 people on board capsized,,,,1 survivor,N,,Shark involvement not confirmed,"L. Schultz & M. Malin, p.563; SAF Case #760",1960.08.14-NV-Mozambique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.14-NV-Mozambique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.14-NV-Mozambique.pdf,1960.08.14,1960.08.14,2246,, +1960.08.10,10-Aug-60,1960,Provoked,USA,Florida,Key Largo Sound,Holding shark on leader & dangling it above the water,Richard Henn,M,15,Right hand bitten by hooked shark PROVOKED INCIDENT,N,20h00,"Lemon shark, 1164 mm, immature male, identified by V.G. Springer",D. Mayo; V. Springer,1960.08.10-Henn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.10-Henn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.10-Henn.pdf,1960.08.10,1960.08.10,2245,, +1960.08.04.b,04-Aug-60,1960,Provoked,ENGLAND,In the English Channel ,Off the south Devon coast,Helping angler land a shark,William Capel,M,25,Arm lacerated elbow to wrist PROVOKED INCIDENT,N,,80-lb hooked shark,"Newcastle Morning Herald (NSW, Australia), 8/6/1960; Japan Times, 8/6/1960; H.D. Baldridge, p.15",1960.08.04.b-Capel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.04.b-Capel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.04.b-Capel.pdf,1960.08.04.b,1960.08.04.b,2244,, +1960.08.04.a,04-Aug-60,1960,Unprovoked,USA,Delaware,"Mispillion Light, Delaware Bay","Fishing, Struck by another shark when removing shark from line",Russell Saylor,M,46,Hand lacerated,N,,2.4 m [8'] shark,"Index (Dover, Delaware), 8/12/1960; V.M. Coppleson (1962), p.249;",1960.08.04.a-Saylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.04.a-Saylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.04.a-Saylor.pdf,1960.08.04.a,1960.08.04.a,2243,, +1960.08.00,Aug-60,1960,Unprovoked,USA,South Carolina,Parris Island,Swimming from camp,Young Marine recruit,M,,FATAL,Y,,,"V.M. Coppleson (1962), p.249",1960.08.00-marine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.00-marine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.00-marine.pdf,1960.08.00,1960.08.00,2242,, +1960.07.27,27-Jul-60,1960,Unprovoked,PAPUA NEW GUINEA,Milne Bay Province,"Taupota, Samarai ",Spearfishing,John Klaso,M,25,"Arm severed, torso severely lacerated",N,P.M.,,"L.C. Yelland; I.S. Reid; A.M. Rapson, p.150",1960.07.27-Klaso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.27-Klaso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.27-Klaso.pdf,1960.07.27,1960.07.27,2241,, +1960.07.05,05-Jul-60,1960,Unprovoked,USA,Mississippi,Mississippi City,Pulling raft out to ride to shore,"Henry Hanson, Jr.",M,17,Leg bitten,N,,,"V.M. Coppleson (1962), p.249",1960.07.05-Hanson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.05-Hanson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.05-Hanson.pdf,1960.07.05,1960.07.05,2240,, +1960.07.03,03-Jul-60,1960,Provoked,USA,Virginia,Hog Island,"Fishing, tossing netted shark onboard",Elsworth Smith,M,41,Right arm bitten PROVOKED INCIDENT,N,12h00,"""sand shark""","Times (Salisbury, Maryland), 7/7/1960 ",1960.07.03-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.03-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.03-Smith.pdf,1960.07.03,1960.07.03,2239,, +1960.07.02.a,02-Jul-60,1960,Unprovoked,PAPUA NEW GUINEA,Madang,"Bimat, Bogia",Fishing,an Aid Post orderly,M,,Right buttock slashed,N,,,"A.M. Rapson, p.150",1960.07.02-Orderly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.02-Orderly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.02-Orderly.pdf,1960.07.02.a,1960.07.02.a,2238,, +1960.06.29,29-Jun-60,1960,Provoked,USA,South Carolina,"Little River Beach, Horry County",Surf fishing,Monte Gray,M,,"Lacerations to calf, wrist & thumb by hooked shark. PROVOKED INCIDENT",N,14h00,7' shark,"C. Creswell, GSAF; Florence Morning News 6/30/1960",1960.06.29-Gray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.29-Gray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.29-Gray.pdf,1960.06.29,1960.06.29,2237,, +1960.06.27.b,27-Jun-60,1960,Provoked,NEW ZEALAND,Cook Strait,Tory Channel,Shark fishing,boat (a whale chaser),,,Harpooned shark bit boat PROVOKED INCIDENT,N,,"White shark, 15'2"" ","The Age, 6/28/1960; SAF Case #772",1960.06.27-b-Harpooned-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.27-b-Harpooned-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.27-b-Harpooned-shark.pdf,1960.06.27.b,1960.06.27.b,2236,, +1960.06.27.a,27-Jun-60,1960,Provoked,NORTH SEA,"Unknown, treated at Wick, SCOTLAND","On board East German fishing trawler, I Mai",Fishing,Hans Yoachim Schapper,M,18,Right arm bitten by shark taken onboard in net PROVOKED INCIDENT,N,,"""A small shark""","Edinburg Evening News, 7/6/1960; Dundee Evening Telegraph, 7/6/1960; H.D. Baldridge, p.14; Clark, p.209",1960.06.27.a-Schapper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.27.a-Schapper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.27.a-Schapper.pdf,1960.06.27.a,1960.06.27.a,2235,, +1960.06.24,24-Jun-60,1960,Unprovoked,USA,Florida,"2 miles east of Dania Beach, Broward County",Scuba diving,William F. Fey,M,39,"No injury, shark harrassed diver & attempted to bite his swimfins",N,11h00,"Mako shark, 1.8 m to 2.1 m [6' to 7'] with hook & wire leader caught in mouth",W.F. Fey,1960.06.24-Fey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.24-Fey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.24-Fey.pdf,1960.06.24,1960.06.24,2234,, +1960.06.07,07-Jun-60,1960,Invalid,USA,California,"10 miles off Santa Barbara, Santa Barbara County","Testing classified underwater electronic gear for Raytheon Corporation, vessel torn apart by explosion","Paul Timothy Lovette, Dr. Neal Beardsley, James C. Russell, Harold H. Mackie, Dale Howard & Diego J. Terres on 42' Navy craft, Marie",M,"37, 67, 35, 27, ? & 27","Legs & arms bitten, coroner unable to determine if injuries occurred before death.",N,,,"L.A. Times, 6/10/1960; L. Schultz & M. Malin, p.560; SAF Case #724",1960.06.07-Raytheon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.07-Raytheon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.07-Raytheon.pdf,1960.06.07,1960.06.07,2233,, +1960.06.05,05-Jun-60,1960,Unprovoked,PHILIPPINES,Corregidor Island,,"Diving for shells, saw shark circling wife near the surface, intercepted shark & it pulled him beneath the water",Leonardo Mendoza,M,58,"FATAL, body not recovered",Y,Morning,,"Manila Daily Bulletin 6/6/1960; V.M. Coppleson (1962), p.254 ",1960.06.05-Mendoza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.05-Mendoza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.05-Mendoza.pdf,1960.06.05,1960.06.05,2232,, +1960.06.04,04-Jun-60,1960,Unprovoked,USA,Georgia,"North picnic area, Jekyll Island, Glynn County",Swimming,"John William Jones, an Ensign in US Navy",M,24,Lower left leg & foot bitten,N,15h45,,"W. L. Jones, M.D.; SAF Cases # 897 & 1476",1960.06.04-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.04-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.04-Jones.pdf,1960.06.04,1960.06.04,2231,, +1960.05.29,29-May-60,1960,Unprovoked,PANAMA,San Blas Islands,Off Diable Island,"Spearfishing, free diving, possibly ascended into path of cruising shark",Eddie Dawkins,M,27,Face lacerated,N,08h30,,"E. Dawkins, M.D.",1960.05.29-Dawkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.29-Dawkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.29-Dawkins.pdf,1960.05.29,1960.05.29,2230,, +1960.05.24,24-May-60,1960,Unprovoked,BERMUDA,Paget,Elbow Beach / Coral Beach,Free diving but treading water at surface,Louis Goiran,M,25,Foot bitten,N,15h00,"Dusky shark, 2.7 m [9'] dusky shark C. obscurus identified by S. Springer on tooth recovered","L.Goiran; S. Waterman; Royal Gazette (Hamilton, Bermuda), 5/25/1960; V.M. Coppleson (1962), p.246; Randall in Sharks & Survival, p.354",1960.05.24-Goiran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.24-Goiran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.24-Goiran.pdf,1960.05.24,1960.05.24,2229,, +1960.05.19,19-May-60,1960,Unprovoked,USA,California,"Aptos, Santa Cruz County",Swimming ,Suzanne Marie Theriot,F,16,"Left leg bitten, surgically amputated below the knee",N,13h00,"White shark, 4 m to 5 m [13' to 16.5'] ","D. Miller & R. Collier; R. Collier, pp.31-32; V.M. Coppleson (1962), p.249; H.D. Baldridge, p.71 ",1960.05.19-Theriot_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.19-Theriot_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.19-Theriot_Collier.pdf,1960.05.19,1960.05.19,2228,, +1960.05.16,16-May-60,1960,Provoked,USA,Florida,"Lignum Vitae Channel, Florida Keys, Monroe County",,"16' skiff, occupant: W.A. Starck, II",,,"No injury, harpooned shark bit hull, leaving tooth fragments. PROVOKED INCIDENT",N,,"Lemon shark, 1.8 m [6'] male, N. breviostris, identified by W.A. Stark II, later the same day a 6'8"" pregnant female lemon shark bit the bow of the boat","Randall in Sharks and Survival, p.351 Note: Stark's boat also rammed by shark a lemon shark several years earlier",1960.05.16-Starck-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.16-Starck-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.16-Starck-boat.pdf,1960.05.16,1960.05.16,2227,, +1960.05.01,01-May-60,1960,Unprovoked,PAPUA NEW GUINEA,Madang,Taludig,,Anonymous,,,FATAL,Y,,,"A.M. Rapson, p.150",1960.05.01-Taludig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.01-Taludig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.01-Taludig.pdf,1960.05.01,1960.05.01,2226,, +1960.04.30,30-Apr-60,1960,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Amanzimtoti,Treading water,Mike Hely,M,16,Multiple major injuries,N,15h35,"White shark, 2.1 m [7'] based on tooth pattern","M. Hely, E. Kerns, M. Levine, GSAF; G.D. Campbell; D. Davies, pp.102-108; Tim Wallett",1960.04.30-Hely.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.30-Hely.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.30-Hely.pdf,1960.04.30,1960.04.30,2225,, +1960.04.24,24-Apr-60,1960,Unprovoked,USA,California,"Tomales Point, Marin County",Skindiving for abalone (but at surface),Frank I. Gilbert,M,48,Foot & swim fin bitten ,N,14h00,"White shark, 4.9 m [16'] ","F.I. Gilbert; Follett, p. 192-198; D. Miller & R. Collier; R. Collier, pp.30-31; V.M. Coppleson (1962), p.255; H.D. Baldridge, p.71",1960.04.24-Gilbert_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.24-Gilbert_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.24-Gilbert_Collier.pdf,1960.04.24,1960.04.24,2224,, +1960.04.22,22-Apr-60,1960,Provoked,AUSTRALIA,Western Australia,Rottnest Island,"Fishing, hauling in a set line",Ted Nelson onboard fishing boat Wayfarer,M,,4 fingers of left hand were lacerated by shark he had shot in the head PROVOKED INCIDENT,N,,"Bronze whaler shark, 3 m [10'], 200-lb","L. Schultz & M. Malin, p.546",1960.04.22-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.22-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.22-Nelson.pdf,1960.04.22,1960.04.22,2223,, +1960.04.20.R,Reported 20-Apr-1960,1960,Provoked,SOUTH AFRICA,Eastern Cape Province,Port Alfred,Fishing,P. Wagener,M,,Gaffed shark bit his ankle PROVOKED INCIDENT,N,,"Raggedtooth shark, 100-lb ","Eastern Province Herald, 4/20/1960",1960.04.20.R-Wagener.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.20.R-Wagener.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.20.R-Wagener.pdf,1960.04.20.R,1960.04.20.R,2222,, +1960.04.14,14-Apr-60,1960,Invalid,BERMUDA,"33N, 68W",Royal Canadian Navy CS2F-1 aircraft ditched in the sea 180 nautical miles WNW of Bermuda at 01h30,Floating on a raft,"Crew of aircraft: McGreevy, Beakley, Rosenthal, Ryan & Hodge",M,"21, 34,24 & 35","No injury, shark bumped raft",N,09h00 - 09h30,Five 1.8 m [6'] sharks,"G.S. Beakley, RCN; L. Schultz & M. Malin, p.557; SAF Case #886",1960.04.14-Beakley-recheck text-March.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.14-Beakley-recheck text-March.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.14-Beakley-recheck text-March.pdf,1960.04.14,1960.04.14,2221,, +1960.04.12,12-Apr-60,1960,Unprovoked,AUSTRALIA,New South Wales,"Horseshoe Bay, near Kempsey",Surfing,Ivan Chandler,M,17,Right arm & side bruised,N,Late afternoon,"White shark, 3.7 m [12'] ","Macleay Argus (NSW), 4/14/1960; V.M. Coppleson (1962), p.245",1960.04.12-Chandler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.12-Chandler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.12-Chandler.pdf,1960.04.12,1960.04.12,2220,, +1960.04.10,10-Apr-60,1960,Provoked,AUSTRALIA,Western Australia,Off Rottnest Island,"Spearfishing, shot a sandtiger shark. Cord to spear tangled round his legs & a wave washed him onto a reef.",Mick Coleman,M,,"Bruises & minor injuries from reef, not the shark PROVOKED INCIDENT",N,,"Sandtiger shark, 2.1 m [7'] ","V.M. Coppleson (1962), p.252",1960.04.10-Coleman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.10-Coleman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.10-Coleman.pdf,1960.04.10,1960.04.10,2219,, +1960.04.03.b,03-Apr-60,1960,Unprovoked,AUSTRALIA,Victoria,"Canadian Bay near Mount Eliza, 30 miles from Melbourne",Spearfishing,William Black,M,,Minor cuts & bruises on face & neck,N,,1.5 m [5'] shark,"Sydney Morning Herald, 4/4/1960; H.D. Baldridge,p.133",1960.04.03.b-Black.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.03.b-Black.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.03.b-Black.pdf,1960.04.03.b,1960.04.03.b,2218,, +1960.04.03.a,03-Apr-60,1960,Unprovoked,AUSTRALIA,New South Wales,Off Broughton Island near Port Stephens,"Speared a grouper, saw shark but it came for him instead of the fish so he fired spear into shark�s mouth. Then shark took grouper but unable to swallow because of the spear in its mouth.",Kenneth Morris,M,,Minor injuries to hand,N,12h00,"Bronze whaler shark, 3.7 m [12'] identified by G.P. Whitley based on description","G. P. Whitley; V.M. Coppleson (1962), p.252",1960.04.03.a-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.03.a-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.03.a-Morris.pdf,1960.04.03.a,1960.04.03.a,2217,, +1960.04.01,01-Apr-60,1960,Provoked,AUSTRALIA,South Australia,Hog Bay,Shark fishing,"launch, occupant Clive Whitrow, Dick Kuhne & Jim Pergola",,,Hooked shark bit stern PROVOKED INCIDENT,N,,White shark,"The News (Adelaide), 4/1/1960",1960.04.01-WhitrowLaunch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.01-WhitrowLaunch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.01-WhitrowLaunch.pdf,1960.04.01,1960.04.01,2216,, +1960.04.00.c,Apr-60,1960,Unprovoked,FIJI,Vanua Levu,Off the Bua coast,Fishing in shoulder-deep water,Fijian woman,F,,"FATAL, legs bitten ",Y,,,"Wellington Evening Post, 4/29/1960",1960.04.00.c-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.00.c-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.00.c-woman.pdf,1960.04.00.c,1960.04.00.c,2215,, +1960.04.00.b,Apr-60,1960,Provoked,PHILIPPINES,Luzon Island,Bataan,"Fishing, hooked shark towed boat out to sea, storm swamped boat",Nicaso Balanoba & Julian Dona,M,,"FATAL, due to drowning PROVOKED INCIDENT",Y,,,"P. Gilbert (1961); H.D. Baldridge, p.152",1960.04.00.b-Balanoba-Dona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.00.b-Balanoba-Dona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.00.b-Balanoba-Dona.pdf,1960.04.00.b,1960.04.00.b,2214,, +1960.04.00.a,Apr-60,1960,Boat,SOUTH AFRICA,Western Cape Province,Saldanha Bay,Fishing,5 m skiboat,,,Shark rammed boat & bit transom,N,,White shark (tooth fragments recovered),"T. Wallett, p.27",1960.04.00.a-SaldanhaSkiboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.00.a-SaldanhaSkiboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.00.a-SaldanhaSkiboat.pdf,1960.04.00.a,1960.04.00.a,2213,, +1960.03.31,31-Mar-60,1960,Unprovoked,USA,Florida,"Off Boca Raton Hotel & Club, Boca Raton, Palm Beach County",Treading water,Robert B. Winkler,M,42,"Ankle bitten, hand injured while striking shark",N,12h00,"1.2 m [4'], possibly larger shark","V.M. Coppleson (1962), p.249, erroneously lists the date as 3/31/1961; H.D. Baldridge, p.142",1960.03.31-Winkler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.03.31-Winkler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.03.31-Winkler.pdf,1960.03.31,1960.03.31,2212,, +1960.03.28,28-Mar-60,1960,Unprovoked,GUAM,,,"Spearfishing, carrying fish on belt",Enrique Matao,M,44,Thigh bitten,N,12h00,1.2 m [4'] shark,"V.M. Coppleson (1962), p.254; H.D. Baldridge, p.142",1960.03.28-Metao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.03.28-Metao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.03.28-Metao.pdf,1960.03.28,1960.03.28,2211,, +1960.02.29,29-Feb-60,1960,Unprovoked,AUSTRALIA,Tasmania,Ralph Bay,"Wading, fishing for flounder",Malcolm Robertson & Tom Hasler,M,30 & 32,"No injury, Robertson knocked over & Hasler brushed by a shark",N,Night,Two 2.1 m [7'] sharks,Hobart Mercury 3/3/1960,1960.02.29-Robertson-Hasler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.29-Robertson-Hasler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.29-Robertson-Hasler.pdf,1960.02.29,1960.02.29,2210,, +1960.02.27.b,27-Feb-60,1960,Unprovoked,NEW ZEALAND,North Island,"Mangawhai, near Wellsford",Spearfishing,Laurie Ross ,M,22,"No injury, leg bumped by shark's tail",N,,"Bronze whaler shark,4 m [13'] ","R.D. Weeks, GSAF; Auckland Star, 2/29/1960; V.M. Coppleson (1962), pp.253-254",1960.02.27.b-Ross.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.27.b-Ross.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.27.b-Ross.pdf,1960.02.27.b,1960.02.27.b,2209,, +1960.02.27.a,27-Feb-60,1960,Invalid,USA,Hawaii,"Between Keawakapu & Makena, Maui",Spearfishing,John Benjamin,M,36,Left forearm lacerated,N,08h00,"According to Benjamin, the injury was inflicted by a barracuda, not a shark","Honolulu Star Bulletin, 3/1 /1960; V.M. Coppleson (1962), p.246; J. Borg, p.73; L. Taylor (1993), pp.100-101; SAF Case #662",1960.02.27.a-Benjamin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.27.a-Benjamin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.27.a-Benjamin.pdf,1960.02.27.a,1960.02.27.a,2208,, +1960.02.24,24-Feb-60,1960,Provoked,SENEGAL,Casamance,Ziguinchor,Fishing,Souleymane S.,M,,Calf bitten by shark caught in net PROVOKED INCIDENT,N,,,J. Cadenat; Dr. T. Farah,1960.02.24-Souleyman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.24-Souleyman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.24-Souleyman.pdf,1960.02.24,1960.02.24,2207,, +1960.02.19,19-Feb-60,1960,Unprovoked,PAPUA NEW GUINEA,Central Province,"Tupuselei Village, about 40 miles east of Port Moresby",Spearfishing,Doas Hehuni,M,26,"FATAL, legs bitten ",Y,,"Tiger shark, 3.4 m [11'] captured","A.M. Rapson, p.150; V.M. Coppleson (1962), p.254",1960.02.19-Tupuselei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.19-Tupuselei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.19-Tupuselei.pdf,1960.02.19,1960.02.19,2206,, +1960.02.10.,10-Feb-60,1960,Provoked,AUSTRALIA,New South Wales,Near Bondi Beach,Shark fishing,"12' open motor boat, occupants Jack Platt & Peter Keyes",,,No injury to occupants. Hooked shark rammed boat PROVOKED INCIDENT,N,,"Tiger shark, 14' ","Sydney Daily Telegraph, 2/11/1960",1960.02.10-Bondi-Tiger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.10-Bondi-Tiger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.10-Bondi-Tiger.pdf,1960.02.10.,1960.02.10.,2205,, +1960.02.07,07-Feb-60,1960,Provoked,AUSTRALIA,New South Wales,Wattamolla National Park,Spearfishing,John Gilles & Harry Dowswell,M,20,"No injury, speared shark towed Gilles 200 yards & tore hole in diving suit, and hit Dowswell's back with its tail PROVOKED INCIDENT",N,,"Grey nurse shark, 2.9 m [9'6""] ",Unidentified press clipping;. SAF Case #203,1960.02.07-Gillies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.07-Gillies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.07-Gillies.pdf,1960.02.07,1960.02.07,2204,, +1960.02.03,03-Feb-60,1960,Invalid,USA,Hawaii,Maui,S2F-1 airplane crashed immediately after carrier take-off,Crew of Anti-submarine Squadron 23,,,"Of crew of 4, only 1 person survived (broken legs but no shark bites). Within 20 minutes of his rescue large sharks were in area. No remains of other 3 crew recovered, and shark involvement in their deaths is questionable. ",Y,02h00,,"L. Schultz & M. Malin, p.562; SAF Case #870 ",1960.02.03-S2F-1-aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.03-S2F-1-aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.03-S2F-1-aircraft.pdf,1960.02.03,1960.02.03,2203,, +1960.01.30,30-Jan-60,1960,Unprovoked,PAPUA NEW GUINEA,Madang (WO),"Off Taludig Village, at mouth of the Murnass River",,"Upad, a boy",M,,"Lower left leg bitten, surgically amputated",N,,"3.5 m [11'6""] shark captured","A.M. Rapson, p.150; V.M. Coppleson (1962), p.248 ",1960.01.30-Upad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.30-Upad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.30-Upad.pdf,1960.01.30,1960.01.30,2202,, +1960.01.26,26-Jan-60,1960,Sea Disaster,,"Between Timor & Darwin, Australia",,Portuguese Airliner with 9 people aboard went down. ,,,,"As searchers approached wreckage, sharks circled one canoe & seized oar from another.",N,,,"V.M. Coppleson (1962), p.260",1960.01.26-Portuguese airliner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.26-Portuguese airliner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.26-Portuguese airliner.pdf,1960.01.26,1960.01.26,2201,, +1960.01.21,21-Jan-60,1960,Boat,AUSTRALIA,South Australia,Millicent,,"13' dinghy, occupant S. Smith, Leenee Dee & Marie Farmer",,,"No injury to occupants, shark lifted boat",N,,Blue pointer,Hobart Mercury 1/22/1960,1960.01.21 - Smith dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.21 - Smith dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.21 - Smith dinghy.pdf,1960.01.21,1960.01.21,2200,, +1960.01.16,16-Jan-60,1960,Unprovoked,AUSTRALIA,New South Wales,"Just below Roseville Bridge, opposite Killarney picnic reserve, Middle Harbor, Sydney",Free diving,Kenneth William Murray,M,13,"FATAL, right leg severed above knee, surgically amputated but died 9 days later ",Y,15h30,Bull shark,"T.W. Brown, pp.1 -6; H.D. Baldridge, p.196; A. Sharpe, pp76-77; H. Edwards, pp.100 & 108",1960.01.16-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.16-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.16-Murray.pdf,1960.01.16,1960.01.16,2199,, +1960.01.13,13-Jan-60,1960,Provoked,AUSTRALIA,Western Australia,Geraldton,"Fishing, lifting shark out of craypot",Ron Christmas,M,,Upper leg bitten PROVOKED INCIDENT,N,P.M.,Wobbegong shark,"Western Australian Perth Daily News, 1/4/1960",1960.01.13-Christmas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.13-Christmas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.13-Christmas.pdf,1960.01.13,1960.01.13,2198,, +1960.01.07,07-Jan-60,1960,Boat,AUSTRALIA,Tasmania,Eaglehawk Neck,Setting crayfish pots,"16' boat, occupant: W. Lonergan",,,"No injury to occupant, shark rammed boat",N,09h00,4.9 m [16'] shark,"G.P. Whitley citing Mercury (Hobart), 1/8/1960",1960.01.07-Lonergan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.07-Lonergan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.07-Lonergan.pdf,1960.01.07,1960.01.07,2197,, +1960.01.01,01-Jan-60,1960,Provoked,SOUTH AFRICA,Western Cape Province,Muizenberg,"Standing, watching seine netters",Mrs. Burman,F,,Left leg bitten by shark that escaped net PROVOKED INCIDENT,N,,,GSAF,1960.01.01-Burman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.01-Burman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.01-Burman.pdf,1960.01.01,1960.01.01,2196,, +1960.00.00.j,1960,1960,Unprovoked,NICARAGUA ,Pacific coast,San Jan del Sur,Bathing,boy,M,,Survived,N,Morning,3.7 m to 4.6 m [12' to 15'] shark,J. McAlpine,1960.00.00.j-Nicaragua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.j-Nicaragua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.j-Nicaragua.pdf,1960.00.00.j,1960.00.00.j,2195,, +1960.00.00.i,1960,1960,Unprovoked,GRENADA,St. Georges ,Black Point Bay,Spearfishing,Julian Bain,M,9,Toe bitten,N,,,"E. Pace, FSAF",1960.00.00.i-Bain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.i-Bain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.i-Bain.pdf,1960.00.00.i,1960.00.00.i,2194,, +1960.00.00.h,Early summer 1960,1960,Invalid,CARIBBEAN SEA,,"Between Key West, Florida & Guantanamo Bay, Cuba",Aircraft crashed into sea,"male, airline pilot",M,,"Questionable. Recovered flight gear was ""completely shredded by sharks"" but pilot may have died when plane hit the water,",N,,,U.S. Naval Aviation Safety Center,1960.00.00.h-aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.h-aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.h-aircraft.pdf,1960.00.00.h,1960.00.00.h,2193,, +1960.00.00.g,Late 1960s,1960,Unprovoked,SRI LANKA,Eastern Province,Pigeon Island,Spearfishing,Trevor Ferdinands,M,,No injury,N,,Blacktail reef shark,R I. DeSilva,1960.00.00.g-Ferdinands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.g-Ferdinands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.g-Ferdinands.pdf,1960.00.00.g,1960.00.00.g,2192,, +1960.00.00.f,1960s,1960,Unprovoked,SRI LANKA,Eastern Province,"Manayaweli Cove, Trincomalee",Collecting ornamental fish,Rodney Jonklass,M,,"No injury, beat off shark with his collecting net",N,,Blacktip reef shark,R I. DeSilva,1960.00.00.f-Jonklaas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.f-Jonklaas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.f-Jonklaas.pdf,1960.00.00.f,1960.00.00.f,2191,, +1960.00.00.e,1960-1961,1960,Unprovoked,FIJI,Northwest of Viti Levu,"Covull Reef, near Lautoka",Spearfishing,Lindsay Phillips,M,,"Right arm abraded, circular piece of tissue removed from left calf",N,,,"V.M Coppleson (1962), p.253",1960.00.00.e-Phillips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.e-Phillips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.e-Phillips.pdf,1960.00.00.e,1960.00.00.e,2190,, +1960.00.00.d,1960,1960,Unprovoked,PAPUA NEW GUINEA,Madang,,"Spear fishing, removing fish from spear",Sek,M,16,"FATAL, foot severed, hip bitten",Y,,,A.M. Rapson,1960.00.00.d-Sek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.d-Sek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.d-Sek.pdf,1960.00.00.d,1960.00.00.d,2189,, +1960.00.00.c,1960,1960,Unprovoked,PAPUA NEW GUINEA,West New Britain Province,"West Nakanai, Talasea",Fishing,male,M,20,Slight lacerations to leg,N,,,"A.M. Rapson, p.150",1960.00.00.c-Talasea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.c-Talasea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.c-Talasea.pdf,1960.00.00.c,1960.00.00.c,2188,, +1960.00.00.b,Ca. 1960,1960,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Swimming,Miss Fillardo,F,5,FATAL,Y,,,"M. Levine, GSAF",1960.00.00.b-Fillardo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.b-Fillardo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.b-Fillardo.pdf,1960.00.00.b,1960.00.00.b,2187,, +1960.00.00.a,Ca. 1960,1960,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kei River Mouth,Wading,Joyce Greig,F,,"Heel lacerated, hand lacerated & abraded",N,11h00,2.1 m [7'] shark,"T. Greig, M. Levine, GSAF",1960.00.00.a-Greig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.a-Greig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.a-Greig.pdf,1960.00.00.a,1960.00.00.a,2186,, +1959.12.29,29-Dec-59,1959,Boat,AUSTRALIA,Queensland,Scotts Point Beach ,Paddling,"12' ski, occupants: Bill Dyer & Cliff Burgess ",,,No injury to occupants,N,Afternoon,3.7 m [12'] tiger shark,"Herald, (Redcliffe), 12/31/1959",1959.12.29-Burgess-Dyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.29-Burgess-Dyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.29-Burgess-Dyer.pdf,1959.12.29,1959.12.29,2185,, +1959.12.28,28-Dec-59,1959,Boat,AUSTRALIA,New South Wales,"Leichardt, Sydney",Fishing,"plywood dinghy, occupants: Jack Deegan & Trevor Millett",,50 & 30,No injury to occupants,N,Late night,2.4 m [8'] shark,"Daily Mirror (Sydney), 12/29/1959",1959.12.28-NV-Deegan-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.28-NV-Deegan-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.28-NV-Deegan-dinghy.pdf,1959.12.28,1959.12.28,2184,, +1959.12.26,26-Dec-59,1959,Unprovoked,PAPUA NEW GUINEA,Rigo subdistrict,Kaparoka,Swimming underneath house on pilings,Manama Mari,,13,"FATAL, right leg severed",Y,,,"A. M. Rapson, p.150; P. Gilbert, L. Schultz & S. Springer (1960); Note: A. Resciniti, p.26, lists date as 26-Nov-1959",1959.12.26-Mari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.26-Mari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.26-Mari.pdf,1959.12.26,1959.12.26,2183,, +1959.12.19.b,19-Dec-59,1959,Unprovoked,AUSTRALIA,Queensland,"Off Wynnum in Moreton Bay, near Brisbane",Dived from dinghy to retrieve oar in heavy seas,Stanley Arthur Mullen,M,29,FATAL,Y,06h00,,"P. Gilbert, L. Schultz & S. Springer (1960); V.M. Coppleson (1962), p.245; T. Peake, GSAF",1959.12.19.b-Mullens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.19.b-Mullens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.19.b-Mullens.pdf,1959.12.19.b,1959.12.19.b,2182,, +1959.12.19.a,19-Dec-59,1959,Sea Disaster,PHILIPPINES,Masbate,Balud,ship M.V. Rizal sank during typhoon,"Mamerto Daanong, Tomas Inog & others",M,,"65 people survived, 27 perished. Several people were bitten & one man lost his leg to a shark.",Y,12h15,,"V.M. Coppleson (1962), p.259 ",1959.12.19.a - MV-Rizal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.19.a - MV-Rizal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.19.a - MV-Rizal.pdf,1959.12.19.a,1959.12.19.a,2181,, +1959.12.11,11-Dec-59,1959,Provoked,AUSTRALIA,Victoria,"Altona, Melbourne","Spearfishing, Smith & Walker touched shark with tip of their guns",Barry Smith & Harold Walker,M,17 & 35,"Smith hit by tail of shark, Walker sustained cuts on his wrist PROVOKED INCIDENT",N,,2.7 m [9'] shark,"V.M. Coppleson (1962), p.252;",1959.12.11-Smith-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.11-Smith-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.11-Smith-Walker.pdf,1959.12.11,1959.12.11,2180,, +1959.12.07,07-Dec-59,1959,Invalid,AUSTRALIA,South Australia,Laura Bay,Spearfishing,3 males,M,,"No injury, shark made threat display, one diver shot shark in jaw, then they killed shark with knives ",N,,,"V.M. Coppleson (1962), p.252",1959.12.07-LauraBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.07-LauraBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.07-LauraBay.pdf,1959.12.07,1959.12.07,2179,, +1959.12.03,03-Dec-59,1959,Boat,NEW ZEALAND,North Island,Moko Hinau ,Fishing for snapper,"dinghy, occupant: Don Ashton",M,,"No injury to occupant, shark sank dinghy",N,14h00,"Mako shark, 4.3 m [14']",Captain C. Morris,1959.12.03-boat-Ashton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.03-boat-Ashton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.03-boat-Ashton.pdf,1959.12.03,1959.12.03,2178,, +1959.12.00,Dec-59,1959,Sea Disaster,MALDIVE ISLANDS,400 miles southeast of Sri Lanka,,17 Maldivians adrift in open boat for 31 days,child,F,3,FATAL,Y,,,"Dundee Evening Telegraph, 12/12/1959; P. Gilbert; V.M. Coppleson (1962), pp.247 & 259",1959.12.00.a-b-Maldivians.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.00.a-b-Maldivians.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.00.a-b-Maldivians.pdf,1959.12.00,1959.12.00,2177,, +1959.11.29,29-Nov-59,1959,Unprovoked,AUSTRALIA,Victoria,"Fairhaven Beach, Lorne",Body surfing,Christopher Holland,M,19,"Thighs bitten, right hand lacerated",N,14h45,3.5 m [11.5'] shark,"Evening Star (Washington, D.C.), 11/30/1959; Sydney Morning Herald, 12/2/1959; A. Sharpe, p.114;P. Gilbert, L. Schultz & S. Springer (1960)",1959.11.29-Holland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.29-Holland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.29-Holland.pdf,1959.11.29,1959.11.29,2176,, +1959.11.28,28-Nov-59,1959,Unprovoked,AUSTRALIA,Queensland,"North Burleigh, near Brisbane",Standing in chest-deep water,David Beaver,M,17,Right foot lacerated,N,07h30,"""a small shark""","Sunday Mail (Brisbane), 11/29/1959",1959.11.28-Beaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.28-Beaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.28-Beaver.pdf,1959.11.28,1959.11.28,2175,, +1959.11.22,22-Nov-59,1959,Unprovoked,AUSTRALIA,Queensland,"Surfer's Paradise, Northcliffe",Trailing the field in a surf race,Jeffrey Francis Sasche (or Sachse),M,19,"Lower left leg bittten, hand abraded",N,11h00,3 m to 4.3 m [10' to 14'] shark,"Daily Mirror (Sydney) 11/23/1959; G.P. Whitley; P. Gilbert, L. Schultz & S. Springer (1960); J. Green, p.35",1959.11.22-Sachse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.22-Sachse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.22-Sachse.pdf,1959.11.22,1959.11.22,2174,, +1959.11.16,16-Nov-59,1959,Invalid,USA,Louisiana,120 miles southeast of New Orleans,National Airlines DC7B enroute from Miami to Los Angeles with 42 or 46 people on board went down in heavy fog,All on board perished in the crash,,,Body recovery efforts were hampered by large sharks but sharks did not cause the deaths. ,Y,01h32,3.7 to 4.6 m [12' to 15'] sharks,"Washington Post, 11/17/1959; SAF Case #591",1959.11.16-AircraftDC7B.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.16-AircraftDC7B.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.16-AircraftDC7B.pdf,1959.11.16,1959.11.16,2173,, +1959.11.15,15-Nov-59,1959,Boat,SOUTH AFRICA,Western Cape Province,"Swartklip, False Bay",Fishing for tunny,"boat Sea Hawk, occupants: R. Roberts & 4 others",,,R. Roberts' leg was bruised when shark leapt into boat,N,,"Thresher shark, 3.7 m [12'] ","East London Dispatch, 11/16/1959",1959.11.15-SeaHawk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.15-SeaHawk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.15-SeaHawk.pdf,1959.11.15,1959.11.15,2172,, +1959.11.12.R,Reported 12-Nov-1959,1959,Provoked,AUSTRALIA,South Australia,Near Port Vincent,Shark fishing,24' yacht owened by C.L. Whitrow,,,"No injury to occupant, hull bitten PROVOKED INCIDENT",N,,6 m [20'] shark,"Advertiser (Adelaide), 11/12/1959",1959.11.12.R-Whitrow-yacht.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.12.R-Whitrow-yacht.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.12.R-Whitrow-yacht.pdf,1959.11.12.R,1959.11.12.R,2171,, +1959.11.10,10-Nov-59,1959,Unprovoked,USA,California,"Near Paradise Cove, Malibu, Los Angeles County",Swimming at surface through school of feeding 2.5' to 5� sharks,Duffie Fryling,M,21,Forearm bitten,N,10h30 or 13h30,"Blue shark, 1.5 m [5'] ","D. Miller & R. Collier; R. Collier, pp.26-27; P. Gilbert, L. Schultz & S. Springer (1960); V.M. Coppleson (1962), p.249",1959.11.10-Fryling_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.10-Fryling_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.10-Fryling_Collier.pdf,1959.11.10,1959.11.10,2170,, +1959.11.09,09-Nov-59,1959,Provoked,AUSTRALIA,Western Australia, Perth,"Spearfishing, shot shark, hauled it onto boat",Ian Marks,M,,"No injury. Diver shot shark, then shark tore legs of his rubber suit, water poured in & swept out to sea by strong rip current PROVOKED INCIDENT",N,,"Carpet shark, 1.5 m [5']","Perth Daily News, 4/19/1961; V.M. Coppleson (1962), p.251",1959.11.09-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.09-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.09-Marks.pdf,1959.11.09,1959.11.09,2169,, +1959.11.01,01-Nov-59,1959,Provoked,PAPUA NEW GUINEA,New Britain,"Rapindik Beach, Rabaul",Fishing,male,M,,Both hands bitten while helping companion land speared shark PROVOKED INCIDENT,N,,,"A. M. Rapson, p.147",1959.11.01-Rabaul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.01-Rabaul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.01-Rabaul.pdf,1959.11.01,1959.11.01,2168,, +1959.10.07,07-Oct-59,1959,Unprovoked,MOZAMBIQUE,Maputo Province,"Xefina Island, Bay of Maputo",Swimming,a Portuguese soldier,M,X,"FATAL, died in Lourenco Marques Hospital",Y,,,"M. Levine, GSAF; The Star (Johannesburg), 10/7/1959; P. Gilbert, L. Schultz & S. Springer (1960)",1959.10.07-PortugueseSoldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.07-PortugueseSoldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.07-PortugueseSoldier.pdf,1959.10.07,1959.10.07,2167,, +1959.10.05,05-Oct-59,1959,Unprovoked,PAPUA NEW GUINEA,Madang,Taludig,,Anonymous,,,Thigh bitten,N,,,"A.M. Rapson, p.150; V.M. Coppleson (1962), p.248",1959.10.05-PapuaNewGuinea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.05-PapuaNewGuinea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.05-PapuaNewGuinea.pdf,1959.10.05,1959.10.05,2166,, +1959.10.04,04-Oct-59,1959,Unprovoked,USA,California,"Bodega Rock, Sonoma County",Diving for abalone,James Hay,M,30,"Ankle twisted, swim fin bitten",N,15h15,"White shark, 5 m [16.5'], identified by Dr. W. I. Follett on tooth marks","San Francisco Chronicle, 10/7/1959n; D. Miller & R. Collier; R. Collier, pp.25-26; P. Gilbert, L. Schultz & S. Springer (1960); H.D. Baldridge, p.70",1959.10.04-JamesHay_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.04-JamesHay_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.04-JamesHay_Collier.pdf,1959.10.04,1959.10.04,2165,, +1959.10.02,02-Oct-59,1959,Unprovoked,FIJI,Lomaiviti Province,"Levuka, Ovalau Island",Dived overboard to retrieve dinghy,"male, Fijian cook of vessel Andi Tui Lomaloma",M,,"FATAL, body not recovered",Y,,4.3 m [14'] shark,"V.M. Coppleson; P. Gilbert, L. Schultz & S. Springer (1960)",1959.10.02-FijianCook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.02-FijianCook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.02-FijianCook.pdf,1959.10.02,1959.10.02,2164,, +1959.10.00,Oct-59,1959,Unprovoked,FIJI,Kadavu,Great Astrolabe Reef,Spearfishing,Etuate Waqa,M,36,forearm abraded,N,12h00,"Tiger shark, 1.8 m [6']",S.B. Brown,1959.10.00-Etuate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.00-Etuate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.00-Etuate.pdf,1959.10.00,1959.10.00,2163,, +1959.09.30,30-Sep-59,1959,Unprovoked,PHILIPPINES,Leyte Island,Luang Dulag,Swimming ,Francisco Daguinot,M,28,"No details, survived",N,,,"Manila Times, 10/2/1959",1959.09.30-Daguinot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.30-Daguinot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.30-Daguinot.pdf,1959.09.30,1959.09.30,2162,, +1959.09.27,27-Sep-59,1959,Invalid,BERMUDA,Hamilton,Astwood's Cove,,Dorothy Barbara Rawlinson,F,29,"Murdered, body scavenged by sharks",Y,,,,1959.09.27-Rawlinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.27-Rawlinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.27-Rawlinson.pdf,1959.09.27,1959.09.27,2161,, +1959.09.26.b,26-Sep-59,1959,Sea Disaster,USA,Florida,"Off Port Everglades, Broward County","Adrift, hanging onto cushion, after his 17' skiff ran out of gas & capsized 3 miles from shore",Robert Walker,M,30,"During the night both hands and feet were bitten, rescued next day after spending 17 hours in the sea.",N,17h00,"A hammerhead shark, then 8 to 10 other sharks were said to be involved","St Petersberg Times, 9/27/1959; NY Herald Tribune, 9/28/1959; P. Gilbert, L. Schultz & S. Springer (1960)",1959.09.26.b-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.26.b-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.26.b-Walker.pdf,1959.09.26.b,1959.09.26.b,2160,, +1959.09.26.a,26-Sep-59,1959,Boat,USA,South Carolina,"Albergotti Creek, near Air Station boat docks, Beaufort",Gigging for flounder,"12' boat. Occupants: Capt. E.J. Wines, Maj. W. Waller & Larry Waller",,,,UNKNOWN,Midnight,"Said to involve white shark, but species identify questionable","Gazette (Beaufort, SC), 10.1/1959; SAF Case #577",1959.09.26.a-Wines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.26.a-Wines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.26.a-Wines.pdf,1959.09.26.a,1959.09.26.a,2159,, +1959.09.11,Between 10 and 12-Sep-1959,1959,Boat,USA,California,"Between False Klamath & mouth of Klamath River, Del Norte County",Pulling hooked salmon to boat,12 m fishing boat. Occupant: Henry Tervo,,,"No injury to occupant, shark struck stern of boat",N,15h30,"White shark, 3.5 m [11.5'], identified by W. I. Follett on tooth fragments","R. Collier, p.172",1959.09.11-Tervo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.11-Tervo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.11-Tervo.pdf,1959.09.11,1959.09.11,2158,, +1959.09.10.R,Reported 10-Sep-1959,1959,Unprovoked,INDIA,Orissa,Machhagan,,,,,"5 fatalities, 30 injured",Y,,6' shark,"Times of India, 9/10/1959",1959.09.10.R-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.10.R-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.10.R-India.pdf,1959.09.10.R,1959.09.10.R,2157,, +1959.09.02,02-Sep-59,1959,Invalid,USA,New York,"Oak Beach, Fire Inlet",On inflatable raft,male,M,,No injury,N,,"""sand shark"" Listed as questionable incident",H.D. Baldridge (1994) SAF Case #506,1959.09.02-NV-InflatableRaft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.02-NV-InflatableRaft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.02-NV-InflatableRaft.pdf,1959.09.02,1959.09.02,2156,, +1959.09.00,Sep-59,1959,Unprovoked,MEXICO,Guerrrero,Acapulco,,French woman,F,"""middle-age""","FATAL, leg severed, other leg lacerated ",Y,,,"A. R. Satz; P. Gilbert, L. Schultz & S. Springer (1960)",1959.09.00-French-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.00-French-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.00-French-woman.pdf,1959.09.00,1959.09.00,2155,, +1959.08.31.R,Reported 31-Aug-1959,1959,Boat,AZORES,,Sao Miguel,Fishing,40' bonito boat,,,No injury to occupants; shark bit rudder,N,,"White shark, based on 2 teeth retrieved from rudder",A. Cordeiro,1959.08.31.R-Azores.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.31.R-Azores.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.31.R-Azores.pdf,1959.08.31.R,1959.08.31.R,2154,, +1959.08.30,30-Aug-59,1959,Invalid,AUSTRALIA,Tasmania,,Swimming,Ron Cox,M,,No injury,N,,Sandtiger shark,C. Black; H.D. Baldridge (1994) ISAF Case #654,1959.08.30-Cox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.30-Cox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.30-Cox.pdf,1959.08.30,1959.08.30,2153,, +1959.08.25,25-Aug-59,1959,Invalid,JAPAN,Hokkaido Prefecture,"Okushiri Island, Hiyama Subprefecture",,Masami Fukushi,M,14,Survived (no injury?),N,,Porbeagle,"K. Nakaya (1993); H.D. Baldrige. Note: Recorded as ""Doubtful"" by Schultz and Malin",1959.08.25-Fukushi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.25-Fukushi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.25-Fukushi.pdf,1959.08.25,1959.08.25,2152,, +1959.08.20,20-Aug-59,1959,Invalid,PHILIPPINES,North Palawan,Cabuli Island,The 240-ton motor vessel Pilar II with 100 people on board capsized in high winds & rough seas,boy,M,10,"Navy personnel reported that his body was ""mutilated by sharks"" but it is probable that death resulted from drowning",Y,04h00,,"Manila Daily, 8/26/1959; V.M. Coppleson (1962), p.259; F. Dennis, p.20; SAF Case #655",1959.08.20-PilarII.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.20-PilarII.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.20-PilarII.pdf,1959.08.20,1959.08.20,2151,, +1959.08.15.b,15-Aug-59,1959,Invalid,USA,Florida,"Panama City, Bay County",Diving,Gary Seymour,M,21,No injury,N,,2 sharks,"H. D. Baldridge (1994), SAF Case #440 listed incident as ""Questionable""",1959.08.15.b-Seymour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.15.b-Seymour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.15.b-Seymour.pdf,1959.08.15.b,1959.08.15.b,2150,, +1959.08.15.a,15-Aug-59,1959,Unprovoked,USA,Florida,"Panama City, Bay County",Spearfishing on Scuba,Lt. James C. Neal,M,26,"FATAL, disappeared, dive gear & clothing found with teethmarks, presumed taken by a shark ",Y,,3.7 m [12'] shark,"Washington Post, 8/17/1959; P. Gilbert, L. Schultz & S. Springer (1960); H.D. Baldridge, p.183",1959.08.15.a-Neal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.15.a-Neal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.15.a-Neal.pdf,1959.08.15.a,1959.08.15.a,2149,, +1959.08.14.b,14-Aug-59,1959,Provoked,USA,South Carolina,Charleston,Fishing,Arthur Wright,M,,Laceration to forearm by boated shark PROVOKED INCIDENT,N,,5.5' shark,"Washington Post, 8/16/1959",1959.08.14.b-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.14.b-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.14.b-Wright.pdf,1959.08.14.b,1959.08.14.b,2148,, +1959.08.14.a,14-Aug-59,1959,Sea Disaster,PHILIPPINES,Queaon,Between Unisan & Angadanan Islands,Fishing boat capsized ,15 shipwrecked passengers and crew were in the water,,,"10 of the 15 people perished, bodies of some who drowned were scavenged by sharks",Y,Afternoon,,"Manila Chronicle, 8/18/1959; V.M. Coppleson (1962), p.259; F. Dennis, p.20; SAF Case #590",1959.08.14.a-Fishingboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.14.a-Fishingboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.14.a-Fishingboat.pdf,1959.08.14.a,1959.08.14.a,2147,, +1959.08.13,13-Aug-59,1959,Provoked,USA,California,"LaJolla, San Diego County","Spearfishing with Joe Turner (24). Shark attracted to speared halibut on belt of one diver, tried to bite Ide�s speargun & he shot it in the mouth",Don Ide,M,32,"No injury, PROVOKED INCIDENT",N,,"Hammerhead shark, 9' ","Independent, 8/14/1959, p. 2; V.M. Coppleson (1962), p.147",1959.08.13-Ide-Turner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.13-Ide-Turner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.13-Ide-Turner.pdf,1959.08.13,1959.08.13,2146,, +1959.08.12,12-Aug-59,1959,Provoked,CROATIA,Istria,Pula,Fishing,Narcisco Tomaz,M,,Laceration to arm PROVOKED INCIDENT,N,,20 kg shark,"C. Moore, GSAF",1959.08.12-Tomaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.12-Tomaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.12-Tomaz.pdf,1959.08.12,1959.08.12,2145,, +1959.08.11,11-Aug-59,1959,Unprovoked,JAPAN,Wakayama Prefecture,"Isonoura Beach, Wakayama City ",Swimming,Akira Tuchiya,M,13 or 18,"FATAL, left thigh bitten",Y,14h30,"Blue shark, 3 m [10']","H. Kariya &T. Abe; P. Gilbert, L. Schultz & S. Springer (1960); K. Nakaya",1959.08.11-Tsuchiya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.11-Tsuchiya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.11-Tsuchiya.pdf,1959.08.11,1959.08.11,2144,, +1959.08.10,10-Aug-59,1959,Unprovoked,USA,Georgia,"Savannah Beach, Savannah, Chatham County",Standing,Elizabeth Fields,F,15,"4"" cut on left foot ",N,18h00,, McCutcheon; News (Savannah) 8/18/1959 ,1959.08.10-Fields.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.10-Fields.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.10-Fields.pdf,1959.08.10,1959.08.10,2143,, +1959.08.05,05-Aug-59,1959,Invalid,USA,California,"Hermosa Beach, Los Angeles County",Wading,Charles H. Hill,M,,"No injury, no attack, the shark merely circled him.",N,,10' shark,"Independent, 8/6/1959, p.8; H.D. Baldridge (1994) SAF Case #437, Subsequently investigated by R. Collier & D. Miller who were unable to verify its authenticity",1959.08.05-Hill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.05-Hill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.05-Hill.pdf,1959.08.05,1959.08.05,2142,, +1959.08.02,21764,1959,Invalid,ITALY,Tuscany,"Cala del Corvo, Isola del Giglio",Scuba diving,Karl Pollerer & Eric Eisesenid,M,34 & 19,Probable drowing. Shark involvement unconfirmed,Y,,,"C. Moore, GSAF",1959.08.02-Giglio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.02-Giglio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.02-Giglio.pdf,1959.08.02,1959.08.02,2141,, +1959.07.30,30-Jul-59,1959,Provoked,USA,California,"In kelp beds off La Jolla, San Diego County",Pulling anchor,"4.3 m skiff: occupants: James L. Randles, Jr. & James Myers",,,"No injury to occupants, shark charged boat after being shot twice with pistol and speared PROVOKED INCIDENT",N,16h00,"White shark, 3 m to 5 m [10' to 15'] ","LA Times, 7/31/1959 ",1959.07.30-Randles_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.30-Randles_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.30-Randles_Collier.pdf,1959.07.30,1959.07.30,2140,, +1959.07.28,28-Jul-59,1959,Unprovoked,USA,California,"Alligator Head, La Jolla, San Diego County",Spearfishing (but on surface),Verne S. Fleet,M,25,"14 punctures on right thigh, swim trunks torn",N,19h30,"Hammerhead shark, 1.8 m [6'] S. zygena identified by C. Limbaugh on description","D. Miller & R. Collier; R. Collier, pp.24-25; Garrick & L. Schultz, p.19 in Sharks & Survival; P. Gilbert, L. Schultz & S. Springer (1960)",1959.07.28-Fleet_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.28-Fleet_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.28-Fleet_Collier.pdf,1959.07.28,1959.07.28,2139,, +1959.07.25.b,25-Jul-59,1959,Unprovoked,JAPAN,Okayama Prefecture,Ushimado,,Hideo Ishida,M,22,"FATAL, right thigh bitten ",Y,13h00,Blue shark?,"M. Hosina; K. Nakaya; L. Schultz & M. Malin, p.539",1959.07.25.b-Ishida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.25.b-Ishida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.25.b-Ishida.pdf,1959.07.25.b,1959.07.25.b,2138,, +1959.07.25.a,25-Jul-59,1959,Boat,USA,California,"Mission Beach, San Diego County",,"boat, occupant Robert Agnew",,21,No injury to occupant,N,,"Hammerhead shark, 2.4 m [8'] ","San Diego Union, 7/26/1959",1959.07.25.a-Agnew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.25.a-Agnew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.25.a-Agnew.pdf,1959.07.25.a,1959.07.25.a,2137,, +1959.07.23.b,23-Jul-59,1959,Boat,USA,California,"Off La Jolla Cove, San Diego County",Fishing,15-foot boat: occupant Woodrow Smith,,,"No injury to occupant, shark rammed boat",N,,"Hammerhead shark, 3 m [10'] ","Herald Express (L.A.), 7/25/1959",1959.07.23.b-WoodrowSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.23.b-WoodrowSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.23.b-WoodrowSmith.pdf,1959.07.23.b,1959.07.23.b,2136,, +1959.07.23.a,23-Jul-59,1959,Provoked,USA,California,"Venice Beach, Los Angeles County",Dragging stranded shark ashore,Rudy Gietel,M,,"Gietel grabbed the shark's tail, the shark lacerated his right ankle PROVOKED INCIDENT",N,,"Blue shark, 1.8 m [6'] ","Herald Express (L.A.), 7/25/1959 ",1959.07.23.a-Geitel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.23.a-Geitel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.23.a-Geitel.pdf,1959.07.23.a,1959.07.23.a,2135,, +1959.07.03.a & b,03-Jul-59,1959,Sea Disaster,CARIBBEAN SEA,PANAMA,"Off Cristobal, 200 miles northeast of the entrance to the Panama Canal",Columbian petrol barge Rio Atrato burned and sank,Teresea Britton (on raft) & a man (on floating debris),,27,"FATAL X 2, 8 others missing. Survivors fought off sharks & sharks seen biting 2 of the dead. The 39 survivors were rescued by the German freighter Essen",Y,,,"Cambridge Daily News, 7/4/1959; V. M. Coppleson (1962), p. 259",1959.07.03-Rio-Atranto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.03-Rio-Atranto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.03-Rio-Atranto.pdf,1959.07.03.a & b,1959.07.03.a & b,2134,, +1959.07.02,02-Jul-59,1959,Provoked,USA,Florida,"Delray Beach, Palm Beach County",Free diving,King Scherer,M,13,Arm bitten when he grabbed shark�s tail PROVOKED INCIDENT,N,,"Nurse shark, 60 cm [24""], identified by Dr. L.P. L. Schultz on photograph","Miami Herald, 7/3/1959; Garrick & L. Schultz, p.56 in Sharks & Survival; Miami Herald, 3 July 1959 ",1959.07.02-Scherer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.02-Scherer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.02-Scherer.pdf,1959.07.02,1959.07.02,2133,, +1959.07.00.b,Late Jul-1959,1959,Boat,NORTH ATLANTIC OCEAN,In the Gulf Stream ,Between Bimini & Miami,,"17' boat, occupant: Richard Wade",,,"No injury to occupant, shark bit propeller as Wade was refueling",N,,"Oceanic whitetip shark,1.8 m [6'] ","J. Randall in Sharks & Survival, p.356",1959.07.00.b-boat-R-Wade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.00.b-boat-R-Wade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.00.b-boat-R-Wade.pdf,1959.07.00.b,1959.07.00.b,2132,, +1959.07.00.a,Jul-59,1959,Unprovoked,MEXICO,Quintana Roo,Chinchorro Banks,Wading,Lobster fishermen x 2,M,,"FATAL, legs bitten ",Y,A.M.,,C.G. Robles,1959.07.00.a-Lobster-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.00.a-Lobster-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.00.a-Lobster-fishermen.pdf,1959.07.00.a,1959.07.00.a,2131,, +1959.06.26.R,Reported 26-Jun-1959,1959,Unprovoked,TURKEY,Mersin Province,Off Mezitli,,Yitzhak Steinberg,M,,Leg injured,N,,,"C. Moore, GSAF",1959.06.26.R-Steinberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.26.R-Steinberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.26.R-Steinberg.pdf,1959.06.26.R,1959.06.26.R,2130,, +1959.06.14.b,14-Jun-59,1959,Unprovoked,MEXICO,Guyamas,San Pedro Nolasco Island,Swimming ashore from capsized boat,Francisco R. Topete,M,,FATAL,Y,,,"Miami Herald, 6/15/1959",1959.06.14.b-Topete.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.14.b-Topete.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.14.b-Topete.pdf,1959.06.14.b,1959.06.14.b,2129,, +1959.06.14.a,14-Jun-59,1959,Unprovoked,USA,California,"La Jolla, San Diego County",Free diving for abalone,Robert Pamperin,M,33,"FATAL, body not recovered",Y,17h10,"Reported to involve a White shark, 6 m to 7m [20' to 23'] ","D. Miller & R. Collier; R. Collier, pp. 21-24 ",1959.06.14.a-Pamperin_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.14.a-Pamperin_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.14.a-Pamperin_Collier.pdf,1959.06.14.a,1959.06.14.a,2128,, +1959.06.13,13-Jun-59,1959,Invalid,USA,California,"Dillon Beach, Marin County",Swimming ,T. McNeill,,,"Disappeared after diving in �deep hole�, body not recovered, �presumed taken by a shark� ",Y,,,"D. Miller & R. Collier, R. Collier, p. xxv",1959.06.13-McNeill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.13-McNeill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.13-McNeill.pdf,1959.06.13,1959.06.13,2127,, +1959.05.30,30-May-59,1959,Provoked,SOUTH AFRICA,Eastern Cape Province,"Bird Island, Algoa Bay",Spearfishing,Tony Dicks,M,23,"No injury, diver shot shark & it bit his speargun PROVOKED INCIDENT",N,,"White shark, 2.7 m [9'], 280-lb ","C. Middleton; M. Levine, GSAF",1959.05.30-TonyDicks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.30-TonyDicks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.30-TonyDicks.pdf,1959.05.30,1959.05.30,2126,, +1959.05.16,16-May-59,1959,Unprovoked,USA,Florida,"Indian Rocks Beach, Clearwater, Pinellas County",,June Goldback,F,37,Minor injuries,N,,1.2 m [4'] shark,"V.M. Coppleson (1962), p.249; Miami News, 5/18/1959 ",1959.05.16-Goldback.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.16-Goldback.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.16-Goldback.pdf,1959.05.16,1959.05.16,2125,, +1959.05.07,07-May-59,1959,Unprovoked,USA,California,"Baker Beach, San Francisco County",Treading water,"Albert Kogler, Jr.",M,18,"FATAL, left arm bitten, right arm partly severed, deep lacerations of left shoulder & chest ",Y,17h30,"White shark, 3 m [10']; identifed by Dr. W.I. Follett on tooth marks","P. Gilbert, L. Schultz & S. Springer (1960); D. Miller & R. Collier, Follett, p. 18-22; R. Collier, pp.18-21",1959.05.07-Kogler_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.07-Kogler_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.07-Kogler_Collier.pdf,1959.05.07,1959.05.07,2124,, +1959.05.03,03-May-59,1959,Unprovoked,USA,Florida,"Panama City, Bay County",Spearfishing,Ernest Grover,M,19,Lacerated hip & hands,N,10h00,"Tiger shark, 3.7 m [12']","Miami Herald, 5/5/1959; T. Helm, pp. 93 & 243",1959.05.03-Grover.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.03-Grover.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.03-Grover.pdf,1959.05.03,1959.05.03,2123,, +1959.05.00,May-59,1959,Unprovoked,MID ATLANTIC OCEAN,Between England & South Africa,,Jumped overboard to rescue a man,Charles Green,M,,Leg bitten,N,,,"Golden City Post (South Africa), 6/7/1959; P. Gilbert, L. Schultz & S. Springer (1960)",1959.05.00-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.00-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.00-Green.pdf,1959.05.00,1959.05.00,2122,, +1959.04.27,27-Apr-59,1959,Invalid,AUSTRALIA,New South Wales,Maroubra Bay,Spearfishing,Peter Holland,M,22,Thigh lacerated,N,,,"V.M. Coppleson (1962), p.251; J. Green, p.35",1959.04.27-Holland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.27-Holland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.27-Holland.pdf,1959.04.27,1959.04.27,2121,, +1959.04.11,11-Apr-59,1959,Unprovoked,AUSTRALIA,Torres Strait,"Coconut Island , 100 miles east of Thursday Island",Diving for pearl shell,"Jimmy Pearson, a Torres Strait Islander",M,43,Left hand lacerated when he tried to ward off shark,N,,"Tiger shark, 1.8 m [6'] ","G.P. Whitley ref. Sydney Morning Herald, 4/13/1959; P. Gilbert, L. Schultz & S. Springer (1960)",1959.04.11-Pearson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.11-Pearson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.11-Pearson.pdf,1959.04.11,1959.04.11,2120,, +1959.04.09.b,09-Apr-59,1959,Unprovoked,USA,Hawaii,"Hilo, off Kaua'i",Fishing,male,M,,Survived,N,,,"V.M. Coppleson (1962), p.246",1959.04.09.b-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.09.b-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.09.b-Fisherman.pdf,1959.04.09.b,1959.04.09.b,2119,, +1959.04.09..a,09-Apr-59,1959,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port Elizabeth ,Fishing,male,M,,2 toes bitten off ,N,,,,1959.04.09.a-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.09.a-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.09.a-Fisherman.pdf,1959.04.09..a,1959.04.09..a,2118,, +1959.04.05,05-Apr-59,1959,Unprovoked,AUSTRALIA,New South Wales,Thirroul,Spearfishing,Jeff McAuley,M,,Swim fin bitten,N,,,"P. Gilbert, L. Schultz & S. Springer (1960)",1959.04.05-McAuley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.05-McAuley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.05-McAuley.pdf,1959.04.05,1959.04.05,2117,, +1959.03.29,29-Mar-59,1959,Unprovoked,USA,Florida,"Vaca Cut Channel & bridge under Marathon, Monroe County",Swimming,James McKee,M,13,"Bumped, then knee bitten",N,14h30,,"Florida Keys Keynoter, 4/2/1959; Dr. H. S. Denniger; Note: V.M. Coppleson (1962) lists date of May 1959, p249",1959.03.29-McKee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.03.29-McKee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.03.29-McKee.pdf,1959.03.29,1959.03.29,2116,, +1959.03.08,08-Mar-59,1959,Unprovoked,PHILIPPINES,Mindanao,"Mouth of Langoyan River, Davao City",Lifeboat capsized,"Leopoldo Sanchez, a messboy from the ship MV Maripaz",M,20,"FATAL, body not recovered",Y,,,"Manila Chronicle, 3/10/1959; P. Gilbert, L. Schultz & S. Springer (1960)",1959.03.08-Sanchez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.03.08-Sanchez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.03.08-Sanchez.pdf,1959.03.08,1959.03.08,2115,, +1959.03.00,Mar-59,1959,Boat,USA,Florida,Miami,"On boat, preparing to dive",R.P. Straughan,M,,Boat followed shark; shark holed boat,N,,Tiger shark 4.3 m [14'] ,"R.P.L. Straughan; R.F. Hutton; T. Helm, p.241;",1959.03.00-Straughan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.03.00-Straughan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.03.00-Straughan.pdf,1959.03.00,1959.03.00,2114,, +1959.02.28,28-Feb-59,1959,Boat,AUSTRALIA,Victoria,Port Phillip Bay,Fishing for snapper,14' open boat: occupants Richard Crew & Bob Thatcher,M,,"No injury to occupants. Shark leapt into boat, momentarily pinning Crew against the side",N,,"Mako shark, 2.4 m [8'], <300-lb, identified by Dr. L.P. L. Schultz on photograph","West Australian, 3/1/1959; L. Schultz & M. Malin, p.552",1959.02.28-boat-Crew-Thatcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.28-boat-Crew-Thatcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.28-boat-Crew-Thatcher.pdf,1959.02.28,1959.02.28,2113,, +1959.02.27,27-Feb-59,1959,Unprovoked,VENEZUELA,Nueva Esparta,Margarita Island,Fell into water while attempting to boat a swordfish,Roland Gerbeau,M,,Left arm bitten,N,,,"P. Gilbert, L. Schultz & S. Springer (1960)",1959.02.27-Gerbeau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.27-Gerbeau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.27-Gerbeau.pdf,1959.02.27,1959.02.27,2112,, +1959.02.06,16-Feb-59,1959,Provoked,PAPUA NEW GUINEA, Kikori River mouth,"Ururumba, mouth of Kikori River 7.45S, 144.40E",Fishing,male,M,,Arm bitten by shark that he thought was dead PROVOKED INCIDENT,N,,3.7 m [12'] shark,"T. Ingledew, Medical Assistant; A. M Rapson, p.147",1959.02.06-Ururumba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.06-Ururumba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.06-Ururumba.pdf,1959.02.06,1959.02.06,2111,, +1959.02.02,02-Feb-1959 Reported,1959,Unprovoked,SOLOMON ISLANDS,Guadalcanal Province,"Trench�s Beach, Guadalcanal Island",Bathing with sister,Donald Battye or David James Battye,M,15,"FATAL, body not recovered",Y,17h00,,"Note: V.M. Coppleson (1962), p.248, lists date as 12./6/1958; P. Gilbert, L. Schultz & S. Springer list date of 2/2/1959 and both sources list the same location; New Zealand Herald, 2/2/1959 ",1959.02.02-Battye.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.02-Battye.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.02-Battye.pdf,1959.02.02,1959.02.02,2110,, +1959.02.01,01-Feb-59,1959,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Port Shepstone,Treading water,Raymond Vermaak,M,14,Leg severed below knee,N,14h45,1.8 to 2.1 m [6' to 7'] shark,"R. Vermaak, M. Levine, GSAF ",1959.02.01-Vermaak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.01-Vermaak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.01-Vermaak.pdf,1959.02.01,1959.02.01,2109,, +1959.01.31,31-Jan-59,1959,Unprovoked,AUSTRALIA,Western Australia,South Perth,Working prawn net,George E. Rudd,M,20,Shark�s tail grazed his shin,N,Night,"Grey nurse shark, 1.8 m [6']","West Australian (Perth), * Sunday Times, 2/1/1959s; P. Gilbert, L. Schultz & S. Springer (1960)",1959.01.31-Rudd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.31-Rudd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.31-Rudd.pdf,1959.01.31,1959.01.31,2108,, +1959.01.27,27-Jan-59,1959,Unprovoked,ECUADOR,Galapagos Islands,Crewing on the tuna clipper Mary Barbara,Washed overboard into school of fish,Theodore C. Swienty,M,57,Right leg & left foot lacerated,N,,Bitten by several 1.8 m [6'] sharks,"NY World -Telegram & Sun, 1/28/1959; Note: V.M. Coppleson (1962), p.246, records the date as 3/5/1959",1959.01.27-Swienty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.27-Swienty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.27-Swienty.pdf,1959.01.27,1959.01.27,2107,, +1959.01.25,25-Jan-59,1959,Unprovoked,AUSTRALIA,Tasmania,"Whale Bay, King Island, Bass Strait",Swimming with motor tube,John Grave,M,16,Thigh bitten,N,,,"C. Black, GSAF; Launceston Examiner (Tasmania) 1/26/1959; P. Gilbert, L. Schultz & S. Springer (1960); J. Green, p.35",1959.01.25-Grave.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.25-Grave.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.25-Grave.pdf,1959.01.25,1959.01.25,2106,, +1959.01.17.b,17-Jan-59,1959,Unprovoked,AUSTRALIA,Tasmania,Safety Cove,In deep water about 100 yards from his ship,"Brian Derry, a Naval Rating",M,22,FATAL,Y,16h30,Said to involve 2 sharks: 5.2 m & 6 m [17' & 20'] ,"Odessa American, 1/19/1959; G.P. Whitley, ref Daily Telegraph & West Australian, 1/19/1959; P. Gilbert, L. Schultz & S. Springer (1960); C. Black, pp. 148-151",1959.01.17.b-Derry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.17.b-Derry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.17.b-Derry.pdf,1959.01.17.b,1959.01.17.b,2105,, +1959.01.17.a,17-Jan-59,1959,Unprovoked,AUSTRALIA,Queensland,Alexandra Headland near Mooloolaba,"Surfing, but treading water",Peter John Neil,M,17,Right foot & toe bitten,N,09h30,1.8 m [6'] shark,"Sun Herald (Sydney) 1/18/1959; P. Gilbert, L. Schultz & S. Springer(1960); J. Green, p.35",1959.01.17.a-Neil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.17.a-Neil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.17.a-Neil.pdf,1959.01.17.a,1959.01.17.a,2104,, +1959.01.15,15-Jan-59,1959,Unprovoked,SOUTH AFRICA,Western Cape Province,Melkbaai,Swimming,Fanie Schreuder,M,18,Thigh & both wrists lacerated,N,16h15,"White shark, 1.8 m to 2.1 m [6' to 7'] according to Shreuder and a witness","Cape Times, 1/16/1959 et al, M. Levine, GSAF ",1959.01.15-Schreuder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.15-Schreuder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.15-Schreuder.pdf,1959.01.15,1959.01.15,2103,, +1959.01.12,12-Jan-59,1959,Unprovoked,NEW GUINEA,Milne Bay Province,"Uga, Banaira, Milne Bay",Dragging banana seeds through the shallows,male,M,,Left calf & right thigh bitten,N,,1.4 m [4.5'] shark,"A.M. Rapson, p.149; L. Schultz & M. Malin, p.544",1959.01.12-Uga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.12-Uga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.12-Uga.pdf,1959.01.12,1959.01.12,2102,, +1959.01.02,02-Jan-59,1959,Unprovoked,MOZAMBIQUE,Maputo Province,Off Inhaca Island,Swimming ashore from fishing boat swamped and sunk by a squall,Eric Suttie & Peter Murray,M,33 & 26,"Suttie's lower abdomen was bitten, Murray disappeared (presumed drowned)",Y,08h00,,"M. Levine, GSAF; Cape Argus 1/3/1959; Natal Mercury, 1/5/1959",1959.01.02-Suttie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.02-Suttie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.02-Suttie.pdf,1959.01.02,1959.01.02,2101,, +1959.01.00,Jan-59,1959,Unprovoked,AUSTRALIA,Tasmania,Badger Head,Spearfishing / free diving,male,M,,Abrasion,N,,1.5 m [5'] shark,"Malcolm G. Hooper; L. Schultz & M. Malin, p.527",1959.01.00-BadgerHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.00-BadgerHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.00-BadgerHead.pdf,1959.01.00,1959.01.00,2100,, +1959.00.00.g,Summer of 1959,1959,Unprovoked,SOUTH KOREA,South Chungcheong Province,"36�17'N, 126�31'E",Swimming,male,M,,FATAL,Y,,White shark?,Y. Choi & K. Nakaya,1959.00.00.g-SouthKorea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.g-SouthKorea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.g-SouthKorea.pdf,1959.00.00.g,1959.00.00.g,2099,, +1959.00.00.f,Jul- to Sep-1959,1959,Unprovoked,INDIA,Orissa,Mouth of Devi River at Machgaon,,,,,"5 people killed by sharks, 30 others injured",Y,,1.5 m to 1.8 m [5' to 6'] sharks,"Reported byTimes of India, 11 September 1959; V.M. Coppleson (1952), p.247; Webster, p.67",1959.00.00.f-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.f-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.f-India.pdf,1959.00.00.f,1959.00.00.f,2098,, +1959.00.00.e,1959,1959,Provoked,ATLANTIC OCEAN,,,Paddling & sailing from Buenos Aires to Miami,Mirco Tapavica,M,,Hooked shark bit his arm PROVOKED INCIDENT,N,,"Tiger shark, 12' ?","New York Times, 1/29/1960",1959.00.00.e-Tapavica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.e-Tapavica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.e-Tapavica.pdf,1959.00.00.e,1959.00.00.e,2097,, +1959.00.00.d,1959,1959,Unprovoked,PAPUA NEW GUINEA,West New Britain Province,"Poi, Kombe Talasea",Spear fishing,male,M,,Minor injuries,N,,,"A.M. Rapson, p.150; L. Schultz & M. Malin, p.544",1959.00.00.d-Poi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.d-Poi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.d-Poi.pdf,1959.00.00.d,1959.00.00.d,2096,, +1959.00.00.c,1959,1959,Unprovoked,PAPUA NEW GUINEA,West New Britain Province,"Kalapiai, Kombe",Fishing,male,M,,Minor injuries,N,,,"A.M. Rapson, p.150",1959.00.00.c-Kalapiai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.c-Kalapiai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.c-Kalapiai.pdf,1959.00.00.c,1959.00.00.c,2095,, +1959.00.00.b,1959,1959,Unprovoked,PAPUA NEW GUINEA,"New Ireland Province, Bismarck Archipelago","Enuk Island, Kavieng",,Pasinganlas,M,,"FATAL, abdomen & leg bitten ",Y,,,"J. McLachlan, Medical Officer, Kavieng; A.M. Rapson, p.150; L. Schultz & M. Malin, p.544",1959.00.00.b-Pasinganlas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.b-Pasinganlas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.b-Pasinganlas.pdf,1959.00.00.b,1959.00.00.b,2094,, +1959.00.00.a,1959,1959,Provoked,PAPUA NEW GUINEA,Morobe Province,,Fishing,male,M,,Penis bitten while trying to drag speared shark to beach PROVOKED INCIDENT,N,,,"A.D. Campbell; A.M. Rapson, p.147",1959.00.00.a-Morobe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.a-Morobe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.a-Morobe.pdf,1959.00.00.a,1959.00.00.a,2093,, +1958.12.28,28-Dec-58,1958,Boat,TURKEY,Ahirkapi coast,Constantinople,Fishing,Fishing boat. Occupants: Yunus Potur & Ali Durmaz,,,Boat damaged,,,White shark,"C. Moore, GSAF",1958.12.28-Constantinople.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.28-Constantinople.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.28-Constantinople.pdf,1958.12.28,1958.12.28,2092,, +1958.12.27,27-Dec-58,1958,Unprovoked,PAPUA NEW GUINEA,Madang Province,Taludig,,Anonymous,,,Hip bitten,N,,,"A.M. Rapson, p.149; V.M. Coppleson (1962), p.248",1958.12.27-Taludig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.27-Taludig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.27-Taludig.pdf,1958.12.27,1958.12.27,2091,, +1958.12.23,23-Dec-58,1958,Unprovoked,SOUTH AFRICA,Western Cape Province,"Melkbaai, False Bay",Swimming,Barry Geldenhuys,M,14,FATAL,Y,,,"1/16/1959, Cape Argus; G. Wilson; M. Levine, GSAF",1958.12.23-Geldenhuys.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.23-Geldenhuys.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.23-Geldenhuys.pdf,1958.12.23,1958.12.23,2090,, +1958.12.13,13-Dec-58,1958,Unprovoked,USA,Hawaii,"Near Twin Islands off Lanikai, O'ahu (east coast)",Surfing on air mattress,William S. Weaver,M,15,"FATAL, leg severed ",Y,13h00,"Tiger shark, 4.6 m to 7.6 m [15' to 25'] ",A. L. Tester,1958.12.13-Weaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.13-Weaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.13-Weaver.pdf,1958.12.13,1958.12.13,2089,, +1958.12.12,12-Dec-58,1958,Unprovoked,AMERICAN SAMOA,Tutuila Island,Van Camp wharf,Cleaning hull of ship ,Sailor of tuna vessel No.12 Taiyo Marei,M,22,"FATAL, left thigh & hip bitten ",Y,11h00,Tiger shark,M. Hosina,1958.12.12-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.12-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.12-Samoa.pdf,1958.12.12,1958.12.12,2088,, +1958.11.23,23-Nov-58,1958,Unprovoked,AUSTRALIA,Queensland,Surfer's Paradise,Swimming,Peter Gerard Spronk,M,21,FATAL,Y,15h15,12' shark,"V.M. Coppleson (1962), p.245; A. Sharpe, p.100; J. Green, p.35",1958.11.23-Spronk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.23-Spronk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.23-Spronk.pdf,1958.11.23,1958.11.23,2087,, +1958.11.14,14-Nov-58,1958,Invalid,SOUTH AFRICA,Western Cape Province,False Bay,Fishing,male,M,,"No injury, shark leapt at him",N,,Questionable incident,Clipping dated 11/15/1958,1958.11.14-FalseBayFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.14-FalseBayFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.14-FalseBayFisherman.pdf,1958.11.14,1958.11.14,2086,, +1958.11.07.R,Reported 07-Nov-1958,1958,Unprovoked,PAPUA NEW GUINEA,"Admiralty Islands, Manus Province","M'Buke, south of Manus Island",Spearfishing,native boy,M,,"FATAL, left arm & leg severed ",Y,,,"A.M. Rapson, p.149; V.M. Coppleson (1962), p.254",1958.11.07.R-MbukeIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.07.R-MbukeIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.07.R-MbukeIsland.pdf,1958.11.07.R,1958.11.07.R,2085,, +1958.11.05,05-Nov-58,1958,Boat,USA,California,"Pacific Beach, San Diego County",Fishing,"4.3 m skiff, occupant: Bob Shay",,,"No injury to occupant, shark chasing barracuda tied to the stern rammed skiff & slashed the motor",N,,White shark,C. Limbaugh,1958.11.05-boat-Shay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.05-boat-Shay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.05-boat-Shay.pdf,1958.11.05,1958.11.05,2084,, +1958.10.12,12-Oct-58,1958,Unprovoked,USA,California,"Coronado Strand, San Diego County",Swimming near jetty,John Allman,M,15,"Left arm, hips & leg lacerated",N,,,"Los Angeles Times, 10/13/1958; D. Miller & R. Collier, R. Collier, p. 17-18",1958.10.12-Allman_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.12-Allman_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.12-Allman_Collier.pdf,1958.10.12,1958.10.12,2083,, +1958.10.05,05-Oct-58,1958,Unprovoked,USA,Florida,"Baker's Haulover, Miami Beach",,Lytton Evans,M,60,No injury,N,,,R.F. Hutton citing Miami Herald Newspaper Library,1958.10.05-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.05-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.05-Evans.pdf,1958.10.05,1958.10.05,2082,, +1958.10.00.b,Oct-58,1958,Provoked,MEXICO,Guerrrero,Acapulco,Slapped shark on tail as it swam by,male,M,,Shark turned & severed his leg PROVOKED INCIDENT,N,,,"Washington Evening Star, 6/17/1959; V.M. Coppleson (1962), p.253",1958.10.00.b-Acapulco.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.00.b-Acapulco.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.00.b-Acapulco.pdf,1958.10.00.b,1958.10.00.b,2081,, +1958.10.00.a,Oct-58,1958,Unprovoked,PAPUA NEW GUINEA,West New Britain Province,"East Nakanai, Talasea",Collecting shells,male,M,26,Leg & foot injured,N,,,"A.M. Rapson, p.149",1958.10.00.a-EastNakanai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.00.a-EastNakanai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.00.a-EastNakanai.pdf,1958.10.00.a,1958.10.00.a,2080,, +1958.09.13,13-Sep-58,1958,Unprovoked,ANDAMAN / NICOBAR ISLANDAS,,,"""Climbing up to ship after repairing the stern in water""",Sailor of tuna vessel Daisan-Tenyo-Maru,M,32,"FATAL, leg bitten ",Y,14h00,Blue shark,M. Hosina,1958.09.13-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.09.13-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.09.13-sailor.pdf,1958.09.13,1958.09.13,2079,, +1958.09.06,06-Sep-58,1958,Unprovoked,BAHAMAS,Cat Cay,off yacht Serenade,Fishing,James Douglas Munn,M,42,Right forearm lacerated,N,Morning,200-lb shark,"Miami Herald, 9/6/1958 ",1958.09.06-Munn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.09.06-Munn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.09.06-Munn.pdf,1958.09.06,1958.09.06,2078,, +1958.09.01,01-Sep-58,1958,Provoked,USA,New York,Staten Island,Spearfishing,John Leszczak,M,20,Bitten by harpooned shark PROVOKED INCIDENT,N,,,"Baltimore Evening Sun, 9/2/1958 ",1958.09.01-Leszczak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.09.01-Leszczak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.09.01-Leszczak.pdf,1958.09.01,1958.09.01,2077,, +1958.08.31,31-Aug-58,1958,Boat,MEXICO,Baja California,Ensenada,Boat stopped to repair electric pump,16' cabin cruiser with 35 hp outboard motor,,,Shark tried to bite prop twice,N,07h15,"Hammerhead shark, 5.2 m [17'] ","G.A. Llano, pp.176-177",1958.08.31-NV-Ensenada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.08.31-NV-Ensenada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.08.31.a-NV-Ensenada.pdf,1958.08.31,1958.08.31,2076,, +1958.08.01,01-Aug-58,1958,Unprovoked,CROATIA,Primorje-Gorski Kotar County,Mo�?eni?ka Draga,Swimming,Hilda Keller,F,,Leg injured,N,18h00,3 m shark,"C. Moore, GSAF",1958.08.01-Keller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.08.01-Keller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.08.01-Keller.pdf,1958.08.01,1958.08.01,2075,, +1958.07.31.R, Reported 31-Jul-1958,1958,Unprovoked,MEXICO,Guerrero,"Caleta Beach, Acapulco",Swimming,Suzanne Dreufus,F,,FATAL,Y,,,"Miami Herald, 8/2/1958 reported this was the second fatality at this resort this month",1958.07.31-Dreufus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.31-Dreufus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.31-Dreufus.pdf,1958.07.31.R,1958.07.31.R,2074,, +1958.07.27.b,27-Jul-58,1958,Unprovoked,USA,Florida,"9 miles north of Turtle Beach, Siesta Key, Sarasota County","Swimming, ducking for shells in water 0.9 m deep",Robert Lawton (brother & rescuer),M,12,3 lacerations on leg,N,16h10,"Tiger shark, 1.5 m to 1.8 m [5' to 6'] ","E. Clark; M. Vorenberg; R. Skocik, pp.173-174; V.M. Coppleson, p.255; H. D. Baldridge, pp. 25, 62, 73 & 164",1958.07.27.b-RobertLawton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.27.b-RobertLawton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.27.b-RobertLawton.pdf,1958.07.27.b,1958.07.27.b,2073,, +1958.07.27.a,27-Jul-58,1958,Unprovoked,USA,Florida,"Longboat Key, Sarasota, Sarasota County","Swimming, ducking for shells in water 0.9 m deep",Douglas Lawton,M,8,"Left hand and leg bitten, leg surgically amputated below hip",N,16h10,"Tiger shark, 1.5 m to 1.8 m [5' to 6'] ","E. Clark (1960); M. Vorenberg; R. Skocik, pp.173-174; H.D. Baldridge, pp. 25, 62, 73 & 164",1958.07.27.a-DouglasLawton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.27.a-DouglasLawton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.27.a-DouglasLawton.pdf,1958.07.27.a,1958.07.27.a,2072,, +1958.07.10,10-Jul-58,1958,Unprovoked,USA,Florida,"Key West, Monroe County",,Angel B. Escartin,M,35,FATAL Autopsy report: bitten by shark while still alive,Y,,,"R. F. Hutton; T. Helm, p.239",1958.07.10-Escartin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.10-Escartin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.10-Escartin.pdf,1958.07.10,1958.07.10,2071,, +1958.07.08, 08-Jul-1958,1958,Unprovoked,KENYA,Coast Province,Port Kilindeni / Mombasa Harbor,Swimming,"Tahei Nakatani, a Japanese seaman from the fishing vessel Seiju Maru",M,21,"FATAL, leg severed ",Y,P.M.,,"Natal Mercury, 7/9/1958",1958.07.08-Nakatani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.08-Nakatani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.08-Nakatani.pdf,1958.07.08,1958.07.08,2070,, +1958.07.04.b,04-Jul-58,1958,Sea Disaster,PACIFIC OCEAN,Between Hawaii & Wake Island,600 miles northwest of Honolulu,U.S. Airforce C124 enroute from Hickham Air Base to Japan went down. The 3 survivors fashioned raft from mailbags & were rescued 3 days after the crash.,"Roy A. Robinson, Sr.",M,,FATAL,Y,10h45,Sharks averaged 1.8 m [6'] in length,"Evening Star (Washington D.C.), 7/7/1958, p. A10; G.A. Llano in Sharks and Survival, pp.382-383; V.M. Coppleson (1962), p.259",1958.07.04.b-Robinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.04.b-Robinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.04.b-Robinson.pdf,1958.07.04.b,1958.07.04.b,2069,, +1958.07.04.a,04-Jul-58,1958,Sea Disaster,PACIFIC OCEAN,Between Hawaii & Wake Island,600 miles northwest of Honolulu,U.S. Airforce C124 enroute from Hickham Air Base to Japan went down. The 3 survivors fashioned raft from mailbags & were rescued 3 days after the crash.," Captain Jonathan Brown, pilot ",M,31,Left shoulder bitten ,N,10h25,Sharks averaged 1.8 m [6'] in length,"Evening Star (Washington D.C.), 7/7/1958, p. A10; G.A. Llano in Sharks and Survival, pp.382-383; V.M. Coppleson (1962), p.259",1958.07.04.a-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.04.a-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.04.a-Brown.pdf,1958.07.04.a,1958.07.04.a,2068,, +1958.07.02,02-Jul-58,1958,Provoked,USA,Florida,"Siesta Key, Sarasota County",Free diving,John Hamlin,M,20,"He grabbed shark, it bit his leg below the knee PROVOKED INCIDENT",N,14h30,"Nurse shark, 1.5 m [5'] identified by Dr. E. Clark on description of shark","E. Clark; H. D. Baldridge, p.26",1958.07.02-Hamlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.02-Hamlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.02-Hamlin.pdf,1958.07.02,1958.07.02,2067,, +1958.07.01,01-Jul-58,1958,Unprovoked,PAPUA NEW GUINEA,"New Ireland Province, Bismarck Archipelago","Maritzoan, east coast of Namatanai",Swimming, Toapindak (male),M,38,"FATAL, left arm severed ",Y,,,"Dept of Public Health, Namatani; A. M. Rapson, p. 149 ",1958.07.01-Toapindak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.01-Toapindak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.01-Toapindak.pdf,1958.07.01,1958.07.01,2066,, +1958.07.00.b,Jul-58,1958,Unprovoked,BAHAMAS,Abaco Islands,North of Walkers Cay,"Spearfishing, had fish on his spear",Stanton Waterman,M,36,"No injury, shark went for diver's leg & missed, diver hit shark on head with speargun & shark bit speargun ",N,12h00,"Tiger shark, <2 m TL","S. Waterman, GSAF",1958.07.00.b-Waterman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.00.b-Waterman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.00.b - Waterman.pdf,1958.07.00.b,1958.07.00.b,2065,, +1958.07.00.a,Jul-58,1958,Unprovoked,USA,Florida,"Sarasota, Sarasota County",,2 males admitted to Memorial Hospital emergency room this month,M,,Both were bitten on feet by sharks,N,,,"R. F. Hutton; T. Helm, p.239",1958.07.00.a-NV-Sarasota.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.00.a-NV-Sarasota.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.00.a-NV-Sarasota.pdf,1958.07.00.a,1958.07.00.a,2064,, +1958.06.26,26-Jun-58,1958,Provoked,USA,Florida,"Sanibel Island, Lee County",Wading,Eric Napier Cockerill,M,59,Right foot bitten when he walked into shark's head PROVOKED INCIDENT,N,17h30,"Nurse shark, 2.1 m [7'] identified by Dr. E. Clark on color & tooth impressions","E. Clark; Dr. Greenwood; R.F. Hutton; Randall in Sharks & Survival, p.357; T. Helm, p.237",1958.06.26-Cockerill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.26-Cockerill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.26-Cockerill.pdf,1958.06.26,1958.06.26,2063,, +1958.06.24,24-Jun-58,1958,Unprovoked,USA,Florida,"Turtle Beach, Siesta Key, Sarasota County",Walking,Frank A. Mahala,M,17,Lower left leg & foot bitten,N,17h10,Tiger shark?,"E. Clark; R. Skocik, pp.172-173; H.D. Baldridge, p.26",1958.06.24-Mahala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.24-Mahala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.24-Mahala.pdf,1958.06.24,1958.06.24,2062,, +1958.06.17,17-Jun-58,1958,Provoked,USA,Florida,Key Biscayne,"Swimming, towing the shark",B. Irving,M,,Thigh bitten PROVOKED INCIDENT,N,,"Nurse shark, 1.1 m [3.5'] ","Randall in Sharks & Survival, pp.357",1958.06.17-Irving.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.17-Irving.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.17-Irving.pdf,1958.06.17,1958.06.17,2061,, +1958.06.15,15-Jun-58,1958,Invalid,AUSTRALIA,Queensland,Green Island,Swimming,Alva Colquhoun & Ilsa Konrads,F,,"Injuries caused by coral, not the shark",N,,5' shark,"Natal Mercury, 6/18/1958",1958.06.15-Swimmers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.15-Swimmers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.15-Swimmers.pdf,1958.06.15,1958.06.15,2060,, +1958.06.02.R,Reported 02-Jun-1958,1958,Invalid,SOUTH AFRICA,KwaZulu-Natal,King Reef off Park Rynie,Spearfishing,Gene Franken & Maurice McGregor,M,,Injuries not caused by sharks,N,,,"Daily News, 6/2/1958",1958.06.02-McGregor-Franken.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.02-McGregor-Franken.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.02-McGregor-Franken.pdf,1958.06.02.R,1958.06.02.R,2059,, +1958.04.30,30-Apr-58,1958,Provoked,USA,Florida,1 mile off Miami Beach,Free diving,Johnny Bower,M,29,"Grabbed shark�s tail, shark bit his thigh PROVOKED INCIDENT",N,,"Nurse shark, 1.5 m [5'] ","Miami Herald, May 1, 1958",1958.04.30-Bowers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.30-Bowers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.30-Bowers.pdf,1958.04.30,1958.04.30,2058,, +1958.04.19,19-Apr-58,1958,Unprovoked,TAIWAN,Taipei Hsien,Off Cape of Pi-tou,Diving,Nan-Tien Chang,M,29,Right cheek bitten,N,17h00,"Mako shark, 100-kg [221-lb] ",W.H. Yu,1958.04.19-Chang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.19-Chang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.19-Chang.pdf,1958.04.19,1958.04.19,2057,, +1958.04.05,05-Apr-58,1958,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Uvongo,Paddling in knee-deep water,Fay Jones Bester,F,28,FATAL,Y,11h10,3 m [10'] shark,"G.S. Perry, M. Levine, GSAF ",1958.04.05-Bester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.05-Bester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.05-Bester.pdf,1958.04.05,1958.04.05,2056,, +1958.04.03,03-Apr-58,1958,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Port Edward,Swimming with goggles,Nicholaas Badenhorst ,M,29,"FATAL, arm severed above elbow, abdomen & leg bitten ",Y,13h30,3 m [10'] shark,"M. Levine, GSAF ",1958.04.03-Badenhorst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.03-Badenhorst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.03-Badenhorst.pdf,1958.04.03,1958.04.03,2055,, +1958.04.00,Apr-58,1958,Unprovoked,PAPUA NEW GUINEA,Morobe Province,"Nasigilatu (Near Malasanga, Finschhafen, in the Huon Gulf)","Fishing, holding fish in his left hand",male,M,,Left forearm amputated,N,,,"A.D. Campbell; A.M. Rapson, p.149",1958.04.00-Nasigilatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.00-Nasigilatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.00-Nasigilatu.pdf,1958.04.00,1958.04.00,2054,, +1958.02.19,19-Feb-58,1958,Invalid,AUSTRALIA,New South Wales,,Spearfishing,Kevin Blair,M,21,"Disappeared while diving, speargun recovered, 2 large sharks in vicinity.",Y,Late afternoon,,"Durban Daily News, 2/20/1958",1958.02.19-Blair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.02.19-Blair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.02.19-Blair.pdf,1958.02.19,1958.02.19,2053,, +1958.02.01,01-Feb-58,1958,Provoked,USA,US Virgin Islands,Water Island,Spearfishing on Scuba,"U.S. Navy U.D.T. Diver trainee, Ronald Gerringer",M,18,Chest bitten by speared shark PROVOKED INCIDENT,N,,"Nurse shark, 1.5 m [5'] ","J, Randall, p.358 and L. Schultz & M. Malin, p.545 in Sharks & Survival",1958.02.01-Gerringer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.02.01-Gerringer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.02.01-Gerringer.pdf,1958.02.01,1958.02.01,2052,, +1958.01.27,27-Jan-58,1958,Unprovoked,AUSTRALIA,New South Wales,5 miles south of Sussex Inlet at mouth of Berara Lake,Spearfishing / swimming on surface,Ronald Kerwand,M,17,Right leg lacerated,N,,,"V.M. Coppleson (1962), p.251 ",1958.01.27-Kerwand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.27-Kerwand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.27-Kerwand.pdf,1958.01.27,1958.01.27,2051,, +1958.01.19,19-Jan-58,1958,Unprovoked,AUSTRALIA,New South Wales,Brunswick Heads,Body surfing,Brian Henderson,M,14,"Laceration to left ankle, heel and little toe",N,16h30,6' shark,"V.M. Coppleson (1962), p.245",1958.01.19-Henderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.19-Henderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.19-Henderson.pdf,1958.01.19,1958.01.19,2050,, +1958.01.09.R,Reported 09-Jan-1958,1958,Invalid,JAPAN,Ibaraki Prefecture,Mito,,male,M,50,Torso recovered from shark,Y,,8; 206-lb shark,"Natal Mercury, 1/9/1958",1958.01.09.R-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.09.R-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.09.R-Japan.pdf,1958.01.09.R,1958.01.09.R,2049,, +1958.01.09,09-Jan-58,1958,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Scotburgh,Swimming,Derek Garth Prinsloo,M,,FATAL,Y,07h30,White shark,"M. Levine, GSAF",1958.01.09-Prinsloo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.09-Prinsloo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.09-Prinsloo.pdf,1958.01.09,1958.01.09,2048,, +1958.00.00.j,1958-1959,1958,Provoked,TONGA,Vava'u,Hunga Island,Spearfishing,male,M,,Calf avulsed by shark he was holding by the tail PROVOKED INCIDENT,N,,<1 m shark,Dr. S. Fonea,1958.00.00.j-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.j-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.j-Tonga.pdf,1958.00.00.j,1958.00.00.j,2047,, +1958.00.00.i,1958,1958,Provoked,SAMOA,South Pacific Ocean,North of Northeast Samoa,Placed hand in disemboweled shark�s jaws,Takai Otiai,,,Hand lacerated PROVOKED INCIDENT,N,,,"V.M. Coppleson (1962), p.248",1958.00.00.i-Otiai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.i-Otiai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.i-Otiai.pdf,1958.00.00.i,1958.00.00.i,2046,, +1958.00.00.h,1958,1958,Provoked,PANAMA,Canal Zone,,Skindiving,boy,M,,"Boy seized shark by its tail, shark bit boy�s forearm PROVOKED INCIDENT",N,,"18"" to 24"" shark","Dr. F. X. Schloeder; H.D. Baldridge, p.165",1958.00.00.h-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.h-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.h-Panama.pdf,1958.00.00.h,1958.00.00.h,2045,, +1958.00.00.f,1958,1958,Unprovoked,PAPUA NEW GUINEA,Louisiade Archipelago,"Brooker Island , Calvados Chain",,Anonymous,,,FATAL,Y,,,"A.M. Rapson, p.149",1958.00.00.f-BrookerIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.f-BrookerIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.f-BrookerIsland.pdf,1958.00.00.f,1958.00.00.f,2044,, +1958.00.00.e,1958,1958,Unprovoked,PAPUA NEW GUINEA,West New Britain Province,"Bulu, Talasea",Spearfishing,male,M,,"FATAL, back & buttocks bitten ",Y,,,"A.M. Rapson, p. 149",1958.00.00.e-Bulu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.e-Bulu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.e-Bulu.pdf,1958.00.00.e,1958.00.00.e,2043,, +1958.00.00.d,1958,1958,Unprovoked,PAPUA NEW GUINEA,West New Britain Province,"Kombe, Talasea",Spearfishing,male,M,,"FATAL, severe abdominal injuries ",Y,,Several sharks involved,"A.M. Rapson, p.149",1958.00.00.d-Kombe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.d-Kombe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.d-Kombe.pdf,1958.00.00.d,1958.00.00.d,2042,, +1958.00.00.c,1958,1958,Unprovoked,PAPUA NEW GUINEA,Morobe Province,"Korem, Finschhafen ","Fishing, holding fish",male x 3,M,,Hand holding the fish was bitten in all 3 cases,N,,,"A.D. Campbell; A. M. Rapson, p.149",1958.00.00.c-Korem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.c-Korem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.c-Korem.pdf,1958.00.00.c,1958.00.00.c,2041,, +1958.00.00.b,1958,1958,Boat,SOUTH AFRICA,Western Cape Province,Plettenberg Bay,Fishing (trolling),ski-boat,,,No injury to occupants; shark bit propeller,N,,White shark,"T. Wallett, p.27",1958.00.00.b-PlettenburgBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.b-PlettenburgBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.b-PlettenburgBay.pdf,1958.00.00.b,1958.00.00.b,2040,, +1958.00.00.a,Circa 1958,1958,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,MaKakatana River,"Fishing, walking in river to cast",young Zulu male,M,,"FATAL, right leg severed above knee ",Y,,,"J. Daniel, M. Levine. GSAF ",1958.00.00.a-KakatanaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.a-KakatanaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.a-KakatanaRiver.pdf,1958.00.00.a,1958.00.00.a,2039,, +1957.12.31,31-Dec-57,1957,Unprovoked,AUSTRALIA,South Australia,"Port Hughes, 100 miles from Adelaide in Spencer Gulf",Spearfishing,Jack Evans,M,,No injury. Shark grabbed fish attached to his belt & towed him seaward. ,N,,,"V.M. Coppleson (1962), p.251",1957.12.31-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.31-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.31-Evans.pdf,1957.12.31,1957.12.31,2038,, +1957.12.30,30-Dec-57,1957,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Margate,Standing,Julia Painting,F,14,"Left arm severed, torso bitten, thigh lacerated, many abrasions",N,12h40,1.8 m [6'] shark,"J. Painting, Dr. Feinberg, M. Levine, GSAF",1957.12.30-Painting.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.30-Painting.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.30-Painting.pdf,1957.12.30,1957.12.30,2037,, +1957.12.26,26-Dec-57,1957,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Splash Rock, Port Edward",Skindiving,Donald Webster,M,20,Lacerations on head & neck,N,10h30,,"Natal Mercury, 12/27/1957; M. Levine, GSAF",1957.12.26-Webster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.26-Webster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.26-Webster.pdf,1957.12.26,1957.12.26,2036,, +1957.12.23,23-Dec-57,1957,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Margate,Floating,Vernon James Berry,M,23,"FATAL, right arm broken & stripped of flesh, left hand severed above wrist, lower abdomen, buttocks & thigh bitten ",Y,16h23,>3 m [10'] shark,"P. Lynch, N. Doveton, G. Wolfe, M.Levine, GSAF ",1957.12.23-Berry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.23-Berry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.23-Berry.pdf,1957.12.23,1957.12.23,2035,, +1957.12.20,20-Dec-57,1957,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Uvongo,Standing,Allan Green,M,15,"FATAL, multiple, severe injuries ",Y,16h00,,"P. Lynch, G. Wolfe, A. Cowan, M.Levine, GSAF ",1957.12.20-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.20-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.20-Green.pdf,1957.12.20,1957.12.20,2034,, +1957.12.18,18-Dec-57,1957,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Karridene,Body surfing,Robert Wherley,M,16,"Left leg severed at knee, part of left thigh removed",N,17h00,," M. Levine, GSAF ",1957.12.18-Wherley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.18-Wherley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.18-Wherley.pdf,1957.12.18,1957.12.18,2033,, +1957.11.08,08-Nov-57,1957,Sea Disaster,PACIFIC OCEAN,"1,000 miles east of Hawaii",,Air/Sea Disaster Pan-American Airlines Stratocruiser with 44 people onboard crashed into the sea,,,,Navy personnel recovered 19 shark-scavenged bodies,N,,,"Guam Daily News, November 19, 1957; V.M. Coppleson (1962), p.259; SAF Case #1075",1957.11.08-Stratocruiser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.11.08-Stratocruiser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.11.08-Stratocruiser.pdf,1957.11.08,1957.11.08,2032,, +1957.11.04.R,Reported 04-Nov-1957,1957,Boat,AUSTRALIA,New South Wales,Off Scotts,Fishing,"16-foot launch, occupants: George Casey, Jack Byrnes, Julian Reynolds & Denny Laverty",,,"No injury, shark's teeth embedded in boat",N,,,"The Age, 11/04/1957",1957.11.04.R-Fishing-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.11.04.R-Fishing-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.11.04.R-Fishing-launch.pdf,1957.11.04.R,1957.11.04.R,2031,, +1957.10.24,24-Oct-57,1957,Unprovoked,SOLOMON ISLANDS,Honiara,Honiara,,"Matthew Keia, a Lord Howe native",M,22,FATAL,Y,17h30,,"V.M. Coppleson (1962), p.248 ",1957.10.24-Keia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.10.24-Keia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.10.24-Keia.pdf,1957.10.24,1957.10.24,2030,, +1957.10.23,23-Oct-57,1957,Unprovoked,SOLOMON ISLANDS,Honiara,Honiara,,Melanesian woman,F,28,FATAL,Y,17h30,,"V.M. Coppleson (1962), p.248",1957.10.23-Melanesian-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.10.23-Melanesian-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.10.23-Melanesian-woman.pdf,1957.10.23,1957.10.23,2029,, +1957.09.02,02-Sep-57,1957,Unprovoked,MARSHALL ISLANDS,Eniwetok Atoll,Parry Island,,Walter L. Huges,M,,Survived,N,,Identified as carcharinid shark (based on its behavior) by Dr. D.P. L. Schultz; mako shark according to Huges,"V.M. Coppleson (1962), p.248",1957.09.02-Huges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.09.02-Huges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.09.02-Huges.pdf,1957.09.02,1957.09.02,2028,, +1957.08.00,Aug-57,1957,Provoked,USA,Florida,"Miami Seaquarium, Virginia Key, Miami, Miami-Dade County",Attempting to net shark in shark channel,Philip Case & William B. Gray,M,,Legs bitten PROVOKED INCIDENT,N,,"2.7 m [9'] bull shark, identified by Capt. W. Gray","St. Petersburg Times (Sunday Magazine), 3/1/1959; R. F. Hutton; J. Randall, p.352 in Sharks & Survival; T. Helm, p.238",1957.08.00-Case-Gray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.08.00-Case-Gray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.08.00-Case-Gray.pdf,1957.08.00,1957.08.00,2027,, +1957.07.24,24-Jul-57,1957,Provoked,USA,California,"La Jolla, San Diego County",Spearfishing on Scuba,Earl .A. Murray,M,,Diver jabbed shark with spear and it make a threat display. No injury PROVOKED INCIDENT,N,,"Said to involve a 1 m white shark, but thought that it was more likely a blue shark","SAF Case #1497; R. Collier, p. xxv; H.D. Baldridge, p.185",1957.07.24-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.07.24-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.07.24-Murray.pdf,1957.07.24,1957.07.24,2026,, +1957.07.15,15-Jul-57,1957,Unprovoked,USA,North Carolina,"Salter Path, Atlantic Beach, Carteret County",Swimming,Rupert Wade,M,57,"FATAL, knee bitten ",Y,15h15,White shark,"V.M. Coppleson, p.155; F. Walker; F. Schwartz, p.23",1957.07.15-Rupert-Wade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.07.15-Rupert-Wade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.07.15-Rupert-Wade.pdf,1957.07.15,1957.07.15,2025,, +1957.07.09,09-Jul-57,1957,Unprovoked,AUSTRALIA,Torres Strait,Near Thursday Island,Diving for trochus,Conwell Kris,M,36,Right hand and arm bitten,N,,9' shark,"The Age, 7/11/1957",1957.07.09-Kris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.07.09-Kris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.07.09-Kris.pdf,1957.07.09,1957.07.09,2024,, +1957.06.21,21-Jun-57,1957,Invalid,CUBA,Yucatan Channel,,M.V. Tropical sank. Sole survivor rode oil drums for 8 days without food or water.,,,,"No injury, no attack, sharks in vicinity when the sea was calm",N,,,"Daily Telegram, 7/1/1957, p.4; V.M. Coppleson (1962), p.259",1957.06.21-Tropical.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.06.21-Tropical.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.06.21-Tropical.pdf,1957.06.21,1957.06.21,2023,, +1957.05.11,11-May-57,1957,Unprovoked,AUSTRALIA,New South Wales,"Tea Gardens, north of Newcastle",Competing in spearfishing championship & towing dead fish,Leonard Higgins,M,28,Thigh bitten & few lacerations on abdomen & buttock,N,12h00,4.6 m [15'] shark,"V.M. Coppleson (1958), p.175",1957.05.11-Higgins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.11-Higgins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.11-Higgins.pdf,1957.05.11,1957.05.11,2022,, +1957.05.07,Reported 07-May-1957,1957,Unprovoked,SOLOMON ISLANDS,,,Fishing,Elison Sevo,M,,Legs nipped & he bit shark's snout,N,,,"Miami Daily News, 5/7/1957",1957.05.07.R-Sevo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.07.R-Sevo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.07.R-Sevo.pdf,1957.05.07,1957.05.07,2021,, +1957.05.00,May-57,1957,Unprovoked,USA,Florida,"8 miles off St. Marks, Wakulla County",3 men & 2 boys picked up wearing life jackets and with inner tube,male,M,,Leg lacerated,N,,,"V.M. Coppleson (1962), p.259",1957.05.00-St-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.00-St-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.00-St-Marks.pdf,1957.05.00,1957.05.00,2020,, +1957.04.28,28-Apr-57,1957,Unprovoked,USA,California,"Atascadero Beach, Morro Bay, San Luis Obispo County",Swimming,Peter Savino,M,25,"FATAL, seen with arm in mouth of shark. Body not recovered. ",Y,13h30,White shark,"D. Miller & R. Collier, R. Collier, pp.16-17; V.M. Coppleson (1958), p.255",1957.04.28-Savino_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.28-Savino_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.28-Savino_Collier.pdf,1957.04.28,1957.04.28,2019,, +1957.04.23,23-Apr-57,1957,Unprovoked,AUSTRALIA,New South Wales,"Merewether Beach, Newcastle",Surfing,Paul Wilson ,M,15,Minor injuries,N,,Wobbegong shark?,"V.M. Coppleson (1958), pp.79 & 236",1957.04.23-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.23-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.23-Wilson.pdf,1957.04.23,1957.04.23,2018,, +1957.04.22,22-Apr-57,1957,Provoked,USA,Florida,"Ormond Beach, Volusia County",Standing,Michael Carpenter,M,17,Ankle injured by shark trapped in pool as it tried to get out PROVOKED INCIDENT ,N,11h00,4 m [13'] shark,"R. F. Hutton; V.M. Coppleson (1958), pp.155 & 255",1957.04.22-Carpenter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.22-Carpenter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.22-Carpenter.pdf,1957.04.22,1957.04.22,2017,, +1957.04.13,13-Apr-57,1957,Unprovoked,AUSTRALIA,Torres Strait,"Thursday Island Harbour, Queensland",Swimming between anchored pearling luggers,Tuisafua Nomoa,M,22,"Left arm bitten, surgically amputated",N,14h00,Shark seen feeding on turtle scraps thrown overboard prior to incident.,"J.W. Robinson; V.M. Coppleson (1958), p.245; J. Green, p.34",1957.04.13-Nomoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.13-Nomoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.13-Nomoa.pdf,1957.04.13,1957.04.13,2016,, +1957.04.07.b,07-Apr-57,1957,Unprovoked,PAPUA NEW GUINEA,Bougainville (North Solomons),Kieta,Diving from canoe,Omni (rescuer),M,17,Injured while Sonieva was transferred to another canoe,N,,,"V.M. Coppleson (1958), pp.248 & 266",1957.04.07.b-Omni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.07.b-Omni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.07.b-Omni.pdf,1957.04.07.b,1957.04.07.b,2015,, +1957.04.07.a,07-Apr-57,1957,Unprovoked,SOLOMON ISLANDS,Bougainville (North Solomons),Kieta,Diving from canoe,Matthew Sonieva,M,15,Leg severed,N,,,"V.M. Coppleson (1958), pp. 248 & 266; A.M. Rapson, p.149",1957.04.07.a-Sonieva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.07.a-Sonieva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.07.a-Sonieva.pdf,1957.04.07.a,1957.04.07.a,2014,, +1957.02.24,24-Feb-57,1957,Unprovoked,FIJI,Viti Levu,Suva Harbor,Spearfishing,Sami Bale,M,,Right arm & forearm injured,N,,,"NOTE: V.M. Coppleson (1962), p.253, records the date as 2/24/1957; L. Schultz & M. Malin, p.537, records the name as ""Bale, a Fijian"" and the date as 2/24/1956 ",1957.02.24-Bale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.24-Bale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.24-Bale.pdf,1957.02.24,1957.02.24,2013,, +1957.02.05,05-Feb-57,1957,Unprovoked,USA,Florida,"South Beach, Fort Pierce, St Lucie County",Floating,David Carson,M,,Foot bitten,N,15h30,1.2 m [4'] shark,"R.F. Hutton; V.M. Coppleson (1958), p.255",1957.02.05-Carson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.05-Carson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.05-Carson.pdf,1957.02.05,1957.02.05,2012,, +1957.02.02,02-Feb-57,1957,Unprovoked,AUSTRALIA,Western Australia,Cape Lev�que,,"Japanese male, one of crew of pearl culture survey ship",M,,Man landed at Cape Lev�que lighthouse in critical condition after being bitten by a shark. Not known if he survived.,UNKNOWN,,,"V.M. Coppleson (1958), p.264",1957.02.02-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.02-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.02-JapaneseDiver.pdf,1957.02.02,1957.02.02,2011,, +1957.02.00,Feb-57,1957,Unprovoked,USA,Florida,Florida Keys,Skindiving for specimens,R.P.L. Straughan,M,,Minor injuries,N,,Said to involve a large mako shark,"T. Helm, p.235",1957.02.00-Straughan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.00-Straughan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.00-Straughan.pdf,1957.02.00,1957.02.00,2010,, +1957.01.05,05-Jan-57,1957,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umgeni River Mouth,Wading,Sydney Victor Williams,M,12,FATAL,Y,,,"Col. C. Maritz, M. Levine, GSAF",1957.01.05-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.01.05-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.01.05-Williams.pdf,1957.01.05,1957.01.05,2009,, +1957.00.00.k,1957,1957,Invalid,SRI LANKA,Western Province,Colombo Harbor,Fishing,F. L. Fernando,M,,"FATAL, but shark involvement not confirmed",Y,,,R. I. DeSilva,1957.00.00.k-Fernando.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.k-Fernando.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.k-Fernando.pdf,1957.00.00.k,1957.00.00.k,2008,, +1957.00.00.j,1957,1957,Unprovoked,USA,Florida,"Fort Pierce, St. Lucie County",Bathing,R. Nauth,,,Injured by shark,N,,1.5 m [5'] shark,R.F. Hutton,1957.00.00.j-NV-Nauth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.j-NV-Nauth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.j-NV-Nauth.pdf,1957.00.00.j,1957.00.00.j,2007,, +1957.00.00.i,1957,1957,Invalid,CUBA,Havana Province,Cojimar,,an infant,,2 to 3 months,"FATAL, but was it an accident or infanticide?",Y,,3.7 m [12'] shark,"F. Poli, p.23-24",1957.00.00.i-baby,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.i-baby,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.i-baby,1957.00.00.i,1957.00.00.i,2006,, +1957.00.00.h,1957,1957,Boat,CUBA,Havana Province,Cojimar,Fishing,"boat, occupant: Portuondo",,,"No injury to occupant, shark stuck boat",N,,3.7 m [12'] shark ,"F. Poli, pp.21-24",1957.00.00.h-boat-Portuondo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.h-boat-Portuondo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.h-boat-Portuondo.pdf,1957.00.00.h,1957.00.00.h,2005,, +1957.00.00.g,1957,1957,Unprovoked,CUBA,Havana Province,Havana,Fishing for sharks,William Bolster,M,18,"FATAL, became entangled in fishing line and pulled below the surface ",Y,,,"F. Poli, p.9",1957.00.00.g-Bolster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.g-Bolster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.g-Bolster.pdf,1957.00.00.g,1957.00.00.g,2004,, +1957.00.00.f,1957,1957,Unprovoked,USA,Florida,"Miami, Miami-Dade County",Helmet diving in Miami Seaquarium,Jim Kline,M,,"Shark struck helmet, no injury",N,,Bull shark,"R. Carras, H.D. Baldridge, p.181",1957.00.00.f-Kline.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.f-Kline.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.f-Kline.pdf,1957.00.00.f,1957.00.00.f,2003,, +1957.00.00.e,1957,1957,Unprovoked,FIJI,Kadavu,Great Astrolabe Reef,Fishing,Semesa Vasu,M,30,Right foot lacerated,N,,,S.B. Brown,1957.00.00.e-Vasu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.e-Vasu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.e-Vasu.pdf,1957.00.00.e,1957.00.00.e,2002,, +1957.00.00.d,1957,1957,Unprovoked,IRAN,Karun River,"near Band Misan in Shustar, 420 km from the sea",,Mr. Paniry,M,,Survived,N,,Bull shark,B. Coad,1957.00.00.d-Paniry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.d-Paniry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.d-Paniry.pdf,1957.00.00.d,1957.00.00.d,2001,, +1957.00.00.b,1957,1957,Unprovoked,PAPUA NEW GUINEA,"Abau Subdistrict,Central Province",Mailu area ,Fishing,"male, from Laluoro",M,,"FATAL, multiple injuries ",Y,,,"A. Bleakley; A.M. Rapson, p.149",1957.00.00.b-Mailu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.b-Mailu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.b-Mailu.pdf,1957.00.00.b,1957.00.00.b,2000,, +1957.00.00.c,1957,1957,Unprovoked,IRAN,Karun River,Hesamabad,,Mr. Falah,M,,Survived,N,,Bull shark,B. Coad & F. Papahn,1957.00.00.c-Falah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.c-Falah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.c-Falah.pdf,1957.00.00.c,1957.00.00.c,1999,, +1957.00.00.a,1957,1957,Unprovoked,PAPUA NEW GUINEA,"New Britain, Bismarck Archipelago",Duke of York Island,Dynamiting fish,male,M,,FATAL,Y,,,"A. M. Rapson, p. 149",1957.00.00.a-Duke-of-York.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.a-Duke-of-York.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.a-Duke-of-York.pdf,1957.00.00.a,1957.00.00.a,1998,, +1956.12.26,26-Dec-56,1956,Unprovoked,PAPUA NEW GUINEA,Milne Bay Province,Samarai Island (south end),Spearfishing,Patterson (John) Nikuniko,M,19,"FATAL, left leg severed at hip, left torso removed ",Y,13h00,2.4 m [8'] tiger shark caught 40 hours later with shorts of the boy in its gut,"Beavis, Kwato Mission; District Commissioner, Samarai; South Pacific Post, 10/29/1956; A.M. Rapson, p.149",1956.12.26-Nikuniko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.26-Nikuniko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.26-Nikuniko.pdf,1956.12.26,1956.12.26,1997,, +1956.12.24,24-Dec-56,1956,Unprovoked,PAPUA NEW GUINEA,Milne Bay Province,Samarai Island,Spearfishing,Titus Tiso,M,16,"FATAL, left arm, shoulder & chest bitten ",Y,12h00,,"Beavis, Kwato Mission; A. M. Rapson, p. 149; V.M. Coppleson (1958), p.264",1956.12.24-Tiso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.24-Tiso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.24-Tiso.pdf,1956.12.24,1956.12.24,1996,, +1956.12.15.R,Reported 15-Dec-1956,1956,Unprovoked,GABON,Estuaire Province,Owendo,Swimming,P. Allen,M,,FATAL,Y,,,"Alton Evening Telegraph, 12/15/1956, p.4",1956.12.15.R-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.15.R-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.15.R-Allen.pdf,1956.12.15.R,1956.12.15.R,1995,, +1956.12.09,09-Dec-56,1956,Provoked,NEW ZEALAND,North Island,North Auckland,Fishing,Richard McKenzie,M,70,Bitten in cockpit of boat by shark caught 30 minutes earlier PROVOKED INCIDENT,N,,"Mako shark, 125-lb "," The Argus, 12/10/1956; V.M. Coppleson (1958)",1956.12.09-McKenzie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.09-McKenzie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.09-McKenzie.pdf,1956.12.09,1956.12.09,1994,, +1956.10.27,27-Oct-56,1956,Unprovoked,SOUTH AFRICA,Western Cape Province,"Glencairn, False Bay",Free diving for sinkers,Graham Smith,M,29,Right heel lacerated & swim fin removed by shark,N,,"White shark, according to witnesses","M. Levine, GSAF",1956.10.27-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.27-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.27-Smith.pdf,1956.10.27,1956.10.27,1993,, +1956.10.20,20-Oct-56,1956,Unprovoked,PAPUA NEW GUINEA,Central Province,Kapakapa ,"Spearfishing, holding 5' speared fish",Bogana Sabati,M,,"Left forearm & hand bitten, surgically amputated ",N,,3.7 m [12'] shark,"South Pacific Post, 1/024/1956; A.M. Rapson, p. 149",1956.10.20-Sabati.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.20-Sabati.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.20-Sabati.pdf,1956.10.20,1956.10.20,1992,, +1956.10.07,07-Oct-56,1956,Unprovoked,SENEGAL,"Near Dakar, Cap Vert Peninsula",Isle de Gor�e,"Skindiving, fish at belt",k,M,19,Right thigh bitten,N,18h15,Lemon shark,"M. Cadenet; Y. Gilbert-Desvallons; V.M. Coppleson (1962), p.538 ",1956.10.07-Peron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.07-Peron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.07-Peron.pdf,1956.10.07,1956.10.07,1991,, +1956.10.00,Oct-56,1956,Unprovoked,PAPUA NEW GUINEA,,Port Moresby,Fishing,,M,,FATAL,Y,,,"The Age, 12/7/1956",1956.10.00-PortMoresby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.00-PortMoresby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.00-PortMoresby.pdf,1956.10.00,1956.10.00,1990,, +1956.09.23,23-Sep-56,1956,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Surf fishing,"Joel Healy, Jr.",M,27,Posterior left ankle bitten,N,,a sand shark,"Daytona Beach Morning Journal, 9/26/1956",1956.09.23-Healy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.23-Healy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.23-Healy.pdf,1956.09.23,1956.09.23,1989,, +1956.09.13,13-Sep-56,1956,Unprovoked,,Near the Andaman & Nicobar Islands,,Climbing back on ship,male,M,,FATAL,Y,P.M.,Blue shark,M. Hosina,1956.09.13-TunaBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.13-TunaBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.13-TunaBoat.pdf,1956.09.13,1956.09.13,1988,, +1956.09.00.b,Sep-56,1956,Unprovoked,MAYOTTE,Mozambique Channel,,Fishing,2 males,M,,FATAL,Y,,Tiger shark,P. Fourmanoir,1956.09.00.b-Mayotte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.00.b-Mayotte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.00.b-Mayotte.pdf,1956.09.00.b,1956.09.00.b,1987,, +1956.09.00.a,Sep-56,1956,Unprovoked,ITALY,Tyrrenian Sea,1.5 miles south of San Felice Circeo ,Scuba diving,Goffredo Lombardo,M,,Survived,N,,"White shark, 13'10"", 1320-lb female ","G. Bini, A. De Maddalena & C. Moore, GSAF",1956.09.00.a-Lombardo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.00.a-Lombardo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.00.a-Lombardo.pdf,1956.09.00.a,1956.09.00.a,1986,, +1956.08.25,25-Aug-56,1956,Unprovoked,PAPUA NEW GUINEA,Central Province,"Paga Point or Fishermans Island, Port Moresby",Fishing ,"Kara Benagi, from Hula",M,34,"FATAL, tissue removed from abdomen & thigh ",Y,,4.3 m [14'] shark,"V.M. Coppleson (1958), pp.49-51 & 264; A.M. Rapson, p. 149",1956.08.25-Benagi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.25-Benagi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.25-Benagi.pdf,1956.08.25,1956.08.25,1985,, +1956.08.20,20-Aug-56,1956,Unprovoked,PAPUA NEW GUINEA,Central Province,"Paga Point, Port Moresby ",Fishing,native,M,,"Leg bitten, but survived",N,,,"V.M. Coppleson (1958), pp.49 & 264; A.M. Rapson, p.149",1956.08.20-native.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.20-native.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.20-native.pdf,1956.08.20,1956.08.20,1984,, +1956.08.15.R,Reported 15-Aug-1956,1956,Unprovoked,USA,Puerto Rico,North coast,Skin diving,Jose Luis Nufize Lago,M,13,FATAL,Y,,,"Virgin Island Daily News, 8/15/1956, p.1",1956.08.15.R-Lago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.R-Lago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.R-Lago.pdf,1956.08.15.R,1956.08.15.R,1983,, +1956.08.15.b,15-Aug-56,1956,Provoked,AUSTRALIA,Queensland,Near Southport,Diving,Lyle Davis,M,,Laceration to arm when his dive buddy grabbed the shark PROVOKED INCIDENT,N,,"Wobbegong shark, 4' ","Central Queensland Herald, 8/16/1956",1956.08.15.b-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.b-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.b-Davis.pdf,1956.08.15.b,1956.08.15.b,1982,, +1956.08.15.a,15-Aug-56,1956,Unprovoked,USA,California,"Pismo Beach, San Luis Obispo County",Swimming near pier,Douglas Clarke,M,10,"Lacerated thigh, hand & shoulder",N,16h30,"White shark, 2.7 m [9'] ","D. Miller & R. Collier, V.M. Coppleson (1958), p.255; R. Collier, p. 15",1956.08.15.a-DouglasClarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.a-DouglasClarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.a-DouglasClarke.pdf,1956.08.15.a,1956.08.15.a,1981,, +1956.08.01,01-Aug-56,1956,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Chain Rocks, Amanzimtoti",Free diving for crayfish,Maximilliaan Roual Van Dam,M,23,"No injury, right swim fin bitten",N,Afternoon,,"Umtali Post, 8/8/1956, M. Levine, GSAF",1956.08.01-VanDam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.01-VanDam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.01-VanDam.pdf,1956.08.01,1956.08.01,1980,, +1956.08.00.e,Aug-56,1956,Provoked,UNITED KINGDOM,Cornwall,The Lizard,Attempting to kill a shark with explosives,Richard Kirby,M,,"FATAL, PROVOKED INCIDENT",Y,,,ThisisCornwall.co.uk ,1956.08.00.e-Kirby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.e-Kirby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.e-Kirby.pdf,1956.08.00.e,1956.08.00.e,1979,, +1956.08.00.d,Aug-56,1956,Provoked,UNITED KINGDOM,Cornwall,The Lizard,Attempting to kill a shark with explosives,Leslie Nye,M,,"FATAL, PROVOKED INCIDENT",Y,,,ThisisCornwall.co.uk ,1956.08.00.d-Nye.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.d-Nye.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.d-Nye.pdf,1956.08.00.d,1956.08.00.d,1978,, +1956.08.00.c,Aug-56,1956,Boat,MALTA,Congreve Channel,between Filfla Island and Wied iz-Zurrieq,Fishing,boat: occupants: Nazzareno Zammit & Emmanuel,,,"No injury to occupants, but Emmanuel ""later died of shock in hospital""",N,,Porbeagle or white shark,A. Buttigieg,1956.08.00.c-Zammit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.c-Zammit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.c-Zammit.pdf,1956.08.00.c,1956.08.00.c,1977,, +1956.08.00.b,Aug-56,1956,Unprovoked,PAPUA NEW GUINEA,Central Province,Yule Island,Fishing,Tsira Native,M,,"Leg severed, but survived",N,,,"V.M. Coppleson (1958), pp.49-51 & 264; A.M. Rapson, p. 149",1956.08.00.b-TsiraNative.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.b-TsiraNative.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.b-TsiraNative.pdf,1956.08.00.b,1956.08.00.b,1976,, +1956.08.00.a,Aug-56,1956,Unprovoked,PAPUA NEW GUINEA,Central Province,"Fisherman's Island, near Port Moresby",Fishing,native boy,M,,Leg & foot lacerated,N,,2.3 m [7'] shark,"V.M. Coppleson (1958), pp.49-51; A. M. Rapson, p. 149",1956.08.00.a-NativeBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.a-NativeBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.a-NativeBoy.pdf,1956.08.00.a,1956.08.00.a,1975,, +1956.07.28,28-Jul-56,1956,Provoked,USA,Puerto Rico,Aquadilla,Floating in inner tube,Jose Alengo,M,13,FATAL. His brother speared a shark which then attacked Jose & severed his leg at knee. PROVOKED INCIDENT ,Y,10h30,,"V.M. Coppleson (1958), p.265",1956.07.28-Alengo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.28-Alengo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.28-Alengo.pdf,1956.07.28,1956.07.28,1974,, +1956.07.26,26-Jul-56,1956,Provoked,USA,California,"Van Ness Municipal Pier, San Francisco",Fishing,Bansie Koide,M,38,Finger bitten by hooked shark PROVOKED INCIDENT,N,,8-lb shark,"San Mateo Times, 7/27/1956, p.18",1956.07.26-BansieKoide.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.26-BansieKoide.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.26-BansieKoide.pdf,1956.07.26,1956.07.26,1973,, +1956.07.20,20-Jul-56,1956,Unprovoked,MALTA,St. Thomas Bay,Marsascala,Swimming,Jack Smedley,M,40,FATAL,Y,,White shark,"V.M. Coppleson (1958), p.261; A. Xuereb; A. Buttigieg & C. Moore, GSAF",1956.07.20-Smedley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.20-Smedley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.20-Smedley.pdf,1956.07.20,1956.07.20,1972,, +1956.07.17,17-Jul-56,1956,Unprovoked,USA,Florida,"Miami Beach, Miami-Dade County",Wading,Eleanor Nelson,F,38,Lacerations to legs,N,18h00,,"Miami Daily News, 7/19/1956",1956.07.17-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.17-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.17-Nelson.pdf,1956.07.17,1956.07.17,1971,, +1956.07.12,12-Jul-56,1956,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Swimming,Eric Rawls,M,7,Arm & leg injured,N,15h00j,,"News & Courier, 7/14/1956; V.M. Coppleson (1958), pp. 153 & 255",1956.07.12-Rawls.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.12-Rawls.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.12-Rawls.pdf,1956.07.12,1956.07.12,1970,, +1956.06.28,28-Jun-56,1956,Unprovoked,AUSTRALIA,Torres Strait,"Fishman's Island (near Port Moresby, PNG) ","Line fishing from Lakotoi, saw shoal of fish, dived overboard, had speared second fish & surfaced for air",Kila,M,,"6"" gashes in foot & leg ",N,,2.3 m [7'] shark,"A. M. Rapson, p.149; V.M. Coppleson (1962), p.254",1956.06.28-Kila.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.06.28-Kila.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.06.28-Kila.pdf,1956.06.28,1956.06.28,1969,, +1956.06.22, 22-Jun-1956,1956,Boating,PORTUGAL,Madeira,Off Funchal,Longling fishing,Manuel Pereira,M,23,"FATAL. Shark sank fishing boat, causing death by drowning",Y,,,"C. Moore, GSAF",1956.06.22-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.06.22-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.06.22-Pereira.pdf,1956.06.22,1956.06.22,1968,, +1956.06.20,20-Jun-56,1956,Sea Disaster,MID ATLANTIC OCEAN,,Venezuelan aircraft lost,Air/Sea Disaster,,,,FATAL x 6,Y,,,"New York Times, 6/21/1956; L. Schultz & M. Malin, p.558",1956.06.20-VenezuelanAircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.06.20-VenezuelanAircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.06.20-VenezuelanAircraft.pdf,1956.06.20,1956.06.20,1967,, +1956.05.26.R,Reported 26-May-1956,1956,Boating,SOUTH AFRICA,Western Cape Province,Plettenberg Bay,Fishing,multiple boats including B.J. C. Brunt,,,"No injury, sharks bit propellers, etc",N,,White shark,"Natal Mercuy, 5/26/1956",1956.05.26.R-Brunt-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.26.R-Brunt-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.26.R-Brunt-boat.pdf,1956.05.26.R,1956.05.26.R,1966,, +1956.05.07,07-May-56,1956,Unprovoked,CUBA,,,"Free diving, working on U/W scenes for motion picture",Russ Shearman,M,30,FATAL,Y,,,"V.M. Coppleson (1958), p.258; V.M. Coppleson (1962), p.253",1956.05.07-Shearman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.07-Shearman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.07-Shearman.pdf,1956.05.07,1956.05.07,1965,, +1956.05.00,May-56,1956,Unprovoked,AUSTRALIA,Torres Strait,,Diving,,,,"""Badly bitten by shark""",N,,," V.M. Coppleson (1958), p.245",1956.05.00-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.00-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.00-diver.pdf,1956.05.00,1956.05.00,1964,, +1956.03.25,25-Mar-56,1956,Boating,ITALY,Ligurian Sea,"Genova, S. Nazaro, Punta Vagno",Boating,,,,No details,UNKNOWN,,Said to involve a 7 m [23'] white shark,A. De Maddalena; Mojetta et al. (1997),1956.03.25-Italy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.25-Italy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.25-Italy.pdf,1956.03.25,1956.03.25,1963,, +1956.03.11,11-Mar-56,1956,Unprovoked,AUSTRALIA,New South Wales,"Cronulla, near Sydney",Bathing,Ian Nolan,M,13,"Right thigh gashed, swim fin torn",N,,," V.M. Coppleson (1958), p.112",1956.03.11-Nolan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.11-Nolan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.11-Nolan.pdf,1956.03.11,1956.03.11,1962,, +1956.03.04,04-Mar-56,1956,Unprovoked,AUSTRALIA,Victoria,"Portsea Beach, near entrance to Port Phillip Bay","Swimming, attacked at surf carnival",John Patrick Wishart,M,26,FATAL,Y,16h45,3.7 m [12'] shark & may have been another shark nearby,"V.M. Coppleson (1958), pp.110-111 & 241; J. Green, p.34; A. Sharpe, pp.112-113",1956.03.04-Wishart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.04-Wishart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.04-Wishart.pdf,1956.03.04,1956.03.04,1961,, +1956.03.00.b,Mar-56,1956,Unprovoked,AUSTRALIA,Western Australia,Fremantle,Attempting to set underwater endurance record,Theo Brown,M,21,"No injury to diver, but shark bit hole in his wetsuit",N,,,"J. Green, p.34, Spokesman-Review, 3/19/1956",1956.03.00.b-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.00.b-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.00.b-Brown.pdf,1956.03.00.b,1956.03.00.b,1960,, +1956.02.26,26-Feb-56,1956,Unprovoked,AUSTRALIA,Queensland,Pioneer River near Mackay,Diving into water,Barry Keith Antonini,M,15,"FATAL, large amount of tissue removed from leg, artery severed ",Y,11h00,1.8 m [6'] shark,"B. Thompson; L. Schultz & M. Malin, p.521",1956.02.26-Antonini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.02.26-Antonini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.02.26-Antonini.pdf,1956.02.26,1956.02.26,1959,, +1956.02.10.R,Reported 10-Feb-1956,1956,Unprovoked,AUSTRALIA,Victoria,Cowes,Swimming,Brian Hamilton,M,8,Punctures to calves,N,,,"The Argus, 2/10/1956",1956.02.10.R-Hamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.02.10.R-Hamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.02.10.R-Hamilton.pdf,1956.02.10.R,1956.02.10.R,1958,, +1956.01.16.R,Reported 16-Jan-1956,1956,Unprovoked,AUSTRALIA,Torres Strait,Palm Island,Diving for trochus,Stephen Conedo,M,18,Lacerations to thighs,N,,,"The Age, 1/15/1956; V.M. Coppleson (1958), p.245;",1956.01.16.R-Conedo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.16.R-Conedo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.16.R-Conedo.pdf,1956.01.16.R,1956.01.16.R,1957,, +1956.01.16,16-Jan-56,1956,Unprovoked,COSTA RICA,,San Juan River,Swimming,Lester Burton,M,33,"FATAL, leg severed ",Y,,,"Washington Post, 1/18/1956; Note: Webster, p.55, has date of 1/18/1956 and location as Sapoa River in Nicaragua.",1956.01.16-Burton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.16-Burton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.16-Burton.pdf,1956.01.16,1956.01.16,1956,, +1956.01.05,05-Jan-56,1956,Unprovoked,AUSTRALIA,New South Wales,North Bondi,Surf skiing,Ken Howell,M,25,"No injury, shark bumped his 17' ski",N,,5' to 6' shark,"Sydney Morning Herald, 1/16/1956",1956.01.05-Howell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.05-Howell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.05-Howell.pdf,1956.01.05,1956.01.05,1955,, +1956.00.00.h,1956,1956,Unprovoked,PAPUA NEW GUINEA,Madang Province,"Singour, 60 miles south of Madang",Diving,native boy,M,,Lower leg & foot lacerated,N,,,H.D. Baldridge,1956.00.00.h-NV native-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.h-NV native-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.h-NV native-boy.pdf,1956.00.00.h,1956.00.00.h,1954,, +1956.00.00.g,1956,1956,Sea Disaster,,Between Comores & Madagascar,Geyser Bank,Shipwreck,"Captain Eric Hunt, the cook & a French passenger",M,,FATAL,Y,,,dinofish.com,1956.00.00.g-Capt-Hunt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.g-Capt-Hunt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.g-Capt-Hunt.pdf,1956.00.00.g,1956.00.00.g,1953,, +1956.00.00.f,1956,1956,Unprovoked,GREECE,Corfu Island,K�rkira,Swimming off yacht,Margoulis,F,15,FATAL,Y,,White shark,MEDSAF,1956.00.00.f-Margoulis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.f-Margoulis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.f-Margoulis.pdf,1956.00.00.f,1956.00.00.f,1952,, +1956.00.00.e,1956,1956,Provoked,USA,Virginia,"Virginia Beach, Princess Anne County",Removing shark from net ,Josh Vaughan,M,,Punctures on shin & calf PROVOKED INCIDENT,N,,40-lb sand shark,"Virginian Pilot (Norfolk, VA), 9/5/1960",1956.00.00.e-Vaughn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.e-Vaughn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.e-Vaughn.pdf,1956.00.00.e,1956.00.00.e,1951,, +1956.00.00.d,1956,1956,Unprovoked,USA,Virginia,"Virginia Beach, Princess Anne County",Swimming,girl,F,14,No details,UNKNOWN,,,"A. MacCormick, p.11, citing the New Orleans Times-Picayune, 8/17/1983",1956.00.00.d-girl-VirginiaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.d-girl-VirginiaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.d-girl-VirginiaBeach.pdf,1956.00.00.d,1956.00.00.d,1950,, +1956.00.00.c,1956,1956,Unprovoked,PAPUA NEW GUINEA,Milne Bay Province,"Kimuta, Renard Island",,Anonymous,,,"Non-fatal, treated at Misima Hospital",N,,,"A.M. Rapson, p. 149",1956.00.00.c-Kimuta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.c-Kimuta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.c-Kimuta.pdf,1956.00.00.c,1956.00.00.c,1949,, +1956.00.00.b,1956,1956,Unprovoked,PAPUA NEW GUINEA,"Admiralty Islands, Manus Province",Hus Island ,,male,M,,Right calf bitten,N,,,"A.M. Rapson, p.149;",1956.00.00.b-Hus-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.b-Hus-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.b-Hus-Island.pdf,1956.00.00.b,1956.00.00.b,1948,, +1956.00.00.a,1956,1956,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,Enuk Island ,,Lamoman,M,,"FATAL, head & neck bitten ",Y,,,"J. McLachlan, Medical Officer, Kavieng; A. M. Rapson, p.149",1956.00.00.a-Enuk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.a-Enuk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.a-Enuk.pdf,1956.00.00.a,1956.00.00.a,1947,, +1955.12.31,Reported 31-Dec-1955,1955,Boating,AUSTRALIA,Tasmania,,Ocean racing,yacht Even,,,"No injury to occupants, shark gouged hull",N,,,"C. Black, GSAF",1955.12.31.R-Even.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.12.31.R-Even.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.12.31.R-Even.pdf,1955.12.31,1955.12.31,1946,, +1955.12.11,11-Dec-55,1955,Boating,USA,Florida,� mile offshore & 9 miles north of Fort Pierce,Fishing for pompano,"boat, occupants: P.D. Neilly & Charlton Anderson",,,"No injury to occupants, shark released from net holed boat",N,,,"R.F. Hutton, 3/30/1959, citing Miami Herald; T. Helm, p.234",1955.12.11-boat Neilly_Charlton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.12.11-boat Neilly_Charlton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.12.11-boat Neilly_Charlton.pdf,1955.12.11,1955.12.11,1945,, +1955.11.16,16-Nov-55,1955,Unprovoked,PAPUA NEW GUINEA,Central Province,"Kalautu Village, Baibara at the mouth of Oibada River",Swimming,Niu Bodu,M,8,Right thigh bitten,N,18h00,Wobbegong shark,"J. G. Davis; A.M. Rapson, pp.143 & 148 ",1955.11.16-NiuBodu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.11.16-NiuBodu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.11.16-NiuBodu.pdf,1955.11.16,1955.11.16,1944,, +1955.11.00,Nov-55,1955,Unprovoked,PAPUA NEW GUINEA,"Admiralty Islands, Manus Province","Low Island, Manus",Spearfishing,male,M,,Right arm severely bitten,N,,,"Rapson, p.149",1955.11.00-LowIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.11.00-LowIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.11.00-LowIsland.pdf,1955.11.00,1955.11.00,1943,, +1955.10.16,16-Oct-55,1955,Provoked,AUSTRALIA,Queensland,"Tully, North Queensland",Spearfishing & lassoed shark,Noel Cross,M,28,Lassoed shark bit his hand PROVOKED INCIDENT,N,,6' shark,"Sydney Morning Herald, 10/17/1955;V.M. Coppleson (1958), p.185; Cross, p.34",1955.10.16-Cross.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.10.16-Cross.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.10.16-Cross.pdf,1955.10.16,1955.10.16,1942,, +1955.09.23.b,23-Sep-55,1955,Sea Disaster,NORTH PACIFIC OCEAN,1000 miles west of Hawaii,Between Wake & Johnston Islands,"""Flying Tiger"" transport plane went down with 5 men onboard",R.C. Olsen,M,,FATAL,Y,,Survivors said 2 species of sharks were involved: oceanic whitetip sharks and another species,"Letter from Captain Raoul G. Rehrer in letter to G.A. Llano in Sharks and Survival, pp.381-382; V.M. Coppleson (1962), p.257",1955.09.23.b-Olsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.23.b-Olsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.23.b-Olsen.pdf,1955.09.23.b,1955.09.23.b,1941,, +1955.09.23.a,23-Sep-55,1955,Sea Disaster,NORTH PACIFIC OCEAN,1000 miles west of Hawaii,Between Wake & Johnston Islands,"""Flying Tiger"" transport plane went down with 5 men onboard",Robert C. Hightower,M,,Bitten several times before being rescued after 43 hours in the sea by the freighter Stell Advocate,N,,"Survivors said 2 species of sharks were involved: oceanic whitetip sharks and another species,","Letter from Captain R. G. Rehrer in letter to G.A. Llano in Sharks and Survival, pp.381-382; V.M. Coppleson (1962), p.257",1955.09.23.a-Hightower.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.23.a-Hightower.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.23.a-Hightower.pdf,1955.09.23.a,1955.09.23.a,1940,, +1955.09.20,20-Sep-55,1955,Unprovoked,USA,Hawaii,East Moloka'i,Hunting turtle,Philip C. Diez,M,,Arm bitten,N,09h00,,"J. Borg, p.73; L. Taylor (1993), pp.100-101; Note: Date listed as Mar-1956 by V.M. Coppleson (1958), p.260 and 1956 by A. Resciniti, p.53",1955.09.20-Diez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.20-Diez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.20-Diez.pdf,1955.09.20,1955.09.20,1939,, +1955.09.04,04-Sep-55,1955,Unprovoked,USA,California,"Venice Beach, Los Angeles County",Swimming near breakwater,Eric Vaughters,M,16,Dorsum of right foot lacerated,N,,,"R. Collier, p.14-15; L.A. Times, 9/5/1955; V.M. Coppleson (1958), p.254; D. Miller & R. Collier;",1955.09.04-Vaughters_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.04-Vaughters_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.04-Vaughters_Collier.pdf,1955.09.04,1955.09.04,1938,, +1955.09.03,03-Sep-55,1955,Unprovoked,USA,California,"Venice Beach, Los Angeles County",,male,M,,Minor injury,N,,,"LA Times, 9/5/1955 editon ",1955.09.03-VeniceBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.03-VeniceBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.03-VeniceBeach.pdf,1955.09.03,1955.09.03,1937,, +1955.08.30.b,30-Aug-55,1955,Unprovoked,JAPAN,Izo Islands,"Mikura-jima Island, 150 miles south of Tokyo",Fishing,Otamatsu H. Yoshii,M,,FATAL,Y,,,"K. Nakaya, L.A. Times, 8/31/1955; V.M. Coppleson (1962), p.247",1955.08.30.b-Yoshi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.30.b-Yoshi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.30.b-Yoshi.pdf,1955.08.30.b,1955.08.30.b,1936,, +1955.08.30.a,30-Aug-55,1955,Provoked,USA,California,"Zuma Beach, Santa Monica, Los Angeles County",Surfing,Dale Strand,M,25,"Surfer grabbed shark, which turned & bit him and 2 lifeguards PROVOKED INCIDENT",N,,5' thresher or blue shark. The shark was killed following the incident,"SAF Case #244; D. Miller & R. Collier, V.M. Coppleson (1958), p.255",1955.08.30.a-DaleStrand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.30.a-DaleStrand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.30.a-DaleStrand.pdf,1955.08.30.a,1955.08.30.a,1935,, +1955.08.26,26-Aug-55,1955,Unprovoked,CROATIA, Primorje-Gorski Kotar County,Opatija,Swimming,Carla Podzum,F,32,FATAL,Y,,White shark,R. Rocconi,1955.08.26-Podzum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.26-Podzum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.26-Podzum.pdf,1955.08.26,1955.08.26,1934,, +1955.08.08,08-Aug-55,1955,Unprovoked,AMERICAN SAMOA,Tutuila Island,Pago Pago Bay,Swimming,Sailor from tuna vessel,M,28,"FATAL, abdomen bitten ",Y,A.M.,Blue shark,M. Hosina,1955.08.08-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.08-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.08-Samoa.pdf,1955.08.08,1955.08.08,1933,, +1955.08.04.R,Reported 04-Aug-1955,1955,Provoked,USA,South Carolina,Windy Hill Beach,Fishing,fisherman,M,,Finger bitten by hooked shark PROVOKED INCIDENT,N,,"""a small shark""","Kingsport Times, 8/4/1955",1955.08.04.R-SC-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.04.R-SC-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.04.R-SC-fisherman.pdf,1955.08.04.R,1955.08.04.R,1932,, +1955.08.00.c,Aug-55,1955,Unprovoked,NORTH ATLANTIC OCEAN ,Open sea,,Treading water,Wolfgang Emrich,M,15,No injury,N,Early afternoon,,"H.D.Baldridge (1994), SAF Case #1489",1955.08.00.c-NV-Emrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.00.c-NV-Emrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.00.c-NV-Emrich.pdf,1955.08.00.c,1955.08.00.c,1931,, +1955.08.00.a,Aug-55,1955,Boating,AUSTRALIA,South Australia,Port Augusta,Fishing,"launch, occupant: Clarrie Whelan",,,Whelan's head was injured when he fell to the deck as shark rammed boat,N,,Tooth fragments recovered from hull,"V.M. Coppleson (1958), pp.184-185",1955.08.00.a-Whelan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.00.a-Whelan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.00.a-Whelan.pdf,1955.08.00.a,1955.08.00.a,1930,, +1955.07.25,25-Jul-55,1955,Unprovoked,JAPAN,Okayama Prefecture,Usimado-no-Seto,,Hideo Ishida,M,22,FATAL,Y,13h00,Blue shark,M. Hosina,1955.07.25-Ishida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.25-Ishida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.25-Ishida.pdf,1955.07.25,1955.07.25,1929,, +1955.07.23,23-Jun-55,1955,Unprovoked,USA,Rhode Island,Occupasstuxet (Patuxent) Cove,Wading,William Cashman,M,13,Bites on legs & thighs,N,,0.7 m [2.5'] sand shark,"The Lowell Sun, 7/24/1955",1955.07.23-Cashman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.23-Cashman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.23-Cashman.pdf,1955.07.23,1955.07.23,1928,, +1955.07.15,15-Jul-55,1955,Unprovoked,MONTENEGRO,Adriatic Sea,Budva,Swimming,Romasevic,M,,FATAL,Y,,"White shark, 6.5 m ","R. Rocconi; A. De Maddalena; Radovanovic (1965), Soldo & Jardas (2000)",1955.07.15-Romasevic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.15-Romasevic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.15-Romasevic.pdf,1955.07.15,1955.07.15,1927,, +1955.07.07,07-Jul-55,1955,Unprovoked,YEMEN,Aden,Telegraph Bay,Swimming,Mrs. W. F. Dixon,F,,"FATAL, back lacerated, arm & leg severed ",Y,,2.4 m [8'] shark,"Evening Sun (Baltimore), 9/27/1955; V.M. Coppleson (1958), p.265; H.D. Baldridge, p.125; M. McDiarmid, p.65 ",1955.07.07-Dixon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.07-Dixon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.07-Dixon.pdf,1955.07.07,1955.07.07,1926,, +1955.05.08,08-May-55,1955,Provoked,USA,California,"Malibu, Los Angeles County",Spearfishing,Robert C. Yeargin,M,28,Diver hit shark & right forearm slightly injured PROVOKED INCIDENT,N,,2 m [6.75'] shark,"D. Miller & R. Collier, V.M. Coppleson (1958), p.254; ",1955.05.08-Yeargin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.05.08-Yeargin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.05.08-Yeargin.pdf,1955.05.08,1955.05.08,1925,, +1955.05.00,May-55,1955,Unprovoked,PAPUA NEW GUINEA,"Admiralty Islands, Manus Province","Lou Island, south of Manus Island",Spearfishing,Sindlin,M,,"Right forearm severely lacerated, left arm & hand lacerated",N,Midday.,,"V.M. Coppleson (1958), pp.144-146 ",1955.05.00-Sindilin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.05.00-Sindilin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.05.00-Sindilin.pdf,1955.05.00,1955.05.00,1924,, +1955.04.13.R,Reported 13-Apr-1955,1955,Unprovoked,PAPUA NEW GUINEA,Central Province,"Hadrian�s (Haidana?) Island, near Port Moresby",Spearfishing or fishing,Kairua Gairi,M,,Left shoulder bitten,N,,6' shark,"South Pacific Post, 4/13/1955; V.M. Coppleson (1962), p.254",1955.04.13.R-Gairu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.13.R-Gairu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.13.R-Gairu.pdf,1955.04.13.R,1955.04.13.R,1923,, +1955.04.12,12-Apr-55,1955,Unprovoked,PAPUA NEW GUINEA,,Abau,Spearfishing,Kula,M,,No injury. Shark took string of fish then struck canoe,N,,6' shark,"South Pacific Post, 4/20/1955",1955.04.12-Kula.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.12-Kula.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.12-Kula.pdf,1955.04.12,1955.04.12,1922,, +1955.04.00,Apr-55,1955,Unprovoked,USA,Hawaii,"Hilo, Hawai'i","Fishing from boat, Kaimamla",Kanematsu Oshiro,M,,Hand bitten,N,,,"Tribune-Herald (Hilo, Hawaii), 4/14/1963; J. Borg, p.73; L. Taylor, p.100-101 ; NOTE: Oshiro later sued owner of the boat for $15,000 in damages",1955.04.00-Oshiro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.00-Oshiro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.00-Oshiro.pdf,1955.04.00,1955.04.00,1921,, +1955.03.09,09-Mar-55,1955,Unprovoked,AUSTRALIA,New South Wales,Wamberal,Body surfing,Noel Langford,M,22,FATAL,Y,18h00,,"V.M. Coppleson (1958), pp.84-85 & 236; A. Sharpe, pp.82-83",1955.03.09-Langford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.03.09-Langford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.03.09-Langford.pdf,1955.03.09,1955.03.09,1920,, +1955.03.00.b,Mar-55,1955,Unprovoked,PAPUA NEW GUINEA,"New Ireland, Bismarck Archipelago","Kabiman, West coast",Swimming with speared fish,"Lidua, a male",M,,Left leg bitten,N,,"""small brown-colored shark""","Namatanai Dept. of Public Health; A. M. Rapson, p.148",1955.03.00.b-Liuda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.03.00.b-Liuda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.03.00.b-Liuda.pdf,1955.03.00.b,1955.03.00.b,1919,, +1955.03.00.a,Mar-55,1955,Provoked,AUSTRALIA,Western Australia,Woodman�s Point,"Competing in U/W endurance record, standing beside drum in 10' of water",Theo Watts Brown,M,25,Leg of wetsuit torn after spear fired at shark PROVOKED INCIDENT,N,11h55,,"H.D. Baldridge, p.104",1955.03.00.a-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.03.00.a-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.03.00.a-Brown.pdf,1955.03.00.a,1955.03.00.a,1918,, +1955.02.10,10-Feb-55,1955,Unprovoked,USA,California,"Trinidad Bay, Humboldt County",Scuba diving,John Adams,M,,"No injury, shark bumped diver's face",N,,"Leopard shark, 3' Triakis semifasciata, identified by J.W. DeWitt (1955)","J. DeWitt (1955); V.M. Coppleson (1962), p.255; D. Miller & R. Collier",1955.02.10-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.10-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.10-Adams.pdf,1955.02.10,1955.02.10,1917,, +1955.02.06,06-Feb-55,1955,Unprovoked,USA,California,"Pacific Grove, Monterey County",Spearfishing,James F. Jacobs,M,19,"Swimfin & 2 wool socks removed by shark, suit torn",N,12h00,"White shark, 5 m to 6 m [16.5' to 20] ","R. Collier, pp. 13-14; D. Miller & R. Collier; California Fish & Game; V.M. Coppleson (1958), pp. 156 & 254; H.D. Baldridge, p.68",1955.02.06-JamesJacobs_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.06-JamesJacobs_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.06-JamesJacobs_Collier.pdf,1955.02.06,1955.02.06,1916,, +1955.02.05,05-Feb-55,1955,Unprovoked,AUSTRALIA,New South Wales,"Sugarloaf Bay, Middle Harbor, Sydney",Swimming,Bruno Aloysius Rautenberg,M,25,"FATAL, legs bitten ",Y,14h35,3.6 m white shark (or bronze whaler),"V.M. Coppleson (1958), pp.71, 175 & 236; A. Sharpe, pp.74-75",1955.02.05-Rautenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.05-Rautenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.05-Rautenberg.pdf,1955.02.05,1955.02.05,1915,, +1955.02.04,04-Feb-55,1955,Unprovoked,INDIA,Tamil Nadu,"Vanagiri, Madras (Chennai), Bay of Bengal",Fishing,Nedugattan,M,25,Leg bitten,N,,,"V.M. Coppleson (1958), p.261",1955.02.04-Nedugattan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.04-Nedugattan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.04-Nedugattan.pdf,1955.02.04,1955.02.04,1914,, +1955.02.01.,01-Feb-55,1955,Boating,AUSTRALIA,New South Wales,Parramatta River,Rowing,"racing scull, occupants: Bill Andrews on bow oar, Dick Brown on #2 oar ",,,"No injury to occupants; shark grabbed oar, vaulted over scull",N,,,"V.M. Coppleson (1958), p.187",1955.02.01-Racing-scull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.01-Racing-scull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.01-Racing-scull.pdf,1955.02.01.,1955.02.01.,1913,, +1955.02.00,Feb-55,1955,Boating,AUSTRALIA,New South Wales,Coff�s Harbor,Rowing toward snapper grounds,10' row boat occupants; Douglas Richards & George Irwin,,,"No injury to occupants, 6 sharks charged boat",N,,4 m [13'] shark x 6,"V.M. Coppleson (1958), p.186",1955.02.00-Richards-Irwin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.00-Richards-Irwin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.00-Richards-Irwin.pdf,1955.02.00,1955.02.00,1912,, +1955.01.17,17-Jan-55,1955,Unprovoked,AUSTRALIA,New South Wales,"Wyargine Point, Edwards Beach, Balmoral Beach, Sydney",Hunting lobsters in 2.4 m of water,John Willis,M,13,"FATAL, anterior left leg & right calf bitten, no tissue lost ",Y,14h30,"Bronze whaler shark,3.7 m [12'] ","V.M. Coppleson (1958), pp.71, 174-175 & 236; A. Sharpe, p.74",1955.01.17-Willis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.01.17-Willis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.01.17-Willis.pdf,1955.01.17,1955.01.17,1911,, +1955.01.15,15-Jan-55,1955,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,A ford known as Brodies Coffin in St. Lucia Bay,Crossing the bay at the ford,Zulu male,M,,"FATAL, leg bitten ",Y,Afternoon,,"Natal Daily News, 1/17/1955; M. Levine, GSAF",1955.01.15-ZuluMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.01.15-ZuluMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.01.15-ZuluMale.pdf,1955.01.15,1955.01.15,1910,, +1955.00.00.f,1955,1955,Unprovoked,USA,Florida,"Vero Beach, Indian River County",,2 incidents north of Vero Beach,,,No details,UNKNOWN,,,"R.F. Hutton; V.M. Coppleson (1958) (ref.R. North in Scientific American, 1957",1955.00.00.f-NV-VeroBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.f-NV-VeroBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.f-NV-VeroBeach.pdf,1955.00.00.f,1955.00.00.f,1909,, +1955.00.00.d,1955,1955,Provoked,CUBA,Havana Province,Cojimar,Fishing,Romilio,M,,Forearm slashed wrist to elbow by hooked shark he was trying to club to death PROVOKED INCIDENT,N,,"""a little shark""","F. Poli, p.13",1955.00.00.d-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.d-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.d-Cuba.pdf,1955.00.00.d,1955.00.00.d,1908,, +1955.00.00.e,1955,1955,Unprovoked,MADAGASCAR,18S / 50E,,Standing in knee-deep water,boy,M,16,FATAL,Y,15h00,,Mrs. Lyse Mooney,1955.00.00.e-Madagascar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.e-Madagascar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.e-Madagascar.pdf,1955.00.00.e,1955.00.00.e,1907,, +1955.00.00.c,1955,1955,Invalid,USA,Illinois,Chicago (Lake Michigan),Swimming,George Lawson,M,,Right leg bitten,N,,Bull shark,"F. Dennis, p.52",1955.00.00.c-Chicago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.c-Chicago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.c-Chicago.pdf,1955.00.00.c,1955.00.00.c,1906,, +1955.00.00.b,Ca. 1955 ,1955,Unprovoked,COLUMBIA,Isles del Rosario,Southwest of Cartegena,Spearfishing,Gabriel Echiavarria,M,12,Swim fin & foot bitten,N,,1.5 m [5'] shark,"H. Echavarria; H.D. Baldridge, p.135; M. McDiarmid, p.64",1955.00.00.b-Echavarria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.b-Echavarria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.b-Echavarria.pdf,1955.00.00.b,1955.00.00.b,1905,, +1955.00.00.a,1955,1955,Unprovoked,PAPUA NEW GUINEA,New Ireland,Lavongai,,Pakau,M,,Back bitten,N,,,"J. McLachlan, Medical Officer, Kavieng; A.M. Rapson, p.148",1955.00.00.a-Pakau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.a-Pakau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.a-Pakau.pdf,1955.00.00.a,1955.00.00.a,1904,, +1954.12.29,29-Dec-54,1954,Unprovoked,AMERICAN SAMOA,Tutuila Island,Near tuna cannery in Pago Pago Harbor,Dived overboard & was swimming near stern of trawler,"Kosuo Mizokawa, Captain of a Japanese trawler",M,27,FATAL,Y,,,"Townsville Daily Bulletin, 1/6/1955",1954.12.29-Mizokawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.29-Mizokawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.29-Mizokawa.pdf,1954.12.29,1954.12.29,1903,, +1954.12.11,11-Dec-54,1954,Unprovoked,AUSTRALIA,Victoria,Point Lonsdale,Swimming,Lawrence David Burns,M,23,FATAL,Y,11h00,,"Sydney Morning Herald, 12/13/1954",1954.12.11-Burns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.11-Burns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.11-Burns.pdf,1954.12.11,1954.12.11,1902,, +1954.12.09,09-Dec-54,1954,Unprovoked,PAPUA NEW GUINEA,Central Province,"Kila Beach, Port Moresby",Swimming near canoe,Leva Kailovo,M,,"FATAL, abdomen & thigh bitten",Y,13h20,,"C.H. Hodgson; A. M. Rapson, p.148",1954.12.09-Kailovo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.09-Kailovo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.09-Kailovo.pdf,1954.12.09,1954.12.09,1901,, +1954.12.04,04-Dec-54,1954,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Rocket Hut Beach, Durban",Swimming,Graham Scott,M,16,Shallow lacerations on torso,N,11h00,,"D. Gibb, M. Levine, GSAF ",1954.12.04-Scott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.04-Scott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.04-Scott.pdf,1954.12.04,1954.12.04,1900,, +1954.11.20,20-Nov-54,1954,Unprovoked,USA,Wake Island,Wilkes Islet Lagoon (Pacific Ocean north of the Marshall Islands),Spearfishing,James L. Oetzel,M,,Shoulder bitten,N,15h00,"Blacktip reef shark, 1.5 m [5'] ","J. L. Oetzel, NOTE: H.D. Baldridge, p.143 lists date as March 20, 1954 ",1954.11.20-Oetzel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.11.20-Oetzel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.11.20-Oetzel.pdf,1954.11.20,1954.11.20,1899,, +1954.10.07,07-Oct-54,1954,Sea Disaster,USA,Virginia,150 miles off Cape Henry,"American freighter Mormackite, bound from Buenos Aires for Baltimore, capsized & sank in heavy seas",second cook,M,,Rescue aircraft saw bodies in the water being bitten by sharks. One survivor saw a shark take off a man�s leg & another reported that the second cook was killed by a shark,Y,,,"Long Beach Independent, 10/11/1954, p.9; V.M. Coppleson (1958), p.197; V.M. Coppleson (1962), pp. 213 & .259",1954.10.07-Mormackite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.07-Mormackite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.07-Mormackite.pdf,1954.10.07,1954.10.07,1898,, +1954.10.06,06-Oct-54,1954,Provoked,UNITED KINGDOM,Isle of Man,Off Fleetwood,Fishing (trawling),John Butcher,M,62,Arm broken by tail of netted shark PROVOKED INCIDENT,N,,20' shark,"C.Moore, GDSF; Times of London, 10/7/1954",1954.10.06-Butcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.06-Butcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.06-Butcher.pdf,1954.10.06,1954.10.06,1897,, +1954.10.02.b,02-Oct-54,1954,Boating,CROATIA,Zadar County,"Lika-Senj, Pag Island",Boating,,,,No details,UNKNOWN,,"White shark, 5.5 m [18']","A. De Maddalena; Anon. (1954), Soldo & Jardas (2000)",1954.10.02.b-boat-Pag-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.02.b-boat-Pag-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.02.b-boat-Pag-Croatia.pdf,1954.10.02.b,1954.10.02.b,1896,, +1954.10.02.a,02-Oct-54,1954,Invalid,JAPAN,Nagasaki Prefecture,Oomura Bay,,Boy clad in shirt & white linen pants,M,13,Body found in gut of shark,Y,,"White shark, 2000-lb","K. Nakaya; San Diego Union, 105/1954 ",1954.10.02.a-boyJapan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.02.a-boyJapan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.02.a-boyJapan.pdf,1954.10.02.a,1954.10.02.a,1895,, +1954.09.21,21-Sep-54,1954,Unprovoked,USA,California,"La Jolla, San Diego County",Swimming,Clyde Leeper,M,35,Minor bruises & abrasions on leg,N,,1.5 m [5'] shark,"D. Miller & R. Collier, V.M. Coppleson (1958), p.254; T. Helm, p.232",1954.09.21-Leeper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.09.21-Leeper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.09.21-Leeper.pdf,1954.09.21,1954.09.21,1894,, +1954.09.15,15-Sep-54,1954,Unprovoked,HONG KONG,,Junk Bay,Swimming,"James Cook, a seaman from HMS Comus",M,20,"FATAL, leg severely bitten",Y,,,"V.M. Coppleson (1958), p.260; A. MacCormick, p.121 citing Times of London 9/17/1954; [SAF Cases #299 & #298",1954.09.15-JamesCook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.09.15-JamesCook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.09.15-JamesCook.pdf,1954.09.15,1954.09.15,1893,, +1954.09.04,04-Sep-54,1954,Unprovoked,AUSTRALIA,Torres Strait,"Darnley Island, Torres Strait","Spearfishing, hunting crayfish",Kapua Gutchen,M,35,"FATAL, after being bitten by shark, he was picked up by 85' trochus vessel Toorah that wrecked. His wounds reopened & he died ",Y,,9' shark,"The Mercury, 9/14/1954",1954.09.04-Kapua-Gutchen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.09.04-Kapua-Gutchen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.09.04-Kapua-Gutchen.pdf,1954.09.04,1954.09.04,1892,, +1954.08.19,19955,1954,Unprovoked,ITALY,Liguaria,Finale Ligure,Spearfishing,Aldo Campi,M,27,Abdomen injured,N,,,"C. Moore, GSAF",1954.08.19-Campi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.08.19-Campi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.08.19-Campi.pdf,1954.08.19,1954.08.19,1891,, +1954.08.12.b,12-Aug-54,1954,Provoked,CUBA,Guantanamo Province,Boqueron,Spearfishing,Dr. D.H. Teas,M,,Knee bitten by shark that his dive buddy had shot PROVOKED INCIDENT,N,,"Nurse shark, 58"", 34-lb ","H.D. Baldridge, p.166",1954.08.12.b-Teas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.08.12.b-Teas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.08.12.b-Teas.pdf,1954.08.12.b,1954.08.12.b,1890,, +1954.08.12.a,12-Aug-54,1954,Provoked,CUBA,Guantanamo Province,Boqueron,Spearfishing,Dr. H. Warmke,M,,Right thigh & left calf injured by speared shark PROVOKED INCIDENT,N,,"Nurse shark, 58"", 34-lb ","H.D. Baldridge, p.166",1954.08.12.a-Warmke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.08.12.a-Warmke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.08.12.a-Warmke.pdf,1954.08.12.a,1954.08.12.a,1889,, +1954.07.30,30-Jul-54,1954,Unprovoked,ECUADOR,Galapagos Islands,,"Tuna fishing, standing on stern platform that was submerged by waves",Carl Dible,M,34,4 lacerations on dorsum of right foot ,N,,,"F. X. Schloeder, M.D.; V.M. Coppleson (1962), p.246",1954.07.30-Dibble.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.30-Dibble.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.30-Dibble.pdf,1954.07.30,1954.07.30,1888,, +1954.07.28,28-Jul-54,1954,Unprovoked,SINGAPORE,,Singapore Harbor,Closed circuit diving (submerged). Diving to recover jettisoned packets of opium for police,"C.B. Larkin, a Royal Navy diver",M,28,"FATAL, abdomen, buttock, right thigh & hands bitten ",Y,,,"New York Times, 7/29/1954; V.M. Coppleson (1958), p.266; H.D. Baldridge, p.183; ",1954.07.28-BritishDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.28-BritishDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.28-BritishDiver.pdf,1954.07.28,1954.07.28,1887,, +1954.07.27,27-Jul-54,1954,Boating,ITALY,Venice Province,Off Chioggia,Fishing trawler Flavio Gioia ,10 crew,M,,No injury to occupants. Shark tore nets & trawl and struck boat repeatedly,,Night,5m shark,"C. Moore, GSAF",1954.07.27-Trawler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.27-Trawler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.27-Trawler.pdf,1954.07.27,1954.07.27,1886,, +1954.07.15,15-Jul-54,1954,Unprovoked,THE BALKANS,Slovenia,Between Punta Grossa & Koper,Swimming,a Hungarian refugee,M,,FATAL,Y,21h00,,"R. Rocconi & C. Moore, GSAF V.M. Coppleson, p.261; H. D. Baldridge, p.15",1954.07.15-refugee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.15-refugee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.15-refugee.pdf,1954.07.15,1954.07.15,1885,, +1954.07.04.R,Reported 04-Jul-1954,1954,Unprovoked,USA,Florida,Florida Keys,,a marine biology student from the University of Miami,,,Small wound on upper thigh,N,,"Nurse shark, 2.5' ","Daytona Beach Sunday News- Journal, 7/4/1954",1954.07.04.R-UniversityStudent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.04.R-UniversityStudent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.04.R-UniversityStudent.pdf,1954.07.04.R,1954.07.04.R,1884,, +1954.07.03,03-Jul-54,1954,Unprovoked,BERMUDA,South shore ,Elbow Beach,Swimming,"Sub-Lieut. Edwin Michael Marks, of H.M.S. Sheffield",M,22,"Left thigh bitten, chest lacerated & defense wounds on foot, fingers and hands",N,,"2.4 m [8'] shark, possibly a dusky shark","E.M. Marks; V.M. Coppleson (1958), pp.155 & 257; Randall, p.353 in Sharks & Survival",1954.07.03-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.03-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.03-Marks.pdf,1954.07.03,1954.07.03,1883,, +1954.07.02.R,Reported 02-Jul-1954,1954,Unprovoked,GREECE,,Kalamata,Swimming,2 males,M,,FATAL,Y,,,"C. Moore, GSAF",1954.07.02.R-Kalamata.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.02.R-Kalamata.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.02.R-Kalamata.pdf,1954.07.02.R,1954.07.02.R,1882,, +1954.07.01.R,Reported 01-Jul-1954,1954,Invalid,CROATIA,,Pula,,male,,,Human remains found in shark,,,,"C. Moore, GSAF",1954.07.01.R-Pula.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.01.R-Pula.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.01.R-Pula.pdf,1954.07.01.R,1954.07.01.R,1881,, +1954.06.29,29-Jun-54,1954,Provoked,USA,California,"Santa Monica, Los Angeles County",Grabbed shark & threw it on deck,"Frank Donahue, a movie stuntman",M,35,Right elbow & forearm lacerated PROVOKED INCIDENT,N,,,"L.A. Times, 6/30/1954; H.D. Baldridge, p.257",1954.06.29-Donahue.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.06.29-Donahue.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.06.29-Donahue.pdf,1954.06.29,1954.06.29,1880,, +1954.06.27,27-Jun-54,1954,Unprovoked,AUSTRALIA,Queensland,Fitzroy Island,Pearl diving from lugger Whyalla,Morslem Aken,M,30,"Shark bit right arm & shoulder, then Aken says, he ""knocked out"" the shark",N,16h30,2.4 m [8'] shark,"Morning Bulletin (Rockhampton), 6/30/1954 ",1954.06.27-Aken.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.06.27-Aken.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.06.27-Aken.pdf,1954.06.27,1954.06.27,1879,, +1954.06.00,Jun-54,1954,Unprovoked,HONG KONG,,,Bathing alongside ship,Naval Rating,M,,"FATAL, thigh bitten ",Y,,,"V.M. Coppleson (1958), p.260",1954.06.00-NavalRating.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.06.00-NavalRating.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.06.00-NavalRating.pdf,1954.06.00,1954.06.00,1878,, +1954.05.26.R,Reported 26-May-1954,1954,Unprovoked,PAPUA NEW GUINEA,East Sepik,Wewak,"Fishing / cleaning fish, dived into water to retrieve a lost fish","male, a native constable",M,,"FATAL, decapitated ",Y,,,"South Pacific Post, 5/26/1954",1954.05.26.R-Constable.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.05.26.R-Constable.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.05.26.R-Constable.pdf,1954.05.26.R,1954.05.26.R,1877,, +1954.05.00,May-54,1954,Unprovoked,PAPUA NEW GUINEA,Madang Province,Near Madang Town,,child,,,Foot severed,N,,,"V.M. Coppleson (1962), p.248",1954.05.00-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.05.00-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.05.00-child.pdf,1954.05.00,1954.05.00,1876,, +1954.04.08,08-Apr-54,1954,Invalid,USA,Hawaii,"Wailupe, O'ahu",Fishing from shore,Gordon S. Chun,M,,"Body recovered, mutilated by shark/s",Y,,,"The Honolulu Advertiser, 4/8/1954; Honoulu Star Bulletin 4/8/1954; J. Borg, p.73; L. Taylor (1993), pp.100-101",1954.04.08-Chun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.04.08-Chun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.04.08-Chun.pdf,1954.04.08,1954.04.08,1875,, +1954.04.00,Apr-54,1954,Provoked,SUDAN?,Red Sea,Southern part ,Spearfishing,Jean Foucher-Createau,M,,"Speared small shark, shark bit his thigh and/or buttock PROVOKED INCIDENT",N,,,"V.M. Coppleson (1962), p.254; H.D. Baldridge, p.165",1954.04.00-Foucher-Creteau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.04.00-Foucher-Creteau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.04.00-Foucher-Creteau.pdf,1954.04.00,1954.04.00,1874,, +1954.02.27,27-Feb-54,1954,Unprovoked,AUSTRALIA,New South Wales,"The Entrance, near Gosford",Swimming,Reg Fabrizius,M,23,"FATAL, right thigh bitten ",Y,17h15,,"V.M. Coppleson (1958), pp.84 & 236",1954.02.27-Fabrizius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.02.27-Fabrizius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.02.27-Fabrizius.pdf,1954.02.27,1954.02.27,1873,, +1954.01.30,30-Jan-54,1954,Unprovoked,AUSTRALIA,New South Wales,Avoca Beach,Swimming,Bruce Bourke,M,,Abrasions to arm,N,,,"Sun-Herald, 1/31/1954",1954.01.30-Bourke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.30-Bourke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.30-Bourke.pdf,1954.01.30,1954.01.30,1872,, +1954.01.22.b,22-Jan-54,1954,Unprovoked,AUSTRALIA,Torres Strait,Naghir Island,Spearfishing,Annie Mills,M,30,Severe laceration to arm,N,,,"Cairns Post, 1/25/1954",1954.01.22.b-Mills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.22.b-Mills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.22.b-Mills.pdf,1954.01.22.b,1954.01.22.b,1871,, +1954.01.22.a,22-Jan-54,1954,Unprovoked,ARGENTINA,Buenos Aires Province,"Miramar Beach, 46 km south of Mar de Plata, Buenos Aires ",Floating,Alfredo Aubone,M,18,"Arm & left calf bitten, right leg lacerated",N,13h05,White shark tooth fragment recovered from ankle & identified by Dr. W. I. Follett,"V.M. Coppleson (1958), p.257; Garrick & L. Schultz in Sharks & Survival, p.13; M. McDiarmid, p.64",1954.01.22.a-Aubone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.22.a-Aubone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.22.a-Aubone.pdf,1954.01.22.a,1954.01.22.a,1870,, +1954.01.15,15-Jan-54,1954,Unprovoked,PAPUA NEW GUINEA,Madang Province,"Singour, 60 miles south of Madang",Crouching in the water,Ramlen,M,26,Back & thighs lacerated,N,Late afternoon,14' shark,"Cairns Post, 1/21/1954",1954.01.15-Ramlen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.15-Ramlen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.15-Ramlen.pdf,1954.01.15,1954.01.15,1869,, +1954.00.00.e,1954,1954,Unprovoked,IRAN,Karun River,"Hesamabad area of Shushtar, 420 km from the sea",,Mr. Kasem Jasem,M,,FATAL,Y,,Bull shark suspected due to freshwater habitat,B. Coad,1954.00.00.e-KasemJasem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.e-KasemJasem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.e-KasemJasem.pdf,1954.00.00.e,1954.00.00.e,1868,, +1954.00.00.d,1954,1954,Unprovoked,MARTINIQUE,,,,Bernard Vieux,M,,"Chest bruised, after shark clamped its jaws on his chest ",N,,"Nurse shark, 1.8 m [6'] ","J. Randall in Sharks & Survival, pp.358-359",1954.00.00.d-Vieux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.d-Vieux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.d-Vieux.pdf,1954.00.00.d,1954.00.00.d,1867,, +1954.00.00.c,1954,1954,Unprovoked,MEXICO,Baja California,,Free diving,Rosario Bianci,M,,FATAL,Y,,,"V.M. Coppleson, p.262; V.M. Coppleson (1962), p.253",1954.00.00.c-Bianci.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.c-Bianci.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.c-Bianci.pdf,1954.00.00.c,1954.00.00.c,1866,, +1954.00.00.b,1954,1954,Unprovoked,USA,Hawaii,Moloka'i,Fishing,Severino,M,,Bitten on foot,N,,a small shark',"J. Borg, p.73; L. Taylor (1993), pp.100-101",1954.00.00.b-Severino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.b-Severino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.b-Severino.pdf,1954.00.00.b,1954.00.00.b,1865,, +1954.00.00.a,1954,1954,Unprovoked,PAPUA NEW GUINEA,West New Britain Province,"Volupai, Talasea",Swimming,boy,M,12,Leg & abdomen lacerated,N,,," A. M. Rapson, p.148",1954.00.00.a-Volupai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.a-Volupai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.a-Volupai.pdf,1954.00.00.a,1954.00.00.a,1864,, +1954.00.00 g,1954 (same day as 1954.00.00.f),1954,Unprovoked,IRAN,Karun River,A village a short distance from Hesamabad,,girl,F,,FATAL,Y,,Bull shark suspected due to freshwater habitat,B. Coad,1954.00.00.g-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.g-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.g-girl.pdf,1954.00.00 g,1954.00.00 g,1863,, +1954.00.00 f,1954 (same day as 1954.00.00.f),1954,Unprovoked,IRAN,Karun River,"Hesamabad area of Shushtar, 420 km from the sea",,Mr. Abbas Jasem (Mr. Kasem Jasem's son),M,,Survived,N,,Bull shark suspected due to freshwater habitat,B. Coad,1954.00.00.f-AbbasJasem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.f-AbbasJasem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.f-AbbasJasem.pdf,1954.00.00 f,1954.00.00 f,1862,, +1953.12.30,30-Dec-53,1953,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Second Beach, Port St. Johns",Swimming,Mrs. G. Rautenbach,F,,Left calf lacerated,N,Morning,Said to involve a >4 m [13'] shark,"Natal Mercury, 12/31/1953",1953.12.30-Rautenbach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.30-Rautenbach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.30-Rautenbach.pdf,1953.12.30,1953.12.30,1861,, +1953.12.22,22-Dec-53,1953,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port Elizabeth,Swimming,Glen Stoddart,M,23,Lacerations to arm,N,,,H. Monson,1953.12.22-Stoddart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.22-Stoddart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.22-Stoddart.pdf,1953.12.22,1953.12.22,1860,, +1953.12.13,13-Dec-53,1953,Unprovoked,AUSTRALIA,Queensland,Palm Beach,Swimming or wading out to warn bathers that a shark had been seen,"Neil Tapp, cadet lifesaver",M,16,Bruised shoulder chest & foot,N,12h00,,"V.M. Coppleson (1958), pp.95 & 240",1953.12.13-Tapp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.13-Tapp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.13-Tapp.pdf,1953.12.13,1953.12.13,1859,, +1953.12.00,Dec-53,1953,Unprovoked,AUSTRALIA,New South Wales,Maroubra Beach,Surf skiing,Jack Haynes,M,,"No Injury, shark charged surfski",N,,3.7 [12'] shark," V.M. Coppleson (1958), p.42",1953.12.00-Haynes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.00-Haynes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.00-Haynes.pdf,1953.12.00,1953.12.00,1858,, +1953.10.00,Oct-53,1953,Provoked,AUSTRALIA,New South Wales,"Boat Harbour, north of Cronulla",,Len Kosky,M,,"Hit by tail of speared shark, fell & hit head on rock & out cold for 30 minutes PROVOKED INCIDENT",N,,,"V.M. Coppleson (1958), p.172",1953.10.00-Kosky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.10.00-Kosky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.10.00-Kosky.pdf,1953.10.00,1953.10.00,1857,, +1953.09.27,27-Sep-53,1953,Unprovoked,PHILIPPINES,Luzon Island,Bohol,,Bartolome Mangubat,M,23,FATAL,Y,,,"Palm Beach Post, 9/28/1953",1953.09.27-Mangutbal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.27-Mangutbal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.27-Mangutbal.pdf,1953.09.27,1953.09.27,1856,, +1953.09.20.R,Reported 20-Sep-1953,1953,Unprovoked,USA,California,"Santa Catalina Island, Los Angeles County",Scuba diving,Al Diamond,M,,No injury,N,,,"Oakland Tribune, 9/20/1953",1953.09.20.R-Diamond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.20.R-Diamond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.20.R-Diamond.pdf,1953.09.20.R,1953.09.20.R,1855,, +1953.09.18,18-Sep-53,1953,Sea Disaster,USA,Georgia,200 miles east of Savannah,Aircaft exploded,Sgt. Larry Charles Graybill,M,,Hand bitten,N,,,New York Times ,1953.09.18-Graybill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.18-Graybill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.18-Graybill.pdf,1953.09.18,1953.09.18,1854,, +1953.09.03.R,Reported 03-Sep-1953,1953,Unprovoked,USA,New York,Rockaway Beach,Surf fishing,"Alan Stevenson, Jr.",M,15,Laceration to right lower leg,N,,80-lb sand shark,"The Dispatch, 9/3/1953",1953.09.03.R-Stevenson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.03.R-Stevenson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.03.R-Stevenson.pdf,1953.09.03.R,1953.09.03.R,1853,, +1953.09.02,02-Sep-53,1953,Unprovoked,USA,Hawaii,"Waiau, Pearl Harbor, O'ahu",Crabbing,Daniel Gonsalves,M,,Leg & foot bitten,N,,"Hammerhead shark, 1.5 m [5'] ","Honolulu Star Bulletin, 9/2/1953; G.H. Balazs; J. Borg, p.73; L. Taylor (1993), pp.100-101",1953.09.02-Gonsalves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.02-Gonsalves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.02-Gonsalves.pdf,1953.09.02,1953.09.02,1852,, +1953.08.00,Aug-53,1953,Invalid,MEXICO,Guerrero,Acapulco,Free diving,Arthur R. Satz,M,19,No injury,N,17h30,"""Tintorero""",H.D. Baldridge (1994) SAF Case #679,1953.08.00-NV-Satz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.08.00-NV-Satz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.08.00-NV-Satz.pdf,1953.08.00,1953.08.00,1851,, +1953.07.31,31-Jul-53,1953,Unprovoked,MEXICO,Colima,Manzanillo,Wading,Ema Aquilera Prada,F,18,FATAL,Y,,,"V.M. Coppleson (1958), p.262; J.M. Alatorre",1953.07.31-Prada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.31-Prada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.31-Prada.pdf,1953.07.31,1953.07.31,1850,, +1953.07.26,26-Jul-53,1953,Unprovoked,USA,Hawaii,"Maile Beach, O'ahu",Spearfishing,Harold Souza,M,15,"FATAL, thigh bitten",Y,09h15,3 m [10'] shark seen in vicinity,"V.M. Coppleson (1958), p.260; L. Taylor (1993), pp.100-101",1953.07.26-Souza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.26-Souza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.26-Souza.pdf,1953.07.26,1953.07.26,1849,, +1953.07.16,16-Jul-53,1953,Provoked,USA,California,"Santa Catalina Island, Los Angeles County",Fishing from market fishboat Sea Spray,Captain Forest M. Richel,M,,Arm bitten by hooked shark PROVOKED INCIDENT,N,,,"L.A. Times, 7/17/1953 ",1953.07.16-Richel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.16-Richel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.16-Richel.pdf,1953.07.16,1953.07.16,1848,, +1953.07.15,15-Jul-53,1953,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Standing,Mrs. D. F. Gunn,F,26,Lower left leg severely bitten,N,,,"R.F. Hutton; T. Helm, p. 231 ",1953.07.15-Gunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.15-Gunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.15-Gunn.pdf,1953.07.15,1953.07.15,1847,, +1953.07.11,11-Jul-53,1953,Sea Disaster,PACIFIC OCEAN,330 to 350 miles east of Wake Island,,Royal Hawaiian skymaster DC-6B aircraft went down with 58 passenger & crew,,,,Recuers fought sharks for the bodies,N,,,"Guam Daily News, 7/16/195; V.M. Coppleson, p.21",1953.07.11-WakeIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.11-WakeIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.11-WakeIsland.pdf,1953.07.11,1953.07.11,1846,, +1953.07.09,09-Jul-53,1953,Boating,CANADA,Nova Scotia,"Fourchu, Cape Breton Island",Fishing for lobsters,"12' to 14' dory, occupants: John D. Burns & John MacLeod",M,,Burns drowned as result of attack on boat,N,,"White shark, 3.7 m [12'], 500 to 500-kg [1,200 lb], identified by W. C. Shroeder based on tooth fragment ebedded in gunwale","R. Collier, pp.169-170;Bigelow & Schroeder; Day & Fisher, pp. 295-296",1953.07.09-Burns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.09-Burns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.09-Burns.pdf,1953.07.09,1953.07.09,1845,, +1953.07.04,04-Jul-53,1953,Unprovoked,USA,Hawaii,Kaula Rock near Niihau ,Accidentally dragged overboard from the sampan Holokahana into school of yellowfin tuna,"David Crick, fisherman ",M,,"Shark made 3 passes at him, lacerating his calf, shin and ankle ",N,08h00,,"Honolulu Advertiser, July 5, 1953 edtion; V.M. Coppleson (1958), p.260; J. Borg, p. 2; L. Taylor (1993), pp.100-101",1953.07.04-Crick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.04-Crick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.04-Crick.pdf,1953.07.04,1953.07.04,1844,, +1953.07.00,01-Jul-53,1953,Unprovoked,PANAMA,Gulf of Panama,60 miles offshore ,Retrieving bait box that had fallen overboard,Jose Gonzales,M,19,Hand severely bitten,N,,,"V.M. Coppleson (1958), p.263; LA. Times, 6/9/1954; Gorgas Hospital Record #667474",1953.07.00-Gonzalves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.00-Gonzalves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.00-Gonzalves.pdf,1953.07.00,1953.07.00,1843,, +1953.06.00,Jun-53,1953,Provoked,AUSTRALIA,Queensland,,Landing hooked shark in boat,Thomas H. Durbridge,M,,Right forearm & hand bitten PROVOKED INCIDENT,N,,"2 m [6'9""] shark ","V.M. Coppleson (1958), p.179",1953.06.00-Durbridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.06.00-Durbridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.06.00-Durbridge.pdf,1953.06.00,1953.06.00,1842,, +1953.04.07,07-Apr-53,1953,Boating,AUSTRALIA,New South Wales,1.5 miles off shore,,16' launch,,,"No injury to occupant. As engine started, shark hit boat, breaking one of boat�s ribs in 3 places & stoving in 2 planks",N,,," V.M. Coppleson (1958), p.183",1953.04.07-16-ft-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.07-16-ft-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.07-16-ft-launch.pdf,1953.04.07,1953.04.07,1841,, +1953.04.04,04-Apr-53,1953,Unprovoked,USA,Texas,South Padre Island,Swimming,Susan Smith,F,19,Lacerations to right foot,N,Afternoon,,"Valley Morning Star, 4/5/1953",1953.04.04-SueSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.04-SueSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.04-SueSmith.pdf,1953.04.04,1953.04.04,1840,, +1953.04.00.b,Apr-53,1953,Unprovoked,IRAN,Karun River,"near Ahvaz, 275 km from the sea",,Mr. Kaaby,M,,Arm severed,N,,"1.5 m [5'] shark, probable bull shark",B. Coad,1953.04.00.b-Kaaby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.00.b-Kaaby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.00.b-Kaaby.pdf,1953.04.00.b,1953.04.00.b,1839,, +1953.04.00.a,Apr-53,1953,Unprovoked,IRAN,Karun River,"near Ahvaz, 275 km from the sea",Swimming in midriver near sewage outlet & 400 m from a slaughterhouse,Mr. Nasser Seemrookh,M,,Right forearm severed at the elbow,N,,"1.5 m [5'] shark, probable bull shark",B. Coad,1953.04.00.a-Seemrookh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.00.a-Seemrookh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.00.a-Seemrookh.pdf,1953.04.00.a,1953.04.00.a,1838,, +1953.03.22,Mar-53,1953,Unprovoked,AUSTRALIA,New South Wales,"Long Reef, Collaroy",Spearfishing,Helmut Scheidl,M,23,Arm lacerated,N,,,"V.M. Coppleson (1958), pp.166-167",1953.03.22-Scheidl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.22-Scheidl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.22-Scheidl.pdf,1953.03.22,1953.03.22,1837,, +1953.03.19.R,Reported 19-Mar-1953,1953,Unprovoked,AUSTRALIA,South Australia,"Schnapper Rock, Kirton Point",Spearfishing,Michael Leech,M,,Abrasion,N,,8' shark,"The Advertiser, 3/19/1953",1953.03.19.R-Leech.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.19.R-Leech.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.19.R-Leech.pdf,1953.03.19.R,1953.03.19.R,1836,, +1953.03.00.c,Mar-53,1953,Sea Disaster,INDIAN OCEAN,,Between Straits of Malacca and Sri Lanka,Adrift on a 4' raft for 32 days,"Ensio Tiira & Fred Ericsson, deserters from the French Foreign Legion",,,Sharks attacked raft & consumed the body of Ericsson after he died,Y,,,E. Tiira,1953.03.00.b-Tiira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.00.b-Tiira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.00.b-Tiira.pdf,1953.03.00.c,1953.03.00.c,1835,, +1953.03.00.a,Mar-53,1953,Unprovoked,PAPUA NEW GUINEA,Milne Bay Province,"Off Rossel Island, Louisiade Archipelago",Went over side of boat at trochus ground,Captain of cutter Hetabu,M,,"FATAL, arm & leg severed & shark smashed at his body with its tail ",Y,,Tiger shark,"A.M. Rapson, p.148; V.M. Coppleson (1962), p.254",1953.03.00.a-Hetabu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.00.a-Hetabu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.00.a-Hetabu.pdf,1953.03.00.a,1953.03.00.a,1834,, +1953.02.18,18-Feb-53,1953,Provoked,USA,Hawaii,"Barber�s Point, O'ahu",Bitten while cutting shark from net,James S. Takeuchi,M,,Hand bitten PROVOKED INCIDENT ,N,,,"V.M. Coppleson (1958), p.260; G.H. Balazs; J. Borg, p.72; L. Taylor (1993), pp.100-101",1953.02.18-Takeuchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.02.18-Takeuchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.02.18-Takeuchi.pdf,1953.02.18,1953.02.18,1833,, +1953.02.15,15-Feb-53,1953,Unprovoked,AUSTRALIA,New South Wales,Cave at Shell Harbour,Spearfishing,Rex Gallagher,M,25,"Shark tore off face mask, diver�s face, nose & chin lacerated",N,18h00,Wobbegong shark,"Spearfishing News, April 1953, p.5; J. Oetzel in Skin Diver Magazine, March 1965, p.17; V.M. Coppleson (1958), p.33",1953.02.15-Gallagher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.02.15-Gallagher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.02.15-Gallagher.pdf,1953.02.15,1953.02.15,1832,, +1953.02.00,Feb-53,1953,Unprovoked,AUSTRALIA,,,Spearfishing,Ron Ware,M,,Foot bitten,N,,Wobbegong shark,J. Oetzel,1953.02.00-Ware.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.02.00-Ware.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.02.00-Ware.pdf,1953.02.00,1953.02.00,1831,, +1953.01.20,20-Jan-53,1953,Provoked,AUSTRALIA,South Australia,Largs Bay,Fishing,Ernest Lamerton,M,61,Finger bitten by hooked shark PROVOKED INCIDENT,N,,,"The Advertiser, 1/23/1953",1953.01.20-Lamerton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.01.20-Lamerton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.01.20-Lamerton.pdf,1953.01.20,1953.01.20,1830,, +1953.01.08,08-Jan-53,1953,Boating,AUSTRALIA,Tasmania,Wynyard,Fishing,14-foot boat Sintra,,MAKE LINE GREEN,"No injury to occupant, shark charged boat",N,Afternoon,10' to 12' shark,"C. Black, GSAF",1953.01.08-Wynyard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.01.08-Wynyard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.01.08-Wynyard.pdf,1953.01.08,1953.01.08,1829,, +1953.00.00.c,1953,1953,Unprovoked,AUSTRALIA,,,Spearfishing,Alan Agnew,M,,Kneecap bitten,N,,Wobbegong shark,"J. Oetzel; H. D. Baldridge, p.165",1953.00.00.c-Agnew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.00.00.c-Agnew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.00.00.c-Agnew.pdf,1953.00.00.c,1953.00.00.c,1828,, +1953.00.00.b,1953,1953,Unprovoked,PAPUA NEW GUINEA,Bougainville (North Solomons),"Kahuli, Buka Island",Washing,male,M,,"FATAL, torso bitten",Y,,,"A. Bleakley; A. M. Rapson, p.148",1953.00.00.b-Kahuli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.00.00.b-Kahuli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.00.00.b-Kahuli.pdf,1953.00.00.b,1953.00.00.b,1827,, +1953.00.00.a,1953,1953,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Standing,girl,F,,Leg lacerated thigh to ankle,N,,," V.M. Coppleson (1958), p.254; R. F. Hutton",1953.00.00.a-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.00.00.a-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.00.00.a-girl.pdf,1953.00.00.a,1953.00.00.a,1826,, +1952.12.24,24-Dec-52,1952,Unprovoked,AUSTRALIA,Victoria,"Portsea Beach, near Melbourne",Lying prone on surfboard,Bernard Bade,M,,"No injury, board bumped by shark",N,,,"V.M. Coppleson (1962), frontspiece",1952.12.24-Bade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.24-Bade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.24-Bade.pdf,1952.12.24,1952.12.24,1825,, +1952.12.21,21-Dec-52,1952,Unprovoked,AUSTRALIA,South Australia,Cape Douglas,"Fishing, setting nets",John Holmes,M,25,Bitten on thigh and buttocks,N,"""After dark""",2.4 m [8'] shark,"V.M. Coppleson (1958), p.178; V.M. Coppleson (1962), p.245",1952.12.21-Holmes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.21-Holmes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.21-Holmes.pdf,1952.12.21,1952.12.21,1824,, +1952.12.14,14-Dec-62,1952,Invalid,GUATEMALA,,,Air Disaster,Soledad Castellanos - or - Norma Figeroa,F,,It is probable that all onboard (2 men & 2 women) died when the plane crashed into the sea & her body was scavenged by a shark,Y,,,"The Frederick Post (Maryland), 12/17/1952, p.1",1952.12.14-Guatemala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.14-Guatemala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.14-Guatemala.pdf,1952.12.14,1952.12.14,1823,, +1952.08.04,04-Aug-52,1952,Provoked,ITALY,Genoa Province,Riva Trigoso,Fishing,Franco Podesta,M,17,Bitten by hooked shark PROVOKED INCIDENT,N,,200-lb shark," C. Moore, GSAF",1952.08.04-Podesta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.04-Podesta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.04-Podesta.pdf,1952.08.04,1952.08.04,1822,, +1952.08.03,03-Aug-52,1952,Unprovoked,USA,Hawaii,"Between Ala Moana Channel & Kewalo Basin, O'ahu",Swimming,Shigeichi Kawamura,M,,"FATAL, disappeared while swimming, shark bite found on right side of body",Y,,,"Honolulu Advertiser, 12/4/1952; G.H. Balazs & A.K.H. Kam; J. Borg, p.72; L. Taylor (1993), pp.100-101;",1952.08.03-Kawamura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.03-Kawamura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.03-Kawamura.pdf,1952.08.03,1952.08.03,1821,, +1952.12.07,07-Dec-52,1952,Unprovoked,USA,California,"Pacific Grove, Monterey Bay, Monterey County",Body surfing & treading water,Barry Wilson,M,17,"FATAL, leg lacerated ",Y,14h00,"White shark,4.6 m [15'] ","R. L. Bolin, D. Miller & R. Collier, R. Skocik, p.174;V.M. Coppleson (1958), pp.156 & 254; R. Collier, pp.10-13",1952.12.07-Wilson_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.07-Wilson_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.07-Wilson_Collier.pdf,1952.12.07,1952.12.07,1820,, +1952.12.03,03-Dec-52,1952,Unprovoked,USA,Hawaii,"Maile Beach, O'ahu",Swimming from fishing boat setting nets,Gerbacio Solano (or Salamo),M,40,"FATAL, left arm severed below the elbow ",Y,,>6.7 m [22'] shark," Honolulu Advertiser, 12/4/1952; V.M. Coppleson (1958), p.260; J. Borg, p.74; Webster, p.31; L. Taylor (1993), pp.100-101",1952.12.03-Solano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.03-Solano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.03-Solano.pdf,1952.12.03,1952.12.03,1819,, +1952.10.12,12-Oct-52,1952,Unprovoked,PAPUA NEW GUINEA,"Abau Sub District, Central Province",Lalaura Village,Fishing,male,M,,Right thigh bitten ,N,,,"A. Bleakley; A.M. Rapson, p.148",1952.10.12-Lalaura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.10.12-Lalaura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.10.12-Lalaura.pdf,1952.10.12,1952.10.12,1818,, +1952.08.06,06-Aug-52,1952,Invalid,SOUTH AFRICA,Eastern Cape Province,Nelson�s Rock,,Mr. Ristow,M,18,"Possibly drowned, remains found days later in shark�s gut",Y,,"Zambesi shark, 113-kg [249-lb] female ","Daily Dispatch; M. Levine, GSAF",1952.08.06-Ristow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.06-Ristow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.06-Ristow.pdf,1952.08.06,1952.08.06,1817,, +1952.08.05,05-Aug-52,1952,Provoked,ITALY,Teramo,Giulianova,Fishing,Vittorio Speca,,19,Multiple injuries PROVOKED INCIDENT,Y,02h00,2m shark,"C. Moore, GSAF",1952.08.05-Speca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.05-Speca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.05-Speca.pdf,1952.08.04,1952.08.05,1816,, +1952.07.27.d,27-Jul-52,1952,Boating,USA,Florida,"Panacea, Wakulla County",Fishing for trout ,a skill. Occupants George Lunsford & 2 companions,,,No injury to occupants. Shark chasing fish leapt into skiff & flopped out,N,,"Hammerhead shark, 5' ","Evening Sun (Baltimore), 7/28/1952",1952.07.27.d-Lunsford-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.d-Lunsford-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.d-Lunsford-boat.pdf,1952.07.27.d,1952.07.27.d,1815,, +1952.07.27.c,27-Jul-52,1952,Provoked,USA,South Carolina,Seabrook Beach,Fishing, Ben Tillman Homes,M,43,Finger bitten by hooked shark PROVOKED INCIDENT,N,,a small shark',"News and Courier, 7/28/1952",1952.07.27.c-TillmanHomes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.c-TillmanHomes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.c-TillmanHomes.pdf,1952.07.27.c,1952.07.27.c,1814,, +1952.07.27.b,27-Jul-52,1952,Provoked,USA,South Carolina,Seabrook Beach,Fishing,Truman Jones ,M,34,Thumb bitten by hooked shark PROVOKED INCIDENT,N,,a small shark',"News and Courier, 7/28/1952",1952.07.27.b-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.b-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.b-Jones.pdf,1952.07.27.b,1952.07.27.b,1813,, +1952.07.27.a,27-Jul-52,1952,Sea Disaster,USA,California,"Off Santa Monica, Los Angeles County",Boat exploded,"Wes Wiggins and 7 others on the boat, Sparetime",M,,FATAL & some of the survivors were bitten by sharks ,Y,,,R. Collier,1952.07.27.a-Sparetime.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.a-Sparetime.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.a-Sparetime.pdf,1952.07.27.a,1952.07.27.a,1812,, +1952.07.13,13-Jul-52,1952,Provoked,USA,California,"San Diego, San Diego County",Fishing,"Gerald Howard, on board sportsfishing boat Teresa A",M,34,Part of hand removed by shark he had caught PROVOKED INCIDENT,N,,,"L.A. Times, 7/14/1952 ",1952.07.13-Howard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.13-Howard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.13-Howard.pdf,1952.07.13,1952.07.13,1811,,Teramo +1952.07.05,05-Jul-52,1952,Unprovoked,USA,Puerto Rico,"Mona Island, 40 miles west of the mainland ","Spearfishing, carrying fish on spear",Juan Suarez Morales,M,,Leg lacerated & bone fractured ,N,11h00,"Tiger shark, 1.5 m [5'] ","V.M. Coppleson (1958), p.265; J. Randall in Sharks and Survival, p.346",1952.07.05-Morales.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.05-Morales.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.05-Morales.pdf,1952.07.05,1952.07.05,1810,, +1952.05.27,27-May-52,1952,Unprovoked,USA,California,"Imperial Beach, San Diego County",Swimming on surface,"Arthur E. Taylor, a navy diver & member+G1053 of a 24-man demolition team",M,,Foot & swimfin bitten,N,10h00 or 14h00,"White shark, 2 m to 4 m [6'9"" to 13'] ","R. Collier, pp.8-9",1952.05.27-Taylor_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.27-Taylor_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.27-Taylor_Collier.pdf,1952.05.27,1952.05.27,1809,, +1952.05.07.R,Reported 07-May-1952,1952,Unprovoked,AUSTRALIA,Western Australia,Boyup Brook,"Fishing, standing in water washing fish",Mr. M. King,M,,Lacerations to 2 fingers & knuckles abraded,N,,"Carpet shark, 5' ","T. Peake, GSAF; West Australian, 5/7/1952",1952.05.07.R-King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.07.R-King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.07.R-King.pdf,1952.05.07.R,1952.05.07.R,1808,, +1952.05.00,May-52,1952,Unprovoked,INDIA,,Off Trivandrum (west coast),"Fishing, standing in water next to purse net",Ranji Lal,M,,Lower leg lacerated,N,,"""A 2' (0.6 m) brown shark""","F. Dennis, p.10",1952.05.00-Lal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.00-Lal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.00-Lal.pdf,1952.05.00,1952.05.00,1807,, +1952.04.06,06-Apr-52,1952,Boating,AUSTRALIA,South Australia,Streaky Bay,Fishing for white sharks,25' cutter,,,No injury to fisherman Alf Dean & other occupants;,N,Morning,"White shark, 15'3"", 2,333-lb ","Recorder (Port Pirie), 4/7/1952",1952.04.06-AlfDean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.04.06-AlfDean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.04.06-AlfDean.pdf,1952.04.06,1952.04.06,1806,, +1952.04.00,Apr-52,1952,Provoked,SUDAN,Red Sea State,"Suakin Harbor, Suakin Island",Spearfishing,Hans Hass,M,,Right forearm lacerated by speared shark PROVOKED INCIDENT,N,P.M.,"a ""small slim brown shark""","H. Hass in We Come From the Sea, pp.42-46",1952.04.00-Hass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.04.00-Hass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.04.00-Hass.pdf,1952.04.00,1952.04.00,1805,, +1952.03.30,30-Mar-52,1952,Unprovoked,NETHERLANDS ANTILLES,Curacao,,Went to aid of child being menaced by the shark,A.J. Eggink,M,,"Buttock bitten, tissue removed",N,,"Bull shark, 2.7 m [9'] was captured & dragged on the sand where tissue taken from Eggink was found in its gut. Species identification was made by S. Springer based on 4 photographs of the shark. ","J. Randall, p.352 in Sharks & Survival; H.D. Baldridge, p.172",1952.03.30-Eggink.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.03.30-Eggink.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.03.30-Eggink.pdf,1952.03.30,1952.03.30,1804,, +1952.01.23,23-Jan-52,1952,Provoked,MAURITIUS,Port Louis Province,Port Louis,"Spearfishing, speared a small shark",Bernard Montessier,M,,Right foot lacerated by a larger shark. Lost several toes PROVOKED INCIDENT,N,,,"V.M. Coppleson (1958), p.262; V.M. Coppleson (1962), p.253",1952.01.23-Moitessier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.01.23-Moitessier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.01.23-Moitessier.pdf,1952.01.23,1952.01.23,1803,, +1952.01.07,07-Jan-52,1952,Unprovoked,AUSTRALIA,New South Wales,Evans Head,Surfing,Charles Thomas,M,,Bitten on left calf and ankle,N,,8' shark,"Canberra Times, 1/8/1952",1952.01.07-CharlesThomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.01.07-CharlesThomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.01.07-CharlesThomas.pdf,1952.01.07,1952.01.07,1802,, +1952.00.00.e,1952-1954,1952,Unprovoked,LIBERIA,Montserrado,"West Breakwater, Monrovia / Freeport","Diving, recovering fish killed by dynamite",male,M,,FATAL,Y,,,G.C. Miller,1952.00.00.e-Liberia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.e-Liberia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.e-Liberia.pdf,1952.00.00.e,1952.00.00.e,1801,, +1952.00.00.d,1952,1952,Unprovoked,PAPUA NEW GUINEA,"Admiralty Islands, Manus Province",Manus Island,Spearfishing,male,M,,"Arm bitten, surgically amputated",N,,,"Cairns Post, 11/27/1952",1952.00.00.d-ManusIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.d-ManusIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.d-ManusIsland.pdf,1952.00.00.d,1952.00.00.d,1800,, +1952.00.00.c,1952,1952,Unprovoked,PAPUA NEW GUINEA,"Admiralty Islands, Manus Province","Momote, Manus Island",Spearfishing,male,M,,"FATAL, ""No remains""",Y,,"""Attacked by a number of sharks""","A. Bleakley; A. M. Rapson, p.148; H.D. Baldridge, p. 129",1952.00.00.c-Momote.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.c-Momote.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.c-Momote.pdf,1952.00.00.c,1952.00.00.c,1799,, +1952.00.00.b,1952,1952,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,"Samo Plantation, east coast ",Spearfishing,"Kiaploki, a male",M,27,"FATAL, lower abdomen removed ",Y,,,"A. Bleakley; Namatanai Dept. of Public Health; A. M. Rapson, p.148",1952.00.00.b-Kiaploki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.b-Kiaploki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.b-Kiaploki.pdf,1952.00.00.b,1952.00.00.b,1798,, +1952.00.00.a,1952,1952,Unprovoked,USA,Florida,Near Key West,Swimming,"male, a Pan American pilot wearing a flourescent bathing suit",M,,"FATAL, groin bitten ",Y,,,"V.M. Coppleson (1958), p.254; R. F. Hutton; T. Helm, p.230;",1952.00.00.a-PanAmPilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.a-PanAmPilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.a-PanAmPilot.pdf,1952.00.00.a,1952.00.00.a,1797,, +1951.12.21,21-Dec-51,1951,Unprovoked,MOZAMBIQUE,Bay of Maputu,Catembe ,Swimming,Carlos do Amaral,M,15,"FATAL, right leg, thighs & hands bitten ",Y,,,GSAF,1951.12.21-DoAmaral.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.12.21-DoAmaral.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.12.21-DoAmaral.pdf,1951.12.21,1951.12.21,1796,, +1951.12.16,16-Dec-51,1951,Provoked,AUSTRALIA,New South Wales,North Bondi,Spearfishing,Lindsay Munn,M,18,Speared shark lacerated left leg above ankle PROVOKED INCIDENT,N,,"Wobbegong shark, 1.8 m [6'] ","V.M. Coppleson (1958), pp. 171-172",1951.12.16-Munn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.12.16-Munn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.12.16-Munn.pdf,1951.12.16,1951.12.16,1795,, +1951.12.06,06-Dec-51,1951,Unprovoked,AUSTRALIA,New South Wales,"Merewether Beach, Newcastle",Treading water,"Frank Olkulich, the local surf-ski champion",M,21,FATAL,Y,16h00,2.4 m [8'] shark,"V.M. Coppleson (1958), pp.79; A. Sharpe, p.85",1951.12.06-Okulich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.12.06-Okulich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.12.06-Okulich.pdf,1951.12.06,1951.12.06,1794,, +1951.11.29,29-Nov-51,1951,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"South Beach, Durban",Swimming,Harold Tait,M,23,Thigh bruised & abraded,N,13h00,"White shark, 1.8 m [6'] ","G. Plowman, M. Levine, GSAF ",1951.11.29-Tait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.29-Tait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.29-Tait.pdf,1951.11.29,1951.11.29,1793,, +1951.11.28.b,28-Nov-51,1951,Unprovoked,JAMAICA,Kingston Parish,Kingston Harbor,Fishing,George Lewis,M,81,Lacerations to left hand,N,,,"Daily Gleaner, 11/29/1951, p. 1",1951.11.28.b-Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.28.b-Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.28.b-Lewis.pdf,1951.11.28.b,1951.11.28.b,1792,, +1951.11.28.a,28-Nov-51,1951,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Winkelspruit,Treading water,George Plowman,M,24,"Leg severed below knee, defense wounds on hand",N,17h15,"White shark, 2.4 m [8'] ","G. Plowman, M. Levine, GSAF",1951.11.28.a-Plowman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.28.a-Plowman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.28.a-Plowman.pdf,1951.11.28.a,1951.11.28.a,1791,, +1951.11.23.R,Reported 23-Nov-1951,1951,Unprovoked,PHILIPPINES,,,Shipwrecked; adrift on raft for 2 days & 2 nights,3 fishermen,M,,"FATAL, two men survived, one succumbed to shark bite & exhaustion",Y,,,"Fresno Bee Republican, 11/23/1951",1951.11.22-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.22-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.22-Philippines.pdf,1951.11.23.R,1951.11.23.R,1790,, +1951.10.22,22-Oct-51,1951,Unprovoked,AUSTRALIA,Queensland,"Ocean baths, Kissing Point Beach ",Swimming,Arthur James Kenealey,M,42,"FATAL, leg severed, shark dragged him through hole in protective net",Y,19h10,,"V.M. Coppleson (1958), pp.90-91; A. Sharpe, pp.98-99; A. MacCormick, p.169",1951.10.22-Kenealy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.10.22-Kenealy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.10.22-Kenealy.pdf,1951.10.22,1951.10.22,1789,, +1951.10.05,05-Oct-51,1951,Invalid,NORTH ATLANTIC OCEAN,South Carolina,400 miles off the le,cargo ship Southern Isle sank at 04h00,,,,Sharks fed on bodies of the drowned,N,,,"J. Waters, U.S. Coast Guard; San Mateo Times, 10/5/1951",1951.10.05-SouthernIsle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.10.05-SouthernIsle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.10.05-SouthernIsle.pdf,1951.10.05,1951.10.05,1788,, +1951.09.29,29-Sep-51,1951,Unprovoked,ITALY,Salerno,Amalfi,Swimming,Anna Wurn,F,21,FATAL,Y,,,"C. Moore, GSAF; Courier-Mail, 11/3/1951",1951.09.29-Wurn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.29-Wurn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.29-Wurn.pdf,1951.09.29,1951.09.29,1787,, +1951.09.03.R,Reported 03-Sep-1951,1951,Unprovoked,ITALY,Salerno Province,Salerno,Fishing for squid,Luca Caputo,M,,3 fingers severed when he used his hand as bait,N,Night,,"C. Moore, GSAF",1951.09.03.R-Caputo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.03.R-Caputo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.03.R-Caputo.pdf,1951.09.03.R,1951.09.03.R,1786,, +1951.09.02-R,Reported 02-Sep-1951,1951,Unprovoked,AUSTRALIA,Queensland,Fitzroy River near Rockhampton,"Body found on deserted luxury yacht, 38� Christine",Dr. E. Al Joske,M,56,"FATAL, abdominal wounds & right leg severed at the hip ",Y,,,"J. Green, p.34; V.M. Coppleson (1958), pp. 91-92. Note: A. Sharpe, p.99-100, lists date as 9-4-1955 and the Christine as a 45' ketch",1951.09.02-Joske.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.02-Joske.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.02-Joske.pdf,1951.09.02-R,1951.09.02-R,1785,, +1951.08.17.b,17-Aug-51,1951,Unprovoked,GREECE,Corfu Island,Off Royal Residence,Swimming,George Athanasenas,M,18,Injured but survived,N,,White shark,A. De Maddalena,1951.08.17.b-Athanasenas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.17.b-Athanasenas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.17.b-Athanasenas.pdf,1951.08.17.b,1951.08.17.b,1784,, +1951.08.17.a,17-Aug-51,1951,Unprovoked,GREECE,Corfu Island,Off Royal Residence,Swimming,Vanda Pierri,F,16,"FATAL, body not recovered Another man was also injured by the shark at same time (see below)",Y,,White shark,A De Maddalena,1951.08.17.a-Perri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.17.a-Perri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.17.a-Perri.pdf,1951.08.17.a,1951.08.17.a,1783,, +1951.08.16.R,Reported 16-Aug-1951,1951,Unprovoked,ITALY,Taranto,Torre Colimena,Diving (Hookah),male,M,,No injury,N,,,"C. Moore, GSAF",1951.08.16.R-TorreColimena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.16.R-TorreColimena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.16.R-TorreColimena.pdf,1951.08.16.R,1951.08.16.R,1782,, +1951.08.00,Between 01-Aug-1951 & 08-Aug-1951,1951,Unprovoked,COLUMBIA,Caribbean Sea,Cartegena,Bathing,"4 people killed in the past week, others injured",,,FATAL,Y,,,"New York Times, 8/9/1951; V.M. Coppleson (1958), pp.125 & 258",1951.08.00-Cartagena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.00-Cartagena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.00-Cartagena.pdf,1951.08.00,1951.08.00,1781,, +1951.07.19.R,Reported 19-Jul-1951,1951,Unprovoked,USA,California,"Long Beach, Los Angeles County",,Archie Nottingham,M,13,Severe laceration to foot,N,,,"Long Beach Independent, 7/19/1951, p.4A",1951.07.19.R-Nottingham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.07.19.R-Nottingham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.07.19.R-Nottingham.pdf,1951.07.19.R,1951.07.19.R,1780,, +1951.07.11,11-Jul-51,1951,Unprovoked,PACIFIC OCEAN,,In Los Angeles � Honolulu yacht race,Fell overboard,"Edward Sierks, skipper",M,40,"""Molested by shark that nibbled his bare feet"", rescued 30 hours later.",N,Afternoon,2.1 m [7'] shark,"Daily Review, 7/13/1951",1951.07.11-Sierks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.07.11-Sierks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.07.11-Sierks.pdf,1951.07.11,1951.07.11,1779,, +1951.06.25,25-Jun-51,1951,Unprovoked,USA,Hawaii,"Kapehu Beach, Laupahoehoe, Hawai'i",Swept out to sea while fishing,Alejandro Nodura,M,,"FATAL, victim seen in shark's mouth",Y,,,"G.H. Balazs & A.K.H. Kam; J. Borg, p.72; L. Taylor (1993), pp.100-101",1951.06.25-Nodura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.06.25-Nodura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.06.25-Nodura.pdf,1951.06.25,1951.06.25,1778,, +1951.06.00,Jun-51,1951,Unprovoked,FRENCH POLYNESIA,Tuamotus,"Outer edge of Hikueru, one of the Central Tuamotu atolls",Spearfishing,Don M. Clark,M,39,Right thumb bitten,N,11h00,,D.M. Clark,1951.06.00-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.06.00-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.06.00-Clark.pdf,1951.06.00,1951.06.00,1777,, +1951.05.22,22-May-51,1951,Unprovoked,MEXICO,,,Free diving,Brian Lanse,M,16,Lower leg severely injured,N,15h00,,"H.D.Baldridge (1994), SAF Case #1482",1951.05.22-NV-Lanse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.05.22-NV-Lanse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.05.22-NV-Lanse.pdf,1951.05.22,1951.05.22,1776,, +1951.05.09.R,Reported 09-May-1951,1951,Provoked,ITALY,Naples Province,"Torre del Greco, Naples",,,,,3 men knocked to ground by harpooned shark PROVOKED INCIDENT,N,,,"C. Moore, GSAF",1951.05.09.R-Naples.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.05.09.R-Naples.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.05.09.R-Naples.pdf,1951.05.09.R,1951.05.09.R,1775,, +1951.03.26,26-Mar-51,1951,Provoked,AUSTRALIA,New South Wales,Avalon,Fell off surf ski,Ken Davidson,M,23,Minor laceration to chest when he grabbed the shark by its tail PROVOKED INCIDENT,N,Afternoon,"Wobbegong shark, 4'","Canberra Times, 1/27/1951",1951.03.26-Davidson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.03.26-Davidson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.03.26-Davidson.pdf,1951.03.26,1951.03.26,1774,, +1951.03.24,24-Mar-51,1951,Unprovoked,AUSTRALIA,New South Wales,Sydney,"Fishing, casting in the surf",male,M,"""young""",Severe lacerations of chest & thigh,N,,5.5 m [18'] shark,"LA Times, 3/25/1951 ",1951.03.24-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.03.24-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.03.24-Fisherman.pdf,1951.03.24,1951.03.24,1773,, +1951.03.15,15-Mar-51,1951,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"South Beach, Durban",Body surfing,Heinrich Stapelberg,M,19,Left foot lacerated,N,12h00,,"M. Levine, GSAF",1951.03.15-Stapelberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.03.15-Stapelberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.03.15-Stapelberg.pdf,1951.03.15,1951.03.15,1772,, +1951.02.19,19-Feb-51,1951,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port St. Johns,Body surfing,Keith Huskisson,M,31,"Leg bitten, defense wounds on hands",N,12h15,136-kg [300-lb] shark,"K. Huskisson, M. Levine, GSAF",1951.02.19-Huskisson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.02.19-Huskisson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.02.19-Huskisson.pdf,1951.02.19,1951.02.19,1771,, +1951.02.03,03-Feb-51,1951,Unprovoked,AUSTRALIA,New South Wales,"Windang, near the entrance to Lake Illawarra",Spearfishing (but treading water on the surface),Albert Pride,M,20,Shark's fin caused abrasion on his chest,N,,,"G.P. Whitley (1951), p.194 cites Sunday Sun (Sydney) 2/4/1951; J. Green, p.34; V.M. Coppleson (1958), pp.167-168",1951.02.03-Pride.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.02.03-Pride.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.02.03-Pride.pdf,1951.02.03,1951.02.03,1770,, +1951.02.01,01-Feb-51,1951,Unprovoked,AUSTRALIA,New South Wales,Bondi Beach,Swimming,Harry Sheen,M,14,Leg bitten,N,,1.2 m [4'] shark,"G.P. Whitley (1951), p.194 cites Daily Mirror (Sydney); J. Green, p.34",1951.02.01-Sheen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.02.01-Sheen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.02.01-Sheen.pdf,1951.02.01,1951.02.01,1769,, +1951.01.21,21-Jan-51,1951,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Native Beach, Durban",Swimming,Hendrie Nkwazi,M,19,"FATAL, right thigh bitten, leg severed at knee",Y,16h25,,"D. Davies; M. Levine, GSAF ",1951.01.21-Nkwazi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.01.21-Nkwazi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.01.21-Nkwazi.pdf,1951.01.21,1951.01.21,1768,, +1951.01.03,03-Jan-51,1951,Invalid,AUSTRALIA,New South Wales,Hawkesbury River,,male,M,,Body found after a week in the water apparently bitten by shark/s,Y,,,"G.P. Whitley (1951), p.194, cites Sun (Sydney), 2/4/1951; SAF Case #617",1951.01.03-HawkesburyRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.01.03-HawkesburyRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.01.03-HawkesburyRiver.pdf,1951.01.03,1951.01.03,1767,, +1951.00.00,1951,1951,Unprovoked,NEW GUINEA,Madang Province,Manam Island,,,,,FATAL,Y,,,"A. Bleakley; A. M. Rapson, p.148",1951.00.00-ManamIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.00.00-ManamIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.00.00-ManamIsland.pdf,1951.00.00,1951.00.00,1766,, +1950.12.31,31-Dec-50,1950,Unprovoked,AUSTRALIA,Queensland,Kirra,Paddling a surfboat,Brian Love,M,19,"No injury, shark bit oar",N,,"Nurse shark, 10' ","Examiner, 1/1/1951",1950.12.31-oar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.31-oar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.31-oar.pdf,1950.12.31,1950.12.31,1765,, +1950.12.19.R,Reported 19-Dec-1950,1950,Unprovoked,AUSTRALIA,New South Wales,Jervis Bay,Swimming,2 swimmers,,,Legs nipped,N,,"Wobbegong shark, 6'","Canberra Times, 12/19/1950",1950.12.19.R-JervisBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.19.R-JervisBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.19.R-JervisBay.pdf,1950.12.19.R,1950.12.19.R,1764,, +1950.12.16,16-Dec-50,1950,Unprovoked,AUSTRALIA,Queensland,"Palm Beach North, 5 miles north of Burleigh Heads, Brisbane",Treading water,"Desmond Quinlan, lifesaver",M,20,"FATAL, lower abdomen severely bitten & his left leg was severed",Y,16h15,,"R. A Smith; G.P. Whitley (1951), p.194, cites Sunday Herald (Sydney), 12/17/1950; V.M. Coppleson (1958), pp.94 & 239]",1950.12.16-Quinlan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.16-Quinlan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.16-Quinlan.pdf,1950.12.16,1950.12.16,1763,, +1950.11.29,29-Nov-50,1950,Provoked,AUSTRALIA,Northern Territory,Goulburn Island,Diving ,Irrwala,M,17,"Minor injury to hand and groin from shark ""caught on his fishing spear"" PROVOKED INCIDENT",N,,2' shark,"Northern Standard, 12/1/1950",1950.11.29-Irrwala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.11.29-Irrwala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.11.29-Irrwala.pdf,1950.11.29,1950.11.29,1762,, +1950.11.25,25-Nov-50,1950,Unprovoked,AUSTRALIA,Queensland,"Burleigh Heads, Brisbane",Body surfing,Leo Vincent Ryan,M,21,Part of buttocks & fingers severed,N,17h15,"White shark, 3m, seen in area and hooked 3 days later","G.P.Whitley (1951), p. 194, cites Sunday Herald (Sydney), 11/26/1950; V.M. Coppleson (1958), pp. 93-94 & 239",1950.11.25-LeoVincentRyan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.11.25-LeoVincentRyan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.11.25-LeoVincentRyan.pdf,1950.11.25,1950.11.25,1761,, +1950.11.12,12-Nov-50,1950,Boating,AUSTRALIA,Queensland,Yeppoon,Paddling a canoe,A canoe; occupants Harry Goodson & Douglas Barnes,M,18,"No injury to occupants, shark holed canoet",N,,10' shark,"Sydney Morning Herald, 11/13/1950",1950.11.12-canoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.11.12-canoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.11.12-canoe.pdf,1950.11.12,1950.11.12,1760,, +1950.10.08,28-Oct-50,1950,Unprovoked,USA,California,"Imperial Beach, San Diego County",Body surfing / treading water,Robert B. Campbell,M,31,Right leg lacerated,N,12h00,White shark,"R. Collier, p 6-8, R. B. Campbell; New York Times, 10/10/1960; Coppleson (1958), p.254; D. Miller & R. Collier",1950.10.08-Campbell-Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.10.08-Campbell-Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.10.08-Campbell-Collier.pdf,1950.10.08,1950.10.08,1759,, +1950.10.04,04-Oct-50,1950,Unprovoked,AUSTRALIA,Queensland,"Peterson's Beach, Sarina",Fishing,Valentine Sichter,M,25,Lacerations to right thumb and knee,N,Night,4' shark,"Courier-Mail, 10/6/1950",1950.10.04-Sichter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.10.04-Sichter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.10.04-Sichter.pdf,1950.10.04,1950.10.04,1758,, +1950.08.06,06-Aug-50,1950,Provoked,EL SALVADOR, La Libertad,50 miles off Port La Libertad,Jerked overboard while pole fishing for tuna,Robert L. Bottini,M,27,Left thigh bitten by hooked shark PROVOKED INCIDENT,N,08h30,"1,100-lb shark","Evening Sun (Baltimore), 8/11/1950; Long Beach Press-Telegram, 8/17/1950",1950.08.06-Bottini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.08.06-Bottini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.08.06-Bottini.pdf,1950.08.06,1950.08.06,1757,, +1950.08.00,Aug-50,1950,Unprovoked,SAUDI ARABIA,Eastern Province,East of the Ras Tanura-Jubail area ,Diving,a pearl diver,M,,Tissue stripped knee to foot,N,2 hrs before sunset,,G.F. Mead,1950.08.00-PearlDiver-Arabia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.08.00-PearlDiver-Arabia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.08.00-PearlDiver-Arabia.pdf,1950.08.00,1950.08.00,1756,, +1950.07.27.R,Reported 27-Jul-1950,1950,Boating,AUSTRALIA,South Australia,Streaky Bay,Fishing,40' fishing cutter,,,No injury to occupants,N,,17' white shark,"The Mercury, 7/27/1950",1950.07.27.R-Horsell-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.27.R-Horsell-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.27.R-Horsell-boat.pdf,1950.07.27.R,1950.07.27.R,1755,, +1950.07.21,21-Jul-50,1950,Unprovoked,JAPAN,Sago Prefecture,Ariakeno Bay,Swimming,male,M,19,FATAL,Y,P.M.,,M. Hosina; K. Nakaya,1950.07.21-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.21-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.21-Japan.pdf,1950.07.21,1950.07.21,1754,, +1950.07.19,1950.07.19,1950,Provoked,ITALY,Savona,Albenga,Fishing,male,,,Harpooned shark bit his forehead PROVOKED INCIDENT,N,,,"C. Moore, GSAF",1950.07.19-Albenga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.19-Albenga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.19-Albenga.pdf,1950.07.19,1950.07.19,1753,, +1950.07.14,15-Jul-50,1950,Unprovoked,CUBA,Caribbean Sea,,Swept off deck of S.S.Frontenac enroute from West Indies to US,"Johan Loekstad, a Norwegian seaman",M,30,Found at 21h30 by searchlight. Had been constantly harassed by sharks & had numerous lacerations,N,18h15 to 21h30,,"L.A. Times, 8/20/1950; Evening Star (Washington, DC), 8/24/1950; V.M. Coppleson (1962), p.259",1950.07.14-Loekstad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.14-Loekstad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.14-Loekstad.pdf,1950.07.14,1950.07.14,1752,, +1950.07.10,10-Jul-50,1950,Unprovoked,USA,Texas,Near Port Arthur,Swimming,Mark Majors III,M,11,Laceration to leg,N,,Hammerhead shark,"Amarillo Daily News, 7/12/1950",1950.07.10-Majors.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.10-Majors.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.10-Majors.pdf,1950.07.10,1950.07.10,1751,, +1950.07.09,09-Jul-50,1950,Invalid,USA,Texas,Galveston Bay,,,M,,Human remains found in shark,Y,,,"Kingston Daily Freeman, 7/14/1950",1950.07.09-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.09-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.09-Galveston.pdf,1950.07.09,1950.07.09,1750,, +1950.07.00,Jul-50,1950,Unprovoked,USA,Florida,"Rock Harbor, Key Largo, Monroe County","Goggle-diving for seaweeds, but standing in water",Warren Rathgen,M,21,Shallow lacerations on back of right thigh,N,,0.7 m [2.5'] shark,"C. Phillips & W.H. Brady; R.F. Hutton; V.M. Coppleson (1958), p.252 ",1950.07.00-Rathjen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.00-Rathjen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.00-Rathjen.pdf,1950.07.00,1950.07.00,1749,, +1950.06.25,25-Jun-50,1950,Unprovoked,USA,New York,"Beach 103rd Street, Rockaway ",Swimming ,Joseph Salengo,M,16,"Gashes & lacerations on legs, foot lacerated.",N,,"""sand shark"""," New York Times, 6/25/1950, p.1. col.2 & p.38",1950.06.25-Salango.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.06.25-Salango.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.06.25-Salango.pdf,1950.06.25,1950.06.25,1748,, +1950.06.06,06-Jun-50,1950,Sea Disaster,USA,Florida,275 miles northeast of Miami,Survived crash of two-engine C-46 transport plane carrying 62 migrant workers from Puerto Rico to USA ,Pedro Guzman,M,25,"FATAL, bitten five times. Other survivors fought off sharks for 10 hours. One survivor's arm severed by a shark.",Y,09h00,,"NY Times, 7/7/1950; V.M. Coppleson (1962), p.258; T. Helm, p.89; [SAF Case #949 & SAF Case #969]",1950.06.06-Guzman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.06.06-Guzman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.06.06-Guzman.pdf,1950.06.06,1950.06.06,1747,, +1950.05.24,24-May-50,1950,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Port Edward,Treading water,Dr. Leonard Read Tibbet,M,27,Left foot bitten,N,10h30,,"L.R. Tibbet, M. Levine, GSAF",1950.05.24-Tibbit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.05.24-Tibbit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.05.24-Tibbit.pdf,1950.05.24,1950.05.24,1746,, +1950.05.01,01-May-50,1950,Boating,ITALY,Tyrrhenian Sea,"Sprizze, Isola d'Elba",Fishing on a boat,Remo Adriani,M,,No injury,N,,"unknown, possibly a white shark",A. De Maddalena; F. Serena (pers. Comm.),1950.05.01-Adriani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.05.01-Adriani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.05.01-Adriani.pdf,1950.05.01,1950.05.01,1745,, +1950.04.09.b,09-Apr-50,1950,Sea Disaster,AUSTRALIA,Queensland,Cooper's Point,"Sea Disaster, sinking of the fishing launch Mavis",John McDonald,M,50,FATAL,Y,,,"Cairns Post, 7/8/1950",1950.04.09-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.04.09-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.04.09-McDonald.pdf,1950.04.09.b,1950.04.09.b,1744,, +1950.04.09.a,09-Apr-50,1950,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Off Port Elizabeth breakwater,"Fishing, sitting in stern of small boat, feet dangling in the water",male,M,,"Shark bit foot, removing 2 toes",N,,2.13 m shark,Port Elizabeth Museum Archives,1950.04.09.R-2Toes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.04.09.R-2Toes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.04.09.R-2Toes.pdf,1950.04.09.a,1950.04.09.a,1743,, +1950.03.26,26-Mar-50,1950,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Off bank of Ntshala River, Morgan Bay",Wading,Mr. N. Wright,M,,"Ankle & foot lacerated, defense wounds on hand",N,Midday,1.5 m to 1.8 m [5' to 6'] �spear-eye� shark ,"M. Levine, GSAF",1950.03.26-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.03.26-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.03.26-Wright.pdf,1950.03.26,1950.03.26,1742,, +1950.03.08,08-Mar-50,1950,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Lifesaving drill,Brian Von Berg,M,20,FATAL,Y,18h50,,"N.Cook; M. Levine, GSAF",1950.03.08-VonBerg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.03.08-VonBerg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.03.08-VonBerg.pdf,1950.03.08,1950.03.08,1741,, +1950.03.01,01-Mar-50,1950,Invalid,AUSTRALIA,Western Australia,"City Beach, Perth",Suicide,Peter Szott,M,,"His body, with bullet wound in head & right hand missing, washed shore - an apparent suicide",Y,,"Szot's right hand found in a 4.5' [14.5'] tiger shark caught 3/9/1950 at Safety Bay, south of Freemantle","G.P. Whitley (1951), p.186, citng the Sydney Morning Herald, 3/11/1950; D. Baldridge, p.171; SAF Cases #584 & #615",1950.03.01-Szott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.03.01-Szott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.03.01-Szott.pdf,1950.03.01,1950.03.01,1740,, +1950.02.18.R,Reported 18-Feb-1950,1950,Unprovoked,AUSTRALIA,Western Australia,"Cottesloe, Perth",Spearfishing,male,M,,Minor injury to leg,N,,small carpet shark,"Mirror, 2/18/1950",1950.02.18.R-Perth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.02.18.R-Perth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.02.18.R-Perth.pdf,1950.02.18.R,1950.02.18.R,1739,, +1950.02.11,11-Feb-50,1950,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"South Beach, Durban",Body surfing,Clive Dumayne,M,14,"FATAL, body not recovered ",Y,14h30,"White shark, 3.7 m [12'] according to witnesses","M. Dumayne, M. Levine, GSAF",1950.02.11-Dumayne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.02.11-Dumayne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.02.11-Dumayne.pdf,1950.02.11,1950.02.11,1738,, +1950.01.16,16-Jan-50,1950,Invalid,USA,Hawaii,"Kahakuloa, Maui","Fishing, one of three fishermen swept into the sea by a large wave ",Gilbert S. Hotta,M,,"His remains were recovered from a �huge shark� caught 3 days later. The remains of another fisherman, Harold Fujimoto, were recovered, but the body of the third fisherman, Hideo Tamura, was never found",Y,Night,,"J. Borg, p.72; L. Taylor (1993), pp.98-99",1950.01.16-Hotta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.01.16-Hotta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.01.16-Hotta.pdf,1950.01.16,1950.01.16,1737,, +1950.01.12.R,Reported 12-Jan-1950,1950,Unprovoked,AUSTRALIA,Victoria,South Werribee Beach,Swimming,D. Martin,M,,3 lacerations to heel,N,,,"Werribee Shire Banner, 1/12/1950",1950.01.12.R-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.01.12.R-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.01.12.R-Martin.pdf,1950.01.12.R,1950.01.12.R,1736,, +1950.00.00.m,1950,1950,Boating,AUSTRALIA,Tasmania,Triabunna,Sitting on side of dinghy mending a net,Neil Drake,M,,"No injury to occupant, shark bit side of dinghy",N,,"White shark, 3.6 m, 420 kg male","C. Black, GSAF",1950.00.00.m-Drake-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.m-Drake-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.m-Drake-dinghy.pdf,1950.00.00.m,1950.00.00.m,1735,, +1950.00.00.l,1950,1950,Unprovoked,SRI LANKA,Eastern Province,Heda Oya Estuary,Shark fishing,Aboobaker,M,,Buttock removed,N,,Possibly a lemon shark,"R.I. DeSilva, GSAF",1950.00.00.l-Abbobaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.l-Abbobaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.l-Abbobaker.pdf,1950.00.00.l,1950.00.00.l,1734,, +1950.00.00.k,1950,1950,Unprovoked,SRI LANKA,Southern Province,Dodnduwa,Spearfishing,Langston Pereira,M,,"No injury, but shark damaged one of his swim fins",N,,Whtietip reef shark,"R.I. DeSilva, GSAF",1950.00.00.k-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.k-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.k-Pereira.pdf,1950.00.00.k,1950.00.00.k,1733,, +1950.00.00.j,1950 - 1951,1950,Unprovoked,LIBERIA,Montserrado,Monrovia,Defecating in water beneath the docks,a dock worker,M,,FATAL,Y,,,G. C. Miller,1950.00.00.j-Liberian-dock-worker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.j-Liberian-dock-worker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.j-Liberian-dock-worker.pdf,1950.00.00.j,1950.00.00.j,1732,, +1950.00.00.i,Summer 1950,1950,Unprovoked,INDONESIA,Jakarta Harbour,On rock near Yacht Club,Bending over,child,M,7 or 8,FATAL,Y,1500,"Tiger shark, 3.7 m to 4.3 m [12' to 14']",J. Daigle,1950.00.00.i-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.i-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.i-child.pdf,1950.00.00.i,1950.00.00.i,1731,, +1950.00.00.h,1950,1950,Unprovoked,USA,Florida,"Jacksonville Beach, Duval County",Standing,George Carter,M,,Arm bitten,N,,,"Florida Times-Union (Jacksonville), 6/6/1961",1950.00.00.h-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.h-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.h-Carter.pdf,1950.00.00.h,1950.00.00.h,1730,, +1950.00.00.g,1950s,1950,Invalid,USA,Hawaii,"Waikiki, O'ahu",Spearfishing,David Lloyd,M,,"No injury from shark, scraped chest climbing out on reef",N,,"Alleged to involve a white shark ""with little yellow eyes""","J. Borg, p.73; L. Taylor (1993), pp.100-101; Skin Diver Magazine, March 1956; SAF Case #1042",1950.00.00.g-Lloyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.g-Lloyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.g-Lloyd.pdf,1950.00.00.g,1950.00.00.g,1729,, +1950.00.00.f,1950,1950,Unprovoked,PANAMA,Canal Zone,300 yards west of mouth of the Chagres River,Bathing ,"male, a US soldier",M,,Foot & hand severed,N,13h00,2.7 m [9'] shark with black-tipped pectoral fins,G.B. Fairchild,1950.00.00.f-US-solier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.f-US-solier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.f-US-solier.pdf,1950.00.00.f,1950.00.00.f,1728,, +1950.00.00.e,Summer 1950,1950,Unprovoked,GREECE,,"Piraeus, Athens",Swimming,,,,FATAL,Y,,,"V.M. Coppleson (1958), p.259; L. Schultz & M. Malin, p.529",1950.00.00.e-Piraeus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.e-Piraeus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.e-Piraeus.pdf,1950.00.00.e,1950.00.00.e,1727,, +1950.00.00.d,1950,1950,Unprovoked,SINGAPORE,Singapore Harbor,,Diving for coins,"Abdullah, a Malay diver",M,,FATAL,Y,,,"V.M. Coppleson (1958), p.148",1950.00.00.d-Abdullah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.d-Abdullah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.d-Abdullah.pdf,1950.00.00.d,1950.00.00.d,1726,, +1950.00.00.c,1950,1950,Unprovoked,NEW CALEDONIA,North Province,"Voh, near meatworks","Spearfishing, but walking carrying fish on end of speargun",male,M,,"Shark jumped from sea, taking fish & his right arm",N,,,"V.M. Coppleson (1958), p.262; V.M. Coppleson (1962), p.253",1950.00.00.c-NewCaledonia-Voh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.c-NewCaledonia-Voh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.c-NewCaledonia-Voh.pdf,1950.00.00.c,1950.00.00.c,1725,, +1950.00.00.b,Ca. 1950,1950,Unprovoked,NEW CALEDONIA,North Province,Mangalia Reef above Touho ,"Helmet diving, collecting trochus shell",male,M,,"Arm bitten, surgically amputated",N,,," V.M. Coppleson (1958), pp.98 & 262",1950.00.00.b-NewCaledonia-Touho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.b-NewCaledonia-Touho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.b-NewCaledonia-Touho.pdf,1950.00.00.b,1950.00.00.b,1724,, +1950.00.00.a,Ca. 1950,1950,Unprovoked,FIJI,,Near Lautoka,,Fijian,M,,Survived,N,,,"V.M. Coppleson (1962), p.246",1950.00.00.a-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.a-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.a-Fiji.pdf,1950.00.00.a,1950.00.00.a,1723,, +1949.12.00.b,Dec-49,1949,Sea Disaster,,Caribbean Sea,Between Cuba & Costa Rica,"Sea Disaster, sinking of the motorship Wingate","Albert Battles, James Dean & 4 crew",M,,Fatal or drowning or scavenging,Y,,Shark involvement not confirmed,"Canberra Times, 1/6/1950",1949.12.00.b-Wingate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.12.00.b-Wingate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.12.00.b-Wingate.pdf,1949.12.00.b,1949.12.00.b,1722,, +1949.12.00.a,Dec-49,1949,Unprovoked,AUSTRALIA,Victoria,Seaholme,Lying on the bottom of a 16' dinghy,Doug Miller,M,35,"No injury, Shark landed on top of him, knocked him back down 3 times",N,,"Grey nurse shark, 2.6 m [8.5'] ","V.M. Coppleson (1958), pp. 181-182",1949.12.00.a-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.12.00.a-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.12.00.a-Miller.pdf,1949.12.00.a,1949.12.00.a,1721,, +1949.11.20,20-Nov-49,1949,Unprovoked,AUSTRALIA,New South Wales,"Kurnell, Botany Bay ",Free diving or wading back to shore,William Edward Brown,M,36,Left arm bitten ,N,Afternoon,6' shark,"Sydney Morning Herald, 11/20/1949",1949.11.20-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.11.20-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.11.20-Brown.pdf,1949.11.20,1949.11.20,1720,, +1949.11.12,12-Nov-49,1949,Invalid,AUSTRALIA,Victoria,Port Phillip Bay,No details,John W. Smith,M,,Fatal or drowning or scavenging,Y,,,"G.P. Whitley (1951), p.194, cites Sunday Herald (Sydney), 11/13/1949; SAF Case #613",1949.11.12-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.11.12-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.11.12-Smith.pdf,1949.11.12,1949.11.12,1719,, +1949.08.28.b,28-Aug-49,1949,Unprovoked,AUSTRALIA,Queensland,Yorkey�s Knob Beach near Cairns,Swimming,Brian Ware (rescuer),M,21,Abdomen & chest abraded,N,13h20,,"V.M. Coppleson (1958), p.89",1949.08.28.b-Ware.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.28.b-Ware.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.28.b-Ware.pdf,1949.08.28.b,1949.08.28.b,1718,, +1949.08.28.a,28-Aug-49,1949,Unprovoked,AUSTRALIA,Queensland,Yorkey�s Knob Beach near Cairns,Swimming,James Howard,M,34,"FATAL, right leg, thigh & fingers lacerated ",Y,13h20,,"G.P. Whitley (1951), p.194, cites Daily Telegraph (Sydney), 8/29/1949; V.M. Coppleson (1958), pp.88 & 239",1949.08.28.a-Howard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.28.a-Howard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.28.a-Howard.pdf,1949.08.28.a,1949.08.28.a,1717,, +1949.08.17,17-Aug-49,1949,Invalid,ITALY,Tuscany,Elba Island,Swimming,Domenico Murolo,M,17,No injury,N,,2 m shark,"C. Moore, GSAF",1949.08.17-Murolo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.17-Murolo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.17-Murolo.pdf,1949.08.17,1949.08.17,1716,, +1949.08.16,16-Aug-49,1949,Unprovoked,AUSTRALIA,Tasmania,Flinders Island,Swimming near shore,Robert Kay,M,18,Hip lacerated,N,16h00,,"G.P. Whitley (1952), p.194;, citing Daily Telegraph (Sydney), 8/18/1949; V.M. Coppleson (1958), p.240; C. Black, p. 148",1949.08.16-Kay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.16-Kay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.16-Kay.pdf,1949.08.16,1949.08.16,1715,, +1949.08.10.R,Reported 10-Aug-1949,1949,Unprovoked,ITALY,Calabria,Cosenza,Swimming,Giovanni Picarelli,M,21,Right hand severed,N,,,"C. Moore, GSAF",1949.08.10.R-Picarelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.10.R-Picarelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.10.R-Picarelli.pdf,1949.08.10.R,1949.08.10.R,1714,, +1949.07.29,07-Jul-49,1949,Unprovoked,IRAN,Shatt-el-Arab River,,Swimming,"R. Palmer, ship�s apprentice",M,18,Right leg lacerated,N,,,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp, p.85 ",1949.07.29-Palmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.29-Palmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.29-Palmer.pdf,1949.07.29,1949.07.29,1713,, +1949.07.28,28-Jul-49,1949,Unprovoked,IRAN,Shatt-al-Arab River,Bashamir,Swimming,Ali,M,18,"FATAL, thigh lacerated, femur exposed ",Y,,,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp, p.85 ",1949.07.28-Ali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.28-Ali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.28-Ali.pdf,1949.07.28,1949.07.28,1712,, +1949.07.25,25-Jul-49,1949,Unprovoked,USA,South Carolina,"Oketee River, Jasper County",Floating on his back,Ted Roach,M,16,"Abdomen abraded, thigh lacerated",N,15h00,,"V.M. Coppleson (1958), p.153",1949.07.25-Roach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.25-Roach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.25-Roach.pdf,1949.07.25,1949.07.25,1711,, +1949.07.16,16-Jul-49,1949,Provoked,USA,California,"10 miles off Redondo Beach, Los Angeles County",Fishing,Raymond T. Gold,M,16,Right hand bitten by hooked shark being pulled onboard PROVOKED INCIDENT,N,,"Bonita sharkk, 200-lb","L.A. Times, 7/17/1949 ",1949.07.16-Gold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.16-Gold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.16-Gold.pdf,1949.07.16,1949.07.16,1710,, +1949.06.13,13-Jun-49,1949,Sea Disaster,CHINA,,Between Tientsin & Hong Kong,"A 75-ton Japanese fishing ship was sunk by Chinese Nationalist gunboat, shipwrecked men were clinging to debris",Japanese fishermen,M,,"FATAL, at time of sinking several men were thrown in water & killed by sharks, survivors were rescued 3 days later by the Panamanian ship Christobel",Y,,,"V.M. Coppleson (1958), pp.257-258",1949.06.13-Japanese-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.06.13-Japanese-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.06.13-Japanese-fishermen.pdf,1949.06.13,1949.06.13,1709,, +1949.05.16,16-May-49,1949,Unprovoked,AUSTRALIA,Western Australia,Broome,Bathing,Mary Passaris,F,22,"Left arm severed above elbow, recovered 5 days afterwards from shark�s gut",N,,"Whaler shark, 2.7 m [9'], 350- to 450-lb identified by G.P. Whitley","V.M. Coppleson (1958), pp.107 & 241; G.P. Whitley (1951), pp.186-188; A. Sharpe, pp.131-132",1949.05.16-Passaris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.05.16-Passaris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.05.16-Passaris.pdf,1949.05.16,1949.05.16,1708,, +1949.05.13,13-May-49,1949,Provoked,AUSTRALIA,New South Wales,Nelson's Bay,"Examining netted shark, that had been shot",Albert Hampton,M,26,Lacerations to right hand PROVOKED INCIDENT,N,,,"V.M. Coppleson (1958), p.176; R. Skocik, p.179",1949.05.13-Hampton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.05.13-Hampton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.05.13-Hampton.pdf,1949.05.13,1949.05.13,1707,, +1949.04.18,18-Apr-49,1949,Provoked,AUSTRALIA,Queensland,"Nerang River, Southpot",Fishing,"""Lockie"" Smith",M,,Toe bitten by netted shark PROVOKED INCIDENT,N,,3' shark,"Courier-Mail, 4/19/1949",1949.04.18-Lockie-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.04.18-Lockie-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.04.18-Lockie-Smith.pdf,1949.04.18,1949.04.18,1706,, +1949.04.17,17-Apr-49,1949,Unprovoked,AUSTRALIA,Queensland,"Ellis Beach, 20 miles from Cairns",Bathing in water 0.9 m deep,Richard Joseph Maguire,M,13,"FATAL, left leg severed",Y,13h30,"3.3 m [10'9""] shark","G.P. Whitley (1951), p.194; V.M. Coppleson (1958), p.239; A. Sharpe, pp.38 & 97",1949.04.17-Maguire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.04.17-Maguire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.04.17-Maguire.pdf,1949.04.17,1949.04.17,1705,, +1949.04.13,13-Apr-49,1949,Unprovoked,MEXICO,Tamaulipas,"Miramar Beach, Tampico",Bathing,male,M,,"U.S. destroyer John W. Weeks, 6 miles offshore, demonstrating guns & bombs for Mexican officials was thought to have driven the shark into the shallows where it bit the bather before other bathers drove it away with sticks & clubs.",N,,,"New York Herald Tribune, 4/15/1949",1949.04.13-Miramar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.04.13-Miramar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.04.13-Miramar.pdf,1949.04.13,1949.04.13,1704,, +1949.03.00,Mar-1949 or Apr-1949,1949,Boating,AUSTRALIA,South Australia,18 miles south of Port Augusta,,boat,,,,UNKNOWN,,,"G.P. Whitley (1951), p.194; SAF Case #612",1949.03.00-boat-PortAugusta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.03.00-boat-PortAugusta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.03.00-boat-PortAugusta.pdf,1949.03.00,1949.03.00,1703,, +1949.01.23,23-Jan-49,1949,Unprovoked,AUSTRALIA,New South Wales,"Bar Beach, Newcastle ",Lifesaving exhibition,Ray Land,M,20,FATAL,Y,15h00,"White shark, 3.6 m [11'9""] ","G.P. Whitley (1951); V.M. Coppleson (1958), pp. 77 & 78; A. Sharpe, pp.84-85",1949.01.23-Land.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.23-Land.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.23-Land.pdf,1949.01.23,1949.01.23,1702,, +1949.01.14,14-Jan-49,1949,Invalid,AUSTRALIA,New South Wales,Off North Bondi,Surfing,Vince Wilson,M,32,"No injury, chased by 3 sharks",N,Afternoon,,"Sydney Morning Herald, 1/14/1949 +",1949.01.14-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.14-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.14-Wilson.pdf,1949.01.14,1949.01.14,1701,, +1949.01.13,13-Jan-49,1949,Unprovoked,AUSTRALIA,New South Wales,"Mona Vale, near Sydney",Surf skiing,Don Dixon,M,,"No injury, shark bumped ski",N,,,"G.P. Whitley (1951), p.193; V.M. Coppleson (1958), pp.41-42; Sharp, p.32",1949.01.13-DonDixon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.13-DonDixon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.13-DonDixon.pdf,1949.01.13,1949.01.13,1700,, +1949.01.05,05-Jan-49,1949,Invalid,AUSTRALIA,Western Australia,"Leighton Beach, North Fremantle",,,,,Human hand recovered,UNKNOWN,,"Tiger shark, 2.4 m [8']","G.P. Whitley (1951), p.186 citing Daily Telegraph (Sydney), 1/6/1949; SAF Case #583",1949.01.05-hand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.05-hand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.05-hand.pdf,1949.01.05,1949.01.05,1699,, +1949.00.00.g,1949-1950,1949,Boating,ITALY,Tyrrhenian Sea,San Vincenzo,"Fishing, on a boat",male,M,,No injury to occupant,N,,White shark,A. De Maddalena; V. Biagi (pers. Comm.),1949.00.00.g-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.g-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.g-boat.pdf,1949.00.00.g,1949.00.00.g,1698,, +1949.00.00.f,1949,1949,Unprovoked,NEW GUINEA,Calvados Archipelago,"Sabara Island, Calvados Chain 11.4S, 153E",,Anonymous,,,FATAL,Y,,,"A. Bleakley; A. M. Rapson, p.148",1949.00.00.f-SabaraIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.f-SabaraIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.f-SabaraIsland.pdf,1949.00.00.f,1949.00.00.f,1697,, +1949.00.00.e,1949,1949,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,"Kulengei, southeast of Kalili, Kavieng",,Jalem,M,,"Leg bitten, surgically amputated",N,,,"J. McLachlan, Medical Officer, Kavieng; A.M. Rapson, p. 148",1949.00.00.e-Jalem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.e-Jalem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.e-Jalem.pdf,1949.00.00.e,1949.00.00.e,1696,, +1949.00.00.d,1949,1949,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,"Enang , Kavieng",,Olai,M,,Hand & shoulder bitten,N,,,"J. McLachlan, Medical Officer, Kavieng; A.M. Rapson, p.148",1949.00.00.d-Olai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.d-Olai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.d-Olai.pdf,1949.00.00.d,1949.00.00.d,1695,, +1949.00.00.c,1949,1949,Unprovoked,PAPUA NEW GUINEA,Bougainville (North Solomons),"Orava (Aravo) Islet , near Kieta. ",Spearfishing,male,M,18,"FATAL, ""Nearly bitten in two through loin"".",Y,,,"A. Bleakley; A. M. Rapson, p.148",1949.00.00.c-Orava.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.c-Orava.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.c-Orava.pdf,1949.00.00.c,1949.00.00.c,1694,, +1949.00.00.b,1949,1949,Unprovoked,PAPUA NEW GUINEA,Bougainville (North Solomons),"Sohano Island, Buka Passage",Swimming close to wharf,male,M,,Hand severed,N,,,"A. Bleakley; A. M. Rapson, p.148",1949.00.00.b-Sohano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.b-Sohano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.b-Sohano.pdf,1949.00.00.b,1949.00.00.b,1693,, +1949.00.00.a,1949,1949,Unprovoked,NEW GUINEA,"Abau Sub District, Central Province",Kerpuna ,Swimming ,2 males,M,,"FATAL. One man's abdomen removed, the other received severe multiple injuries.",Y,,," A. Bleakley; A.M. Rapson, p.148",1949.00.00.a-Kerpuna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.a-Kerpuna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.a-Kerpuna.pdf,1949.00.00.a,1949.00.00.a,1692,, +1948.12.27,27-Dec-48,1948,Unprovoked,AUSTRALIA,Western Australia,Lancelin Island,Swimming,Arthur Strahan,M,17,"FATAL, disappeared while swimming ",Y,,His hand was found in a 2.4 m [8'] tiger shark caught 1/5/1949,"V.M. Coppleson (1958), pp.22-23",1948.12.27-Strahan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.27-Strahan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.27-Strahan.pdf,1948.12.27,1948.12.27,1691,, +1948.12.26,26-Dec-48,1948,Unprovoked,AUSTRALIA,Queensland,"King�s Beach, Caloundra","Treading water, waiting for a wave",Eric Keys,M,28,"FATAL, left hand severed, left leg arm bitten, tissue removed hip to knee ",Y,11h30,,"Gilbert P. Whitley (1951), p.193; V.M. Coppleson (1958), p.239. NOTE: Whitley records location as Coolangatta",1948.12.26-Keys.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.26-Keys.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.26-Keys.pdf,1948.12.26,1948.12.26,1690,, +1948.12.14.b,14-Dec-48,1948,Unprovoked,IRAN,Shat-Al-Arab River,Abadan,,Abdul Imam (male),M,19,Left thumb severed,N,,,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp",1948.12.14.b-AbdulImam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.14.b-AbdulImam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.14.b-AbdulImam.pdf,1948.12.14.b,1948.12.14.b,1689,, +1948.12.14.a,14-Dec-48,1948,Unprovoked,CUBA,Guantanamo Province,10 miles off Cape Maisi,"2 messboys (Jeppsen) & Tony Latona (13) were playing on the afterdeck of the Danish ship Grete Maersk. Jeppsen fell overboard, Latona threw a lifebelt then jumped in to help him. Ship didn�t notice they were missing",Bret Jeppsen,M,14,"2 hours later shark bit Jeppsen�s feet, arm, knee & finally killed him. Tony, clothing torn but alive, washed ashore on Cuban coast",N,,,"Washington Post, 12/23/1948, p.`",1948.12.14.a-Jeppeson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.14.a-Jeppeson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.14.a-Jeppeson.pdf,1948.12.14.a,1948.12.14.a,1688,, +1948.12.10,10-Dec-48,1948,Unprovoked,AUSTRALIA,Queensland,Rib Reef off Townsville,Fishing,Hans Vegsund,M,,Hand injured,N,,,"Townsville Daily Bulletin, 12/14/1948",1948.12.10-Vegsund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.10-Vegsund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.10-Vegsund.pdf,1948.12.10,1948.12.10,1687,, +1948.12.05,05-Dec-48,1948,Sea Disaster,NORTH PACIFIC OCEAN,Between Kwajalein Atoll & Johnston Island,500 nautical miles southwest of Johnston Island,Air/Sea Disaster involving C-54 Air Force Transport No. 2686 with 37 on board,,M,,"32 survived, 5 perished; sharks fed on the dead but did not bite the survivors",Y,Dark,,"L. Schultz & M. Malin, p.562; SAF Case #819",1948.12.05-Aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.05-Aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.05-Aircraft.pdf,1948.12.05,1948.12.05,1686,, +1948.11.18, 18-Nov-1948,1948,Unprovoked,AUSTRALIA,Torres Strait,"Saibai Island, 80 miles north of Cape York",Pearl diving,Metuela Mau,M,41,Leg bitten,N,,,"The Argus, 11/20/1948",1948.11.18-MetuelaMau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.11.18-MetuelaMau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.11.18-MetuelaMau.pdf,1948.11.18,1948.11.18,1685,, +1948.09.22,22-Sep-48,1948,Unprovoked,GREECE,Attica,Keratsini ,Swimming,Dimitris Parassakis ,M,17,FATAL,Y,16h00,Said to be 6.4 m [21'] shark,"C. Moore, GSAF",1948.09.22-Parasakis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.22-Parasakis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.22-Parasakis.pdf,1948.09.22,1948.09.22,1684,, +1948.09.19.b,19-Sep-48,1948,Unprovoked,USA,Hawaii,"Off Makapauu Point, O'ahu",Swimming,Noah Kalama,M,,Leg bitten,N,,,"J. Borg, p.72; L. Taylor (1993), pp.98-99",1948.09.19.b-Kalama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.19.b-Kalama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.19.b-Kalama.pdf,1948.09.19.b,1948.09.19.b,1683,, +1948.09.19.a,19-Sep-48,1948,Unprovoked,USA,Hawaii,"Off Makapauu Point, O'ahu",Fishing,male,M,,Survived,N,,,"V.M. Coppleson (1958); Honolulu Advertiser, 8/9/1953; Hawaiian Tribune-Herald, 4/14/1963",1948.09.19.a-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.19.a-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.19.a-Hawaii.pdf,1948.09.19.a,1948.09.19.a,1682,, +1948.09.17.R,Reported 17-Sep-1848,1848,Unprovoked,TURKEY,Adana Province,Yumurtalik,Swimming,Ali Kaymaz,M,,FATAL,Y,,,"C. Moore, GSAF",1948.09.17.R-Kaymaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.17.R-Kaymaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.17.R-Kaymaz.pdf,1948.09.17.R,1948.09.17.R,1681,, +1948.09.15,15-Sep-48,1948,Sea Disaster,MID ATLANTIC OCEAN,,Bound from New York to London in ballast,Leicester abandoned in a hurricane,2 males,M,,"FATAL, 2 men killed by sharks, 20 survived",Y,,,"Glasgow Herald, 9/20/1948",1948.09.15-Leicester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.15-Leicester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.15-Leicester.pdf,1948.09.15,1948.09.15,1680,, +1948.09.02,02-Sep-48,1948,Unprovoked,IRAN,Bandar Ma�shur sea inlet,,Bathing or washing,Roghai,F,60,"FATAL, left arm & left buttock severed ",Y,,,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp, p.85 ",1948.09.02-Roghai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.02-Roghai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.02-Roghai.pdf,1948.09.02,1948.09.02,1679,, +1948.08.19,19-Aug-48,1948,Unprovoked,IRAN,Shatt-al-Arab River,,,Abdul Hussain,M,13,"FATAL, right arm severely bitten & surgically amputated, died 12 to 14 hours later ",Y,,,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp",1948.08.19-Hussain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.08.19-Hussain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.08.19-Hussain.pdf,1948.08.19,1948.08.19,1678,, +1948.08.03,03-Aug-48,1948,Unprovoked,IRAN,Shatt-al-Arab River,Bashamir,Swimming,Ismail,M,15,"Quadriceps lacerated, femur exposed",N,,,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp, p.85 ",1948.08.03-Ismail.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.08.03-Ismail.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.08.03-Ismail.pdf,1948.08.03,1948.08.03,1677,, +1948.08.00,Aug-48,1948,Provoked,BAHAMAS,Bimini Islands,Lerner Marine Laboratory,Spearing a shark,"Francisco Edmund Blanc, a scientist from National Museum in Paris",M,41,Shark that he speared bit his calf PROVOKED INCIDENT,N,,"Lemon shark, 4'","E. Clark; P. Gilbert; V.M. Coppleson (1962), p.252",1948.08.00-Blanc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.08.00-Blanc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.08.00-Blanc.pdf,1948.08.00,1948.08.00,1676,, +1948.07.01,01-Jul-48,1948,Unprovoked,USA,US Virgin Islands,"St. John, Genti Bay",Swimming,Clide Osborne,M,46,FATAL,Y,,,"Virgin Island Daily News, 7/6/1948, p.1",1948.07.01-Osborne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.07.01-Osborne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.07.01-Osborne.pdf,1948.07.01,1948.07.01,1675,, +1948.06.06.R,Reported 06-Jun-1948,1948,Unprovoked,NORTHERN MARIANA ISLANDS,Saipan,,Swimming,Pfc. Donald Tasking,M,,Heel bitten,N,,,"Wisconsin State Journal, 6/6/1948",1948.06.06.R-Tasking.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.06.06.R-Tasking.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.06.06.R-Tasking.pdf,1948.06.06.R,1948.06.06.R,1674,, +1948.05.10,10-May-48,1948,Provoked,IRAN,Shatt-al-Arab River,,"Fishing, shark caught in his net",Ali,M,38,"8"" x 4"" left antecubital fossa of muscle & skin removed PROVOKED INCIDENT",N,,,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp, p.84; ",1948.05.10-Ali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.05.10-Ali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.05.10-Ali.pdf,1948.05.10,1948.05.10,1673,, +1948.04.10,10-Apr-48,1948,Provoked,SOUTH AFRICA,Western Cape Province,Gansbaai,"Bringing hooked, harpooned shark onboard boat","boat, occupants, P. Groenwald and others",M,,Groenwald's arm lacerated by the shark PROVOKED INCIDENT,N,,,"M. Levine, GSAF",1948.04.10-Groenwald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.04.10-Groenwald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.04.10-Groenwald.pdf,1948.04.10,1948.04.10,1672,, +1948.03.13.R,"Reported 13-Mar-1948 ""Bitten last weekend",1948,Unprovoked,KENYA,Coast Province,Mombasa,,"R.S. Draper, a young British soldier",M,,FATAL,Y,,,"Star, 3/13/1948 & 2/20/1948",1948.03.13-Draper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.03.13-Draper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.03.13-Draper.pdf,1948.03.13.R,1948.03.13.R,1671,, +1948.03.11,11-Mar-48,1948,Invalid,SENEGAL,Cap Vert Peninsula,Between Joal & Sangomar near Dakar,,,,,Fragment of human foot recovered from shark's gut,Y,,"Tiger shark, 300-kg [662-lb] ",Y. Gilbert-Desvallons SAF Case #887,1948.03.11-Africa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.03.11-Africa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.03.11-Africa.pdf,1948.03.11,1948.03.11,1670,, +1948.03.00,Mar-48,1948,Provoked,PAPUA NEW GUINEA,"New Ireland Province, Bismarck Archipelago","Punam Passage, Rataman census div, Namatanai",Spearfishing,Reiman,M,30,Leg bitten by shark that he had speared PROVOKED INCIDENT,N,,"""grey shark""","A. M. Rapson, p.147; D. Baldridge, pp.128 & 261 ",1948.03.00-Reiman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.03.00-Reiman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.03.00-Reiman.pdf,1948.03.00,1948.03.00,1669,, +1948.02.13,13-Feb-48,1948,Sea Disaster,USA,Texas,"Gulf of Mexico between Brownsville & Carmen, Mexico","C47 aircraft carrying 5,000 lbs of ice ditched in the sea","Pilot, Neil Womack",M,,"FATAL. Womack was injured when plane went down, 3 days later he fell off liferaft & was taken by a shark ",Y,,,"Pittsburgh Press, 2/21/1948/ V.M. Coppleson (1962), p.258",1948.02.13-Womack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.02.13-Womack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.02.13-Womack.pdf,1948.02.13,1948.02.13,1668,, +1948.02.12,12-Feb-48,1948,Unprovoked,AUSTRALIA,New South Wales,"Stockton Beach, Newcastle",Swimming,Ronald Johnson,M,16,"FATAL, right thigh & leg bitten ",Y,,3.7 m [12'] shark,"G.P. Whitley (1951), p.193; V.M. Coppleson (1958); A. Sharpe, p.83",1948.02.12-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.02.12-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.02.12-Johnson.pdf,1948.02.12,1948.02.12,1667,, +1948.01.25,25-Jan-48,1948,Unprovoked,AUSTRALIA,New South Wales,"Mona Vale, near Sydney",Surf skiing,David Button,M,,"No injury, ski bitten",N,,6' shark,"Cairns Post, 1/27/1948",1948.01.25-Button.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.01.25-Button.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.01.25-Button.pdf,1948.01.25,1948.01.25,1666,, +1948.00.00.d,Summer 1948,1948,Provoked,USA,Florida,Biscayne Bay,Underwater photography,Charles L. Morgan,M,48,Grabbed shark by the tail & it bit him PROVOKED INCIDENT,N,Afternoon,Nurse shark,C.L. Morgan,1948.00.00.d-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.d-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.d-Morgan.pdf,1948.00.00.d,1948.00.00.d,1665,, +1948.00.00.c,1948,1948,Unprovoked,NEW GUINEA,Morobe Province,Finschafen ,"Fishing, holding fish in right hand",male,M,,Right hand bitten,N,,,"A.D. Campbell; A. Bleakley; A. M. Rapson, p.148",1948.00.00.c-Finschafen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.c-Finschafen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.c-Finschafen.pdf,1948.00.00.c,1948.00.00.c,1664,, +1948.00.00.b,1948,1948,Provoked,PAPUA NEW GUINEA,Bougainville (North Solomons),"Tung Island, off the west coast of Buka Island",Spearfishing,male,M,,Bitten on face while taking shark off spear PROVOKED INCIDENT,N,,,"A.M. Rapson, p.147",1948.00.00.b-TungIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.b-TungIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.b-TungIsland.pdf,1948.00.00.b,1948.00.00.b,1663,, +1948.00.00.a,1948,1948,Boating,SOUTH AFRICA,Western Cape Province,False Bay,Fishing,boat Marie ,,,"No injury to occupants, boat holed by shark",N,,,"T. Wallett, p.27",1948.00.00.a-Marie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.a-Marie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.a-Marie.pdf,1948.00.00.a,1948.00.00.a,1662,, +1947.12.21,21-Dec-47,1947,Unprovoked,AUSTRALIA,New South Wales,"Watson Taylor's Lake, 25 miles south of Port Macquarie",Fishing,Don Ireland,M,9,Leg gashed,N,P.M.,Grey nurse shark,"Canberra Times, 12/22/1947",1947.12.21-Ireland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.21-Ireland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.21-Ireland.pdf,1947.12.21,1947.12.21,1661,, +1947.12.15.R,Reported 15-Dec-1947,1947,Invalid,SOUTH AFRICA,KwaZulu-Natal,Durban,,,,,"Human remains found in shark, possibly one of the crew of the wrecked fishing boat John Bull",Y,,"Tiger shark, 277-kg","Cape Times, 12/15/1947; M. Levine, GSAF",1947.12.15.R-JohnBull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.15.R-JohnBull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.15.R-JohnBull.pdf,1947.12.15.R,1947.12.15.R,1660,, +1947.12.00,Dec-47,1947,Unprovoked,SENEGAL,,"Tiaroye, near Dakar, Cap Vert Peninsula",Fishing / diving,male,M,,"FATAL, right thigh bitten ",Y,11h00,Tiger shark,Dejou & d'Alucida (1948),1947.12.00-Dakar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.00-Dakar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.00-Dakar.pdf,1947.12.00,1947.12.00,1659,, +1947.11.23,23-Nov-47,1947,Boating,AUSTRALIA,South Australia,3 miles out to sea off Glenelg,Fishing,10' dinghy,,,"No injury to occupants, shark made 20 to 30 rushes at dinghy",N,,5.5 m [18'] shark,"V.M. Coppleson (1958), p.185",1947.11.23-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.23-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.23-dinghy.pdf,1947.11.23,1947.11.23,1658,, +1947.11.14.b,14-Nov-47,1947,Unprovoked,AUSTRALIA,New South Wales,"Knobby's Beach, Newcastle",Fishing from surf ski,Peter Curruthers,M,17,"No injury, ski bumped",N,Dusk,,"G.P. Whitley; Barrier Miner, 11/17/1947",1947.11.14.b-Curruthers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.14.b-Curruthers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.14.b-Curruthers.pdf,1947.11.14.b,1947.11.14.b,1657,, +1947.11.14.a,14-Nov-47,1947,Unprovoked,AUSTRALIA,New South Wales,"Knobby's Beach, Newcastle",Fishing from surf ski,John Martini,M,16,"No injury, ski bumped",N,Dusk,,"G.P. Whitley; Barrier Miner, 11/17/1947",1947.11.14.a-Martini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.14.a-Martini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.14.a-Martini.pdf,1947.11.14.a,1947.11.14.a,1656,, +1947.11.08.b,08-Nov-47,1947,Unprovoked,AUSTRALIA,New South Wales,"Maria River, Port Macquarie, 12 miles from river mouth",Swimming,Edwin Elford,M,12,"FATAL, leg severed at knee ",Y,16h00,,"G.P. Whitley (1951), p.193;V.M. Coppleson (1958), p.86; A. Sharpe, p.86",1947.11.08.b-EdwinElford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.08.b-EdwinElford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.08.b-EdwinElford.pdf,1947.11.08.b,1947.11.08.b,1655,, +1947.11.08.a,08-Nov-47,1947,Unprovoked,AUSTRALIA,New South Wales,"Maria River, Port Macquarie, 12 miles from river mouth",Swimming,Rupert Elford,M,13,Thighs & knee lacerated,N,16h00,,"G.P. Whitley (1951), p.193; V.M. Coppleson (1958), p.86; A. Sharpe, p. 86",1947.11.08.a-RupertElford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.08.a-RupertElford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.08.a-RupertElford.pdf,1947.11.08.a,1947.11.08.a,1654,, +1947.11.00,Nov-47,1947,Unprovoked,AUSTRALIA,Queensland,Moreton Bay,,D. Smith,,78,FATAL,Y,,,"J. Green, p.34",1947.11.00-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.00-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.00-Smith.pdf,1947.11.00,1947.11.00,1653,, +1947.10.28,28-Oct-47,1947,Unprovoked,AUSTRALIA,Northern Territory,"Mornington Island, Gulf of Carpentaria",Fishing in waist-deep water,"Dan, an aboriginal",M,,Kneecap removed,N,,,"G.P. Whitley (1951), p.193; V.M. Coppleson (1958), p.240",1947.10.28-Dan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.10.28-Dan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.10.28-Dan.pdf,1947.10.28,1947.10.28,1652,, +1947.10.10,10-Oct-47,1947,Unprovoked,BRAZIL,Pernambuco,Piedade,Swimming ,Father Serafin de Oliveira,M,25,FATAL,Y,,,"JC Online, 6/25/2012",1947.10.10-Serafim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.10.10-Serafim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.10.10-Serafim.pdf,1947.10.10,1947.10.10,1651,, +1947.08.04,04-Aug-47,1947,Unprovoked,USA,Florida,In a canal 10 miles north of St Augustine,Swimming,"Ralph Reginald Rives, Jr.",M,20,"FATAL, calf bitten, leg surgically amputated ",Y,A.M.,Possibly C. leucas,R. F. Hutton; Coppleson (1958),1947.08.04-Rives.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.08.04-Rives.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.08.04-Rives.pdf,1947.08.04,1947.08.04,1650,, +1947.07.27.R,Reported 27-Jul-1947,1947,Provoked,USA,California,"Santa Monica, Los Angeles County",Fishing,Philip Dorn,M,46,PROVOKED INCIDENT,N,,a small shark,"Joplin Globe, 7/27/1947",1947.07.27.R-PhilipDorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.27.R-PhilipDorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.27.R-PhilipDorn.pdf,1947.07.27.R,1947.07.27.R,1649,, +1947.07.24.R,Reported 24-Jul-1947,1947,Unprovoked,AUSTRALIA,Northern Territory,Darwin Harbour,Diving,A.S. Festing,M,,Suit ripped,N,,"Most likely, a small shark","Canberra Times, 7/25/1947",1947.07.24.R-Festing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.24.R-Festing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.24.R-Festing.pdf,1947.07.24.R,1947.07.24.R,1648,, +1947.07.15,15-Jul-47,1947,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Swimming,Keith Daldorf,M,20,Right thigh lacerated,N,Morning,,"M. Levine, GSAF",1947.07.15-Dalldorf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.15-Dalldorf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.15-Dalldorf.pdf,1947.07.15,1947.07.15,1647,, +1947.07.00,Jul-47,1947,Invalid,GREECE,Carpathian Sea,Dodecanese Islands,Jumped overboard ,Nickolas Doulis,M,,Shark involvement unconfirmed,N,,,"C. Moore, GSAF",1947.07.07-Doulis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.07-Doulis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.07-Doulis.pdf,1947.07.00,1947.07.00,1646,, +1947.06.27,27-Jun-47,1947,Unprovoked,USA,Hawaii,"Off Waianae, O'ahu",Fishing,Valentin Limatoc,M,35,"Left forearm, arm & leg lacerated",N,10h30,,"EWA Hospital; G.H. Balazs & A.K.H. Kam; J. Borg, p. 72; L. Taylor (1993), pp.98-99",1947.06.27-Limatoc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.06.27-Limatoc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.06.27-Limatoc.pdf,1947.06.27,1947.06.27,1645,, +1947.06.16,16-Jun-47,1947,Boating,AUSTRALIA,New South Wales,Coogee,Fishing,12-foot dinghy Occupants: R. Hunt & a friend.,,,"No injury to occupants, shark bumped & lifted dinghy",N,,"Tiger shark, 14' ","Geraldton Guardian and Express, 6/317/1947",1947.06.16-fishermen-Coogee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.06.16-fishermen-Coogee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.06.16-fishermen-Coogee.pdf,1947.06.16,1947.06.16,1644,, +1947.05.13.R,Reported 13-May-1947,1947,Unprovoked,KENYA,Coast Province,"Kilindini Harbor, Mombasa",Swimming,merchant seaman,M,,Knee grazed,N,,,"Sunday Tribune, 5/13/1947",1947.05.13.R-Kenya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.05.13.R-Kenya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.05.13.R-Kenya.pdf,1947.05.13.R,1947.05.13.R,1643,, +1947.04.20,20-Apr-47,1947,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Country Club Beach, Durban",Treading water,"Aubrey ""Bill"" Nielsen",M,21,Ankle & shin lacerated,N,12h00,"1.5 m, 45-kg shark","A. Nielsen, M. Levine, G. Charter, GSAF ",1947.04.20-Neilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.20-Neilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.20-Neilson.pdf,1947.04.20,1947.04.20,1642,, +1947.04.11,11-Apr-47,1947,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Rocket Hut Beach, Durban",Body surfing,Robert Douglas,M,14,"Thigh severely lacerated, shin & calf lacerated",N,17h30,,"R. Douglas, T. Livesley, M. Levine, GSAF ",1947.04.11-Douglas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.11-Douglas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.11-Douglas.pdf,1947.04.11,1947.04.11,1641,, +1947.04.06,06-Apr-47,1947,Unprovoked,AUSTRALIA,New South Wales,Palm Beach,Surfing,Max Watt,M,17,"No injury, board scraped by shark",N,,,"Courier-Mail, 4/7/1947",1947.04.06-Watt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.06-Watt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.06-Watt.pdf,1947.04.06,1947.04.06,1640,, +1947.04.00,Apr-47,1947,Provoked,PACIFIC OCEAN,,Off Central American coast at 8N.79W,"Moving shark from tuna vessel when boat rolled, placing both man & shark in chest-deep water",Charles Kaufmann,M,29,"Right arm punctured, finger lacerated PROVOKED INCIDENT",N,11h00,,C. Kaufmann; S. Springer ,1947.04.00-Kaufmann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.00-Kaufmann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.00-Kaufmann.pdf,1947.04.00,1947.04.00,1639,, +1947.03.12,12-Mar-47,1947,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Country Club Beach, Durban",Wading,Adam Johannes Kriel,M,18,"Hip abraded, right calf severely lacerated",N,16h10,,"A. Kriel, M. Levine, GSAF ",1947.03.12-Kriel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.03.12-Kriel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.03.12-Kriel.pdf,1947.03.12,1947.03.12,1638,, +1947.03.09,09-Mar-47,1947,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Country Club Beach, Durban",Treading water,"Gabriel Botha, a lifesaver",M,22,Lacerations on buttock & right foot ,N,12h00,"Blacktip shark, 2 m [6.75'] ","G. Botha, M. Levine, GSAF; T. Wallett, p.67",1947.03.09-Botha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.03.09-Botha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.03.09-Botha.pdf,1947.03.09,1947.03.09,1637,, +1947.02.23,23-Feb-47,1947,Boating,AUSTRALIA,Queensland,Palm Beach,Fishing,,,,"No injury, shark holed boat",N,,,"Canberra Times, 2/24/1947",1947.02.23-boat-PalmBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.23-boat-PalmBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.23-boat-PalmBeach.pdf,1947.02.23,1947.02.23,1636,, +1947.02.06.R,Reported 06-Feb-1947,1947,Provoked,BAHAMAS,New Providence Island,Cable Beach,Attempting to ride a shark,Bill Whitman,M,,Arm bitten PROVOKED INCIDENT,N,,5' shark,"Miami Daily News, 2/6/1947",1947.02.06.R-Whitman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.06.R-Whitman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.06.R-Whitman.pdf,1947.02.06.R,1947.02.06.R,1635,, +1947.02.00,Feb-47,1947,Unprovoked,BRAZIL,Rio de Janeiro,Copacabana,Bathing,,,,FATAL,Y,,,"Globo, 5/7/1997",1947.02.00-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.00-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.00-Brazil.pdf,1947.02.00,1947.02.00,1634,, +1947.01.14,14-Jan-47,1947,Boating,AUSTRALIA,New South Wales,"Berry's Bay, Sydney Harbour",Rowing,"rowboat, occupants: Bob Scott & John Blackwell ",,17 & 16,"No injury, shark lifted the boat 0.5 m out of the water",N,,"4.5 m [14'9""] shark","A. Sharpe, p.73",1947.01.14-rowboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.01.14-rowboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.01.14-rowboat.pdf,1947.01.14,1947.01.14,1633,, +1947.01.05,05-Jan-47,1947,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Country Club Beach, Durban",Treading water,Peter C. Knoop,M,18,Flexed left leg lacerated,N,15h50,>1.6 m shark,"P. Knoop, M. Levine, GSAF",1947.01.05-Knoop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.01.05-Knoop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.01.05-Knoop.pdf,1947.01.05,1947.01.05,1632,, +1946.12.28,28-Dec-46,1946,Unprovoked,AUSTRALIA,South Australia,Glenelg,Swimming near jetty with 2' piece of wood,Leo Streng,M,23,"Forearm & fingers lacerated, teethmarks on wood",N,,,"G.P. Whitley (1951), p.193; V.M. Coppleson (1958), pp.110 & 240 ",1946.12.28-Streng.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.12.28-Streng.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.12.28-Streng.pdf,1946.12.28,1946.12.28,1631,, +1946.12.24.R,Reported 24-Dec-1946,1946,Boating,AUSTRALIA,Queensland,"Auckland Creek, Gladstone",,Moored fishing launch of Harry Lone,,,Shark jumped into cockpit,N,,7' shark,"V.M. Coppleson (1958), p.181",1946.12.24.R-Lone-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.12.24.R-Lone-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.12.24.R-Lone-launch.pdf,1946.12.24.R,1946.12.24.R,1630,, +1946.11.20,20-Nov-46,1946,Unprovoked,AUSTRALIA,Torres Strait,40 miles off Thursday Island,Pearl diving from lugger,"Esrona Johnson, Torres Strait islander",M,30,"FATAL, right arm severed",Y,,,"G.P. Whitley (1951), p. 193;V.M. Coppleson (1958), p.245",1946.11.20-EsronaJohnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.11.20-EsronaJohnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.11.20-EsronaJohnson.pdf,1946.11.20,1946.11.20,1629,, +1946.10.26.R,Reported 26-Oct-1946,1946,Unprovoked,MARSHALL ISLANDS,Kwajalein,,Fishing,American,,,FATAL,Y,,,"Washington Post, 10/27/1946",1946.10.26.R-Kwajalein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.10.26.R-Kwajalein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.10.26.R-Kwajalein.pdf,1946.10.26.R,1946.10.26.R,1628,, +1946.10.14,14-Oct-46,1946,Unprovoked,AUSTRALIA,New South Wales,"Mark�s Point, Swan Bay, Lake Macquarie",Swimming,Douglas Blackmore,M,15,Left leg lacerated,N,,,"G.P. Whitley (1951), p.193; V.M. Coppleson (1958), p.112",1946.10.14-Blackmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.10.14-Blackmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.10.14-Blackmore.pdf,1946.10.14,1946.10.14,1627,, +1946.08.24,24-Aug-46,1946,Unprovoked,ISRAEL,Gaza,Jura Village,Fishing,Kamel Mustapha Ayesh,M,15,Laceration to back,N,,,C. Moorem GSAF,1946.08.24-KMAyesh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.08.24-KMAyesh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.08.24-KMAyesh.pdf,1946.08.24,1946.08.24,1626,, +1946.08.18,18-Aug-46,1946,Unprovoked,AUSTRALIA,Queensland,"Ellis Beach, 20 miles from Cairns",Swimming after a tennis ball,Phillip South Collin,M,30,"FATAL, body not recovered",Y,15h20,4.3 m [14'] shark,"G.P. Whitley (1951), p.193;V.M. Coppleson (1958), pp.87-88 & 239; A. Sharpe, p.97",1946.08.18-Collin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.08.18-Collin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.08.18-Collin.pdf,1946.08.18,1946.08.18,1625,, +1946.07.18.b,18-Jul-46,1946,Unprovoked,IRAN,Khuzestan Province,"Dorquain, on the Karun River","Fishing, probably with a net","Khodadad, (male)",M,12,Radius & ulna bared,N,,,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp, p.84 ",1946.07.18.b-Khodadad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.07.18.b-Khodadad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.07.18.b-Khodadad.pdf,1946.07.18.b,1946.07.18.b,1624,, +1946.07.18.a,18-Jul-46,1946,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River, 275 km from the sea",Swimming ,Mehdi,M,12,"Left Achilles tendon severed, calf muscles severely lacerated",N,,Possibly C. leucas,"A. Anderson, M.D. / Lt. Col. R.S. Hunt , p.84",1946.07.18.a-Mehdi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.07.18.a-Mehdi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.07.18.a-Mehdi.pdf,1946.07.18.a,1946.07.18.a,1623,, +1946.06.28,28-Jun-46,1946,Unprovoked,INDIA,,Chennai,Bathing,Murugesan,M,14,"""Serious injuries""",N,,,"Indian Express, 6/30/1946",1946.06.28-Murugesan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.06.28-Murugesan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.06.28-Murugesan.pdf,1946.06.28,1946.06.28,1622,, +1946.05.09,09-May-46,1946,Unprovoked,TANZANIA,Dar-es-Salaam ,Dar-es-Salaam harbor,Swimming ,"W. Svendson, ship�s officer",M,,Leg bitten,N,,,"Star, 5/20/1946",1946.05.09-Svendson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.05.09-Svendson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.05.09-Svendson.pdf,1946.05.09,1946.05.09,1621,, +1946.04.19,19-Apr-46,1946,Unprovoked,AUSTRALIA,Queensland,"Trinity Beach, Cairns",Swimming,Robert McAuliffe,M,17,FATAL,Y,13h30,,"J. Croucher; G.P. Whitley (1951), p.193; V.M. Coppleson (1958), p.87 ",1946.04.19-McAuliffe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.04.19-McAuliffe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.04.19-McAuliffe.pdf,1946.04.19,1946.04.19,1620,, +1946.04.00,Apr-46,1946,Boating,AUSTRALIA,South Australia,Port Newby,Fishing,"boat, occupants: C. Nardelli & son",,,"No injury to occupants. Shark charged boat, tore off rudder & tossed it air, then swam off with it",N,,6 m [20'] shark,"V.M. Coppleson (1958), p.184",1946.04.00-boat-Nardelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.04.00-boat-Nardelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.04.00-boat-Nardelli.pdf,1946.04.00,1946.04.00,1619,, +1946.03.20,20-Mar-46,1946,Boating,AUSTRALIA,South Australia,Grange,Fishing,"14' catamaran, occupant: M. Leverenz",M,28,"No injury; shark rammed boat, catapulting Leverenz in the sea & damaging boat",N,19h00,,"Sydney Morning Herald, 3/22/1946",1946.03.20-Leverenz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.03.20-Leverenz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.03.20-Leverenz.pdf,1946.03.20,1946.03.20,1618,, +1946.02.16,16-Feb-46,1946,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"South Beach, Durban",Treading water,Ernest Tomson,M,21,Right arm severely lacerated,N,16h00,,"M. Levine, GSAF ",1946.02.16-Tomson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.02.16-Tomson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.02.16-Tomson.pdf,1946.02.16,1946.02.16,1617,, +1946.02.10.b,10-Feb-46,1946,Unprovoked,AUSTRALIA,Western Australia,"City Beach, Perth",Standing,"Ronald D. Sunderland, from the Royal Australian Navy, on leave from HMAS Leeuwin",M,18,"Leg bitten, surgically amputated",N,12h15,"White shark, 4.2 m [13'9""] ","West Australian, 2/11/1946, p.6; G.P. Whitley (1951), p.193; V.M. Coppleson (1958), pp.111 & 245; A. Sharpe, pp.130-131; H. Edwards, p.133-134",1946.02.10.b-Sunderland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.02.10.b-Sunderland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.02.10.b-Sunderland.pdf,1946.02.10.b,1946.02.10.b,1616,, +1946.02.10.a,10-Feb-46,1946,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Battery Beach, Durban",Swimming ,"Janardhan Rughoober Varma, a lifesaver",M,18,Flexed right knee bitten,N,09h15,,"J.R. Varma, M. Levine, GSAF ",1946.02.10.a-Varma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.02.10.a-Varma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.02.10.a-Varma.pdf,1946.02.10.a,1946.02.10.a,1615,, +1946.01.24.b,24-Jan-46,1946,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Battery Beach, Durban",Treading water,Brian Gibson ,M,15,Knee & calf lacerated,N,17h15,,"B. Gibson, M. Levine, GSAF",1946.01.24.b-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.24.b-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.24.b-Gibson.pdf,1946.01.24.b,1946.01.24.b,1614,, +1946.01.24.a,24-Jan-46,1946,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Battery Beach, Durban",Swimming,"Manduray, a lifesaver",M,,Foot severely lacerated,N,Afternoon,,"J. R. Varma; M. Levine, GSAF",1946.01.24.a-Manduray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.24.a-Manduray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.24.a-Manduray.pdf,1946.01.24.a,1946.01.24.a,1613,, +1946.01.17,17-Jan-46,1946,Unprovoked,AUSTRALIA,Queensland,Townsville,,Donald Vaughan,M,12,Ankle bitten,N,,small shark,"G.P. Whitley (1951), p.193; V.M. Coppleson (1958), p.239",1946.01.17-Vaughan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.17-Vaughan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.17-Vaughan.pdf,1946.01.17,1946.01.17,1612,, +1946.01.07,07-Jan-46,1946,Unprovoked,SOUTH AFRICA,Western Cape Province,False Bay,Jumping in swells,Michael Anthony Hoffman,M,18,Foot bitten,N,12h00,1.5 m [5'] shark,"M. Hoffman, M. Levine, GSAF",1946.01.07-Hoffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.07-Hoffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.07-Hoffman.pdf,1946.01.07,1946.01.07,1611,, +1946.01.05,05-Jan-46,1946,Unprovoked,AUSTRALIA,New South Wales,"Oatley Bay near Como, George�s River",Swimming,Valma Tegel,F,14,"FATAL, left leg severed, right leg injured ",Y,,,"G.P. Whitley (1951), p.193; V.M. Coppleson (1958), p.69; A. Sharpe, pp.91-92",1946.01.05-Tegel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.05-Tegel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.05-Tegel.pdf,1946.01.05,1946.01.05,1610,, +1946.01.01,01-Jan-46,1946,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Pollock Beach, Port Elizabeth",Body surfing,Noel Buxton Redfern,M,24,Calf lacerated,N,A.M.,,"N. Redfern, M. Levine, GSAF",1946.01.01-Redfern.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.01-Redfern.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.01-Redfern.pdf,1946.01.01,1946.01.01,1609,, +1946.00.00.c,1946,1946,Boating,SOUTH AFRICA,Western Cape Province,Plettenberg Bay,,4 boats,,,"No injury to occupants, shark struck boats+K1581",N,,,"T. Wallett, p.27",1946.00.00.c-PlettenburgBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.00.00.c-PlettenburgBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.00.00.c-PlettenburgBay.pdf,1946.00.00.c,1946.00.00.c,1608,, +1946.00.00.b,1946,1946,Boating,SOUTH AFRICA,Western Cape Province,Table Bay,,boat,,,"Shark holed and sank boat, occupants rescued",N,,,"T. Wallett, p.27",1946.00.00.b-Table Bay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.00.00.b-Table Bay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.00.00.b-Table Bay.pdf,1946.00.00.b,1946.00.00.b,1607,, +1946.00.00.a,1946,1946,Unprovoked,PERSIAN GULF,"""Head of the Gulf""",,Bitten after dhow shipwrecked,Arab woman,F,,"Abdomen bitten, but she survived. Most of the 40 others that survived the wreck, were taken by sharks",N,,,"E. Davies; V.M. Coppleson, p.133",1946.00.00.a-Arabwoman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.00.00.a-Arabwoman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.00.00.a-Arabwoman.pdf,1946.00.00.a,1946.00.00.a,1606,, +1945.09.23,23-Sep-45,1945,Unprovoked,HONG KONG,,Tweed Beach,Bathing,Sargeant H.W. Jackson,M,,FATAL,Y,"""shortly before dusk""",,"Argus, 9/25/1946, p.20; V.M. Coppleson (1962), p.247",1945.09.23-Jackson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.23-Jackson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.23-Jackson.pdf,1945.09.23,1945.09.23,1605,, +1945.09.19,19-Sep-45,1945,Sea Disaster,OKINAWA,,,American minesweeper USS YMS-472 foundered in a typhoon - swimming to shore,Lowell J. Bemis,M,20,Laceration to arm,N,,,"Mid-Pacific Stars & Stripes, 10/22/1945",1945.09.19-Bemis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.19-Bemis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.19-Bemis.pdf,1945.09.19,1945.09.19,1604,, +1945.09.16,16-Sep-45,1945,Sea Disaster,JAPAN,Ryukyu,,American minesweeper USS YMS-350 lost in a typhoon - swimming to shore,sailor,M,,FATAL,Y,,,"Daily Courier, 10/26/1945",1945.09.16-sailor-USS-YMS-350.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.16-sailor-USS-YMS-350.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.16-sailor-USS-YMS-350.pdf,1945.09.16,1945.09.16,1603,, +1945.09.06,06-Sep-45,1945,Unprovoked,IRAN,Shatt-al-Arab River,Bashamir,Swimming,Hamid,M,13,"Right forearm injured, mid-humeral amputation",N,,,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp, p.84",1945.09.06-Hamid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.06-Hamid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.06-Hamid.pdf,1945.09.06,1945.09.06,1602,, +1945.08.19,19-Aug-45,1945,Unprovoked,IRAN / IRAQ,Shatt-al-Arab River,Vicinity of Abadan,,Abdol Karmi,M,,Lower left leg amputated,N,,,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp, p.84",1945.08.19-Karmi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.08.19-Karmi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.08.19-Karmi.pdf,1945.08.19,1945.08.19,1601,, +1945.08.06,06-Aug-45,1945,Unprovoked,USA, North Carolina,Ocracoke,,Kuenzler,,,FATAL,Y,,,"F. Schwartz, p.23",1945.08.06-Kuenzler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.08.06-Kuenzler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.08.06-Kuenzler.pdf,1945.08.06,1945.08.06,1600,, +1945.07.30,30-Jul-45,1945,Sea Disaster,PHILIPPINES,In transit between Tinian and Leyte,200 miles Leyte,American cruiser Indianapolis torpedoed & sunk by the Japanese submarine I-58,,,,"About 300 crew perished during the sinking, the remainder abandoned ship. Many who survived the loss of the ship were taken by sharks. In all, only 316 of her crew of 1,196 survived.",Y,,,"All the Drowned Sailors, by R. B. Lech ; M. Levine, GSAF",1945.07.30-USS Indianapolis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.07.30-USS Indianapolis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.07.30 - USS Indianapolis.pdf,1945.07.30,1945.07.30,1599,, +1945.07.00,Jul-45,1945,Sea Disaster,JAVA,Northern Java,Off Cheribon,"90 European civilians, many women & children, were placed on the deck of a Japanese submarine that submerged when it was well offshore",Swimming,,,Sharks attacked the swimmers. The sole survivor lost his arm & foot & died of his injuries shortly after being picked up by Javanese fishermen. The incident became known as the Cheribon Atrocity,Y,Dusk,,G. Duncan,1945.07.00-CheribonAtrocity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.07.00-CheribonAtrocity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.07.00-CheribonAtrocity.pdf,1945.07.00,1945.07.00,1598,, +1945.06.15,15-Jun-45,1945,Unprovoked,AUSTRALIA,Queensland,"Trinity Beach, Cairns",Swimming,E. J. McHugh,M,,FATAL,Y,16h00,,"Cairns Post, 6/19/1945",1945.06.15-McHugh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.06.15-McHugh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.06.15-McHugh.pdf,1945.06.15,1945.06.15,1597,, +1945.05.08,08-May-45,1945,Unprovoked,USA,North Carolina,"Ocracoke Inlet, Carteret County",Swimming,Navy seaman,M,,"FATAL, large gash to thigh",Y,,,D. Batterson (Former Navy Hospital Corpsman),1945.05.08-Kuenzler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.05.08-Kuenzler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.05.08-Kuenzler.pdf,1945.05.08,1945.05.08,1596,, +1945.03.06,06-Mar-45,1945,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Scottburgh,Walking,David Drummond,M,37,"Right leg bitten knee to foot, surgically amputated",N,16h30,Thought to involve a Zambesi shark,"D. Drummond, M. Levine, GSAF",1945.03.06-Drummond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.03.06-Drummond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.03.06-Drummond.pdf,1945.03.06,1945.03.06,1595,, +1945.02.05,05-Feb-45,1945,Unprovoked,ISRAEL,Tel Aviv,,Swimming,British constable,M,,"Survived. R.A.F. pilot, seeing commotion in the water, dived his plane to investigate and scared off shark",N,,,"NY Times, 2/6/1945, p.3; V.M. Coppleson (1958); C. Moore, GSAF",1945.02.05-Constable-TelAviv.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.02.05-Constable-TelAviv.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.02.05-Constable-TelAviv.pdf,1945.02.05,1945.02.05,1594,, +1945.00.00.d,1945,1945,Unprovoked,JAMAICA,,,Diving,Albert Stewart,M,,Hand severed,N,,,"The Gleaner, 4/29/1946",1945.00.00.d-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.d-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.d-Stewart.pdf,1945.00.00.d,1945.00.00.d,1593,, +1945.00.00.c,1945,1945,Unprovoked,CUBA,Havana Province,Cojimar,"Playing on rock, slipped & fell into the water",boy,M,,FATAL,Y,,,"F. Poli, pp.18-19",1945.00.00.c-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.c-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.c-Cuba.pdf,1945.00.00.c,1945.00.00.c,1592,, +1945.00.00.b,1945,1945,Unprovoked,PANAMA,Colon Province,"Mouth of Rio Dudio, 50 miles west of the city of Colon",Bathing with her mother,Maria Asista,F,8 or 10,Foot bitten,N,,,A. Wetmore,1945.00.00.b-Asista.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.b-Asista.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.b-Asista.pdf,1945.00.00.b,1945.00.00.b,1591,, +1945.00.00.a,1945,1945,Unprovoked,IRAQ,Basrah,Shatt-al Arab River,Swimming,male,M,15,Left foot bitten,N,12h00,Bull shark,B.W. Coad & L.A.J. Al-Hassan,1945.00.00.a-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.a-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.a-Shatt-al-Arab.pdf,1945.00.00.a,1945.00.00.a,1590,, +1944.12.18,Between 18 & 22-Dec 1944,1944,Sea Disaster,PHILIPPINES,300 miles east of Luzon,USS Hull DD-350 was one of 3 destroyers that capsized in Typhoon Cobra,Swimming near life raft,Nicholas Nagurney,M,19,Arm bitten,N,,9' shark,"TIME, 1/22/1945",1944.12.18-Nagurney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.12.18-Nagurney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.12.18-Nagurney.pdf,1944.12.18,1944.12.18,1589,, +1944.12.02,02-Dec-44,1944,Provoked,USA,Florida,3 miles north of the inlet at Palm Beach,Fishing for mackerel,"28' sea skiff, occupants: Alan Moree and another fisherman",,,"No injury to occupants. After being prodded with an oar, shark struck bow and sank boat PROVOKED INCIDENT",N,,"Tiger shark, 4.5 to 5.5 m [14'9"" to 18'], 2000-lb ","New York Times, 12/3/1944, III, p.2, col.7",1944.12.02-skiff-Moree.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.12.02-skiff-Moree.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.12.02-skiff-Moree.pdf,1944.12.02,1944.12.02,1588,, +1944.11.08,08-Nov-44,1944,Sea Disaster,SIERRA LEONE,Western Area,Freetown,,Keith Meaden,M,18,FATAL,Y,,,Royal Navy Casualties,1944.11.08-Meaden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.11.08-Meaden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.11.08-Meaden.pdf,1944.11.08,1944.11.08,1587,, +1944.11.01,01-Nov-44,1944,Invalid,AUSTRALIA,Queensland,Maroochydore Beach,Swimming,American sailor,M,,Probable drowning & scavenging,Y,,,"The Canberra Times, 11/7/1944",1944.11.01-AmericanSailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.11.01-AmericanSailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.11.01-AmericanSailor.pdf,1944.11.01,1944.11.01,1586,, +1944.10.26.b,26-Oct-44,1944,Sea Disaster,PHILIPPINES,,,"USS Gambier Bay CVE-73 shelled & sunk at 09h57 on 10/24/1944, by Japanes fleet enroute to attack the Allied landing force at Leyte.",A. man floating next to Charles G. Heinl ,M,,When survivors werer rescued on 10/27/1944 by PC 623 there were many sharks in the area,Y,,,USS Gambier Bay archives,1944.10.26.b-Heinl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.26.b-Heinl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.26.b-Heinl.pdf,1944.10.26.b,1944.10.26.b,1585,, +1944.10.26.a,26-Oct-44,1944,Sea Disaster, PHILIPPINES,Bernardino Strait near Gulf of Leyte,,USS Hoel DD 533 sunk on 10/24/1944 in the Battle off Samar. 2 crewmen were swimmng alongside a floater net &,2 men,M,,"FATAL, both were killed by sharks",Y,,,"Glenn Hatch Parkin, gunner ",1944.10.26.a-2men-incomplete.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.26.a-2men-incomplete.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.26.a-2men-incomplete.pdf,1944.10.26.a,1944.10.26.a,1584,, +1944.10.25.b,25-Oct-44,1944,Sea Disaster,PHILIPPINES,Off Samar Island in the Gulf of Leyte,,USS Johnston DD 557 sunk on 10/24/1944 in the Battle off Samara. Crewmen were swimming beside a raft.,"William Clinton Carter, Jr. & 2 other men",M,,"Clinton was bitten on his back, 2 others did not survive",Y,,,"Abiline Reporter News, 12/29/1944",1944.10.25.b-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.25.b-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.25.b-Carter.pdf,1944.10.25.b,1944.10.25.b,1583,, +1944.10.25.a,25-Oct-44,1944,Unprovoked,PHILIPPINES,,Off Cape Engano,Parachuted into Pacific,US Naval ensign,M,,"Shark grazed leg, leaving toothmarks",N,,,"G.A. Llano in Airmen Against the Sea, p.66",1944.10.25.a-Ensign.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.25.a-Ensign.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.25.a-Ensign.pdf,1944.10.25.a,1944.10.25.a,1582,, +1944.10.24,24-Oct-44,1944,Sea Disaster,,,225 miles east of Hong Kong,Japanese POW ship Arisan Maru with 1800 American prisoners of war on board bound for slave labor camps was torpedoed by an American submarine,,M,,Most of the men drowned & some were taken by sharks. Only only nine men survived,Y,>17h30,,internet (multiple),1944.10.24-ArisanMaru.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.24-ArisanMaru.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.24-ArisanMaru.pdf,1944.10.24,1944.10.24,1581,, +1944.10.23.R,Reported 23-Oct-1944,1944,Boating,AUSTRALIA,Queensland,Tewantin,Fishing,dinghy,,,No injury to occupants; shark bit dinghy leaving tooth fragments in its woodwork,N,,,"G.P. Whitley (1951), p.193",1944.10.23.R-Tewantin-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.23.R-Tewantin-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.23.R-Tewantin-dinghy.pdf,1944.10.23.R,1944.10.23.R,1580,, +1944.09.03,03-Sep-44,1944,Unprovoked,USA,Maryland,North Beach,Swimming,Philip Stanton,M,13,Laceration to right lower leg,N,,,"Washington Post, 9/4/1944",1944.09.03-PhilipStanton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.09.03-PhilipStanton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.09.03-PhilipStanton.pdf,1944.09.03,1944.09.03,1579,, +1944.09.00,Sep-44,1944,Unprovoked,CARIBBEAN SEA,,,Fell overboard from US Navy PC boat,a sailor,M,,FATAL,Y,,,"E. Buleman, NMRI",1944.09.00-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.09.00-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.09.00-sailor.pdf,1944.09.00,1944.09.00,1578,, +1944.08.20,20-Aug-44,1944,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Margate,Swimming ,Dennis Nissen,M,19,"FATAL, body not recovered",Y,14h00,,"T. Blake, M. Levine, GSAF",1944.08.20-Nissen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.08.20-Nissen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.08.20-Nissen.pdf,1944.08.20,1944.08.20,1577,, +1944.07.22,22-Jul-144,1944,Unprovoked,SOUTH AFRICA,Western Cape Province,Hartenbos,Swimming,Albert Schmidt,M,17,"FATAL, body not recovered",Y,16h30,"White shark, according to witnesses","M. Levine, GSAF",1944.07.22-Schmidt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.07.22-Schmidt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.07.22-Schmidt.pdf,1944.07.22,1944.07.22,1576,, +1944.06.23,23-Jun-44,1944,Invalid,NORTH PACIFIC OCEAN,,Aircraft went down on 6/12/1944. He survived on raft for 11 days and was 150 miles off Guam when rescued,,Lt. Cmdr. Price,M,,"When picked up by the USS Boyd DD 44 on 6/23/1944 his raft was ""surrounded by sharks""",N,,,USS Boyd archive,1944.06.23-Boyd-Rescue-incomplete.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.06.23-Boyd-Rescue-incomplete.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.06.23-Boyd-Rescue-incomplete.pdf,1944.06.23,1944.06.23,1575,, +1944.05.31,31-May-44,1944,Unprovoked,USA,Florida,"Atlantic Beach, Mayport, Duval County",Bathing,Mary Ann Shands,F,15,Left calf bitten,N,,1.8 m [6'] blacktip shark or spinner shark,"H.W. Bigelow & C.W. Schroeder (1948) pp.70 & 368; V.M. Coppleson (1958) ; Randall, p.353 in Sharks & Survival; T. Helm, p.227",1944.05.31-Shands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.31-Shands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.31-Shands.pdf,1944.05.31,1944.05.31,1574,, +1944.05.24.R,Reported 24-May-1944,1944,Unprovoked,SAMOA,,,,a male from the Second Seabee Battalion,,,Minor injury when shark tore off his boot,N,,5' shark,"St. Petersburg Times, 5/24/1943",1944.05.24.R-Seabee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.24.R-Seabee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.24.R-Seabee.pdf,1944.05.24.R,1944.05.24.R,1573,, +1944.05.04,04-May-44,1944,Unprovoked,PANAMA,Caribbean Sea,,Washed overboard by swell,"US Naval seaman, one of a crew on a Panama Sea Frontier Naval Patrol craft manned by Coast Guard",M,,"FATAL. His back was bitten as he was being towed to ship by rescuer, Lieut (j.g.) Stanley Kurta, then the shark pulled him below the surface. ",Y,,"White shark, 2.4 m [8'] ","Star & Herald (Panama), 5/17/1944; V.M. Coppleson (1958), p.6; V.M. Coppleson (1962), p.258;",1944.05.04.a-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.04.a-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.04.a-seaman.pdf,1944.05.04,1944.05.04,1572,, +1944.04.00,Apr-44,1944,Unprovoked,NICARAGUA,Lake Nicaragua (fresh water),,,multiple bathers,,,Some killed & others severely injured,Y,,Bull sharks to 1.5 m [5'] in length,V.M. Coppleson (1958),1944.04.00-LakeNicaragua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.04.00-LakeNicaragua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.04.00-LakeNicaragua.pdf,1944.04.00,1944.04.00,1571,, +1944.03.26.b,26-Mar-44,1944,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Country Club Beach, Durban",Treading water,Gabriel Botha,M,18,Left thigh bitten,N,17h30,,"G. Botha, M. Levine, GSAF",1944.03.26.b-Botha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.03.26.b-Botha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.03.26.b-Botha.pdf,1944.03.26.b,1944.03.26.b,1570,, +1944.03.26.a,26-Mar-44,1944,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Standing,Geoffrey Best,M,23,"FATAL, left thigh & calf bitten ",Y,10h00,,"G. Botha, M. Levine, GSAF ",1944.03.26.a-Best.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.03.26.a-Best.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.03.26.a-Best.pdf,1944.03.26.a,1944.03.26.a,1569,, +1944.03.14,14-Mar-44,1944,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Country Club Beach, Durban",Treading water,Richard D. Field,M,16,Ankle severely lacerated,N,17h30,,"R.D. Field, M. Levine, GSAF ",1944.03.14-Field.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.03.14-Field.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.03.14-Field.pdf,1944.03.14,1944.03.14,1568,, +1944.02.27,27-Feb-44,1944,Unprovoked,SOUTH AFRICA,Western Cape Province,False Bay,Treading water,Corporal N.S. LeBlanc,M,,Foot & ankle lacerated,N,>14h30,2.1 m [7'] shark,"L. Green; M. Levine, GSAF",1944.02.27-LeBlanc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.02.27-LeBlanc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.02.27-LeBlanc.pdf,1944.02.27,1944.02.27,1567,, +1944.02.18,18-Feb-44,1944,Unprovoked,INDIA,,"Triplicane Beach, Chennai",Bathing,male,M,12,FATAL,Y,,,"Indian Express, 2/19/1944",1944.02.18-Madras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.02.18-Madras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.02.18-Madras.pdf,1944.02.18,1944.02.18,1566,, +1944.01.20,20-Jan-44,1944,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Body surfing,Anthony Bunn,M,22,"FATAL, right thigh lacerated, femoral artery severed ",Y,13h15,,"M. Levine, GSAF",1944.01.20-Bunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.20-Bunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.20-Bunn.pdf,1944.01.20,1944.01.20,1565,, +1944.01.16,16-Jan-44,1944,Boating,AUSTRALIA,Western Australia,"Cottesloe, Perth",Fishing,"14' dinghy, 2 occupants",M,,"No injury, shark took day's catch & struck boat",N,,14' shark,"Canberra Times, 1/17/1944",1944.01.16-dinghy-Cottesloe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.16-dinghy-Cottesloe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.16-dinghy-Cottesloe.pdf,1944.01.16,1944.01.16,1564,, +1944.01.14,14-Jan-44,1944,Unprovoked,AUSTRALIA,New South Wales,"First Beach, Forster",Surfing,Peter Weir,M,14,"Both legs bitten, one surgically amputated",N,17h00,,"G.P. Whitley (1951), p.193, cites Daily Mirror (Sydney) 1/18/1944; V.M. Coppleson (1958), p.84",1944.01.14-Weir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.14-Weir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.14-Weir.pdf,1944.01.14,1944.01.14,1563,, +1944.01.04,04-Jan-44,1944,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Swimming,Ronald Joel Selby,M,26,"FATAL, leg bitten knee to ankle & posterior tibial artery severed; died of toxemia 2 days later ",Y,17h50,,"M. Selby, M. Levine, GSAF ",1944.01.04-Selby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.04-Selby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.04-Selby.pdf,1944.01.04,1944.01.04,1562,, +1944.00.00.c,Some time between Apr & Nov-1944,1944,Sea Disaster,SOUTH PACIFIC OCEAN,,,Adrift on raft,"Unknown, he was Nabetari's companion",M,,FATAL Arm severed,Y,,,"TIME, 7/29/1946",1944.00.00.c-Nebatari'sCompanion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.00.00.c-Nebatari'sCompanion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.00.00.c-Nebatari'sCompanion.pdf,1944.00.00.c,1944.00.00.c,1561,, +1944.00.00.b,1944,1944,Sea Disaster,ITALY,Adriatic Sea,,B-24 aircraft crashed into the sea,"male, a member of the crew",M,,FATAL,Y,,,GSAF,1944.00.00.b-B-24 crew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.00.00.b-B-24 crew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.00.00.b-B-24 crew.pdf,1944.00.00.b,1944.00.00.b,1560,, +1944.00.00.a,1944,1944,Unprovoked,NEW GUINEA,Pacific Ocean,,Fell overboard from USS Ward,sailor,M,,FATAL,Y,,,GSAF,1944.00.00.a-Ward crew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.00.00.a-Ward crew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.00.00.a-Ward crew.pdf,1944.00.00.a,1944.00.00.a,1559,, +1943.12.12,12-Dec-43,1943,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Inyoni Rocks, Amazimtoti ",Treading water,James Crawford Matthews,M,17,"FATAL, abdomen, buttock & thigh lacerated ",Y,11h30,,"R. Kahn, M. Levine, GSAF; Natal Mercury 1/21/1944",1943.12.12-Matthews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.12.12-Matthews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.12.12-Matthews.pdf,1943.12.12,1943.12.12,1558,, +1943.12.04,04-Dec-43,1943,Sea Disaster,USA,South Carolina,Off Charleston,The Cuban freighter Libertad was torpedoed and sunk by the German submarine U-129,Julio C. de Cabarrocas ,M,,"Of the 18 crew who survived the sinking, 10 were taken by sharks. Cabarrocas was bitten but survived",Y,,,"Troy Record, 12/13/1943; J. Rohwer, p.175",1943.12.04-Libertad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.12.04-Libertad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.12.04-Libertad.pdf,1943.12.04,1943.12.04,1557,, +1943.11.21,21-Nov-43,1943,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kei River Mouth,Swimming with board,Richard Richardson,M,,Right foot lacerated,N,,,"M. Levine, GSAF",1943.11.21-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.11.21-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.11.21-Richardson.pdf,1943.11.21,1943.11.21,1556,, +1943.11.11,11-Nov-43,1943,Sea Disaster,PACIFIC OCEAN,Near the Fiji Islands,22�08'S : 178�06'W,The 6711-ton American freighter & troop transport Cape San Juan was torpedoed by the Japanese submarine I-21,males,M,,"Of the 1,429 people on board, only 448 survived. Sharks were attacking survivors as they were being rescued",Y,,,"M. McDiarmid, p.67",1943.11.11-CapeSanJuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.11.11-CapeSanJuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.11.11-CapeSanJuan.pdf,1943.11.11,1943.11.11,1555,, +1943.10.26,26-Oct-43,1943,Invalid,USA,Florida,Victim was on said to be on tanker that collided off Florida coast on 10-20-1943,,"Clyde Kelly Ormand, Jr.",M,,"Hand, forearm, leg and pelvis recovered from shark�s gut",N,,"Remains found in 4.25 m [14'] shark caught at Baker�s Haulover, Miami Beach on 26-Oct-1943","R.F. Hutton (1959); D. Baldridge, p.171; T. Helm, p.226; SAF Case #624",1943.10.26-Ormond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.10.26-Ormond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.10.26-Ormond.pdf,1943.10.26,1943.10.26,1554,, +1943.09.23,23-Sep-43,1943,Unprovoked,PANAMA,Gulf of Panama,"North shore of Rey Island, Las Perlas archipelago",Dived overboard to check propeller of US Navy motor torpedo boat,sailor,M,20,"FATAL, left leg & shoulder bitten ",Y,14h35,"White shark, 2 m [6'9""] (Tooth fragment recovered from victim's shoulder & identified by J.T. Nicholls)",Captain B. H. Kean,1943.09.23-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.09.23-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.09.23-sailor.pdf,1943.09.23,1943.09.23,1553,, +1943.08.00,Aug-43,1943,Sea Disaster,ITALY,40 miles south of Naples ,Tyrrhenian Sea,Flying Fortress bomber aircraft went down after daytime raid on Naples. He was swimming on the surface,"Lieutenant Robert D. Kurz (U.S.), co-pilot",M,,"Bitten on arms, hands & feet while awaiting rescue",N,,,New York Times 8/9/1943,1943.08.00-Kurz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.08.00-Kurz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.08.00-Kurz.pdf,1943.08.00,1943.08.00,1552,, +1943.07.18,18-Jul-43,1943,Sea Disaster,USA,Florida,"40 miles off Islamorada, near Cay Sal",Treading water after survivng crash of the US Navy airship K-74 that was hit by the German submarine U-134,Petty Officer Isadore Stessel,M,,FATAL,Y,,,Wikipedia,1943.07.18-Stessel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.07.18-Stessel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.07.18-Stessel.pdf,1943.07.18,1943.07.18,1551,, +1943.07.00.b,Jul-43,1943,Boating,PORTUGAL,,Sines,Fishing for mackerel,rowboats attacked by sharks,,,No injury to occupants,N,,,Letter dated 8/31/1959 from A. Cordeiro,1943.07.00.b-Portugal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.07.00.b-Portugal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.07.00.b-Portugal.pdf,1943.07.00.b,1943.07.00.b,1550,, +1943.07.00.a,Jul-43,1943,Invalid,MEXICO,Veracruz,"Villa del Mar Beach, Veracruz",Swimming,"Manuel Zamora, a lawyer",M,68,"No injury, a shark made a threat display",N,Between 11h00 & 12h00,,C.G. Robles; SAF Case #1327 ,1943.07.00.a-Zamora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.07.00.a-Zamora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.07.00.a-Zamora.pdf,1943.07.00.a,1943.07.00.a,1549,, +1943.06.16,16-Jun-43,1943,Boating,AUSTRALIA,Tasmania,Triabunna,Fishing for cod,"a dinghy, occupant Neil Parker",M,18,"No injury to occupant, shark grabbed rudder and dragged the dinghy stern-first",N,,"White shark, 3.9 m, 550 kg, male","C. Black, GSAF",1943.06.16-dinghy-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.06.16-dinghy-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.06.16-dinghy-Parker.pdf,1943.06.16,1943.06.16,1548,, +1943.05.27,27-May-43,1943,Invalid,PACIFIC OCEAN,,,B-24 crashed during a search mission. Survivors in raft for 47 days ,Louis Zamperini & Russell Phillips ,M,,Survived,N,,,G.A. Llano,1943.05.27-Zamperini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.27-Zamperini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.27-Zamperini.pdf,1943.05.27,1943.05.27,1547,, +1943.05.17.b,17-May-43,1943,Sea Disaster,CENTRAL PACIFIC,,68 miles east of Wallis Island,"S2N Navy scout plane went down, E.H. Almond & Lieut A.G. Reading in water","Arthur George Reading, Naval aviator",M,26,"Jaw dislocated & contusions from many blows on legs & body by shark fins, rescued after 14 hours",N,,,"W.L. Jones; V.M. Coppleson (1962), p.217; G.A. Llano in Airmen Against the Sea, p.67",1943.05.17.b-Reading.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.17.b-Reading.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.17.b-Reading.pdf,1943.05.17.b,1943.05.17.b,1546,, +1943.05.17.a,17-May-43,1943,Sea Disaster,CENTRAL PACIFIC,,68 miles east of Wallis Island,"S2N Navy scout plane went down, E.H. Almond & Lieut A.G. Reading in water","E.H. Almond, US Navy radioman",M,,"FATAL, right leg & left thigh bitten ",Y,,,"V.M. Coppleson (1962), p.217; G.A. Llano in Airmen Against the Sea, p.67",1943.05.17.a-Almond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.17.a-Almond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.17.a-Almond.pdf,1943.05.17.a,1943.05.17.a,1545,, +1943.05.14,14-May-43,1943,Sea Disaster,AUSTRALIA,Queensland,Off Brisbane,Hospital Ship Centaur torpedoed & sunk by the Japanese submarine I-177,unknown,M,F,FATAL,Y,After 04h00,,"The Age, 5/19/1953",1943.05.14-Centaur.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.14-Centaur.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.14-Centaur.pdf,1943.05.14,1943.05.14,1544,, +1943.05.01.R,Reported 01-May-1943,1943,Sea Disaster,INDIAN OCEAN,,,ship torpedoed 400 miles off the African coas. Man was clinging to hatch cover,Clarence Master,M,,"Leg, foot & arm bitten",N,,Blue shark,"St. Petersburg Times, 5/1/1943",1943.05.01.R-Clarence-Master.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.01.R-Clarence-Master.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.01.R-Clarence-Master.pdf,1943.05.01.R,1943.05.01.R,1543,, +1943.04.05,05-Apr-43,1943,Invalid,USA,Hawaii,"3 miles from shore off McGregor Point, Maui","Small boat swamped, 4 people swimming to shore but he fell behind the other 3 and vanished",Leonard Gant,M,,On 29-Apr-1943 his remains (right forearm & swim trunks) were found in shark�s gut,Y,,4.9 m [16'] shark,"Honolulu Advertiser, 8/9/1953; V.M. Coppleson (1958); J. Borg, p. 71; SAF Case #292",1943.04.05-Gant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.04.05-Gant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.04.05-Gant.pdf,1943.04.05,1943.04.05,1542,, +1943.03.21,21-Mar-43,1943,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Swimming,Eric Ridley,M,31,"FATAL, thigh lacerated, both calves bitten ",Y,16h10,,"M. Levine, GSAF",1943.03.21-Ridley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.21-Ridley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.21-Ridley.pdf,1943.03.21,1943.03.21,1541,, +1943.03.14,14-Mar-43,1943,Sea Disaster,SIERRA LEONE,,,"The 21,516-ton troopship Empress of Canada torpedoed and sunk by the Italian submarine Leonardo da Vinci",,,,"Of the 1346 on board, 392 perished including 90 women & 44 crew. 1 person known to have been fatally injured by a shark.",Y,,,Greatships.net,1943.03.14-Empress-of-Canada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.14-Empress-of-Canada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.14-Empress-of-Canada.pdf,1943.03.14,1943.03.14,1540,, +1943.03.02.b,02-Mar-43,1943,Sea Disaster,BRAZIL,,Near the Abrolhos Archipelago ,The 3540-ton Alfonso Penna was torpedoed & sunk by the Italian submarine Barbarigo,,,,"33 crew & 92 passengers were lost, it was thought that some were killed by sharks FATAL",Y,19h00,,"New York Times, 3/20/1943; Axis submarine losses in WWII",1943.03.02.b-AlfonsoPenna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.02.b-AlfonsoPenna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.02.b-AlfonsoPenna.pdf,1943.03.02.b,1943.03.02.b,1539,, +1943.03.02.a,02-Mar-1943 to 07-Mar-1943,1943,Sea Disaster,PAPUA NEW GUINEA,Morobe Province, Huon Gulf,"Known as The Battle of the Bismarck Sea : 8 Japanese destroyers guarding a convoy of 8 transports were attacked by 129 Allied fighters, 207 bombers & 3 squadrons of the Royal Australian Air Force. ",,,,"An estimated 3,000 to 7,000 Japanese troops perished, some were taken by sharks",Y,,,"G. Duncan, et al",1943.03.02.a-HuonGulf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.02.a-HuonGulf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.02.a-HuonGulf.pdf,1943.03.02.a,1943.03.02.a,1538,, +1943.01.26,26-Jan-43,1943,Sea Disaster,PACIFIC OCEAN,Northwest of Papua New Guinea,,The USS Wahoo torpedoes & sank the Japanese troop transport Buyo Maru,Japanese seamen,M,,FATAL,Y,,,Naval Historical Center,1943.01.26-BuyoMaru.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.01.26-BuyoMaru.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.01.26-BuyoMaru.pdf,1943.01.26,1943.01.26,1537,, +1943.00.00.f,Summer 1943,1943,Unprovoked,MEXICO,Veracruz,"Villa del Mar Beach, Veracruz",Swimming,a U.S. citizen,,,FATAL,Y,,,C.G. Robles,1943.00.00.f-NV-Veracruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.f-NV-Veracruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.f-NV-Veracruz.pdf,1943.00.00.f,1943.00.00.f,1536,, +1943.00.00.e,1943,1943,Unprovoked,SOLOMON ISLANDS,,Guadalcanal,Swimming,"U.S. soldier in 161st Infantry Regiment, 25th Infantry Division",M,,Arm severed,N,,,J. Lawton Collins,1943.00.00.e-Soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.e-Soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.e-Soldier.pdf,1943.00.00.e,1943.00.00.e,1535,, +1943.00.00.d,1943,1943,Unprovoked,IRAQ,,River Tigris,Swimming,Syed Khaleeulla ,M,22,"Right arm severed, left foot bitten",N,,,"Times of India, 8/19/2001",1943.00.00.d-Khaleeula.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.d-Khaleeula.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.d-Khaleeula.pdf,1943.00.00.d,1943.00.00.d,1534,, +1943.00.00.c,Fall 1943,1943,Unprovoked,USA,Hawaii,"Midway Island, Northwestern Hawaiian Islands",Spearfishing, 2 males,M,,Calf nipped in each case,N,,"""small sharks""",W. M. Chapman,1943.00.00.c - Midway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.c - Midway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.c - Midway.pdf,1943.00.00.c,1943.00.00.c,1533,, +1943.00.00.b,Fall 1943,1943,Unprovoked,USA,Hawaii,"Midway Island, Northwestern Hawaiian Islands",Spearfishing, 2 males,M,,Calf nipped in each case,N,,"""small sharks""",W. M. Chapman,1943.00.00.b - Midway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.b - Midway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.b - Midway.pdf,1943.00.00.b,1943.00.00.b,1532,, +1943.00.00.a,1943,1943,Unprovoked,USA,Hawaii,"Midway, Northwestern Hawaiian Islands",,male,M,,"Unprovoked, but circumstances unknown",UNKNOWN,,,"G.H. Balazs & A.K.H. Kam; J. Borg, p.72; L. Taylor (1993), pp.98-99",1943.00.00.a-Midway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.a-Midway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.a-Midway.pdf,1943.00.00.a,1943.00.00.a,1531,, +1942.12.26,26-Dec-42,1942,Unprovoked,AUSTRALIA,New South Wales,"Bantry Bay, near Ironstone Point, Middle Harbor, Sydney",Dog paddling or standing,Denise Rosemary Burch,F,15,"FATAL, legs bitten ",Y,10h50,Bull shark,"G.P. Whitley (1951), p. 193; V.M. Coppleson (1958), p.70; A. Sharpe, pp.72-73; A. MacCormick, pp.34-35",1942.12.26-Burch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.12.26-Burch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.12.26-Burch.pdf,1942.12.26,1942.12.26,1530,, +1942.11.28,28-Nov-42,1942,Sea Disaster,SOUTH AFRICA,KwaZulu-Natal,50 km off St. Lucia,U-177 torpedoed & sank the troopship Nova Scotia,Sammy Levine & his pet parrot,M,,"192 survived, but 750 perished. Many were taken by sharks, including Levine",Y,09h30,"1.8 m to 2.4 m [6' to 8'] sharks, most were oceanic whitetip sharks","L. de Lease; M. Levine, GSAF",1942.11.28-NovaScotia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.28-NovaScotia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.28-NovaScotia.pdf,1942.11.28,1942.11.28,1529,, +1942.11.25,25-Nov-42,1942,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umkomaas,Swimming,E.W. Bilton,M,38,"Calf bitten, leg surgically amputated",N,,,"M. Levine,GSAF ",1942.11.25-Bilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.25-Bilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.25-Bilton.pdf,1942.11.25,1942.11.25,1528,, +1942.11.16,16-Nov-42,1942,Sea Disaster,SOLOMON ISLANDS,,Battle of Guadalcanal,Thrown from destroyer when shell hit,,M,19,Hip bitten,N,,,"Lima News, 7/13/1944",1942.11.16-Guadalcanal-HospitalShip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.16-Guadalcanal-HospitalShip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.16-Guadalcanal-HospitalShip.pdf,1942.11.16,1942.11.16,1527,, +1942.11.21,21-Nov-42,1942,Sea Disaster,INDIAN OCEAN,,Bound from Cape Town for St. Helena,"On 6-Nov-1942, the German submarine U-68 sank the City of Cairo 5 days from Cape Town, survivors took to lifeboats & rafts. On the 15th day, a fireman jumped over the stern & was taken by sharks",male,M,,FATAL,Y,,,"Coppleson (1962), pp.207 & 258 ",1942.11.21-City-of-Cairo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.21-City-of-Cairo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.21-City-of-Cairo.pdf,1942.11.21,1942.11.21,1526,, +1942.11.13.c,13-Nov-42,1942,Sea Disaster,SOLOMON ISLANDS,,Off Guadalcanal,"Anti-Aircraft cruiser USS Atlanta (CL,-05) travelling in convoy after the Battle of Midway, encountered a Japanese flotilla (Battle of Guadalcanal) &, heavily damaged by gunfire, she was lost off Lunga Point. Victim was swimming when bitten.","Sam Hicks, a gunner",M,,"Injured by sharks, but managed to swim ashore 6.5 hours later",N,,,Memoirs of Sam Hicks,1942.11.13.c-Hicks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.13.c-Hicks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.13.c-Hicks.pdf,1942.11.13.c,1942.11.13.c,1525,, +1942.11.13.b,13-Nov-42,1942,Sea Disaster,SOLOMON ISLANDS / VANUATU,,"North of Guadalcanal, Solomon Islands while enroute to Vanuatu",Explosion & sinking of the USS Juneau after being torpedoed by the submarine I-85,"Because of a mistaken belief that there were no survivors and several other successive errors, of the 100 to 150 men who survived the sinking, only 11 were rescued. Four of the Sullivan brothers died in the initial blast. ",M,,"Over a period of a week men in the water died of wounds, thirst & sharks. George Sullivan, the last of the Sullivan brothers, survived for 5 days & then was killed by 3 sharks.",Y,11h01 -time of ship sinking,,US Navy Military History,1942.11.13.b-Juneau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.13.b-Juneau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.13.b-Juneau.pdf,1942.11.13.b,1942.11.13.b,1524,, +1942.11.13.a,12-Nov-42,1942,Sea Disaster,SOLOMON ISLANDS,,Off Savo Island,,Japanese seaman,M,,FATAL,Y,,,"C. Cromie, Chicago Tribune, 12/5/1942",1942.11.13.a-Guadalcanal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.13.a-Guadalcanal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.13.a-Guadalcanal.pdf,1942.11.13.a,1942.11.13.a,1523,, +1942.11.01,01-Nov-42,1942,Unprovoked,SOUTH AFRICA,Western Cape Province,Clifton,Swimming ,Willem Johannes Bergh,M,18,"FATAL, body not recovered",Y,12h30,"White shark, 4.5 m to 6 m [14'9"" to 20'] according to witnesses","Natal Daily News, 11/28/1942, M. Levine, GSAF; T. Wallett, p.42 ",1942.11.01-Bergh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.01-Bergh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.01-Bergh.pdf,1942.11.01,1942.11.01,1522,, +1942.11.00.b,Nov-42,1942,Provoked,PACIFIC OCEAN,Between Hawaii and U.S.A.,,In rubber dinghy with Captain Eddie Rickenbacker for 21 days. ,male,M,,One man drove a knife through rubberized canvas trying to stab a shark & it injured him with its tail PROVOKED INCIDENT,N,,,"V.M. Coppleson (1962), p.257",1942.11.00.b-Rickenbacker-raftmate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.00.b-Rickenbacker-raftmate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.00.b-Rickenbacker-raftmate.pdf,1942.11.00.b,1942.11.00.b,1521,, +1942.11.00.a,Nov-42,1942,Sea Disaster,,Off South American coast,,"Dutch merchant ship Zaandam torpedoed by the U-174 amidships, sank & dozens of survivors took to rafts & boats. One man, Izzi, who drifted 83 days on a raft related that sharks attacked many men in the water when the ship went down",,M,,FATAL,Y,,,"M. Murphy; V.M. Coppleson (1962), pp.207-208",1942.11.00.a-Izzi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.00.a-Izzi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.00.a-Izzi.pdf,1942.11.00.a,1942.11.00.a,1520,, +1942.10.12,12-Oct-42,1942,Sea Disaster,SOLOMON ISLANDS,Makora-Ulawa Province,Cape Esperance (near Savo Islands),"His ship, the US destroyer Duncan DD 485, had been sunk by crossfire from Japanese warships. He was wearing a kapok lifejacket & using 2 aluminum powder tins for floatation ",Lieutenant Commander Herbert Richard Kabat,M,25,"Foot, hand, elbow & calf lacerated & abraded, thigh gashed",N,,,"W. L. Jones, M.D.; Saturday Evening Post; V.M. Coppleson (1958), p.199",1942.10.12-Kabat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.10.12-Kabat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.10.12-Kabat.pdf,1942.10.12,1942.10.12,1519,, +1942.09.30,30-Sep-42,1942,Sea Disaster,ATLANTIC OCEAN,04.05N-13.23W,,The 6015-ton British ship Empire Avocet was torpedoed by the German submarine U-125. ,,,,Survivors on life rafts were harassed by sharks,N,,,"V.M. Coppleson (1962), p.208",1942.09.30-EmpireAvocet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.30-EmpireAvocet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.30-EmpireAvocet.pdf,1942.09.30,1942.09.30,1518,, +1942.09.12.b,12-Sep-42,1942,Sea Disaster,ATLANTIC OCEAN,,360 miles north of Ascension Island,"The Pacquebot Laconia, enroute to Liverpool with 600 Italian prisoners onboard, was torpedoed by the German submarine U-156 and only 2 rafts were launched before the ship went down. Unable to board an overcrowded raft, he was swimming.",Michael Setti,M,,"Calf lacerated. He was rescued by German submarine, which sunk. Rescued by Italian submarine, which sunk. Managed to reach Dakar",N,,,"V.M. Coppleson (1962), p.258; Rohwer, pp.122 & 352",1942.09.12.b-Laconia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.12.b-Laconia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.12.b-Laconia.pdf,1942.09.12.b,1942.09.12.b,1517,, +1942.09.12.a,12-Sep-42,1942,Unprovoked,AUSTRALIA,Queensland,"Trinity Beach, 17 km northwast of Cairns",Treading water,"Athol Wearne, Royal Australian Air Force. officer",M,24,"Right foot severed & calf removed, leg surgically amputated below the knee",N,16h30,"Tiger shark, 2.4 m to 3 m [8' to 10'] ","A Wearne, J. Green, pp.44-50; G.P. Whitley (1951), p. 193, cites Sydney Morning Herald, 8/11/1943; V.M. Coppleson (1958), pp.87 & 238",1942.09.12.a-Wearne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.12.a-Wearne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.12.a-Wearne.pdf,1942.09.12.a,1942.09.12.a,1516,, +1942.09.11,11-Sep-1942 to 16-Sep-1942,1942,Sea Disaster,SOUTHWEST PACIFIC OCEAN,,Southwestern Pacific Base,Adrift on life raft,US Army fliers,M,,"FATAL, 2 of the 9 airmen killed by sharks",Y,,Tiger shark & others,SAF Case #741,1942.09.11-NV-AdriftonRaft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.11-NV-AdriftonRaft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.11-NV-AdriftonRaft.pdf,1942.09.11,1942.09.11,1515,, +1942.08.08,08-Aug-42,1942,Sea Disaster,SOLOMON ISLANDS,,,Japanese aircraft shot down. He was one of two survivors rescued by the U.S. destroyer Mugford,Tamaki Amano,M,,Lacerations to left arm,N,,,"Appleton Post-Crescent, 4/18/1964",1942.08.08-Amano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.08.08-Amano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.08.08-Amano.pdf,1942.08.08,1942.08.08,1514,, +1942.07.12,12-Jul-42,1942,Sea Disaster,ATLANTIC OCEAN,,,The SS Potlach was torpedoed & sunk by the U-153 on 27-Jun-1942. ,John Martin Miller,M,32,FATAL Arm bitten,Y,,,"Kingsport Times, 8/6/1942, et al",1942.07.12-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.07.12-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.07.12-Miller.pdf,1942.07.12,1942.07.12,1513,, +1942.07.06,06-Jul-42,1942,Provoked,ITALY,Liguria,Savona,Sculling,Gino Bardolini,M,20,"After he hit the shark with an oar, the shark bit the oar and overturned the boat PROVOKED INCIDENT",N,,Porbeagle shark,"C. Moore, GSAF",1942.07.06-Bardolini,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.07.06-Bardolini,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.07.06-Bardolini,1942.07.06,1942.07.06,1512,, +1942.06.11.R,Reported 11-Jun-1942,1942,Sea Disaster,BAY OF BENGAL,,,A 210-ton brig was sunk by a Japanese submarine. Some of the survivors were machine-gunned & some were taken by sharks,2 males,M,,FATAL,Y,,,"Canberra Times, 6/11/1942",1942.06.11.R-Bay-of-Bengal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.11.R-Bay-of-Bengal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.11.R-Bay-of-Bengal.pdf,1942.06.11.R,1942.06.11.R,1511,, +1942.06.08.R,Reported 08-Jun-1942,1942,Invalid,BRAZIL,,,boat capsized during filming,Jacare,M,,"Remains recovered from shark, but cause of death was probably drowning",Y,,440-lb shark,"Time Magazine, 6/8/1942",1942.06.08.R-Jacare-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.08.R-Jacare-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.08.R-Jacare-Brazil.pdf,1942.06.08.R,1942.06.08.R,1510,, +1942.06.04,04-Jun-42,1942,Unprovoked,USA,Midway Atoll,,"Plane crashed in water, men in life raft",a pilot,M,,Survived,N,,,"Evening Standard, 7/16/1942",1942.06.04-Midway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.04-Midway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.04-Midway.pdf,1942.06.04,1942.06.04,1509,, +1942.06.00,Jun-42,1942,Unprovoked,,300 miles east of St. Thomas (Virgin Islands),,On life raft tethered to lifeboat. A seaman put hand over side to rinse a cup,male,M,,Forearm lacerated,N,,,"V.M. Coppleson (1962), p.258",1942.06.00-on-life-raft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.00-on-life-raft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.00-on-life-raft.pdf,1942.06.00,1942.06.00,1508,, +1942.05.09,09-May-42,1942,Unprovoked,AUSTRALIA,Queensland,"Great Barrier Reef, off Cairns",Diving from lugger,Abraham Johnson,M,,"Hands, arms & knee lacerated",N,,,"V.M. Coppleson (1958), p.245",1942.05.09-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.05.09-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.05.09-Johnson.pdf,1942.05.09,1942.05.09,1507,, +1942.04.05,05-Apr-42,1942,Invalid,INDIAN OCEAN,West of Ceylon (Sri Lanka),300 nm from shore,H.M.S. Cornwall & H.M.S.Dorsetshire sunk by Japanese dive bombers. Officers & men in the water formed a circle with 60 of their dead in the center for 36 hours,,,,Sharks were numerous & took corpses but made no attempts to harm the survivors.,Y,,,"V.M. Coppleson (1962), p.218",1942.04.05-Dorsetshire-Cornwall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.04.05-Dorsetshire-Cornwall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.04.05-Dorsetshire-Cornwall.pdf,1942.04.05,1942.04.05,1506,, +1942.03.08,08-Mar-42,1942,Sea Disaster,CUBA,Guantanamo Province,30 nm southeast of Guantanamo Bay,Esso Bolivar was torpedoed & shelled by the German submarine U-126,A wounded member of Naval guncrew being towed by Charles Anderson toward a lifeboat & injured crew being towed by watertender Arthur Lauman,M,,"Of her crew of 50, eight perished, including the two injured men",Y,Ship aban-doned at 03h10,,"Baltimore Evening Sun, 4/13/1942",1942.03.08-EssoBolivar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.03.08-EssoBolivar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.03.08-EssoBolivar.pdf,1942.03.08,1942.03.08,1505,, +1942.03.04,04-Mar-42,1942,Invalid,AUSTRALIA,New South Wales,George�s River,,Ronald J. Bishop,M,18,"Cause of death was drowning, shark bites were post mortem",Y,,,"G.P. Whitley (1951), p. 192, cites Sun (Sydney), 3/27/1942; J. Green, p.34",1942.03.04-Bishop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.03.04-Bishop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.03.04-Bishop.pdf,1942.03.04,1942.03.04,1504,, +1942.01.18,18-Jan-42,1942,Boating,AUSTRALIA,New South Wales,Fairy Bower,,paddle of surf-ski,,,Paddle of surf ski bitten by shark,N,,,"G.P. Whitley (1951), p. 192 ",1942.01.18-Surf-ski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.01.18-Surf-ski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.01.18-Surf-ski.pdf,1942.01.18,1942.01.18,1503,, +1942.01.04,04-Jan-42,1942,Unprovoked,AUSTRALIA,New South Wales,"Egg Rock, Middle Harbor, Sydney",Swimming,Zita Steadman,F,28,"FATAL, bitten in two ",Y,15h00,"Bull shark, 4 m [13'] ","V.M. Coppleson (1958), p.70; A. Sharpe, p.72; A. MacCormick, pp.34-35",1942.01.04-Steadman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.01.04-Steadman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.01.04-Steadman.pdf,1942.01.04,1942.01.04,1502,, +1942.01.00,Jan-42,1942,Provoked,AUSTRALIA,New South Wales,"Fairy Bower, near North Steyne",Surf-skiing,male,M,,Attempted to frighten shark by smacking water with paddle. Shark bit paddle. No injury to surf-skier PROVOKED INCIDENT,N,,3 m [10'] shark,"V.M. Coppleson (1958), p.41",1942.01.00-Surfski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.01.00-Surfski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.01.00-Surfski.pdf,1942.01.00,1942.01.00,1501,, +1942.00.00.k,1942,1942,Sea Disaster,INDONESIA,East Java,Surabaya,Captured Allied soldiers were squeezed into 3' bamboo pig baskets & fed to waiting sharks,200 soldiers,M,,"General Imamura, Commander in Chief of Japanese forces in Java was sentenced to 10 years imprisonment by Australian Military Court for his role in the ""Pig Basket Atrocities""",Y,,,G. Duncan,1942.00.00.k-PigBasketAtrocity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.k-PigBasketAtrocity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.k-PigBasketAtrocity.pdf,1942.00.00.k,1942.00.00.k,1500,, +1942.00.00.j,Winter 1942,1942,Boating,AUSTRALIA,Tasmania,Off Big Friar Island,Fishing for perch,Storm King; occupants - George Bridge & 2 sons,M,,"No injury to occupants, rudder damaged by shark",N,,,"C. Black, GSAF",1942.00.00.j-StormBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.j-StormBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.j-StormBay.pdf,1942.00.00.j,1942.00.00.j,1499,, +1942.00.00.i,Summer 1942,1942,Unprovoked,PHILIPPINES,Camiguin Island,2 kilometres off Sagay,"Sailing from Gingood, Misamis Oriental to Sagay (normally a 2-day voyage) capsized with 6 on board, three men were taken by sharks when they attempted to swim to shore.",Andong & 2 others,M,,FATAL,Y,,,V. Obedencio,1942.00.00.i-Adong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.i-Adong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.i-Adong.pdf,1942.00.00.i,1942.00.00.i,1498,, +1942.00.00.h,1942,1942,Boating,SOUTH AFRICA,Western Cape Province,Simon�s Bay,,boat,,,"No injury to occupants, boat rammed by shark",N,,,"T. Wallett, p.27",1942.00.00.h-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.h-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.h-boat.pdf,1942.00.00.h,1942.00.00.h,1497,, +1942.00.00.g,1942,1942,Boating,SOUTH AFRICA,Western Cape Province,Simon's Bay,,boat,,,No injury,N,,Said to involve a 6.5 m [21.5'] shark,"T. Wallett, p.27",1942.00.00.g-SimonsTown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.g-SimonsTown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.g-SimonsTown.pdf,1942.00.00.g,1942.00.00.g,1496,, +1942.00.00.f,1942,1942,Unprovoked,BAHAMAS,Cay Sal Bank,Anchored off the largest island in the group,Swimming along side N.E.L. vessel Saluda,Herbert J. Mann,M,48,"Minor injury, ankle scratched by shark's teeth",N,Late afternoon,1.2 m to 1.5 m [4' to 5'] shark,H.J. Mann,1942.00.00.f-Mann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.f-Mann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.f-Mann.pdf,1942.00.00.f,1942.00.00.f,1495,, +1942.00.00.e,1942,1942,Sea Disaster,,,,Jumped overboard from torpedoed Panamanian freighter,male,M,,FATAL,Y,,,"V.M. Coppleson (1962), p.258",1942.00.00.e-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.e-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.e-seaman.pdf,1942.00.00.e,1942.00.00.e,1494,, +1942.00.00.d,1942,1942,Sea Disaster,MID-PACIFC OCEAN,(Southwestern Pacific),,"Plane forced down, 3 men on rubber life raft. Put hand over side to feel drift of boat ",Gene Aldrich,M,,"Fingers badly lacerated, wounds became septic",N,,,"V.M. Coppleson (1962), p.258",1942.00.00.d-Aldrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.d-Aldrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.d-Aldrich.pdf,1942.00.00.d,1942.00.00.d,1493,, +1942.00.00.c,1942,1942,Sea Disaster,SOUTHWEST PACIFIC OCEAN,,,Ditched plane in the sea & were adrift on a rubber life raft. ,American aviators,M,,"No injury to occupants, They fought off sharks & killed one with an automatic. Rescued 34 days later",N,,"Said to be �leopard sharks�, more probably tiger sharks","V.M. Coppleson (1962), p.258",1942.00.00.c-AmericanAviators.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.c-AmericanAviators.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.c-AmericanAviators.pdf,1942.00.00.c,1942.00.00.c,1492,, +1942.00.00.b,1942,1942,Boating,,,,"Days before the surrender of Singapore, the 3 men escaped to Sumatra where they acquired a 17' dinghy. After 125 days at sea they drifted back to Sumatra","Bombardier J. Hall, Private Green of the Sherwood Foresters & Captain C. O. Jennings, R.E. Anti-tank Regiment",M,,"No injury to occupants. Sharks continually followed the dinghy, and one smashed its rudder ",N,,,"V.M. Coppleson (1962), p.206",1942.00.00.b-Hall-Green-Jennings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.b-Hall-Green-Jennings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.b-Hall-Green-Jennings.pdf,1942.00.00.b,1942.00.00.b,1491,, +1942.00.00.a,1942,1942,Unprovoked,PANAMA,Panama City,Bella Vista Beach,Swimming,male,M,,"FATAL, body not recovered",Y,,,V.M. Coppleson (1958),1942.00.00.a-BellaVista.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.a-BellaVista.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.a-BellaVista.pdf,1942.00.00.a,1942.00.00.a,1490,, +1941.12.07,07-Dec-41,1941,Sea Disaster,SOUTH ATLANTIC OCEAN,,,Torpedoed & burning British light cruiser with a crew of 450 men,,,,"Only 170 survived, many of the crew were said to have been taken by sharks",Y,,"Reportedly: oceanic whitetip sharks, blue sharks, tiger sharks & bull sharks","F. Dennis, pp. 19-20; A. Resciniti, p.90",1941.12.07-SouthAtlantic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.12.07-SouthAtlantic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.12.07-SouthAtlantic.pdf,1941.12.07,1941.12.07,1489,, +1941.12.03,03-Dec-41,1941,Unprovoked,AUSTRALIA,Western Australia,Carnarvon,Swimming,Ron Graham,M,10,Right ankle bitten,N,Night,,"The West Australian, 12/11/1941",1941.12.03-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.12.03-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.12.03-Graham.pdf,1941.12.03,1941.12.03,1488,, +1941.11.27.b,27-Nov-41,1941,Sea Disaster,SOUTH ATLANTIC OCEAN,Off Libya,,HMAS Parramatta torpedoed & sunk by the U-559,Bill Nash,M,23,Right hand severed,N,,Tiger shark,"Canberra Times, 12/3/1941",1941.11.27.b-Nash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.27.b-Nash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.27.b-Nash.pdf,1941.11.27.b,1941.11.27.b,1487,, +1941.11.27.a,27-Nov-41,1941,Sea Disaster,SOUTH ATLANTIC OCEAN,Off Libya,,HMAS Parramatta torpedoed & sunk by the U-559,Gordon Annison,M,,Lacerations to chest,N,,Tiger shark,"Canberra Times, 12/3/1941",1941.11.27.a-Annison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.27.a-Annison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.27.a-Annison.pdf,1941.11.27.a,1941.11.27.a,1486,, +1941.11.24,25-Nov-41,1941,Sea Disaster,SOUTH ATLANTIC OCEAN,"North of Pernambuco, Brazil",,British cruiser Dunedin torpedoed & sunk by the U-124,,,,"418 perished, only 67 survived, some of the men were taken by sharks",Y,,,GSAF,1941.11.24-Dunedin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.24-Dunedin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.24-Dunedin.pdf,1941.11.24,1941.11.24,1485,, +1941.11.19,19-Nov-41,1941,Sea Disaster,AUSTRALIA,Western Australia,Shark Bay,German raider Kormoran was sunk in an engagement with HMAS Sydney,male from the Kormoran,M,,Leg bitten,N,,,"Canberra Times, 12/4/1941",1941.11.19-Kormoran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.19-Kormoran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.19-Kormoran.pdf,1941.11.19,1941.11.19,1484,, +1941.09.25,25-Sep-41,1941,Unprovoked,CARIBBEAN SEA,,125 nm north of Aruba,SS Ethel Skakel foundered in Central America Hurricane of 1941,Scotty,M,,Leg lacerated FATAL,Y,Night,,Washington Post. 10/2/1941,1941.09.25-Scotty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.09.25-Scotty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.09.25-Scotty.pdf,1941.09.25,1941.09.25,1483,, +1941.08.21.R,Reported 21-Aug-1941,1941,Provoked,USA,New York,Montauk,Fishing,Captain Jack Kelly,,,Laceration to left forearm from hooked shark PROVOKED INCIDENT,N,,,"New York Times, 8/21/1941",1941.08.21.R-Kelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.21.R-Kelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.21.R-Kelly.pdf,1941.08.21.R,1941.08.21.R,1482,, +1941.08.05,05-Aug-41,1941,Invalid,AUSTRALIA,New South Wales,Parramata River,Swimming,Ronald Dickerson,M,,Shark involvement prior to death unconfirmed,Y,,,"Canberra Times, 8/6/1941",1941.08.05-Dickerson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.05-Dickerson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.05-Dickerson.pdf,1941.08.05,1941.08.05,1481,, +1941.08.01,01-Aug-41,1941,Unprovoked,USA,South Carolina,Sullivan's Island at entrance to Charleston Harbor,Swimming at edge of channel,"Howard E. Sweatmon, a soldier",M,20,Chest lacerated,N,,,"V.M. Coppleson (1958), p.153; T. Helm, p.226; NY Times, 8/3/1941, p.28",1941.08.01-Sweatmon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.01-Sweatmon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.01-Sweatmon.pdf,1941.08.01,1941.08.01,1480,, +1941.07.22,22-Jul-41,1941,Boating,USA,New Jersey,"Brielle, Monmouth County (Offshore)",Fishing for tuna,"Fishing boat Bingo III , occupants: Michael Perkins, George Hornack & Capt. Lonergan ",,,"No injury to occupants, shark leapt into boat & bit cabin door",N,12h00,Mako shark,"N.Y Times, 7/23/1941; SAF Case #951",1941.07.23-boatBingo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.07.23-boatBingo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.07.23-boatBingo.pdf,1941.07.22,1941.07.22,1479,, +1941.07.01,01-Jul-41,1941,Provoked,USA,Hawaii,"Nankuli, O'ahu",Fishing,Hisao Shimoto,M,,Arm bitten while removing shark from fishing line PROVOKED INCIDENT,N,,100-lb shark,"G.H. Balazs & A.K.H. Kam; J. Borg, p.71; L. Taylor (1993), pp.98-99",1941.07.01-Shimoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.07.01-Shimoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.07.01-Shimoto.pdf,1941.07.01,1941.07.01,1478,, +1941.06.15,15-Jun-41,1941,Provoked,USA,New York,15 miles south of Jones Inlet,Fishing from 32' boat,Paul Ruhle,M,43,Left hand bitten as he tried to put rope around shark's tail PROVOKED INCIDENT,N,14h00,2.1 m [7'] shark,"New York Times, 6/16/1941; V.M. Coppleson (1958)",1941.06.15-Ruhle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.06.15-Ruhle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.06.15-Ruhle.pdf,1941.06.15,1941.06.15,1477,, +1941.06.00,Jun-41,1941,Sea Disaster,PACIFIC OCEAN,Off coast of Ecuador,Between Esmeraldas & Salinas,"Ditched aircraft, 3 men in the water. Swam for 31 hours",Colonel B. & Sub-Lieutenant D.,M,,"1 man survived & was rescued, sharks took the corpses of the two men that perished",Y,17h30,,"G.A. Llano in Airmen Against the Sea, pp.67-68; V.M. Coppleson (1962), p.257; A. Sharpe, pp.43-44; SAF Case #740",1941.06.00-Ecuador.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.06.00-Ecuador.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.06.00-Ecuador.pdf,1941.06.00,1941.06.00,1476,, +1941.03.24,24-Mar-41,1941,Sea Disaster,SOUTH ATLANTIC OCEAN,,750 miles off the African coast,The troopship Britannia was sunk by the German raider Thor,male,M,,Dr. A.R. Hernandez of ship Cabo Hornos treated passenger whose leg was severed by a shark,N,,,"NY Times, 4/4/1941 +",1941.03.24-Britannia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.03.24-Britannia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.03.24-Britannia.pdf,1941.03.24,1941.03.24,1475,, +1941.03.09,09-Mar-41,1941,Provoked,USA,California,"Santa Monica, Los Angeles County",Fishing,Frank Martinez,M,53,Right hand bitten by boated shark PROVOKED INCIDENT,N,Night,Mako shark (aka bonito shark) 1.2 m [4'] ,Press clipping dated 3/11/1941,1941.03.09-Martinez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.03.09-Martinez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.03.09-Martinez.pdf,1941.03.09,1941.03.09,1474,, +1941.02.13.,13-Feb-41,1941,Provoked,AUSTRALIA,New South Wales,Wollongong,Fishing,Robert See,M,34,Hand lacerated by hooked shark PROVOKED INCIDENT,N,,,"Canberra Times, 2/18/1941, p.4",1941.02.13-See.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.02.13-See.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.02.13-See.pdf,1941.02.13.,1941.02.13.,1473,, +1941.02.01,01-Feb-41,1941,Provoked,JAMAICA,Trelawney Province,Bogue (near Falmouth),Seine netting,Albert Buchanan,M,,"Left knee, calf & heel bitten by shark trapped in the net PROVOKED INCIDENT",N,07h30,,"Daily Gleaner, 2/3/1941, p. 1",1941.02.01-Buchanan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.02.01-Buchanan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.02.01-Buchanan.pdf,1941.02.01,1941.02.01,1472,, +1941.01.29,29-Jan-41,1941,Unprovoked,SOUTH ATLANTIC OCEAN,In Convoy OB 274,Off Sierra Leone,Rescuing seaman after ship sunk by German raider,David Hay,M,19,Clothing torn by sharks,N,19h55,,"The London Gazette, 7/8/1941",1941.01.29-Hay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.01.29-Hay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.01.29-Hay.pdf,1941.01.29,1941.01.29,1471,, +1941.01.00,Jan-41,1941,Sea Disaster,ATLANTIC OCEAN,,,Adrift on raft after their ship was sunk by an Axis raider ,a Scotsman & an Indian servant,M,,FATAL,Y,,,Lethbridge Herald. 11/17/1941,1941.01.00-Scotsman-Indian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.01.00-Scotsman-Indian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.01.00-Scotsman-Indian.pdf,1941.01.00,1941.01.00,1470,, +1941.00.00.h,1941,1941,Unprovoked,SOLOMON ISLANDS,New Georgia,Munda,Floating,male,M,,Buttock bitten,N,,,"Chapman, p.182",1941.00.00.h-Munda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.h-Munda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.h-Munda.pdf,1941.00.00.h,1941.00.00.h,1469,, +1941.00.00.f,1941,1941,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",Standing,a old fisherman,M,,FATAL,Y,Early morning,,"Lt. Col. R. S. Hunt, pp.80-81",1941.00.00.f-old-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.f-old-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.f-old-fisherman.pdf,1941.00.00.f,1941.00.00.f,1468,, +1941.00.00.e,1941,1941,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",,a local dignitary,M,,FATAL,Y,,,"Lt. Col. R. S. Hunt, pp.81-82",1941.00.00.e-local-dignitary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.e-local-dignitary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.e-local-dignitary.pdf,1941.00.00.e,1941.00.00.e,1467,, +1941.00.00.d,1941,1941,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",,a Gurkha soldier,M,,"Survived, but suffered a �forequarter amputation�",N,,,"Lt. Col. R. S. Hunt, p.80",1941.00.00.d-Gurkha-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.d-Gurkha-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.d-Gurkha-soldier.pdf,1941.00.00.d,1941.00.00.d,1466,, +1941.00.00.c,1941,1941,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",Slipped off rocks and fell into the water,boy,M,6,"FATAL, both arms bitten ",Y,,,"Lt.Col. R.S. Hunt, p.80",1941.00.00.c-small-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.c-small-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.c-small-boy.pdf,1941.00.00.c,1941.00.00.c,1465,, +1941.00.00.b,1941,1941,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",Standing,I.S.A.C. Ambulance driver,M,,FATAL,Y,,,"Lt.Col. R.S. Hunt, p.80",1941.00.00.b-IASCambulance-driver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.b-IASCambulance-driver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.b-IASCambulance-driver.pdf,1941.00.00.b,1941.00.00.b,1464,, +1941.00.00.a,1941,1941,Unprovoked,PAPUA NEW GUINEA,,"Gaire Village, between Rigo & Port Moresby",,Renagi Loi,M,14,"Foot severely bitten, surgically amputated",N,,,"V.M. Coppleson (1962), p.248",1941.00.00.a-RenagiLoi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.a-RenagiLoi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.a-RenagiLoi.pdf,1941.00.00.a,1941.00.00.a,1463,, +1940.12.28,28-Dec-40,1940,Unprovoked,AUSTRALIA,New South Wales,"Stockton Beach, Newcastle",Standing on sandbank,Clarence Hammond,M,23,"FATAL, injuries to lower back ",Y,09h00,,"J. Green, p.33; V.M. Coppleson (1958), p.235; G.P. Whitley (1951), p. 192",1940.12.28-Hammond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.28-Hammond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.28-Hammond.pdf,1940.12.28,1940.12.28,1462,, +1940.12.20,20-Dec-40,1940,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Inyoni Rocks, South Coast",Swimming,Desmond Chandley,M,17,"FATAL, multiple injuries to legs & buttocks ",Y,10h00,,"R. Kahn, M. Levine, GSAF",1940.12.20-Chandley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.20-Chandley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.20-Chandley.pdf,1940.12.20,1940.12.20,1461,, +1940.12.19.R,Reported 19-Dec-1940,1940,Unprovoked,AUSTRALIA,Queensland,Double Island Beach,Fishing,Jack Ryan,M,,Minor injury to leg,N,,,"Soda Springs Sun, 12/19/1940",1940.12.19.R-JackRyan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.19.R-JackRyan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.19.R-JackRyan.pdf,1940.12.19.R,1940.12.19.R,1460,, +1940.12.10,10-Dec-40,1940,Provoked,AUSTRALIA,Northern Territory,Darwin,Collecting fish in military trap when bitten by captured shark that had been shot by soldiers with Garten,Private. Michael Garten,M,,Leg severely lacerated PROVOKED INCIDENT,N,,,"V.M. Coppleson; G.P. Whitley (1951), p. 192",1940.12.10-Garten.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.10-Garten.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.10-Garten.pdf,1940.12.10,1940.12.10,1459,, +1940.09.00,Sep-40,1940,Unprovoked,PANAMA,Panama Bay (Pacific Ocean),Otoque Island,Bathing,Roberto Menacho,M,18,FATAL,Y,,5.5 m [18'] shark,"V.M. Coppleson (1958), p.263",1940.09.00-Menacho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.09.00-Menacho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.09.00-Menacho.pdf,1940.09.00,1940.09.00,1458,, +1940.07.13.b,13-Jul-40,1940,Unprovoked,USA,South Carolina,"Folly Beach, Charleston County",Standing,William Tanner,M,,Ankle bitten,N,,,"V.M. Coppleson (1958), p.253",1940.07.13.b-Tanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.07.13.b-Tanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.07.13.b-Tanner.pdf,1940.07.13.b,1940.07.13.b,1457,, +1940.07.13.a,13-Jul-40,1940,Unprovoked,USA,South Carolina,"Folly Beach, Charleston County",Standing ,Harvey H. Haley (rescuer),M,,Struck by shark immediately before it bit Tanner (see below),N,,,"V.M. Coppleson (1958), p.253 ",1940.07.13.a-Haley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.07.13.a-Haley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.07.13.a-Haley.pdf,1940.07.13.a,1940.07.13.a,1456,, +1940.06.30,30-Jun-40,1940,Unprovoked,USA,North Carolina,"Holden Beach, Brunswick County",Fishing,William T. Dye,M,,Thigh lacerated,N,,3 m [10'] shark,"C. Creswell, GSAF; F. Schwartz, p.23",1940.06.30-Dye.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.06.30-Dye.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.06.30-Dye.pdf,1940.06.30,1940.06.30,1455,, +1940.03.31,31-Mar-40,1940,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Danger Pool, Winkelspruit, South Coast",Treading water,Joe Lees,M,25,"FATAL, right thigh & calf bitten ",Y,11h00,"White shark, species identity confirmed by tooth pattern","G. Cawston; H. Robson, M. Levine, GSAF",1940.03.31-Lees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.03.31-Lees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.03.31-Lees.pdf,1940.03.31,1940.03.31,1454,, +1940.03.20,20-Mar-40,1940,Unprovoked,AUSTRALIA,New South Wales,Gerringong,Free diving for lobster,Smiles Walker,M,,Minor injuries to foot,N,,Wobbegong shark,"Sydney Morning Herald, 3/21/1940; V.M. Coppleson (1962), p.251",1940.03.20-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.03.20-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.03.20-Walker.pdf,1940.03.20,1940.03.20,1453,, +1940.02.22,22-Feb-40,1940,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Inyoni Rocks, South Coast",Swimming,Leslie Plummer Lund,M,17,"FATAL, left thigh & knee bitten ",Y,16h30,"White shark, 160-kg [353-lb], identity confirmed by tooth pattern","H. Robson, M. Levine, GSAF ",1940.02.22 - Lund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.02.22 - Lund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.02.22 - Lund.pdf,1940.02.22,1940.02.22,1452,, +1940.02.20,20-Feb-40,1940,Boating,AUSTRALIA,New South Wales,Sydney Harbour,Canoeing,"""a youth""",,,"No injury. Shark grazed canoe, snapped at a piece of mast being trailed in the water & followed it into 2' of water",N,15h30,,"G.P. Whitley, p.265",1940.02.20-canoe-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.02.20-canoe-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.02.20-canoe-Sydney.pdf,1940.02.20,1940.02.20,1451,, +1940.02.04,04-Feb-40,1940,Unprovoked,AUSTRALIA,New South Wales,"North Brighton, Botany Bay",Wading,John William Eke,M,55,"FATAL, injuries to both arms ",Y,14h00,,"V.M. Coppleson (1958), p.69; A. Sharpe, p.66",1940.02.04-Eke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.02.04-Eke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.02.04-Eke.pdf,1940.02.04,1940.02.04,1450,, +1940.01.29,29-Jan-40,1940,Unprovoked,AUSTRALIA,Queensland,Brisbane River,Dived into the water,male,M,17,Shoulder nipped,N,,"""a small shark""","Morning Bulletin, 1/30/1929",1940.01.29-BrisbaneRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.29-BrisbaneRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.29-BrisbaneRiver.pdf,1940.01.29,1940.01.29,1449,, +1940.01.23,23-Jan-40,1940,Unprovoked,AUSTRALIA,New South Wales,"North Brighton, Botany Bay",Swimming,Maxwell Farrin,M,13,"FATAL, left leg severed ",Y,10h40,3 m [10'] shark,"V.M. Coppleson (1958), p.69; A. Sharpe, pp.65-66",1940.01.23-Farrin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.23-Farrin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.23-Farrin.pdf,1940.01.23,1940.01.23,1448,, +1940.01.15,15-Jan-40,1940,Unprovoked,AUSTRALIA,Queensland,"Surfers Paradise, near Southport",Swimming,Douglas Bright,M,22,Chest lacerated,N,Afternoon,,"V.M. Coppleson (1958), pp. 93 & 238",1940.01.15-Bright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.15-Bright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.15-Bright.pdf,1940.01.15,1940.01.15,1447,, +1940.01.07,07-Jan-40,1940,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Warner Beach, South Coast",Swimming ,Frederick Aubrey Hooper,M,18,"FATAL, leg & thigh bitten ",Y,16h00,2.4 m [8'] shark,"R. Guy, T. Jucker & M. Levine, GSAF ",1940.01.07-Hooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.07-Hooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.07-Hooper.pdf,1940.01.07,1940.01.07,1446,, +1940.01.01,01-Jan-40,1940,Unprovoked,AUSTRALIA,Queensland,"Malagil, Barrier Reef",Diving for trochus,native diver,M,,Thigh lacerated,N,,,"J. Green, p.33; V.M. Coppleson (1958), p.245",1940.01.01-native-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.01-native-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.01-native-diver.pdf,1940.01.01,1940.01.01,1445,, +1940.00.00.f,Ca. 1940,1940,Boating,SLOVENIA,Adriatic Sea,Koper,Boating,,,,"No inury to occupants, shark struck boat",N,, White shark,A. De Maddalena; M. Zuffa (pers. Comm.),1940.00.00.f-boat-Slovenia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.f-boat-Slovenia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.f-boat-Slovenia.pdf,1940.00.00.f,1940.00.00.f,1444,, +1940.00.00.e,1940,1940,Unprovoked,NEW GUINEA,Bwagaoia,"Bagalina, North coast Misima Island",,small girl,F,,FATAL,Y,,,"A. Bleakley; A. M. Rapson, p.148",1940.00.00.e-small-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.e-small-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.e-small-girl.pdf,1940.00.00.e,1940.00.00.e,1443,, +1940.00.00.d,1940,1940,Unprovoked,PAPUA NEW GUINEA,Western Papuan Gulf,Kerema ,male,a native,,,Hand bitten,N,,,"Papuan Villager, 11/1940",1940.00.00.d-Kerema.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.d-Kerema.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.d-Kerema.pdf,1940.00.00.d,1940.00.00.d,1442,, +1940.00.00.c,1940,1940,Invalid,SOUTH AFRICA,Eastern Cape Province,Kidd's Beach,Swimming,,,,No details,UNKNOWN,,,"D. Davies, p. 102",1940.00.00.c-KiddsBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.c-KiddsBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.c-KiddsBeach.pdf,1940.00.00.c,1940.00.00.c,1441,, +1940.00.00.b,1940,1940,Invalid,SOUTH AFRICA,KwaZulu-Natal,Winkelspruit,,Indian female,F,,FATAL,Y,,,"V.M. Coppleson (1958), p.247; SAF Case #161. Unable to authenticate this incident in local records or press reports.",1940.00.00.b-IndianFemale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.b-IndianFemale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.b-IndianFemale.pdf,1940.00.00.b,1940.00.00.b,1440,, +1940.00.00.a,1940,1940,Invalid,SOUTH AFRICA,Eastern Cape Province,"Kowie River Mouth, Port Alfred",Standing in water with child in her arms,female,F,,Leg bitten,N,,,"E. Skaife, V. M. Coppleson (1958), p.247; M. Levine, GSAF",1940.00.00.a-Woman-Kowie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.a-Woman-Kowie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.a-Woman-Kowie.pdf,1940.00.00.a,1940.00.00.a,1439,, +1939.12.28,28-Dec-39,1939,Invalid,AUSTRALIA,New South Wales,"Cabramatta Creek, George�s River ",Swimming,Percy Carroll,M,40,Abrasion above knee ,N,,6' shark,"V.M. Coppleson (1958), pp.44 & 234; SAF Case #39",1939.12.28-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.12.28-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.12.28-Carroll.pdf,1939.12.28,1939.12.28,1438,, +1939.12.14,14-Dec-39,1939,Unprovoked,AUSTRALIA,Queensland,"Rubbish Dump Creek, Mackay",Swimming ,Frank Gurran,M,20,"FATAL, left foot & right leg bitten, later surgically amputated ",Y,12h15,2.6 m [8.5'] shark landed 2 hours later,"Sydney Morning Herald, 12/15/1939; V.M. Coppleson (1958), p.238 ",1939.12.14-Gurran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.12.14-Gurran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.12.14-Gurran.pdf,1939.12.14,1939.12.14,1437,, +1939.11.23,23-Nov-39,1939,Boating,AUSTRALIA,New South Wales,Wollongong,,boat of Thomas Baker,,,No injury,N,,"Blue pointer, 16'","Northern Miner, 11/25/1939",1939.11.23-Wollongong-3.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.23-Wollongong-3.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.23-Wollongong-3.pdf,1939.11.23,1939.11.23,1436,, +1939.11.11,11-Nov-39,1939,Provoked,AUSTRALIA,New South Wales,Maroubra,,boat,,,Boat bitten by gaffed shark PROVOKED INCIDENT,N,,whaler shark,"G.P. Whitley, p.264",1939.11.11-boat-Maroubra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.11-boat-Maroubra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.11-boat-Maroubra.pdf,1939.11.11,1939.11.11,1435,, +1939.11.09,09-Nov-39,1939,Boating,AUSTRALIA,New South Wales,Wollongong,,another boat,,,No details,UNKNOWN,,,"G.P. Whitley, p.264",1939.11.09-boat-2-Wollongong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.09-boat-2-Wollongong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.09-boat-2-Wollongong.pdf,1939.11.09,1939.11.09,1434,, +1939.11.06,06-Nov-39,1939,Boating,AUSTRALIA,New South Wales,Wollongong,,boat,,,No details,UNKNOWN,,,"G.P. Whitley, p.264",1939.11.06-boat-1-Wollongong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.06-boat-1-Wollongong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.06-boat-1-Wollongong.pdf,1939.11.06,1939.11.06,1433,, +1939.11.02.R,Reported 02-Nov-1939,1939,Unprovoked,SAMOA,,,Fishing,a Samoan boy,M,,FATAL,Y,,,"Canberra Times, 11/2/1939",1939.11.02.R-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.02.R-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.02.R-Samoa.pdf,1939.11.02.R,1939.11.02.R,1432,, +1939.10.25.R,Reported 25-Oct-1939,1939,Unprovoked,AUSTRALIA,Queensland,Near Restoration Rock off Portland Roads ,"Free diving for trochus shell, swimming to dinghy",Small Cobbe,M,27,"Both thighs were lacerated, recovered at Thursday Island hospital",N,,"Tiger shark, 4.3 m [14'], 3 tooth fragments retrieved from his wounds","G.P. Whitley, p. 20; V.M. Coppleson (1958), p. 99",1939.10.25.R-Cobbe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.10.25.R-Cobbe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.10.25.R-Cobbe.pdf,1939.10.25.R,1939.10.25.R,1431,, +1939.10.04,04-Oct-39,1939,Unprovoked,USA,Hawaii,"Kane'ohe Bay, Mokapu, O'ahu",Spearfishing & had just speared a ulua,James Akina,M,,Hand bitten,N,,1.5 m [5'] shark,"G.H. Balazs & A.K.H. Kam; J. Borg, p.71; V.M. Coppleson (1962), p.253",1939.10.04-Akina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.10.04-Akina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.10.04-Akina.pdf,1939.10.04,1939.10.04,1430,, +1939.09.27.R,Reported 27-Sep-1939,1939,Unprovoked,AUSTRALIA,Torres Strait ,Near Mabuiag Island,Pearl diving,Sammy Mira,M,,"Leg severely bitten, surgically amputated",N,,Tiger shark,"Cairns Post, 9/27/1939",1939.09.27-Mira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.09.27-Mira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.09.27-Mira.pdf,1939.09.27.R,1939.09.27.R,1429,, +1939.08.01,01-Aug-39,1939,Provoked,USA,California,"Off San Pedro, Los Angeles County",Fishing,John Ray,M,33,Harpooned shark bit his arm PROVOKED INCIDENT,N,,,"L.A. Times, 8/11/1939",1939.08.01-Ray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.08.01-Ray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.08.01-Ray.pdf,1939.08.01,1939.08.01,1428,, +1939.07.18,18-Jul-39,1939,Sea Disaster,PACIFIC OCEAN,,,Japanese freighter Bokuyo Maru burned & sank,child,,3,Thought to have been taken by a shark,Y,,,"Syracuse Herald, 7/30/1939",1939.07.18-Child-B-Maru.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.07.18-Child-B-Maru.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.07.18-Child-B-Maru.pdf,1939.07.18,1939.07.18,1427,, +1939.07.16,16-Jul-39,1939,Provoked,BAHAMAS,Andros Islands,Blue Hole,"Dress diving, filming shark & pulling it through the water for a motion picture scene",E.F. MacEwan,M,38,Minor injury to shoulder & back PROVOKED INCIDENT,N,12h00,"Nurse shark, 2.1 m [7']","Evening Sun (Baltimore), 7/31/1939; E.R.F. Johnson",1939.07.16-MacEwan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.07.16-MacEwan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.07.16-MacEwan.pdf,1939.07.16,1939.07.16,1426,, +1939.07.14,14-Jul-39,1939,Provoked,USA,Texas,"West Bay, 19 miles from Galveston",Seine netting,John Bolling,M,,Leg bitten by snared shark PROVOKED INCIDENT,N,Morning,18' shark,"Galveston Daily News, 7/20/1939, p.4",1939.07.14-Bolling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.07.14-Bolling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.07.14-Bolling.pdf,1939.07.14,1939.07.14,1425,, +1939.05.03,03-May-39,1939,Unprovoked,USA,Virginia,"At sea, several hundred miles south east of Cape Henry, Virginia",Washed off freighter Huncliff by a freak wave,John Heagan,M,,"FATAL, attacked by shark, body not recovered ",Y,,,"L.A. Times, 5/7/1939; NY Times, 5/8/1939, p.18, col.1; V.M. Coppleson , p.253",1939.05.03-Heagan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.05.03-Heagan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.05.03-Heagan.pdf,1939.05.03,1939.05.03,1424,, +1939.04.12.R,12-Apr-39,1939,Unprovoked,PAPUA NEW GUINEA,Morobe Province,Bulolol,Dived for a coin,child,M,9,FATAL,Y,,,"Cairns Post, 4/12/1939",1939.04.12.R-Child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.04.12.R-Child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.04.12.R-Child.pdf,1939.04.12.R,1939.04.12.R,1423,, +1939.03.24,24-Mar-39,1939,Unprovoked,PAPUA NEW GUINEA,Central Province,Port Moresby,Dived for a coin,Raho-Heni,M,,"FATAL, leg severed just below hip ",Y,,"""a large shark""","The Papuan Villager, March 1939; G.P. Whitley, p.21",1939.03.24-Raho-Heni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.03.24-Raho-Heni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.03.24-Raho-Heni.pdf,1939.03.24,1939.03.24,1422,, +1939.02.26,26-Feb-39,1939,Provoked,NEW ZEALAND,North Island,Matakana River Mouth,Fishing,T. S. Ramsbottom,M,,Lacerations to left hand from hooked shark PROVOKED INCIDENT,N,,7' shark,"Auckland Star, 2/28/1939",1939.02.26-Ramsbottom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.02.26-Ramsbottom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.02.26-Ramsbottom.pdf,1939.02.26,1939.02.26,1421,, +1939.01.12,12-Jan-39,1939,Unprovoked,AUSTRALIA,New South Wales,Clarence River,Scooping prawns,Earl Yager & Riley McLachlan,M,Both 11,No injury,N,,7' shark,"G.P. Whitley, p.264",1939.01.12.R-ClarenceRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.01.12.R-ClarenceRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.01.12.R-ClarenceRiver.pdf,1939.01.12,1939.01.12,1420,, +1939.00.00.e,Woirld War II,1939,Sea Disaster,SRI LANKA,,,She was on a ship that was torpedoes & was in the water awaiting rescue,A W.R.E.N.,F,,Leg severely bitten,N,,,"V.M. Coppleson (1962), p.258",1939.00.00.e-WREN.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.e-WREN.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.e-WREN.pdf,1939.00.00.e,1939.00.00.e,1419,, +1939.00.00.d,Ca. 1939,1939,Boating,BAHAMAS,Andros Islands,Middle Bight,Fishing,"12' skiff, occupant: E.R.F. Johnson",,,"No injury to occupant, shark rammed bow of boat",N,,Tiger shark,E.R.F. Johnson,1939.00.00.d-skiff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.d-skiff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.d-skiff.pdf,1939.00.00.d,1939.00.00.d,1418,, +1939.00.00.c,1939,1939,Unprovoked,VENEZUELA,Carabobo,"El Falito, near Puerto Cabello",Bathing,male,M,,FATAL.,Y,,,H.E. Iverson,1939.00.00.c-Haberdasher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.c-Haberdasher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.c-Haberdasher.pdf,1939.00.00.c,1939.00.00.c,1417,, +1939.00.00.b,1939,1939,Unprovoked,CURACAO,Ascension Bay,,Diving,Hans Hass,M,,"No injury, left hip bumped by shark",N,,Tiger shark,"H. Hass in Diving To Adventure, p.169",1939.00.00.b-Hass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.b-Hass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.b-Hass.pdf,1939.00.00.b,1939.00.00.b,1416,, +1939.00.00.a,1939,1939,Unprovoked,PAPUA NEW GUINEA,"Abau Sub District, Central Province",Aroma Passage,Swimming to anchored boat,a male from Garvakala,M,,"Fatal, lower abdomen bitten",Y,,,"A. Bleakley; A. M. Rapson, p.148",1939.00.00.a-Garvakala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.a-Garvakala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.a-Garvakala.pdf,1939.00.00.a,1939.00.00.a,1415,, +1938.12.27,27-Dec-38,1938,Unprovoked,AUSTRALIA,New South Wales,"North Beach, Belligen River",Swimming,Daniel Graham,M,19,"FATAL, thought to have been taken by a shark ",Y,,,"G.P. Whitley, p.264",1938.12.27-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.12.27-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.12.27-Graham.pdf,1938.12.27,1938.12.27,1414,, +1938.10.05,05-Oct-38,1938,Provoked,AUSTRALIA,Queensland,Between Wynnum & St. Helena Island,Fishing,Jack Lopez,M,18,Laceration to left foot & ankle by netted shark PROVOKED INCIDENT,N,Afternoon,"Tiger shark, 6'","Cairns Post, 10/6/1938",1938.10.05-Lopez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.10.05-Lopez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.10.05-Lopez.pdf,1938.10.05,1938.10.05,1413,, +1938.08.29,29-Aug-38,1938,Unprovoked,CHINA,North China,"Outer harbor, Hong Kong",Swimming alongside warship Tsingt-ao,"Ulrick Baker or William M. Baker, a sailor from H.M.S. Folkestone",M,,"FATAL, leg severed ",Y,,,"New York Times (William Baker), 8/30/1938; [SAF Case #934]; V.M. Coppleson (1958), p.257; A. MacCormick, p.134",1938.08.29-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.08.29-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.08.29-Baker.pdf,1938.08.29,1938.08.29,1412,, +1938.08.18,18-Aug-38,1938,Provoked,USA,California,"Near Encino, Los Angeles County",Fishing,Warren William,M,,Lacerations to hand by hooked shark PROVOKED INCIDENT,N,,,"Washington Post. 8/19/1938, p.24",1938.08.18-WarrenWilliams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.08.18-WarrenWilliams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.08.18-WarrenWilliams.pdf,1938.08.18,1938.08.18,1411,, +1938.07.18,18-Jul-38,1938,Unprovoked,USA,South Carolina,Charleston,Swimming,Maynard Tanner,M,,Foot & ankle lacerated,N,,,"Kingsport Times, 7/18/1938",1938.07.18-MaynardTanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.18-MaynardTanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.18-MaynardTanner.pdf,1938.07.18,1938.07.18,1410,, +1938.07.17.R,Reported 17-Jul-1938,1938,Provoked,TURKEY,,,Fishing,Ahmed,M,,Injured by harpooned shark PROVOKED INCIDENT,N,,,"C. Moore, GSAF",1938.07.17.R-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.17.R-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.17.R-Turkey.pdf,1938.07.17.R,1938.07.17.R,1409,, +1938.07.17,17-Jul-38,1938,Provoked,USA,California,"Dana Point, Orange County","Fishing, removing gaff from shark's mouth","Harry Griffet, passenger on fishing boat Flyer",M,27,Leg bitten by gaffed shark PROVOKED INCIDENT,N,,,"L.A. Times, 7/18/1938 ",1938.07.17-Griffet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.17-Griffet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.17-Griffet.pdf,1938.07.17,1938.07.17,1408,, +1938.07.12,12-Jul-38,1938,Unprovoked,AUSTRALIA,Torres Strait,Off Bathurst Island,"Hardhat diving from Japanese pearling lugger, Reiyo Maru",Okada,M,25,"FATAL, dragged out of diving helmet ",Y,,,"G.P. Whitley, p.264; V.M. Coppleson (1958), p.244; Sydney Morning Herald, 7/12/1938",1938.07.12-Okada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.12-Okada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.12-Okada.pdf,1938.07.12,1938.07.12,1407,, +1938.06.17,17-Jun-38,1938,Unprovoked,NICARAGUA,Lower San Juan River,,"The schooner Elizabeth, bound from Bluefields, Nicaragua to the river port of San Carlos foundered",Elena Hodgson & Isaac Ollis,,,"FATAL x 2, all other passengers & crew reached shore after a long swim",Y,,Thought to involve bull sharks,"NY Times; L. Schultz & M. Malin, p.558",1938.06.17-Hodgson_Ollis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.06.17-Hodgson_Ollis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.06.17-Hodgson_Ollis.pdf,1938.06.17,1938.06.17,1406,, +1938.06.08,08-Jun-38,1938,Unprovoked,AUSTRALIA,New South Wales,Manly,Hardhat diving,Charles Edwards,M,,"No injury, the shark knocked him off his feet",N,,6' shark,"The Canberra Times, 6/10/1938",1938.06.08-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.06.08-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.06.08-Edwards.pdf,1938.06.08,1938.06.08,1405,, +1938.05.26,26-May-38,1938,Unprovoked,COSTA RICA,Nicoya Peninsula,,Fishing,Laureano Villareal,M,,"FATAL, pulled overboard by tuna, & bitten by shark ",Y,,,"V.M. Coppleson (1958), p.259 ",1938.05.26.R-Villareal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.26.R-Villareal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.26.R-Villareal.pdf,1938.05.26,1938.05.26,1404,, +1938.05.15,15-May-38,1938,Unprovoked,IRAQ,Basrah City,"Ashar Canal, where people wash clothes & kitchen pans","Swimming, naked",male,M,9 or 10,"Arm severed, but survived. Note: Some weeks later he was swimming at the same spot when a shark severed his right foot.",N,Afternoon,Bull shark,B.W. Coad & L.A.J. Al-Hassan,1938.05.15-Basrah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.15-Basrah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.15-Basrah.pdf,1938.05.15,1938.05.15,1403,, +1938.05.02.R,Reported 02-May-1938,1938,Unprovoked,INDIA,West Bengal,Hooghley River near Budge-Budge,Bathing,,,,"2 survived, 1 FATAL",Y,,,"The Times (London), 5/2/1938, p.15",1938.05.02.R-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.02.R-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.02.R-India.pdf,1938.05.02.R,1938.05.02.R,1402,, +1938.03.21.R,Reported 21-Mar-1938,1938,Unprovoked,FIJI,Viti Levu,Singatoka River,Wading,male,M,,unknown,N,,,"Time Magazine, 3/21/1938",1938.03.21.R-FijianMethodist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.03.21.R-FijianMethodist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.03.21.R-FijianMethodist.pdf,1938.03.21.R,1938.03.21.R,1401,, +1938.03.08,08-Mar-38,1938,Unprovoked,AUSTRALIA,Northern Territory,Liverpool River,Canoe capsized by shark,aboriginal male,M,,"Leg severed, but survived",N,,,"V.M. Coppleson (1958) (in text); Sydney Morning Herald, 3/16/1938",1938.03.08-Liverpool-River.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.03.08-Liverpool-River.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.03.08-Liverpool-River.pdf,1938.03.08,1938.03.08,1400,, +1938.01.21,21-Jan-38,1938,Provoked,AUSTRALIA,New South Wales,Tweed Heads,Fishing,Robert Corowa,M,,Thumb bitten by landed shark PROVOKED INCIDENT,N,," Tiger shark, 3'","Courier-Mail, 1/22/1938; Sydney Morning Herald 1/26/1938; Whitley, p.264",1938.01.21-Corowa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.21-Corowa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.21-Corowa.pdf,1938.01.21,1938.01.21,1399,, +1938.01.18,18-Jan-38,1938,Provoked,SOUTH AFRICA,KwaZulu-Natal,"Vetch�s Pier, Durban","Watching seine netters with friends, one of whom picked up a netted shark",George Parkin,M,13,Leg bitten PROVOKED INCIDENT,N,,,"M. Levine, GSAF",1938.01.18-Parkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.18-Parkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.18-Parkin.pdf,1938.01.18,1938.01.18,1398,, +1938.01.14,14-Jan-38,1938,Unprovoked,AUSTRALIA,New South Wales,"Lady Martin�s Beach, Sydney Harbor",Diving off jetty,Alan Murray,M,24,Superficial lacerations on feet & toes,N,Afternoon,Questionable incident,"The Canberra Times, 1/15/1938",1938.01.14-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.14-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.14-Murray.pdf,1938.01.14,1938.01.14,1397,, +1938.01.02,02-Jan-38,1938,Unprovoked,AUSTRALIA,New South Wales,Cronulla,Surf skiing,Ernest. S. Baker,M,,"No injury, ski bumped & he was thrown in the water. Ski had indentations",N,,,"Sydney Morning Herald, 1/3/1938; J. Green, p.33; V.M. Coppleson (1958), p.42 NOTE: Coppleson gives date as January 1937",1938.01.02-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.02-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.02-Baker.pdf,1938.01.02,1938.01.02,1396,, +1938.00.00.e.R,Reported 1938,1938,Unprovoked,EGYPT,,Mersa Matruh,Sponge diving,males,M,,FATAL,Y,,,"C. Moore, GSAF",1938.00.00.e.R-Egypt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.e.R-Egypt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.e.R-Egypt.pdf,1938.00.00.e.R,1938.00.00.e.R,1395,, +1938.00.00.d,1938,1938,Unprovoked,TRINIDAD & TOBAGO,Trinidad,"Manzanilla Bay, St. Andrew County",Body surfing,Donald Fraser Huggins,M,50,Left hand and arm bitten,N,,"""grey-colored shark""","E. Pace, FSAF",1938.00.00.d-Huggins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.d-Huggins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.d-Huggins.pdf,1938.00.00.d,1938.00.00.d,1394,, +1938.00.00.c,1938,1938,Provoked,USA,North Carolina,On one of the sounds near Wilmington,Fishing,"rowboat, occupant: Joe Whitted, Christopher Quevedo & 2 Willard Brothers",M,,"No injury, boat towed by harpooned shark, PROVOKED INCIDENT",N,,,"C. Creswell, GSAF; J. Hair, p.27",1938.00.00.c-Willards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.c-Willards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.c-Willards.pdf,1938.00.00.c,1938.00.00.c,1393,, +1938.00.00.b,1938,1938,Unprovoked,AUSTRALIA,Torres Strait,,Diving,Sammy,M,17,Leg severed above knee,N,,,"V.M. Coppleson (1958), p.245",1938.00.00.b-Sammy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.b-Sammy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.b-Sammy.pdf,1938.00.00.b,1938.00.00.b,1392,, +1938.00.00.a,1938,1938,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Bilanhlolo River Mouth, Ramsgate",Swimming,black male,M,,"""Mauled""",N,,,H. Greenwood,1938.00.00.a-blackmale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.a-blackmale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.a-blackmale.pdf,1938.00.00.a,1938.00.00.a,1391,, +1937.11.13,13-Nov-37,1937,Sea Disaster,USA,North Carolina,Off Cape Hatteraa,"Tzenny Chandris, a Greek freighter laden with scrap iron, foundered in heavy weather",3 crewmen,M,,FATAL ,Y,,,"Stevens Point Journal, 11/15/1937; TIME, 11/22/1937; Life Magazine, 11/29/1937",1937.11.13-Tzenny-Chandris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.13-Tzenny-Chandris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.13-Tzenny-Chandris.pdf,1937.11.13,1937.11.13,1390,, +1937.11.11,11-Nov-37,1937,Unprovoked,AUSTRALIA,Torres Strait ,Ota Reef,Diving for trochus,Nelan Kris,M,17,FATAL,Y,,12' shark,"J. Green, p.33; V.M. Coppleson (1958), p.244",1937.11.11-Kris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.11-Kris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.11-Kris.pdf,1937.11.11,1937.11.11,1389,, +1937.11.06.R,Reported 06-Nov-1937,1937,Sea Disaster,SOLOMON ISLANDS,,,"Two canoes with 14 aboard blown to sea in a storm. While adrift for 3 week, one person fell overboard and was killed by a shark",,M,,FATAL,Y,,,"The Argus, 11/6/1937",1937.11.06.R-Solomon-Islands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.06.R-Solomon-Islands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.06.R-Solomon-Islands.pdf,1937.11.06.R,1937.11.06.R,1388,, +1937.10.27.b,27-Oct-37,1937,Unprovoked,AUSTRALIA,Queensland ,"Kirra Beach, Coolangatta",Swimming ,Jack Brinkley,M,25,FATAL,Y,17h30,Tiger shark,"J. Green; V.M. Coppleson, pp.51, 81-84 & 234; A. Sharpe, pp.94-9 6; H. Edwards, pp.114-115",1937.10.27.b-Brinkley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.27.b-Brinkley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.27.b-Brinkley.pdf,1937.10.27.b,1937.10.27.b,1387,, +1937.10.27.a,27-Oct-37,1937,Unprovoked,AUSTRALIA,Queensland,"Kirra Beach, Coolangatta",Swimming ,Norman Girvan,M,18,FATAL,Y,17h30,"Tiger shark, 3.6 m [11'9""], 850-kg [1874-lb] female, contained Girvan's remains ","V.M. Coppleson, pp.51, 81-84 & 234; A. Sharpe, pp.94-96; H. Edwards, pp.114-115 ",1937.10.27.a-Girvanpub.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.27.a-Girvanpub.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.27.a-Girvanpub.pdf,1937.10.27.a,1937.10.27.a,1386,, +1937.10.24.c,24-Oct-37,1937,Unprovoked,AUSTRALIA,New South Wales,Byron Bay ,Swimming near jetty,Thomas McDonald,M,16,Tooth imprints on torso,N,,2.4 m [8'] shark,"The Age, 10/25/1937; V.M. Coppleson (1958), p.234",1937.10.24.b-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.24.b-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.24.b-McDonald.pdf,1937.10.24.c,1937.10.24.c,1385,, +1937.10.24.a,24-Oct-37,1937,Unprovoked,AUSTRALIA,New South Wales,Byron Bay ,Surf skiing,Glen Denning,M,,"No injury, repulsed shark",N,,2.6 m [8.5'] shark,"The Age, 10/25/1937; V.M. Coppleson (1958), p.234",1937.10.24.a-Denning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.24.a-Denning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.24.a-Denning.pdf,1937.10.24.a,1937.10.24.a,1384,, +1937.09.26.R,Reported 26-Sep-t937,1937,Provoked,CROATIA, Split-Dalmatia County,Bisk,Fishing,2 males,M,,Injured by shark they were trying to catch PROVOKED INCIDENT,N,,,"C. Moore, GSAF",1937.09.16.R-Omis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.16.R-Omis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.16.R-Omis.pdf,1937.09.26.R,1937.09.26.R,1383,, +1937.09.12,12-Sep-37,1937,Boating,SCOTLAND,Argyllshire,Arran,Pleasure boating,Clyde steamer Glen Sannox,,,"No injury to occupants, two 5-foot observation windows shattered",N,,Basking shark,Daily Mail (undated clipping); A Buttigieg ,1937.09.12-GlenSannox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.12-GlenSannox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.12-GlenSannox.pdf,1937.09.12,1937.09.12,1382,, +1937.09.11,11-Sep-37,1937,Boating,SCOTLAND,Arran,Fallen Rocks,Fishing,"boat: Lady Charlotte, occupants: C. McSporran & his crew",,,"No injury to occupants, propeller shaft damaged",N,,Basking shark,"Times (London), 9/13/1937; C. Creswell, GSAF",1937.09.11-LadyCharlotte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.11-LadyCharlotte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.11-LadyCharlotte.pdf,1937.09.11,1937.09.11,1381,, +1937.09.01,01-Sep-37,1937,Unprovoked,SCOTLAND,Argyll,"Carradale Bay, Kintyre Peninsula",Rowing,"Captain Angus Brown, his son & brother",M,,3 people drowned when the boat was capsized by the shark,N,,Basking shark,"Times (London), 9/2/1937; Fairfax, pp. 66-67",1937.09.01-Scotland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.01-Scotland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.01-Scotland.pdf,1937.09.01,1937.09.01,1380,, +1937.08.31,31-Aug-37,1937,Unprovoked,AUSTRALIA,Torres Strait,"Mabuiag Island, between New Guinea & Australia","Diving from the lugger San, operated by the Protector of the Aborigines",Iona Asai,M,38,"Head, neck & shoulder bitten (In 1918, he was also bitten by a shark off Cairns)",N,11h00,"Tiger shark, 9' to 10' ","The Maitland Daily Mercury, 8/31/1937",1937.08.31-IonaAsai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.08.31-IonaAsai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.08.31-IonaAsai.pdf,1937.08.31,1937.08.31,1379,, +1937.08.16,16-Aug-37,1937,Invalid,TURKEY,,Istanbul,Swimming,male,M,,"No injury, no attack",N,,,C. Moore,1937.08.16-Istanbul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.08.16-Istanbul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.08.16-Istanbul.pdf,1937.08.16,1937.08.16,1378,, +1937.08.02,02-Aug-37,1937,Unprovoked,PANAMA,Colon Province,Limon Bay,Swimming,Jorge Fernandez,M,21,FATAL,Y,,,"The Gleaner, 8/12/1937",1937.08.02-Fernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.08.02-Fernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.08.02-Fernandez.pdf,1937.08.02,1937.08.02,1377,, +1937.07.16.R,Reported 16-Jul-1937,1937,Unprovoked,AUSTRALIA,Northern Territory,Elcho Island,Pearl diving,A Japanese hard hat diver,M,,FATAL,Y,,,"Mansfield News-Journal, 7/16/1937, p.11",1937.07.16.R-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.07.16.R-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.07.16.R-JapaneseDiver.pdf,1937.07.16.R,1937.07.16.R,1376,, +1937.07.06,07-Jul-37,1937,Invalid,ITALY,Liguria,Borgeo Verezzi,,row boat: 2 occupants,,,No injury,N,,,C. Moore,1937.07.06-Italy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.07.06-Italy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.07.06-Italy.pdf,1937.07.06,1937.07.06,1375,, +1937.06.28.R,Reported 28-Jun-1937,1937,Unprovoked,GREECE,,Salonika?,,A. Arvanitakis ,,,FATAL,Y,,,C. Moore,1937.06.28.R-Salonika.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.28.R-Salonika.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.28.R-Salonika.pdf,1937.06.28.R,1937.06.28.R,1374,, +1937.06.15.b,15-Jun-37,1937,Provoked,AUSTRALIA,New South Wales,"Wallamba River, near entrance to Wallis Lake","Fishing from launch, fell into net with shark",David Emmerton,M,,Bitten by netted shark PROVOKED INCIDENT,N,,"Whaler shark, 4 m [13'] ","Sydney Morning Herald, 6/19/1937; V.M. Coppleson (1958) (in text); SAF Cases #549 & 550",1937.06.15.b-Emmerton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.15.b-Emmerton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.15.b-Emmerton.pdf,1937.06.15.b,1937.06.15.b,1373,, +1937.06.15, 15-Jun-1937,1937,Unprovoked,USA,Texas,Galveston,Swimming,"Hal A. Thompson, Jr.",M,14,FATAL,Y,Night,,"Amarillo Globe, 6/16/1937 ",1937.06.15.a-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.15.a-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.15.a-Thompson.pdf,1937.06.15,1937.06.15,1372,, +1937.05.30,30-May-37,1937,Provoked,USA,Texas,Galveston,Fishing,William Siskalo,M,,Leg nipped by hooked shark PROVOKED INCIDENT,N,,4' shark,"Galveston Daily News, 6/1/1937",1937.05.30-Siskalo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.05.30-Siskalo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.05.30-Siskalo.pdf,1937.05.30,1937.05.30,1371,, +1937.05.15,15-May-37,1937,Unprovoked,AUSTRALIA,Queensland,"Ross River, Townsville","Refused permission to cross on the ferry, he was swimming across the river",William Tennant,M,33,"FATAL, left arm severed at elbow, right arm bitten, right leg severed at knee ",Y,Night,2 days later a 600-lb shark was caught 100 yards from the site,"V.M. Coppleson (1958), pp.90 & 238",1937.05.15-Tennant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.05.15-Tennant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.05.15-Tennant.pdf,1937.05.15,1937.05.15,1370,, +1937.03.26,26-Mar-37,1937,Invalid,AUSTRALIA,New South Wales,South Cronulla,Bathing,Austin Shaw,M,16,His body was recovered 2 days later but shark involvement prior to death was not confirmed,N,,,"Canberra Times, 3/29/1937, p.1",1937.03.26-Shaw.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.03.26-Shaw.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.03.26-Shaw.pdf,1937.03.26,1937.03.26,1369,, +1937.03.09,09-Mar-37,1937,Invalid,AUSTRALIA,Victoria,Port Melbourne,Swimming,Chief Petty Officer A. E. King,M,43,Shark involvement prior to death was not confirmed,Y,,,"Canberra Times, 3/10/1937;Sydney Morning Herald, 3/10/1937; Whitley, p.264",1937.03.09-King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.03.09-King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.03.09-King.pdf,1937.03.09,1937.03.09,1368,, +1937.02.13,13-Feb-37,1937,Unprovoked,AUSTRALIA,New South Wales,"Bar Beach, Newcastle",Swimming,John Welsh,M,32,"FATAL, buttocks, ankle & right elbow bitten ",Y,15h20,White shark,"V.M. Coppleson (1958), pp.77 & 234; A. Sharpe, p.84; J.West, ASAF",1937.02.13-Welsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.13-Welsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.13-Welsh.pdf,1937.02.13,1937.02.13,1367,, +1937.02.11,11-Feb-37,1937,Unprovoked,AUSTRALIA,New South Wales,Kempsey,Swimming ashore after launch capsized,Mr. Redman,,,Foot bitten,N,,,"Canberra Times, 2/12/1937",1937.02.11-Redman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.11-Redman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.11-Redman.pdf,1937.02.11,1937.02.11,1366,, +1937.02.04,04-Feb-37,1937,Boating,AUSTRALIA,New South Wales, Botany Bay ,Fishing,"a launch, occupants- Albert Cree & John Blacksall",,,"No injury to occupants, launch holed",N,03h00,,"Canberra Times, 2/5/1937",1937.02.04-BotanyBay-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.04-BotanyBay-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.04-BotanyBay-launch.pdf,1937.02.04,1937.02.04,1365,, +1937.02.03,03-Feb-37,1937,Provoked,AUSTRALIA,Queensland,Moreton Island,Fishing,Edgar Woodley,M,20,Left shoulder bitten by netted shark PROVOKED INCIDENT,N,,"3' ""blue nosed"" shark","G.P. Whitley, p.264",1937.02.03-Woodley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.03-Woodley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.03-Woodley.pdf,1937.02.03,1937.02.03,1364,, +1937.02.02,1937,1937,Invalid,AUSTRALIA,South Australia,Port Germein,12 of the Penang's crew were returning to the ship when their 12' dinghy capsized,"male, one of the crew of the Penang",M,,Shark involvement prior to death was not confirmed,Y,Night,"15' shark seen with the man's body in its mouth, but shark involvement prior to death was not confirmed","West Australian, 2/8/1937; G.P. Whitley",1937.02.02-Penang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.02-Penang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.02-Penang.pdf,1937.02.02,1937.02.02,1363,, +1937.01.27,27-Jan-37,1937,Provoked,AUSTRALIA,New South Wales,"Lake Conjola, near Milton",Holding shark's tail ,Raymond Hemsworth,M,18,Bitten on forearm PROVOKED INCIDENT,N,,"Grey nurse shark, 8'","Northern Standard, 1/29/1937",1937.01.27-Hemsworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.01.27-Hemsworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.01.27-Hemsworth.pdf,1937.01.27,1937.01.27,1362,, +1937.00.00,1937,1937,Unprovoked,AUSTRALIA,Torres Strait,,,"O'Leary, a Torres Strait islander",M,,Survived,N,,,"Rpt. Dept. Harb. Mar. (Qld), 1937, p.13; G.P. Whitley, p.264",1937.00.00-O'Leary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.00.00-O'Leary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.00.00-O'Leary.pdf,1937.00.00,1937.00.00,1361,, +1936.12.30,30-Dec-36,1936,Unprovoked,USA,Hawaii,"Honokohau, Maui","Diving, attempting to retrieve body of drowning victim wedged between rocks",John Kekuhi,M,,Thigh lacerated,N,,6 m [20'] shark,"J. Borg, p.71; L. Taylor (1993), pp.98-99",1936.12.30-Kekuhi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.30-Kekuhi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.30-Kekuhi.pdf,1936.12.30,1936.12.30,1360,, +1936.12.19,19-Dec-36,1936,Boating,AUSTRALIA,Queensland,Brisbane River,Sculling,"Racing scull, occupant: C.E. Slaughter, Queensland sculling champion",,,"No injury to occupant. Shark damaged scull, tooth fragments recovered",N,,3 m [10'] shark,"G.P. Whitley, p.264; V.M. Coppleson (1958), p. 187",1936.12.19-Slaughter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.19-Slaughter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.19-Slaughter.pdf,1936.12.19,1936.12.19,1359,, +1936.12.15,15-Dec-36,1936,Provoked,AUSTRALIA,New South Wales,Newcastle Harbor,Fishing for the shark that killed George Lundberg,"skiff, occupants: J. & A. Ayerst",,,Hooked shark bit rudder PROVOKED INCIDENT,N,,,"V.M. Coppleson (1958), pp.182-183",1936.12.15-boat-Ayerst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.15-boat-Ayerst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.15-boat-Ayerst.pdf,1936.12.15,1936.12.15,1358,, +1936.12.12,12-Dec-36,1936,Unprovoked,AUSTRALIA,New South Wales,"Throsby Creek, Newcastle",Swimming,George Lundberg,M,15,"FATAL, leg severed at knee",Y,11h30,,"V.M. Coppleson (1958), p.234",1936.12.12-Lundberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.12-Lundberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.12-Lundberg.pdf,1936.12.12,1936.12.12,1357,, +1936.12.01,01-Dec-36,1936,Boating,AUSTRALIA,Victoria,Mordialloc,Fishing,"Charles Swan, a returned soldier",M,50,"FATAL, his 2.4 m dinghy was found with 2' x 3' hole in its side & tooth fragments embedded in the planking",Y,,Thought to involve a 12' white shark,"The Age, 12/4/1936",1936.12.01-Swan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.01-Swan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.01-Swan.pdf,1936.12.01,1936.12.01,1356,, +1936.11.27,27-Nov-36,1936,Provoked,AUSTRALIA,Torres Strait,Near Thursday Island,Spearfishing ,Frank McDonnell,M,,Speared shark bit his hand PROVOKED INCIDENT,N,,0.9 m [3'] shark,"Whitley, p.264; V.M. Coppleson (1958), p.244",1936.11.27-McDonnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.11.27-McDonnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.11.27-McDonnell.pdf,1936.11.27,1936.11.27,1355,, +1936.09.04,04-Sep-36,1936,Unprovoked,USA,Hawaii,"Lahaina, Maui",Swimming,young male,M,,Leg lacerated,N,,,"J. Borg, p.71; L. Taylor (1993), pp.96-97",1936.09.04-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.09.04-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.09.04-Maui.pdf,1936.09.04,1936.09.04,1354,, +1936.08.24,24-Aug-36,1936,Unprovoked,AUSTRALIA,Torres Strait,Near Mabuiag Island,"Trochus diving, but floating on surface","Tala Lui, a Torres Strait islander",M,,Flexed right leg bitten,N,,Large tiger shark seen in the vicinity the following morning,"G.P. Whitley, p.264; V.M. Coppleson (1958), p.244",1936.08.24-TalaLui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.24-TalaLui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.24-TalaLui.pdf,1936.08.24,1936.08.24,1353,, +1936.08.11,11-Aug-36,1936,Provoked,CANADA,Newfoundland,Georges Bank,Fishing for cod,"a dory of the schooner Raymonde, occupants: Albion Muise, Peter Dousette & Jack Shannon",,,"No injury to occupants, hooked shark leapt onboard boat PROVOKED INCIDENT",N,,"Shovelnose shark, 6 m [20'] ","NY Times, 8/13/1936, p.25, col.6",1936.08.11-schoonerRaymonde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.11-schoonerRaymonde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.11-schoonerRaymonde.pdf,1936.08.11,1936.08.11,1352,, +1936.08.04,Reported 04-Aug-1936,1936,Unprovoked,AUSTRALIA,Torres Strait,Bathurst Island,Pearl diving,Japanese diver,M,,Torso bitten ,N,,,"Nortnern Standard, 8/4/1936",1936.08.04.R-PearlDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.04.R-PearlDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.04.R-PearlDiver.pdf,1936.08.04,1936.08.04,1351,, +1936.08.00,Aug-36,1936,Boating,USA,North Carolina,"Pamlico Sound off Frisco, Dare County",Fishing,"rowboat, occupants: James Mitchell-Hedges & Raymond McHenry",M,13,Shark rammed boat; no injury to occupants,N,,,"C. Creswell, GSAF",1936.08.00-PamlicoSound.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.00-PamlicoSound.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.00-PamlicoSound.pdf,1936.08.00,1936.08.00,1350,, +1936.07.25,25-Jul-36,1936,Unprovoked,USA,Massachusetts,"Hollywood Beach, just above Mattapoisett Harbor, Buzzards Bay",Swimming crawl stroke,"Joseph Troy, Jr",M,16,"FATAL, finger severed, thigh bitten He died during the surgical amputation of his leg ",Y,15h30,White shark (identified by Dr. Hugh Smith) ,"B. R. Tilden, M.D.; NY Times, 7/26/1936, p.2; E.W. Gudger (1950); V.M. Coppleson (1958), pp. 150 & 253; H.D. Baldridge, p. 35",1936.07.25-Troy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.25-Troy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.25-Troy.pdf,1936.07.25,1936.07.25,1349,, +1936.07.12,12-Jul-36,1936,Boating,USA,New Jersey,"Long Branch, Monmouth County (offshore)",Fishing for bluefish,"22' boat, occupants: Saul White & Charles Dillione",,,"No injury to occupants, shark leapt onboard boat",N,15h00,"Blue shark, 8' [2.4 m], 500-lb ","NY Times, 6/13/1936 ",1936.07.12-SaulWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.12-SaulWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.12-SaulWhite.pdf,1936.07.12,1936.07.12,1348,, +1936.07.07,07-Jul-36,1936,Unprovoked,AUSTRALIA,Torres Strait,Off Nepean Island,Diving,aboriginal male,M,,Survived? Admitted to Thursday Island Hospital,N,,,"V.M. Coppleson (1958), p.244",1936.07.07-aboriginal-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.07-aboriginal-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.07-aboriginal-diver.pdf,1936.07.07,1936.07.07,1347,, +1936.07.00,Jul-36,1936,Boating,SOUTH AFRICA,Western Cape Province,Cape Point,"Fishing, catching snoek, Thyrsites atun",10m boat Lucky Jim,,,"Shark leapt onboard & into fishwell, tossing a crew member, Pepino, in the sea",N,,,"T. Wallett, p.25",1936.07.00-LuckyJim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.00-LuckyJim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.00-LuckyJim.pdf,1936.07.00,1936.07.00,1346,, +1936.06.26,26-Jun-36,1936,Unprovoked,AUSTRALIA,Torres Strait,Nepean Island,"Diving for trochus , but swimming on surface","Willie, an aboriginal",M,16,FATAL,Y,,"Tiger shark, 2.4 m [8']","Sydney Morning Herald, 7/7/1936; V.M. Coppleson (1958), p.244",1936.06.26-Willie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.06.26-Willie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.06.26-Willie.pdf,1936.06.26,1936.06.26,1345,, +1936.06.06,06-Jun-36,1936,Unprovoked,USA,Florida,"Boca Ciega Bay, Pinellas County",Swimming,,M,,FATAL,Y,,,"Evening Independent, 6/8/1936",1936.06.06-BocaCiegaBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.06.06-BocaCiegaBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.06.06-BocaCiegaBay.pdf,1936.06.06,1936.06.06,1344,, +1936.04.22,22-Apr-36,1936,Unprovoked,AUSTRALIA,Queensland,Arlington Reef near Cairns,Diving for trochus,Guisne Oscoto (Japanese),M,16,"Arm & back bitten, heel lacerated",N,10h00,"Tiger shark, 4.6 m [15'] ","Sydney Morning Herald, 4/23/1936",1936.04.22-Oscoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.04.22-Oscoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.04.22-Oscoto.pdf,1936.04.22,1936.04.22,1343,, +1936.04.08,08-Ap-1936,1936,Unprovoked,AUSTRALIA,Queensland,Arlington Reef near Cairns,Diving,Ohta,,,Arm severed,N,,,"The Argus, 4/9/1936",1936.04.08-Ohta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.04.08-Ohta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.04.08-Ohta.pdf,1936.04.08,1936.04.08,1342,, +1936.03.30,30-Mar-36,1936,Provoked,USA,Florida,"Miami, Miami-Date County",Fishing,Bill Samsoe,M,,No injury. His hand entangled in line of hooked shark. He was pulled overboard & towed 150' PROVOKED INCIDENT ,N,,650-lb shark,"NY Times, 4/1/1936, p.27, col.1",1936.03.30-Samsoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.30-Samsoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.30-Samsoe.pdf,1936.03.30,1936.03.30,1341,, +1936.03.22,12-Mar-36,1936,Unprovoked,AUSTRALIA,Torres Strait,"Near Shelburne Bay, Queenland",Among 31 survivors of crew from the sampan Fukulya Maru (which reached Thursday Island in rowing boat) was a man whose arm had been bitten off by shark. The sampan wrecked west of McArthur island ,Japanese sailor,M,,Survived,N,,,"Coppleson (1958), p.244; The Argus, 4/9/1936",1936.03.22-Japanese-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.22-Japanese-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.22-Japanese-sailor.pdf,1936.03.22,1936.03.22,1340,, +1936.03.19,19-Mar-36,1936,Unprovoked,AUSTRALIA,Queensland,"Near Forbes Island, Barrier Reef",Diving for trochus,"Norman, an aboriginal",M,,Right forearm lacerated,N,,,"G.P. Whitley, p.263; V.M. Coppleson (1958), p.244",1936.03.19-Norman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.19-Norman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.19-Norman.pdf,1936.03.19,1936.03.19,1339,, +1936.03.04.,04-Mar-36,1936,Boating,AUSTRALIA,Northern Territory,Between Cape Hotham & Darwin (50 miles from Darwin),Rowing ,"dinghy, occupants: aborigine & lighthouse keeper",,,"No injury to occupants, shark almost wrenched oar from aborigine",N,,,"G.P. Whitley, p.263; V.M. Coppleson (1958), p.186",1936.03.04-CapeHotham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.04-CapeHotham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.04-CapeHotham.pdf,1936.03.04.,1936.03.04.,1338,, +1936.02.23,23-Feb-36,1936,Provoked,AUSTRALIA,New South Wales,"Angourie, near Yamba",Touching the mouth of a supposedly dead shark,Eva Cameron,F,young,Finger bitten PROVOKED INCIDENT,N,,,"Coppleson (1958), p. 176; G.P. Whitley, p.263",1936.02.23-Cameron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.23-Cameron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.23-Cameron.pdf,1936.02.23,1936.02.23,1337,, +1936.02.20..R,Reported 20-Feb-1936,1936,Unprovoked,AUSTRALIA,Queensland,Brisbane River,Sculling,C.E. Slaughter,M,,"No injury, scull sank",N,,10' shark,"Nevada State Journal, 5/2/1936",1936.02.20.R-Slaughter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.20.R-Slaughter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.20.R-Slaughter.pdf,1936.02.20..R,1936.02.20..R,1336,, +1936.02.04,04-Feb-36,1936,Unprovoked,AUSTRALIA,New South Wales,"South Steyne, Manly",Swimming,David Paton,M,14,"FATAL, taken by shark, body not recovered. Twenty months later, in October 1937, meshing (setting anti-shark gill nets) began at metropolitan beaches",Y,15h00,White shark,"V.M. Coppleson (1958), pp.67 & 234; A. Sharpe, p.68; A. MacCormick, p.169; J. West, ASAF",1936.02.04-Paton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.04-Paton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.04-Paton.pdf,1936.02.04,1936.02.04,1335,, +1936.01.22,22-Jan-36,1936,Unprovoked,AUSTRALIA,South Australia,"West Beach, near Adelaide","Swimming. Passer-by, Len Bedford, heard him shriek , saw shark leap from the water & swimmer disappeared",Ray Bennett,M,13,FATAL ,Y,18h00,White shark,"Sydney Morning Herald, 1/23/1936; V.M. Coppleson (1958), pp.107 & 240; A. Sharpe, p.120; J. West, ASAF",1936.01.22-Bennett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.01.22-Bennett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.01.22-Bennett.pdf,1936.01.22,1936.01.22,1334,, +1936.01.05,05-Jan-36,1936,Invalid,AUSTRALIA,Queensland,"Main Beach, Southport",Surfing,Kevin Canavan,M,17,Disappeared & his torn clothing washed ashore,N,,Shark involvement prior to death was not confirmed,"Canberra Times, 1/7/1936; V.M. Coppleson, p.92-93",1936.01.05-Canavan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.01.05-Canavan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.01.05-Canavan.pdf,1936.01.05,1936.01.05,1333,, +1936.01.00,Jan-36,1936,Provoked,AUSTRALIA,New South Wales,North Bondi,Paddleskiing,Ken Howell,M,,"He tried to hit shark with paddle, shark bumped ski PROVOKED INCIDENT",N,,2.3 m [7'] shark,"V.M. Coppleson (1958), p.41",1936.01.00-Howell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.01.00-Howell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.01.00-Howell.pdf,1936.01.00,1936.01.00,1332,, +1936.00.00,1936,1936,Unprovoked,AUSTRALIA,Victoria ,"Port Phillip Bay, Port Melbourne",Swimming ,male,M,,FATAL ,Y,,,"J. Green, p.33; V.M. Coppleson (1958), p.241",1936.00.00-PortMelbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.00.00-PortMelbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.00.00-PortMelbourne.pdf,1936.00.00,1936.00.00,1331,, +1935.12.23,23-Dec-35,1935,Provoked,AUSTRALIA,Victoria,150 yards from the pier at Lorne,Cruising,16' motor launch owned by A. & E. Norton,,,"Harpooned shark stove in bow (20"" x 10"" hole), boat sank PROVOKED INCIDENT",N,,4.3 m [14'] shark,"V.M. Coppleson (1958), p.183",1935.12.23-NortonBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.12.23-NortonBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.12.23-NortonBoat.pdf,1935.12.23,1935.12.23,1330,, +1935.11.13,13-Nov-35,1935,Unprovoked,AUSTRALIA,Torres Strait,Barrier Reef near Innisfail,Diving?,"James Messot, a Thursday Islander",M,20,Back & arm gashed but survived,N,,,"NY Times, 11/16/1935; Sun (Sydney) 1/13/1936 (pictures of healed wounds); V.M. Coppleson (1958), p.244",1935.11.13-Messot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.11.13-Messot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.11.13-Messot.pdf,1935.11.13,1935.11.13,1329,, +1935.09.21,21-Sep-35,1935,Unprovoked,USA,North Carolina,"Brown�s Inlet on New River, Onslow Beach",Swimming,Jere W. Fountain,M,38,"FATAL, thigh bitten ",Y,20h30,," F. Schwartz, p.23; C. Creswell, GSAF",1935.09.21-Fountain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.09.21-Fountain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.09.21-Fountain.pdf,1935.09.21,1935.09.21,1328,, +1935.09.04.R,Reported 04-Sep-1935,1935,Unprovoked,PAPUA NEW GUINEA,Central Province,Hula,Swimming,Mailia Ola,M,,FATAL,Y,,,"Cairns Post, 9/24/1935",1935.09.04.R-Hula.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.09.04.R-Hula.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.09.04.R-Hula.pdf,1935.09.04.R,1935.09.04.R,1327,, +1935.08.26,26-Aug-35,1935,Unprovoked,AUSTRALIA,Queensland,"At Flat Top, near Mackay","Fell overboard, hanging onto lifebuoy",Patrick Quinn,M,38,"FATAL. His body was not recovered, but about 3 weeks later 2 sharks were caught with human remains, thought to be those of Quinn",Y,Night,3.7 m [12'] shark,"V.M. Coppleson (1958), p.22; G. P. Whitley",1935.08.26-Quinn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.08.26-Quinn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.08.26-Quinn.pdf,1935.08.26,1935.08.26,1326,, +1935.08.24,24-Aug-35,1935,Invalid,UNITED KINGDOM,Isle of Wight,Atherfield,Fishing,Percy Wadham,M,,"The hooked shark didn't cut his finger, he was injured by his line",N,,possibly a porbeagle shark,C. Moore; Isle of Wight Press,1935.08.24-Atherfield.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.08.24-Atherfield.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.08.24-Atherfield,1935.08.24,1935.08.24,1325,, +1935.08.13,13-Aug-35,1935,Unprovoked,AUSTRALIA,Torres Strait,"Near Warrior Reefs, Queensland",Diving for beche-de-mer from lugger,"Barani, a Papuan",M,,"FATAL, right buttock & thigh bitten ",Y,,,"J. Green, p.33; V.M. Coppleson (1958), p.243",1935.08.13 -Barani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.08.13 -Barani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.08.13 -Barani.pdf,1935.08.13,1935.08.13,1324,, +1935.07.27.b,27-Jul-35,1935,Invalid,USA,California,Santa Barbara Channel,fishing boat exploded & sank,Barney Wilkes,M,23,"Although listed as an uprovoked fatal attack by SAF, shark bite on his ankle was post-mortem following death by drowning",Y,,,"N.Y. Herald Tribune, 7/28/1935; D. Miller & R. Collier",1935.07.27-b-Wilkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.27-b-Wilkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.27-b-Wilkes.pdf,1935.07.27.b,1935.07.27.b,1323,, +1935.07.27.a,27-Jul-35,1935,Invalid,USA,California,Santa Barbara Channel,fishing boat exploded & sank,Dr. Alfred L. Wilkes ,M,53,"Although listed as an uprovoked fatal attack by SAF, he was killed by the explosion. The shark bites were post-mortem ",Y,,,"N.Y. Herald Tribune, 7/28/1935; D. Miller & R. Collier",1935.07.27.a-Wilkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.27.a-Wilkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.27.a-Wilkes.pdf,1935.07.27.a,1935.07.27.a,1322,, +1935.07.05,05-Jul-35,1935,Unprovoked,PANAMA,,off Culebra,"Fishing with dynamite, afterwards in water retrieving catch",Valentin Alonso,M,14,"FATAL, leg severed ",Y,,,"New York Times, 7/6/1935",1935.07.05-Alonso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.05-Alonso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.05-Alonso.pdf,1935.07.05,1935.07.05,1321,, +1935.07.01,01-Jul-35,1935,Unprovoked,CROATIA,Adriatic Sea,"Susak / Fiume (Rijeka, Istria)",Swimming,Mira Kudlich,F,22,FATAL,Y,15h00,,"C. Moore, GSAF",1935.07.01-Kudlich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.01-Kudlich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.01-Kudlich.pdf,1935.07.01,1935.07.01,1320,, +1935.06.18,18-Jun-35,1935,Unprovoked,USA,New Jersey,50 miles offshore,"Fishing for bluefish, shark leapt into dory",Captain Manuel Chalor of fishing trawler Nautilus,M,31,Arm lacerated by a shark that leapt onto boat ,N,,4.6 m [15'] shark,"NY Times, 6/19/1935, p.21 ",1935.06.18-Chalor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.18-Chalor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.18-Chalor.pdf,1935.06.18,1935.06.18,1319,, +1935.06.05.R,Reported 05-Jun-1935,1935,Unprovoked,SOLOMON ISLANDS,Makira-Uluwa Province,Makira Island,Fishing,a native,M,,FATAL,Y,,,"Sydney Mail, 6/5/1935",1935.06.05.R-SolomonIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.05.R-SolomonIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.05.R-SolomonIslands.pdf,1935.06.05.R,1935.06.05.R,1318,, +1935.06.00.b,Jun-35,1935,Boating,AUSTRALIA,South Australia,Off Port Broughton,,"A dinghy, occupant J.W. Wall",,,Shark bumped dinghy twice,N,,,"Australian Woman's Weekly, 8/27/1938",1935.06.05.R-SolomonIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.05.R-SolomonIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.05.R-SolomonIslands.pdf,1935.06.00.b,1935.06.00.b,1317,, +1935.06.00.a,Jun-35,1935,Unprovoked,PAPUA NEW GUINEA,Northern (Oro) Province,"Dobu Passage, D'Entrecasteaux Islands (between Normanby & Fergusson Islands)",,,,,"Samoan missionary, Filemani, caught an 8'6"" shark after it had killed 1 man & 2 boys in space of few weeks",N,,,"D.K. Webster, p.67",1935.06.00.a-Filemani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.00.a-Filemani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.00.a-Filemani.pdf,1935.06.00.a,1935.06.00.a,1316,, +1935.05.19,19-May-35,1935,Provoked,SOUTH AFRICA,KwaZulu-Natal,"North Pier, Durban",Put foot inside a landed & supposedly dead shark,"male, a spectator",M,,"Foot bitten, required 1 week hospitalization PROVOKED INCIDENT",N,,"White shark, 246-kg ","M. Levine, GSAF",1935.05.19-spectator.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.05.19-spectator.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.05.19-spectator.pdf,1935.05.19,1935.05.19,1315,, +1935.05.12,12-May-35,1935,Unprovoked,AUSTRALIA,Torres Strait,On edge of reef near Warrior Island,Pearl diving,"Andrew, a Torres Strait Islander",M,,3 gashes on hand & wrist,N,,1.8 m [6'] shark,"V.M. Coppleson (1958), pp.103 & 243",1935.05.12-Andrew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.05.12-Andrew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.05.12-Andrew.pdf,1935.05.12,1935.05.12,1314,, +1935.04.25,25-Apr-35,1935,Invalid,AUSTRALIA,New South Wales,Coogee,"Disappeared 11 days earlier, probable homicide victim","James Smith, murder victim",M,40,Captive shark regurgitated his arm in the Coogee Aquarium,N,,Tiger shark,"A. Sharpe, pp.28-32",1935.04.25-SharkArmCase.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.04.25-SharkArmCase.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.04.25-SharkArmCase.pdf,1935.04.25,1935.04.25,1313,, +1935.04.12.R,Reported 12-Apr-1935,1935,Unprovoked,,,,Diving,Pearl Purdy Scott,F,,Laceration to left leg,N,,,"Port Arthur News, 4/12/1935",1935.04.12.R-PearlPurdyScott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.04.12.R-PearlPurdyScott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.04.12.R-PearlPurdyScott.pdf,1935.04.12.R,1935.04.12.R,1312,, +1935.04.08.R,Reported 08-Apr-1935,1935,Unprovoked,USA,California,"Hermosa Beach, Los Angeles County",,A. R. Davis,M,,Laceration to hand ,N,,,"Los Angeles Times, 4/8/1935 ",1935.04.08.R-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.04.08.R-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.04.08.R-Davis.pdf,1935.04.08.R,1935.04.08.R,1311,, +1935.03.30,30-Mar-35,1935,Unprovoked,AUSTRALIA,Queensland,Barrier Reef off Mackay,Diving from dinghy for trochus shell,"Samuel, a Thursday islander",M,,Buttocks injured by fin or a bump ,N,Afternoon,,"G.P. Whitley citing the Sydney Morning Herald, 4/1/1935; 1951), G.P. Whitley (1951), page 192, Fide G.D. Wall, Mackay, 1946; J. Green, p.33; V.M. Coppleson (1958), pp.101 & 243",1935.03.30-Samuel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.30-Samuel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.30-Samuel.pdf,1935.03.30,1935.03.30,1310,, +1935.03.25.R,Reported 25-Mar-1935,1935,Provoked,SOUTH AFRICA,KwaZulu-Natal,"North Pier, Durban",Put foot inside mouth of supposedly dead shark,male,M,,Injury to foot PROVOKED INCIDENT,N,,,"Natal Coast Angler, 3/25/1935",1935.03.25.R-Durban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.25.R-Durban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.25.R-Durban.pdf,1935.03.25.R,1935.03.25.R,1309,, +1935.03.20,20-Mar-35,1935,Unprovoked,AUSTRALIA,Torres Strait,Three Mile Reef off Lizard Island 50 miles north of Cooktown,"Pearl diving, but standing in the water","Kosam, a Torres Strait Islander",M,,Left thigh abraded & 3 fingers lacerated,N,,Tiger shark 3 m [10'] ,"Sydney Morning Herald, 3/20/1935; V.M. Coppleson (1958), pp.102 & 243",1935.03.20-Kosam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.20-Kosam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.20-Kosam.pdf,1935.03.20,1935.03.20,1308,, +1935.03.13,13-Mar-35,1935,Provoked,AUSTRALIA,Queensland,Pimpana River,Hauling in net with shark in it,William Charles Beitz,M,38,Calf & shin bitten PROVOKED INCIDENT,N,,"""Blue nose shark""",G.P. Whitley,1935.03.13-Beitz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.13-Beitz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.13-Beitz.pdf,1935.03.13,1935.03.13,1307,, +1935.03.11,11-Mar-35,1935,Unprovoked,AUSTRALIA,New South Wales,Newcastle,Surfing,Eric McMichael,M,,Abrasions to shins,N,,,"Sydney Morning Herald, 3/11/1935",1935.03.11-McMichael.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.11-McMichael.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.11-McMichael.pdf,1935.03.11,1935.03.11,1306,, +1935.03.09,09-Mar-35,1935,Unprovoked,AUSTRALIA,New South Wales,Maroubra Beach,Swimming,Ernest MacDonald,M,27,"FATAL, left thigh, buttock, left forearm bitten, finger removed ",Y,12h30,"White shark, 4 m [13'] ","V.M. Coppleson (1958), pp.65, 233 & 234; A. Sharpe, pp. 64-65, G.P. Whitley, p.14; J. West, ASAF",1935.03.09-MacDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.09-MacDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.09-MacDonald.pdf,1935.03.09,1935.03.09,1305,, +1935.03.02,02-Mar-35,1935,Unprovoked,AUSTRALIA,New South Wales,North Narrabeen Beach,Standing,Herbert McFarlane,M,22,"FATAL, thigh bitten ",Y,17h30,"White shark, 3.5 m to 4 m [11.5' to 13'] ","Amarillo Globe, 6/21/1935, p.3; V.M. Coppleson (1958), pp.66-67 & 233; John West",1935.03.02-McFarlane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.02-McFarlane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.02-McFarlane.pdf,1935.03.02,1935.03.02,1304,, +1935.02.14,14-Feb-35,1935,Unprovoked,AUSTRALIA,New South Wales,Austinmer,Surfing (pneumatic surfboard),Darcy Lorenz,M,20,"Thigh lacerated, abrasions",N,17h30,,"V.M. Coppleson (1958), pp.45 & 233",1935.02.14-Lorenz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.02.14-Lorenz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.02.14-Lorenz.pdf,1935.02.14,1935.02.14,1303,, +1935.01.24.b,24-Jan-35,1935,Unprovoked,AUSTRALIA,New South Wales,"Off Ben Buckler, near Sydney",Fishing,William Johnson,M,,"No injury, sleeve ripped",N,,"Tiger shark, 12' ","G.P. Whitley, p.263",1935.01.24.b-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.24.b-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.24.b-Johnson.pdf,1935.01.24.b,1935.01.24.b,1302,, +1935.01.24.a,24-Jan-35,1935,Boating,AUSTRALIA,Queensland,"Ross River, Townsville",Fishing for sharks,flat-bottomed boat,,,No injury to occupants,N,,2 sharks,"G.P. Whitley, p.263",1935.01.24.a-Flat-bottomed-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.24.a-Flat-bottomed-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.24.a-Flat-bottomed-boat.pdf,1935.01.24.a,1935.01.24.a,1301,, +1935.01.21.R,Reported 21-Jan-1935,1935,Invalid,ISRAEL,Herzliyah,Sidny Ali,,,,,human remains washed ahore,F,,,"C. Moore, GSAF",1935.01.21.R-SidnyAli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.21.R-SidnyAli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.21.R-SidnyAli.pdf,1935.01.21.R,1935.01.21.R,1300,, +1935.01.17,17-Jan-35,1935,Invalid,AUSTRALIA,Queensland,"Seaforth River, near MacKay",,small boy,M,5,No injury; onlookers saw shark heading for him and lifted him ashore,N,,10' shark,"G.P. Whitley, p.263",1935.01.17-Seaforth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.17-Seaforth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.17-Seaforth.pdf,1935.01.17,1935.01.17,1299,, +1934.12.31.b,31-Dec-34,1934,Unprovoked,AUSTRALIA,New South Wales,George�s River at Kentucky,Splashing,Beryl Morrin,F,13,Hands severed,N,20h15,"Tiger shark, 1.5 m [5'] ","V.M. Coppleson (1958), pp.67 & 233; A. Sharpe, pp.90-91",1934.12.31.b-Morrin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.31.b-Morrin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.31.b-Morrin.pdf,1934.12.31.b,1934.12.31.b,1298,, +1934.12.31.a,31-Dec-34,1934,Unprovoked,AUSTRALIA,New South Wales," St. George�s River at Moorebank, near Milperra Bridge",Swimming (lead swimmer in race),Richard George Soden,M,19,"FATAL, left leg bitten ",Y,16h30,,"V.M. Coppleson (1958), pp.67 & 233; A. Sharpe, pp.89-90]",1934.12.31.a-Soden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.31.a-Soden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.31.a-Soden.pdf,1934.12.31.a,1934.12.31.a,1297,, +1934.12.23.b,23-Dec-34,1934,Unprovoked,AUSTRALIA,New South Wales,Woy Woy on the Brisbane Waters,Taken as he dived into the water,Roy Inman,M,14,FATAL,Y,13h00,,"V.M. Coppleson (1958), pp.85-86 & 233; A. MacCormick, p.172",1934.12.23.a-b-Inman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.23.a-b-Inman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.23.a-b-Inman.pdf,1934.12.23.b,1934.12.23.b,1296,, +1934.12.23.a,23-Oct-34,1934,Unprovoked,AUSTRALIA,New South Wales,Woy Woy on the Brisbane Waters,Swimming & splashing,Joyce Inman (Roy�s sister),M,12,Leg injured,N,13h00,,"J. Green, pp.10 & 33 corrects earlier accounts that gave the location as Queensland; V.M. Coppleson (1958), pp.85-86 & 233; A. MacCormick, p.172",1934.12.23.a-b-Inman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.23.a-b-Inman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.23.a-b-Inman.pdf,1934.12.23.a,1934.12.23.a,1295,, +1934.10.09,09-Oct-34,1934,Unprovoked,AUSTRALIA,Northern Territory,"Redcliff, Cobourg Peninsula",Bathing,aboriginal woman,F,38,FATAL,Y,,,"The Age, 10/27/1934;; V.M. Coppleson (1958), p.240",1934.10.09-Coburg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.10.09-Coburg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.10.09-Coburg.pdf,1934.10.09,1934.10.09,1294,, +1934.10.08,08-Oct-34,1934,Provoked,BERMUDA,Hamilton,Hamilton Parish,Fishing,McCallan,M,,Arm bitten by hooked shark PROVOKED INCIDENT,N,Night,,"The Gleaner, 10/16/1934",1934.10.08-McCallan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.10.08-McCallan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.10.08-McCallan.pdf,1934.10.08,1934.10.08,1293,, +1934.10.02,22-Oct-34,1934,Unprovoked,AUSTRALIA,Torres Strait,Warrior Reefs,Freediving for trochus shell (submerged),"David Younger, Torres Strait Islander",M,,"FATAL, forearm lacerated & surgically amputated, but died of gas gangrene 13 days afterwards ",Y,,," V.M. Coppleson (1958), pp.102-103",1934.10.02-Younger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.10.02-Younger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.10.02-Younger.pdf,1934.10.02,1934.10.02,1292,, +1934.09.08,08-Sep-34,1934,Provoked,BERMUDA,Hamilton,Nine miles off Frasconi Flats,Fishing,"Captain Earnest Gibbons, skipper of the cruiser Cupid",M,,Right foot bitten by shark caught & taken onboard by Mrs. Tucker North PROVOKED INCIDENT,N,,1.5 m [5'] shark,"NY Times, 9/10/193, p.10",1934.09.08-Gibbons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.09.08-Gibbons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.09.08-Gibbons.pdf,1934.09.08,1934.09.08,1291,, +1934.08.27,27-Aug-34,1934,Boating,ITALY,Sicily,Catania,Fishing on a boat,,M,,No injury to occupants,N,,"White shark, 4 m [13'] ",A. De Maddalena; Giudici & Fino (1989),1934.08.27-Catania.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.27-Catania.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.27-Catania.pdf,1934.08.27,1934.08.27,1290,, +1934.08.26.R,Reported 26-Aug-1934,1934,Invalid,ITALY / CROATIA,,Kralievica,Swimming,Zorca Prinz,F,,"Reported to be FATAL, but found to be a false report; there was no attack",N,,"White shark, 6 m [20']","C. Moore R. Roccini, GSAF; D. Baldridge, pp.15-16; A. De Maddalena; I. Fergusson (1996), L. Lipej (pers. Comm.)",1934.08.26.R-Prinz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.26.R-Prinz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.26.R-Prinz.pdf,1934.08.26.R,1934.08.26.R,1289,, +1934.08.26,26-Aug-34,1934,Unprovoked,AUSTRALIA,Queensland,Off Eva Island 20 miles from Cardwell,Dived into sea from launch & bitten immediately,Robert Steele,M,,"FATAL, body was not recovered",Y,,,"G.P. Whitley citing Sydney Morning Herald 8/27/1934; Sunday Mail (Brisbane) 11/18/1934; G.P. Whitley, p.262; J. Green, p.33;V.M. Coppleson (1958), p.238",1934.08.26-Steeke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.26-Steeke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.26-Steeke.pdf,1934.08.26,1934.08.26,1288,, +1934.08.21,21-Aug-34,1934,Unprovoked,CROATIA,Adriatic Sea,"Susak (Rijeka, Istria)",Swimming,Agnes Novak,F,18,FATAL,Y,,White shark,"NY Times, 7/10/1934, p.15; V.M. Coppleson (1958), p. 266; R. Rocconi; D. Baldridge, p.15; A. De Maddalena; Giudici & Fino (1989), De Maddalena (2000)",1934.08.21-Novak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.21-Novak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.21-Novak.pdf,1934.08.21,1934.08.21,1287,, +1934.08.05,05-Aug-34,1934,Unprovoked,USA,Georgia,"Thunderbolt, Chatham County",Swimming,"William Aimar, Jr.",M,11,Lacerations to right leg,N,,,"Cullman Democrat, 8.9/1934",1934.08.05-Aimar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.05-Aimar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.05-Aimar.pdf,1934.08.05,1934.08.05,1286,, +1934.07.11,11-Jul-34,1934,Boating,AUSTRALIA,New South Wales,Cronulla,Fishing,"18' boat, occupants William & Leslie Newton",N,,"No injury to occupants Sharks continually followed the dinghy, and one smashed its rudder ",N,,"Blue pointer, 11' ","G.P. Whitley, ref: Daily Telegraph, 7/11/1934 & Sydney Morning Herald 7/12/1934",1934.07.11-Newton-boat-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.07.11-Newton-boat-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.07.11-Newton-boat-Australia.pdf,1934.07.11,1934.07.11,1285,, +1934.06.21, 21-Jun-1934,1934,Provoked,AUSTRALIA,New South Wales,Off Mooloolabah,Fishing,Thomas Henry Durbridge,M,,Hand bitten while landing shark PROVOKED INCIDENT,N,Night,"A 6.5' ""blue-nosed shark""","Sydney Morning Herald, 6/23 & 6/25/1934 ",1934.06.21-Durnbridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.06.21-Durnbridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.06.21-Durnbridge.pdf,1934.06.21,1934.06.21,1284,, +1934.06.20,20-Jun-34,1934,Unprovoked,USA,Florida,"Melbourne, Brevard County",Standing,"Richard Clark Best, Jr.",M,8,FATAL,Y,,,"New York Herald Tribune, 6/21/1934 ",1934.06.20-Best.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.06.20-Best.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.06.20-Best.pdf,1934.06.20,1934.06.20,1283,, +1934.04.15,15-Apr-34,1934,Unprovoked,AUSTRALIA,Queensland,"Elephant Rock, Currumbin near Southport",Body surfing,Frank Ilett,M,34,Leg lacerated & punctured,N,09h30,,"V.M. Coppleson (1958), pp.92 & 238. Note: L. Schultz lists date as 1/15/1934 ",1934.04.15-Ilett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.15-Ilett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.15-Ilett.pdf,1934.04.15,1934.04.15,1282,, +1934.04.01.c,01-Apr-34,1934,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Granny�s Pool, Winkelspruit",Swimming,Zulu male,M,,FATAL,Y,15h30,,"N. Doveton; M. Levine, GSAF",1934.04.01.c-young-black-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.01.c-young-black-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.01.c-young-black-male.pdf,1934.04.01.c,1934.04.01.c,1281,, +1934.04.01.b,01-Apr-34,1934,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Danger Pool, Winkelspruit",Swimming ,Alan Donald McArthur,M,12,Right thigh lacerated,N,12h00,,"A.D. McArthur, M. Levine, GSAF",1934.04.01.b-McArthur.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.01.b-McArthur.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.01.b-McArthur.pdf,1934.04.01.b,1934.04.01.b,1280,, +1934.04.01.a,01-Apr-34,1934,Unprovoked,AUSTRALIA,New South Wales,North Steyne,Swimming in waist-deep water ,Leon Ritson Hermes,M,15,"FATAL, right leg lacerated",Y,12h30,4.3 m [14'] shark seen in vicinity,"V.M. Coppleson (1958), p. 233 ",1934.04.01.a-Hermes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.01.a-Hermes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.01.a-Hermes.pdf,1934.04.01.a,1934.04.01.a,1279,, +1934.03.12,12-Mar-34,1934,Unprovoked,AUSTRALIA,New South Wales,"Dee Why, north of Queenscliff ",Swimming in hip-deep water,Frank Athol Riley,M,17,"FATAL, leg & buttocks removed ",Y,15h00,4 m [13'] shark seen in vicinity,"V.M. Coppleson (1958), pp.66 & 232; A. Sharpe, p.67",1934.03.12-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.03.12-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.03.12-Riley.pdf,1934.03.12,1934.03.12,1278,, +1934.03.00,Mar-34,1934,Provoked,AUSTRALIA,New South Wales,Cronulla,Fishing ,"18' launch, occupants: 2 fishermen",,,"No injury to occupants, hooked shark, snapped at rudder & then attacked boat PROVOKED INCIDENT",N,,"Mako shark, 3.7 m [12'] identified by tooth fragments by G.P. Whitley","V.M. Coppleson (1958), p.182; G.P. Whitley ",1934.03.00-Cronulla-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.03.00-Cronulla-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.03.00-Cronulla-boat.pdf,1934.03.00,1934.03.00,1277,, +1934.02.24,24-Feb-34,1934,Unprovoked,AUSTRALIA,Torres Strait,Adolphus Channel,Splashing in water ,"Rixon, an aboriginal",M,,"Lacerated knee & foot, deep puncture wounds",N,12h00,3.4 m [11'] tiger shark & a 5' shark,"V.M. Coppleson (1958), p.243",1934.02.24-Rixon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.02.24-Rixon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.02.24-Rixon.pdf,1934.02.24,1934.02.24,1276,, +1934.02.22,22-Feb-34,1934,Unprovoked,CHILE,Elqui Province,Coquimbo,Fell into the water,a soldier,M,,FATAL,Y,,,"Los Angeles Times, 2/23/1934, p.20",1934.02.22-Soldier-Chile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.02.22-Soldier-Chile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.02.22-Soldier-Chile.pdf,1934.02.22,1934.02.22,1275,, +1934.01.08.R,Reported 08-Feb-1934,1934,Boating,TURKEY,Istanbul,"Haydarpasa jetty, Istanbul",Fishing,2 males,M,,No injury,N,,,"C. Moore, GSAF",1924.02.08.R-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.08.R-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.08.R-Turkey.pdf,1934.02.08.R,1934.02.08.R,1274,, +1934.01.27,27-Jan-34,1934,Unprovoked,AUSTRALIA,New South Wales,"Lambeth Street Wharf, George�s River, East Hills (20 miles from river mouth)",Swimming outside the safety enclosure attempting to retrieve a tennis ball drifting toward midstream ,Wallace John McCutcheon,M,15,"Bumped, chest bitten & badly injured",N,,,"V.M. Coppleson (1958), pp.67 & 232; A. Sharpe, p.89; J. Borg, p.89",1934.01.27-McCutcheon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.01.27-McCutcheon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.01.27-McCutcheon.pdf,1934.01.27,1934.01.27,1273,, +1934.01.07,07-Jan-34,1934,Unprovoked,AUSTRALIA,New South Wales,Queenscliff,Swimming on sandbar adjacent to channel,Colin Grant ,M,22,Severely lacerated right leg. Later surgically amputated & survived despite gas gangrene,N,15h30,4.3 m [14'] shark seen in area previous week,"V.M. Coppleson (1958), pp.65-66 & 232; A. Sharpe, pp.66-67 ",1934.01.07-Grant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.01.07-Grant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.01.07-Grant.pdf,1934.01.07,1934.01.07,1272,, +1933.11.20,20-Nov-33,1933,Unprovoked,AUSTRALIA,Torres Strait,Near Boydong Cay,Free diving for trochus ,"Bili, a Papuan",M,,"FATAL, right buttock & thigh bitten ",Y,,"Tiger shark, 3.4 m [11'] ","Cairns Post, 11/29/1933",1933.11.20-Bill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.11.20-Bill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.11.20-Bill.pdf,1933.11.20,1933.11.20,1271,, +1933.11.18,18-Nov-33,1933,Unprovoked,AUSTRALIA,Queensland,Near Barrow Point,Pearl diving,"Alfred Aniba, a Torres Strait Islander",M,17,"Hand badly injured, right arm surgically amputated above wrist",N,,Tiger shark,"V.M. Coppleson (1958), p.243",1933.11.18-AlfredAniba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.11.18-AlfredAniba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.11.18-AlfredAniba.pdf,1933.11.18,1933.11.18,1270,, +1933.10.25.R,Reported 25-Oct-1933,1933,Unprovoked,AUSTRALIA,Queensland,Off Bloomfield River,Diving,male,M,,Hand severed,N,,,"Courier-Mail, 10/25/1933",1933.10.25.R-BloomfieldRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.10.25.R-BloomfieldRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.10.25.R-BloomfieldRiver.pdf,1933.10.25.R,1933.10.25.R,1269,, +1933.09.27.R,Reported 27-Sep-1933,1933,Boating,ISRAEL,,Nabi Rubin,Fishing,2 males,M,,"One man bitten on thigh, another on arm",N,,3 sharks,"C. Moore, GSAF",1933.09.27.R-NabiRubin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.09.27.R-NabiRubin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.09.27.R-NabiRubin.pdf,1933.09.27.R,1933.09.27.R,1268,, +1933.08.28.b,28-Aug-33,1933,Provoked,USA,California,"Hermosa Beach, Los Angeles County","Fishing, caught a 15' shark & took it onboard",Nathaniel Myrick,M,,Severely lacerated arm PROVOKED INCIDENT,N,,"Blue shark, 4.5 m [14'9""]","D. Baldridge, p.90",1933.08.28.b-Myrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.28.b-Myrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.28.b-Myrick.pdf,1933.08.28.b,1933.08.28.b,1267,, +1933.08.28.a,28-Aug-33,1933,Unprovoked,USA,South Carolina,"Pawley�s Island, north of Charleston",Bathing,Kenneth Layton,M,,Right heel & ankle bitten,N,,,"E.M. Burton; V.M. Coppleson (1958), pp.153 & 253",1933.08.28.a-Layton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.28.a-Layton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.28.a-Layton.pdf,1933.08.28.a,1933.08.28.a,1266,, +1933.08.26.R,Reported 26-Aug-1933,1933,Unprovoked,USA,Connecticut,Mystic River,Swimming,Helen Clarke,F,,Foot bitten,N,,,"Hartford Courant, 8/26/1933",1933.08.26.R-HelenClarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.26.R-HelenClarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.26.R-HelenClarke.pdf,1933.08.26.R,1933.08.26.R,1265,, +1933.07.07.R,Reported 07-Jul-1933,1933,Unprovoked,USA,California,"San Diego, San Diego County",,Tom Schaliniski,M,50,Survived,N,,Tiger shark,"Woodland Daily Democrat, 7/7/1933",1933.07.07-Shalininski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.07.07-Shalininski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.07.07-Shalininski.pdf,1933.07.07.R,1933.07.07.R,1264,, +1933.07.03,03-Jul-33,1933,Unprovoked,AUSTRALIA,Western Australia,Broome,Pearl diving,,M,,"No injury, shark tore diving suit",N,,,"Canberra Times, 7/6/1933",1933.07.03-Pearl-diver-Broome.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.07.03-Pearl-diver-Broome.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.07.03-Pearl-diver-Broome.pdf,1933.07.03,1933.07.03,1263,, +1933.06.21,21-Jun-33,1933,Unprovoked,USA,South Carolina,North end of Morris Island at mouth of Charleston Harbor,Sitting in 3' of water,Dayton Hastie,M,15,Right knee & left leg bitten,N,,Thought to involve a 2.4 m [8'] lemon shark; two 2.4 m lemon sharks caught within 100 yds of the site a week prior to & a week after this incident,"E. M. Burton (1935); V.M. Coppleson (1958), pp.152-153 & 252; Randall in Sharks and Survival, p.350; Note: A. Resciniti lists date as 21-Jul-1933",1933.06.21-Hastie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.21-Hastie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.21-Hastie.pdf,1933.06.21,1933.06.21,1262,, +1933.06.16,16-Jun-33,1933,Unprovoked,USA,South Carolina,"Folly Island, near Charleston",Standing,Emma G. Megginson,F,,Left calf bitten,N,,,E. M. Burton; Note: A. Resciniti lists date as 16-Jul-1933,1933.06.16-Megginson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.16-Megginson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.16-Megginson.pdf,1933.06.16,1933.06.16,1261,, +1933.06.13,13-Jun-33,1933,Invalid,AUSTRALIA,Northern Territory,Darwin,Fishing,Ah Cup,M,,"No injury, ""shark chased him ashore""",N,,,"V.M. Coppleson (1962), p.245",1933.06.13-Chinese-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.13-Chinese-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.13-Chinese-fisherman.pdf,1933.06.13,1933.06.13,1260,, +1933.05.24,24-May-33,1933,Sea Disaster,BARBADOS,St Michael Parish,Off Pelican Island,Yacht of Michael Howell capsized,9 people in the water,,,"5 survived & 4 perished, but shark involvement not confirmed",Y,,,"New York Times 5/26/1933; L. Schultz & M. Malin, p.558; SAF Case #931",1933.05.24-yacht-Barbados.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.05.24-yacht-Barbados.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.05.24-yacht-Barbados.pdf,1933.05.24,1933.05.24,1259,, +1933.05.23,23-May-33,1933,Provoked,AUSTRALIA,Queensland,Off Stradbroke Island,Fishing,Mr. E.B. Port,M,,Laceration to lower leg by netted shark PROVOKED INCIDENT,N,,7' to 8' shark,"Brisbane Courier, 5/24/1933",1933.05.23-Port.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.05.23-Port.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.05.23-Port.pdf,1933.05.23,1933.05.23,1258,, +1933.06.08.R,Reported 08-Jun-1933,1933,Unprovoked,AUSTRALIA,Queensland,Currumbin,Treading water,Walter Mitchell,M,,Lacerations to legs from fins of shark,N,,,"Townsville Daily Bulletin, 6/9/1933 ",1933.06.08-Mitchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.08-Mitchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.08-Mitchell.pdf,1933.06.08.R,1933.06.08.R,1257,, +1933.05.03,03-May-33,1933,Sea Disaster,CUBA,Havana Province,"Off Jaimanitas Yacht Club, Havana",Swimming to shore from capsized sailboat,Majin Alvarez Piedra,M,,FATAL,Y,,,"NY Times, May 4, 1933",1933.05.03-sailor_cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.05.03-sailor_cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.05.03-sailor_cuba.pdf,1933.05.03,1933.05.03,1256,, +1933.04.10,10-Apr-33,1933,Unprovoked,USA,Florida,"Miami Beach, Miami-Dade County",Swimming,Thomas N. Martin,M,24,FATAL,Y,,Possibly a bull shark or tiger shark,"New York Herald Tribune, 4/12/1933",1933.04.10-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.04.10-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.04.10-Martin.pdf,1933.04.10,1933.04.10,1255,, +1933.02.26,26-Feb-33,1933,Unprovoked,AUSTRALIA,New South Wales,Sydney,Standing on his hands,W. McCann,M,,Abrasions to legs,N,,10' shark,"Townsville Daily Bulletin, 2/27/1933",1933.02.26-McCann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.26-McCann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.26-McCann.pdf,1933.02.26,1933.02.26,1254,, +1933.02.15.R,Reported 15-Feb-1933,1933,Unprovoked,AUSTRALIA,Torres Strait,"Barrow Point, 100 miles north of Cooktown, Queensland",Diving for trochus from dinghy when seized by shark 6' below the surface,"Tumia, a Torres Strait Islander",M,,"Injuries to arm, shoulder & chest, took 2 days to reach hospital",N,,4.4 m [14'] shark,"La Crosse Tribune And Leader-Press, 5/15/1933; V.M. Coppleson.Q12. (1933); V.M. Coppleson, p.242",1933.02.15.R-Tumia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.15.R-Tumia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.15.R-Tumia.pdf,1933.02.15.R,1933.02.15.R,1253,, +1933.02.14,14-Feb-33,1933,Boating,AUSTRALIA,South Australia,Adelaide,,boat,,,No injury to occupants. Shark leapt into boat during sailing races,N,,,"G.P. Whitley citing Sydney Morning Herald, 2/16/1933",1933.02.14-Shark-leaps-in-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.14-Shark-leaps-in-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.14-Shark-leaps-in-boat.pdf,1933.02.14,1933.02.14,1252,, +1933.02.12,12-Feb-33,1933,Provoked,AUSTRALIA,South Australia,"Port River, Adelaide",Fishing,Donald Jukes,M,,Forearm injured by hooked shark PROVOKED INCIDENT,N,,Blue shark,"The Advertiser, 2/13/1933",1933.02.12-Jukes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.12-Jukes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.12-Jukes.pdf,1933.02.12,1933.02.12,1251,, +1933.01.04,04-Jan-33,1933,Unprovoked,AUSTRALIA,Queensland,"Strand Beach, Kissing Point, Townsville",Swimming,Stanley Victor Locksley,M,38,Severe abdominal wounds FATAL (Note: 14 days earlier a dog was bitten in two by a large shark),Y,17h30,,"V. M. Coppleson.Q11. (1933); V.M. Coppleson (1958), pp.90 & 238",1933.01.04-Locksley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.01.04-Locksley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.01.04-Locksley.pdf,1933.01.04,1933.01.04,1250,, +1932.12.11.R,Reported 11-Dec-1932,1932,Unprovoked,AUSTRALIA,Northern Territory,Arnhem Land,,,M,,Leg bitten,N,,,"Sunday Times (Perth), 12/11/1932 ",1932.12.11-ArnhemLand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.12.11-ArnhemLand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.12.11-ArnhemLand.pdf,1932.12.11.R,1932.12.11.R,1249,, +1932.12.09.R,Reported 09-Dec-1932,1932,Provoked,NEW ZEALAND,North Island,Mahurangi River Mouth,Fishing ,Mr. L. E. Brasting,M,,Laceration to hand PROVOKED INCIDENT,N,,,"New Zealand Herald, 12/9/1932",1932.12.09-Brasting.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.12.09-Brasting.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.12.09-Brasting.pdf,1932.12.09.R,1932.12.09.R,1248,, +1932.11.09,08-Nov-32,1932,Sea Disaster,CUBA,,,Hurricane & Tidal Wave,,,,,UNKNOWN,,,"Barrier Miner, 11/14/1932",1932.11.09-Hurricane-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.11.09-Hurricane-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.11.09-Hurricane-Cuba.pdf,1932.11.09,1932.11.09,1247,, +1932.10.31,31-Oct-32,1932,Unprovoked,AUSTRALIA,New South Wales,"Redhead Beach, Newcastle",Swimming,Reginald Ogilvie,M,24,"Torso bitten with pneumothorax, slight lacerations on left hand",N,11h00,Thought to involve a mako or grey nurse shark,"V.M. Coppleson.N19. (1933); V.M. Coppleson (1958), pp.80 & 232",1932.10.31-Ogilvie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.10.31-Ogilvie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.10.31-Ogilvie.pdf,1932.10.31,1932.10.31,1246,, +1932.10.11,11-Oct-32,1932,Unprovoked,CAPE VERDE,Barlavento Islands,S�o Vicente ,Swimming,Michele Ruck,M,27,FATAL,Y,,,"C. Moore, GSAF",1932.10.11-Ruck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.10.11-Ruck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.10.11-Ruck.pdf,1932.10.11,1932.10.11,1245,, +1932.09.26.R,Reported 26-Sep-1932,1932,Unprovoked,FIJI,Viti Levu Island,Navua,Catching a turtle,male,M,,Left arm severely bitten,N,,,"Queensland Times, 9/26/1932",1932.09.26.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.09.26.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.09.26.R-Fiji.pdf,1932.09.26.R,1932.09.26.R,1244,, +1932.08.30.b,30-Aug-32,1932,Provoked,AUSTRALIA,New South Wales,Bondi,,male,M,,Hand bitten by landed shark PROVOKED INCIDENT,N,,,G.P. Whitley,1932.08.30.b-male-Bondi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.30.b-male-Bondi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.30.b-male-Bondi.pdf,1932.08.30.b,1932.08.30.b,1243,, +1932.08.30.a,30-Aug-32,1932,Provoked,AUSTRALIA,New South Wales,Newcastle,,D. Bennett,M,,Bitten by landed shark PROVOKED INCIDENT,N,,,"G.P. Whitley; J. Green, p.32",1932.08.30.a-Bennett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.30.a-Bennett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.30.a-Bennett.pdf,1932.08.30.a,1932.08.30.a,1242,, +1932.08.10,10-Aug-32,1932,Provoked,USA,New Jersey,"Offshore, between Mantoloking & Point Pleasant, Ocean County",Fishing,John Olsen,M,,Hooked shark gashed right leg PROVOKED INCIDENT,N,,16' 800-lb shark,"Lime Springs Herald, 9/22/1932; R. Heyer",1932.08.10-Olsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.10-Olsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.10-Olsen.pdf,1932.08.10,1932.08.10,1241,, +1932.08.09,09-Aug-32,1932,Unprovoked,AUSTRALIA,Torres Strait,,Pearl diving,"Jack Giblett or Gilbert, Torres Strait Islander",M,,Bitten on buttock & leg,N,,,"J. Green, p.32; V.M. Coppleson (1958), p.242",1932.08.09-JackGiblett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.09-JackGiblett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.09-JackGiblett.pdf,1932.08.09,1932.08.09,1240,, +1932.08.06,06-Aug-32,1932,Provoked,BAHAMAS,New Providence Island,Nassau,On expedition filming a feature movie & standing on tripod,George Vanderbilt,M,18,"No injury, hooked shark rammed tripod PROVOKED INCIDENT",N,,,"New York Times, 8/7/1932 ",1932.08.06-Vanderbilt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.06-Vanderbilt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.06-Vanderbilt.pdf,1932.08.06,1932.08.06,1239,, +1932.07.14.R,Reported 14-Jul-1932,1932,Invalid,USA,Texas,Galveston,,male,M,17,Body recovered from shark but death due to shark bite was not confirmed,Y,,9' shark,IGFA,1932.07.14.R-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.07.14.R-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.07.14.R-Galveston.pdf,1932.07.14.R,1932.07.14.R,1238,, +1932.07.02,02-Jul-32,1932,Boating,CANADA,Bay of Fundy,16 km west of Digby Gut,"Fishing, hauling in fishing gear"," 7.6 m motorized boat, occupants: fisherman & his son",M,,"No injury to occupants, shark bumped boat repeatedly",N,,Teeth in hull identified as those from a white shark 4.6 m [15'] in length,Piers (1933),1932.07.02-Bay-of-Fundy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.07.02-Bay-of-Fundy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.07.02-Bay-of-Fundy.pdf,1932.07.02,1932.07.02,1237,, +1932.06.28,28-Jun-32,1932,Provoked,USA,New Jersey,"10 miles offshore from Sea Isle City, Cape May County",Fishing,Antonio Fonzzo,M,32,Knee bitten by boated shark PROVOKED INCIDENT,N,,"250-lb ""dog shark""","NY Times, 6/29/1932 ",1932.06.28-Fonzzo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.06.28-Fonzzo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.06.28-Fonzzo.pdf,1932.06.28,1932.06.28,1236,, +1932.06.26,26-Jun-32,1932,Provoked,USA,New Jersey,"Off Ocean City, Cape May County",Fishing,Giacomo Giavanco,M,,Ankle broken when 500-lb boated shark lashed him with its tail PROVOKED INCIDENT,N,,,"NY Times, 6/29/1932 ",1932.06.26-Giacomo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.06.26-Giacomo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.06.26-Giacomo.pdf,1932.06.26,1932.06.26,1235,, +1932.06.20,20-Jun-32,1932,Unprovoked,FIJI,Yasawa Islands,Nabukeru ,Free diving with goggles,Asena (female),F,,FATAL,Y,,,"V.M. Coppleson (1958), p.259",1932.06.20-Asena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.06.20-Asena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.06.20-Asena.pdf,1932.06.20,1932.06.20,1234,, +1932.05.12,12-May-32,1932,Unprovoked,AUSTRALIA,Torres Strait,Near Warrior Reefs,Pearl diving,"Henry Solomon, Cape York native",M,,FATAL,Y,,,"V.M. Coppleson (1958), p242",1932.05.12-HenrySolomon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.05.12-HenrySolomon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.05.12-HenrySolomon.pdf,1932.05.12,1932.05.12,1233,, +1932.05.00,May-32,1932,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island,Pearl diving,"Nishi, Japanese diver",M,,Severe injury to forearm near elbow,N,,,"J. Green, p.32; V.M. Coppleson (1958), p.242",1932.05.00-Nishi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.05.00-Nishi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.05.00-Nishi.pdf,1932.05.00,1932.05.00,1232,, +1932.04.16.b,16-Apr-32,1932,Unprovoked,PHILIPPINES,Manila,Fort Mills,Standing,male (civilian),M,,"FATAL, torso bitten ",Y,,,J.F. Corby,1932.04.16.b-civilian-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.04.16.b-civilian-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.04.16.b-civilian-male.pdf,1932.04.16.b,1932.04.16.b,1231,, +1932.04.16.a,16-Apr-32,1932,Unprovoked,PHILIPPINES,Manila,Fort Mills,Standing,female,F,,"FATAL, torso bitten ",Y,,,J. F. Corby,1932.04.16.a-Philippine-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.04.16.a-Philippine-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.04.16.a-Philippine-female.pdf,1932.04.16.a,1932.04.16.a,1230,, +1932.02.16,16-Feb-32,1932,Unprovoked,USA,Hawaii,"1 mile off Mala Wharf, Lahaina, Maui",Swimming,"William France, a sailor from U.S. Navy vessel Saratoga",M,,Two 6-inch lacerations,N,,,"San Antonio Light (San Antonio, Texas), 2/17/1932; J. Borg, p.71",1932.02.16-WilliamFrance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.02.16-WilliamFrance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.02.16-WilliamFrance.pdf,1932.02.16,1932.02.16,1229,, +1932.02.13,13-Feb-32,1932,Unprovoked,AUSTRALIA,Queensland,Calliope River,Fishing with dynamite,Eric Francis Beck,M,,Foot bitten,N,,,"Morning Bulletin, 6/5/1932",1932.02.13-Beck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.02.13-Beck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.02.13-Beck.pdf,1932.02.13,1932.02.13,1228,, +1932.02.08,08-Feb-32,1932,Unprovoked,PHILIPPINES,Manila,Fort Mills,Working near fish traps,Filipino soldier,M,,"FATAL, died next day at 03h00",Y,,,J.F. Corby,1932.02.08-PhilippineSoldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.02.08-PhilippineSoldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.02.08-PhilippineSoldier.pdf,1932.02.08,1932.02.08,1227,, +1932.01.27,27-Jan-32,1932,Unprovoked,AUSTRALIA,Queensland,Ipswich,Swimming,Charles Adams,M,,Thigh bitten,N,Afternoon,A small shark,"Brisbane Courier, 1/28/1932",1932.01.27-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.01.27-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.01.27-Adams.pdf,1932.01.27,1932.01.27,1226,, +1932.01.11,11-Jan-32,1932,Boating,AUSTRALIA,Victoria,Frankston,Fishing,boat,,,No details,UNKNOWN,,Grey nurse shark,G.P. Whitley citing Herald (Melbourne) 1/12/1932 ,1932.01.11-boatFrankston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.01.11-boatFrankston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.01.11-boatFrankston.pdf,1932.01.11,1932.01.11,1225,, +1932.01.06,06-Jan-32,1932,Provoked,MEXICO,Baja California,Descano Point,Fishing,Efrain Ybarra & Francisco Durazzo,M,36 & 23,Hooked shark capsized rowboat & the 2 men were drowned PROVOKED INCIDENT,Y,,,"NY Herald Tribune, 1/8/1933 ",1932.01.06-BajaFishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.01.06-BajaFishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.01.06-BajaFishermen.pdf,1932.01.06,1932.01.06,1224,, +1932.00.00,1932,1932,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Kowie River Mouth, Port Alfred",Collecting fish by lamplight in gully,Manning Samuels,M,23,"Right shin, calf and sole of foot lacerated",N,After dusk,"Raggedtooth shark, 1.2 m to 1.5 m [4' to 5'] ","R. Samuels, K. Reynolds & M. Levine, GSAF ",1932.00.00-Samuels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.00.00-Samuels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.00.00-Samuels.pdf,1932.00.00,1932.00.00,1223,, +1931.11.26,26-Nov-31,1931,Unprovoked,AUSTRALIA,Torres Strait,Barrier Reef near Innisfail,Diving for trochus from lugger,"Albert Mainlander, an aboriginal",M,45,Left foot acerated,N,,4 m [13'] shark,"The Argus, 11/28/1931; /V.M. Coppleson.Q10. (1933) ",1931.11.26-Mainlander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.11.26-Mainlander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.11.26-Mainlander.pdf,1931.11.26,1931.11.26,1222,, +1931.09.27,27-Sep-31,1931,Unprovoked,JAMAICA,,"East Beach, Kingsston",Diving off wharf,Wilbert Gibbs,M,Teen,FATAL,Y,12h00,,"The Gleaner, 9/29/1931",1931.09.27-Gibbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.27-Gibbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.27-Gibbs.pdf,1931.09.27,1931.09.27,1221,, +1931.09.21.b,21-Sep-31,1931,Unprovoked,USA,Florida,"Municipal Beach, West Palm Beach, Palm Beach County",Swimming,Sam Barrows,M,,Minor injury,N,,,"L. Schultz & M. Malin, p.534",1931.09.21.a-b-Holaday-Barrows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.21.a-b-Holaday-Barrows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.21.a-b-Holaday-Barrows.pdf,1931.09.21.b,1931.09.21.b,1220,, +1931.09.21.a,21-Sep-31,1931,Unprovoked,USA,Florida,"Municipal Beach, West Palm Beach, Palm Beach County",Swimming ,Gertrude Holiday,F,20,Right thigh & calf lacerated,N,,"Hammerhead shark, 2.4 m [8'], according to lifeguard Sam Barrows","E.W. Gudger (1937); V.M. Coppleson (1958), p.252; R. Skocik, pp.174-175",1931.09.21.a-b-Holaday-Barrows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.21.a-b-Holaday-Barrows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.21.a-b-Holaday-Barrows.pdf,1931.09.21.a,1931.09.21.a,1219,, +1931.09.02,02-Sep-31,1931,Invalid,USA,Hawaii,"Kahala, O'ahu",Fishing,George Gaspar,M,,"Swept out to sea by strong currents, his remains found in shark caught off Barber�s Point",Y,,5.5 m [18'] shark,"G.H. Balazs & A.K.H. Kam; J. Borg, p.71; L. Taylor (1993), pp.96-97",1931.09.02-Gaspar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.02-Gaspar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.02-Gaspar.pdf,1931.09.02,1931.09.02,1218,, +1931.08.31,31-Aug-31,1931,Unprovoked,CUBA,Havana Province,"Vedado Baths, Miramar, Havana",Swimming,Manuel Romero,M,18,FATAL (Wire netting installed at local beaches after this incident.),Y,FATAL (Wire netting installed at local beaches after this incident.),,"NYTimes, 9/2/1931",1931.08.31-Romero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.31-Romero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.31-Romero.pdf,1931.08.31,1931.08.31,1217,, +1931.08.30,30-Aug-31,1931,Invalid,USA,Hawaii,,,Sadao Nakatus,M,,"""Mysteriously disappeared"" His body was found in a shark caught at Barber's Point on 01-Sep-1931",Y,,"18', 750-lb shark","Middlesboro Daily News, 9//2/1931",1931.08.30-Nakatus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.30-Nakatus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.30-Nakatus.pdf,1931.08.30,1931.08.30,1216,, +1931.08.27,27-Aug-31,1931,Boating,USA,New Jersey,"1 mile ESE of Navesink, Monmouth County",Fishing for bluefish,"boat, occupants: Nels Jacobson & Franklin Harriman Covert",,,No injury to occupants. Shark chasing fish struck boat,N,,,Press clipping dated 8/28/1931 ,1931.08.27-NaveskinShrewsbury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.27-NaveskinShrewsbury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.27-NaveskinShrewsbury.pdf,1931.08.27,1931.08.27,1215,, +1931.08.25,25-Aug-31,1931,Unprovoked,CUBA,Havana Province,"Miramar subdivision, Havana",Swimming a quarter mile offshore,Pablo Medina,M,23,"FATAL, right leg bitten ",Y,,,"New York Times, 8/27/1931, p.7; V.M. Coppleson (1962), p.246",1931.08.25-Medina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.25-Medina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.25-Medina.pdf,1931.08.25,1931.08.25,1214,, +1931.08.23,23-Aug-31,1931,Unprovoked,CUBA,Havana Province,"Miramar, Havana",Swimming ,Laureano Rodriguez,M,,"FATAL, ""rescuers saw shark trying to drag him under by the leg"" ",Y,,,"New York Times, 8/27/1931, p.7; V.M. Coppleson (1958), p.258",1931.08.23-Rodriguez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.23-Rodriguez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.23-Rodriguez.pdf,1931.08.23,1931.08.23,1213,, +1931.08.18,18-Aug-31,1931,Unprovoked,USA,Texas,Off Brownsville,Swimming,P. Kincaid Zifflewwiggett,M,,Minor injury,N,,,"Brownsville Herald, 8/19/1931",1931.08.18-Zifflewwiggett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.18-Zifflewwiggett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.18-Zifflewwiggett.pdf,1931.08.18,1931.08.18,1212,, +1931.08.06.R,Reported 06-Aug-1931,1931,Unprovoked,USA,New Jersey,"Sandy Hook (ocean side), Monmouth County",Swimming,"soldier, a private",M,,Survived,N,,,"New York Times, 8/6/1931",1931.08.06.R-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.06.R-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.06.R-soldier.pdf,1931.08.06.R,1931.08.06.R,1211,, +1931.08.01,01-Aug-31,1931,Unprovoked,AUSTRALIA,Queensland,Port Douglas,Fell overboard?,Llewellyn Roberts,M,,FATAL,Y,,,"Townsville Daily Bulletin, 8/4/1931",1931.08.01-Roberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.01-Roberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.01-Roberts.pdf,1931.08.01,1931.08.01,1210,, +1931.07.28.R,Reported 28-Jul-1931,1931,Unprovoked,FIJI,Viti Levu Island,Tamavua River,Swimming,Narnak,M,,Multiple injuries ,N,,small sharks,"Sydney Morning Herald, 8/12/1931",1931.07.28.R-Narnak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.07.28.R-Narnak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.07.28.R-Narnak.pdf,1931.07.28.R,1931.07.28.R,1209,, +1931.07.15,15-Jul-31,1931,Unprovoked,USA,New Jersey,"Sea Girt, Monmouth County",Swimming,soldier in NJ National Guard,M,,Nipped on leg,N,,,"Daily Courier, 7/21/1931",1931.07.15-SeaGirt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.07.15-SeaGirt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.07.15-SeaGirt.pdf,1931.07.15,1931.07.15,1208,, +1931.06.14,14-Jun-31,1931,Unprovoked,USA,Hawaii,"Pearl Harbor, O'ahu","Fishing, had just speared a ulua",male,M,,Survived,N,,,"V.M. Coppleson, p.260",1931.06.14-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.14-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.14-male.pdf,1931.06.14,1931.06.14,1207,, +1931.06.13,13-Jun-31,1931,Provoked,USA,Hawaii,"Pearl Harbor, O'ahu",Gaffing & attempting to bring onboard a harpooned shark,Lieutenant Williamson,M,,Tip of finger amputated PROVOKED INCIDENT,N,,"Tiger shark, 3 m [10']","G.H. Balazs; J. Borg, p.70; L. Taylor (1993), pp.96-97",1931.06.13-Williamson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.13-Williamson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.13-Williamson.pdf,1931.06.13,1931.06.13,1206,, +1931.06.04.R,Reported 04-Jun-1931,1931,Unprovoked,USA,Florida,"Key West, Monroe County ",Crabbing,"Frank Johnson, Jr.",M,,Lacerations to fingers,N,,6' shark,"Key West Citizen, 6/4/1931",1931.06.04.R-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.04.R-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.04.R-Johnson.pdf,1931.06.04.R,1931.06.04.R,1205,, +1931.05.02,02-May-31,1931,Boating,AUSTRALIA,New South Wales,Kempsey,,"pilot boat, occupants; Captain McAlister & crew",,,No injury to occupants; oar & rudder bitten,N,,"""a school of sharks""","Sydney Morning Herald, 6/5/1931; Whitley, p.262",1931.05.02-pilot-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.05.02-pilot-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.05.02-pilot-boat.pdf,1931.05.02,1931.05.02,1204,, +1931.04.27.R,Reported 27-Apr-1931,1931,Unprovoked,,French Southern Territories,�le Saint-Paul,"Fishing, boat capsized",Quillezic,M,,FATAL,Y,,,"Los Angeles Times, 4/27/1931",1931.04.27.R-Quillezic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.04.27.R-Quillezic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.04.27.R-Quillezic.pdf,1931.04.27.R,1931.04.27.R,1203,, +1931.03.22,22-Mar-31,1931,Unprovoked,AUSTRALIA,Queensland,"Ross River, Townsville",Fishing with a cast net,Arthur Tomida,M,19,"FATAL, left thigh severely bitten ",Y,,,"V. M. Coppleson.Q9. (1933); V.M. Coppleson (1958), pp.90 & 238",1931.03.22-Tomida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.03.22-Tomida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.03.22-Tomida.pdf,1931.03.22,1931.03.22,1202,, +1931.03.15,16-Mar-31,1931,Boating,TURKEY,,"Bakurk�y, Istanbul",Fishing,"Fishing boat. occupants: Laz H�seyin, Ali Osman & Tursun +",,,"No injury to occupants, shark crushed boat",N,,,"C. Moore, GSAF",1931.03.15-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.03.15-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.03.15-Turkey.pdf,1931.03.15,1931.03.15,1201,, +1931.03.06,06-Mar-31,1931,Provoked,AUSTRALIA,South Australia,Encounter Bay,"Fishing, hauling in net, shark in net",A. Ewen,M,,"Finger lacerated, PROVOKED INCIDENT",N,,"1.8 m [6'] ""cocktail shark","Whitley, p.262; V.M. Coppleson (1933)",1931.03.06-Ewen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.03.06-Ewen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.03.06-Ewen.pdf,1931.03.06,1931.03.06,1200,, +1931.02.10,10-Feb-31,1931,Invalid,AUSTRALIA,New South Wales,Maroubra Beach,Swimming ,Samuel Rosenthal,M,39,Death may have been due to drowning,Y,04h00,,"Examiner, 2/11/1931",1931.02.10-Rosenthal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.02.10-Rosenthal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.02.10-Rosenthal.pdf,1931.02.10,1931.02.10,1199,, +1931.01.24,24-Jan-31,1931,Unprovoked,AUSTRALIA,Torres Strait,Near Thursday Island,,native,M,,Recovered,N,,,"G.P. Whitley, p.262",1931.01.24-ThursdayIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.01.24-ThursdayIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.01.24-ThursdayIsland.pdf,1931.01.24,1931.01.24,1198,, +1931.01.14,14-Jan-31,1931,Unprovoked,AUSTRALIA,Torres Strait,,Pearl diving,"Albertus, a Malay",M,,"Thigh, kneecap & lower leg badly lacerated",N,,,"V.M. Coppleson (1958), p.242",1931.01.14-Albertus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.01.14-Albertus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.01.14-Albertus.pdf,1931.01.14,1931.01.14,1197,, +1931.01.07,07-Jan-31,1931,Unprovoked,AUSTRALIA,Queensland,"Yeppoon, near Ross Creek",Swimming,Stanley Roser,M,18,Severe bump & few superficial wounds ,N,16h00,1.5 m [5'] shark,"Canberra Times, 1/9/1931; V.M. Coppleson.Q8. (1933); V.M. Coppleson (1958), pp.91 & 237",1931.01.07-Roser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.01.07-Roser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.01.07-Roser.pdf,1931.01.07,1931.01.07,1196,, +1931.00.00.b,1931,1931,Unprovoked,TONGA,Niua ,Niuafo'ou Island ,"Swimming, carrying tin can with mail to steamer",male,M,,"FATAL, thereafter canoes were used to carry the mail",Y,,,"Clearfield Progress, 5/27/1931",1931.00.00.b-Tin-can-mail.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.00.00.b-Tin-can-mail.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.00.00.b-Tin-can-mail.pdf,1931.00.00.b,1931.00.00.b,1195,, +1931.00.00.a,1931,1931,Unprovoked,PAPUA NEW GUINEA,,,,"""3 shark attacks in 3 days""",,,No details,UNKNOWN,,,"V.M. Coppleson, p.49",1931.00.00.a-NewGuinea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.00.00.a-NewGuinea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.00.00.a-NewGuinea.pdf,1931.00.00.a,1931.00.00.a,1194,, +1930.12.25,25-Dec-30,1930,Unprovoked,AUSTRALIA,New South Wales,"Homebush Bay, Parramatta River, Sydney",Swimming,James Knight,M,49,"Bumped by shark, legs abraded",N,14h30,,"V.M. Coppleson (1933); V.M. Coppleson (1958), pp.44 & 232; A. Sharpe, p.17",1930.12.25-Knight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.25-Knight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.25-Knight.pdf,1930.12.25,1930.12.25,1193,, +1930.12.13,13-Dec-30,1930,Unprovoked,AUSTRALIA,New South Wales,"Sailor Bay, Middle Harbour, Sydney",Fell overboard,Frank Kenny,M,,FATAL,Y,,,"Northern Standard (Dawin), 12/18/1930",1930.12.13-Kenny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.13-Kenny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.13-Kenny.pdf,1930.12.13,1930.12.13,1192,, +1930.12.02,02-Dec-30,1930,Boating,AUSTRALIA,Victoria,Rosebud,Fishing,12' dinghy,,,No injury to occupants; shark seized gunwale & tried to overturn boat,N,,7 shark's teeth found embedded in the woodwork of the boat,"G.P. Whitley, p.262",1930.12.02-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.02-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.02-dinghy.pdf,1930.12.02,1930.12.02,1191,, +1930.12.00,Dec-30,1930,Unprovoked,AUSTRALIA,New South Wales,Parramata River,,male,M,,FATAL,Y,,,"H.D.Baldridge (1994), SAF Case #506",1930.12.00-ParamattaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.00-ParamattaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.00-ParamattaRiver.pdf,1930.12.00,1930.12.00,1190,, +1930.11.30,30-Nov-30,1930,Unprovoked,AUSTRALIA,Queensland,"St. Helena Island, Moreton Bay",Thrown into water from fishing dinghy,Moses Smith,M,,Laceration to leg,N,,,"Sydney Morning Herald, 12/1/1930 ",1930.11.30-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.11.30-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.11.30-Smith.pdf,1930.11.30,1930.11.30,1189,, +1930.09.26.R,Reported 26-Sep-1930,1930,Unprovoked,HONDURAS,Black River,,Swimming,Indian guide,M,,FATAL,Y,,,"NY Times, 9/26/1930",1930.09.26.R-IndianGuide.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.09.26.R-IndianGuide.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.09.26.R-IndianGuide.pdf,1930.09.26.R,1930.09.26.R,1188,, +1930.09.12.R,1930,1930,Boating,AZORES,,,,,,,"No inury to occupants, shark struck boat",N,,,"C. Moore, GSAF",1930.09.12.R-Azores.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.09.12.R-Azores.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.09.12.R-Azores.pdf,1930.09.12.R,1930.09.12.R,1187,, +1930.08.31,31-Aug-30,1930,Unprovoked,AUSTRALIA,Western Australia,Geraldton,Fishing,William Burton,M,17,Minor injury,N,15h30,,"Geraldton Guardian, 9/2/1930 ",1930.08.31-Burton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.08.31-Burton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.08.31-Burton.pdf,1930.08.31,1930.08.31,1186,, +1930.08.16,16-Aug-30,1930,Unprovoked,SPAIN,Canary Islands,"El Escabonal, Tenerife ",Swimming,Cecil Bethencourt,M,38,Leg bitten,N,,,C. Moore,1930.08.16-El-Escabonal-CanaryIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.08.16-El-Escabonal-CanaryIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.08.16-El-Escabonal-CanaryIslands.pdf,1930.08.16,1930.08.16,1185,, +1930.08.06,06-Aug-30,1930,Unprovoked,USA,Florida,"Palm Beach Inlet, Palm Beach County",Swimming,Captain W. Kemp,M,,Lacerations to foot & ankle,N,06h00,,"Palm Beach Post, 8/7/1930",1930.08.06-Kemp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.08.06-Kemp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.08.06-Kemp.pdf,1930.08.06,1930.08.06,1184,, +1930.07.19,19-Jul-30,1930,Unprovoked,CUBA,Havana Province,"LaPlaya Beach / Vedado, Havana",Swimming,Emilio Grenet ,M,29,"Right arm & leg bitten, arm & leg surgically amputated ",N,Evening,,"NY Times, 7/21/1930, p.7 & 8/27/1931; V.M. Coppleson (1958), p.258",1930.07.19-Grenet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.07.19-Grenet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.07.19-Grenet.pdf,1930.07.19,1930.07.19,1183,, +1930.07.11,11-Jul-30,1930,Unprovoked,USA,Florida,"Jensen Beach, Martin County",Swimming,William Harns,M,21,Arm lacerated from shoulder to wrist,N,,Tiger shark,"NY Times, 7/13/1930, Section II, p.1, col.7; R.F. Hutton; V.M. Coppleson (1958), p.252",1930.07.11-Harns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.07.11-Harns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.07.11-Harns.pdf,1930.07.11,1930.07.11,1182,, +1930.06.04,04-Jun-30,1930,Unprovoked,AUSTRALIA,Torres Strait,Near Mabuiag Island,,"Ibigan, a Torres Strait islander",M,,FATAL,Y,,,"V.M. Coppleson (1958), p.242",1930.06.04-Ibigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.06.04-Ibigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.06.04-Ibigan.pdf,1930.06.04,1930.06.04,1181,, +1930.05.27,27-May-30,1930,Unprovoked,USA,Texas,High Island,Swimming / floating,A.B. Wattigney,M,,Lacerations to arm,N,18h00,,"Port Arthur News, 5/28/1930",1930.05.27-Wattigney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.27-Wattigney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.27-Wattigney.pdf,1930.05.27,1930.05.27,1180,, +1930.05.11.R,Reported 11-May-1930,1930,Boating,TURKEY,,Ye?ilk�y,Fishing,small boat. Occupants: 2 Englishmen,M,,No injury but shark damaged boat,N,,,"C. Moore, GSAF",1930.05.11.R-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.11.R-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.11.R-Turkey.pdf,1930.05.11.R,1930.05.11.R,1179,, +1930.05.11,11-May-30,1930,Invalid,COSTA RICA,Lim�n Province,Off Porto Limon,Air disaster,,,,Shark involvement prior to death was not confirmed,Y,,,"Evening Independent, 5/12/1930",1930.05.11-Rovirosa-Sidar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.11-Rovirosa-Sidar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.11-Rovirosa-Sidar.pdf,1930.05.11,1930.05.11,1178,, +1930.04.08,08-Apr-30,1930,Invalid,SOUTH AFRICA,Eastern Cape Province,Bashee River,,male,M,17,Remains of drowning victim recovered from shark,Y,,"250-lb female ""blue fin"" shark",Dr. J.A. Du Toit,1930.04.08-BasheeRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.04.08-BasheeRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.04.08-BasheeRiver.pdf,1930.04.08,1930.04.08,1177,, +1930.03.07.R,Reported 07-Mar-1930,1930,Unprovoked,USA,Florida,70 miles off Tarpon Springs,Sponge diving,Speros Gigis,M,,No injury to diver but shark left 3 toothmarks in his helmet,N,,,"Evening Independent, 3/7/1930 ",1930.03.07.R-Giglis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.03.07.R-Giglis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.03.07.R-Giglis.pdf,1930.03.07.R,1930.03.07.R,1176,, +1930.02.20,20-Feb-30,1930,Unprovoked,AUSTRALIA,Torres Strait,,Pearl diving,Jerry,M,19,Arm & chest injured,N,,,"V.M. Coppleson (1958), p.242 ",1930.02.20-Jerry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.20-Jerry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.20-Jerry.pdf,1930.02.20,1930.02.20,1175,, +1930.02.15,15-Feb-30,1930,Unprovoked,AUSTRALIA,Victoria,"Middle Brighton, Port Phillip",Diving off pier & treading water,Norman Clark,M,18,FATAL,Y,16h30,White shark 4.9 m [16'] ,"V.M. Coppleson.V2.(1933); V.M. Coppleson (1958), pp.110 & 241; A. MacCormick, p.175; J. West, ASAF",1930.02.15-Clarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.15-Clarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.15-Clarke.pdf,1930.02.15,1930.02.15,1174,, +1930.02.03.R,Reported 03-Feb-1930,1930,Provoked,AUSTRALIA,Western Australia,Onslow,Removing shark from a trap,Mr. M. Donovan,M,,Laceration to thigh from trapped shark PROVOKED INCIDENT,N,,,"Geraldton Guardian and Express, 2/3/1930",1930.02.03.R-Donovan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.03.R-Donovan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.03.R-Donovan.pdf,1930.02.03.R,1930.02.03.R,1173,, +1930.01.22,22-Jan-30,1930,Boating,MEXICO,Veracruz,Panuco River Mouth,Fishing schooner Jose Luis foundered,,,,remains of one of the crew found in shark,Y,,,"Reno Evening Gazette, 2/14/1930",1930.01.22-FishingSchooner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.01.22-FishingSchooner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.01.22-FishingSchooner.pdf,1930.01.22,1930.01.22,1172,, +1930.01.16,16-Jan-30,1930,Unprovoked,SOUTH AFRICA,Western Cape Province,"Melkbaai, False Bay",Swimming,Servy LeRoux,M,23,Torso & arm bitten,N,17h30,"White shark, 4.5 m [14'9""], identity confirmed by witness & tooth pattern","A. LeRoux, M. Levine, GSAF; L. Green; G.Wilson",1930.01.16-le-Roux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.01.16-le-Roux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.01.16-le-Roux.pdf,1930.01.16,1930.01.16,1171,, +1930.01.00,Jan-30,1930,Sea Disaster,MAURITIUS,,Two miles from shore in Tamarind Bay,Swimming to shore after a squall capsized their motorized shark fishing boat,"males, shark fishermen",M,,Five men were said to have been killed by sharks ,Y,,,"NY Times, 1/14/1930, p.8, col.3; V.M. Coppleson (1958), p.261",1930.01.00-Mauritius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.01.00-Mauritius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.01.00-Mauritius.pdf,1930.01.00,1930.01.00,1170,, +1930.00.00.c,1930,1930,Unprovoked,OKINAWA,,,,Hyoyu Kadena,M,17,Survived,N,,,Wonderokinawa.com,1930.00.00.c-Kadena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.00.00.c-Kadena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.00.00.c-Kadena.pdf,1930.00.00.c,1930.00.00.c,1169,, +1930.00.00.a,1930,1930,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"North End Beach, Port Elizabeth",Swimming,Mr. Meyer,M,,FATAL,Y,,,H. Monsen,1930.00.00.a-Meyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.00.00.a-Meyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.00.00.a-Meyer.pdf,1930.00.00.a,1930.00.00.a,1168,, +1929.12.26,26-Dec-29,1929,Unprovoked,AUSTRALIA,New South Wales,"White Bay, near Bald Rock Jetty, Sydney Harbor ",Diving by wharf,William Oakley,M,16,"FATAL, left arm severed above elbow, lacerations on chest, right thumb severed, left thigh lacerated to bone, abrasions ",Y,,Tiger shark,"V.M. Coppleson.N3.(1933); V.M. Coppleson (1958), p.232; G.A. Llano, pp. 170-171",1929.12.26-Oakley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.26-Oakley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.26-Oakley.pdf,1929.12.26,1929.12.26,1167,, +1929.12.21,21-Dec-29,1929,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island,Diving,male,M,,Recovered at Thursday Island Hospital,N,,,L. Schultz & M. Malin ref. SAF Case #510,1929.12.21-ThursdayIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.21-ThursdayIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.21-ThursdayIsland.pdf,1929.12.21,1929.12.21,1166,, +1929.12.16,16-Dec-29,1929,Unprovoked,AUSTRALIA,New South Wales,Collaroy,Bathing or body surfing ,Nancy Thom,F,17,Superficial lacerations on right leg,N,,"""a small shark""","V.M. Coppleson.N10. (1933); V.M. Coppleson (1958), pp.112 & 232. Note: In 1933 Coppleson gives the date of 16-Jan-1929 but revised it to 16-Dec-1929 in later works",1929.12.16-Thom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.16-Thom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.16-Thom.pdf,1929.12.16,1929.12.16,1165,, +1929.12.13,13-Dec-29,1929,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island,Pearl diving,"Nago, a Japanese diver",M,,Injuries to chest & arm,N,,,"J. Green, p.32; V.M. Coppleson (1958), p.242",1929.12.13-Nago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.13-Nago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.13-Nago.pdf,1929.12.13,1929.12.13,1164,, +1929.12.03.R,Reported 03-Dec-1929,1929,Unprovoked,AUSTRALIA,Queensland,Townsville,,male,M,50s,FATAL,Y,,,"Brisbane Courier, 12/3/1929",1929.12.03.R-Unidentified.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.03.R-Unidentified.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.03.R-Unidentified.pdf,1929.12.03.R,1929.12.03.R,1163,, +1929.11.29,29-Nov-29,1929,Sea Disaster,KIRIBATI,Phoenix Islands,Nikumaroro Island,"Sea Disaster, wreck of the SS Norwich City",,,,"11 of her crew perished, most, possibly all, deaths were due to drowning",Y,,,"Hartford Courant, 2/15/1930",1929.11.29-NorwichCity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.11.29-NorwichCity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.11.29-NorwichCity.pdf,1929.11.29,1929.11.29,1162,, +1929.11.21,21-Nov-29,1929,Unprovoked,CUBA,Cienfuegos Province,Cienfuegos,Fishing,Gamatano Yugoago,M,,"Shark attacked his boat, threatening to capsize it. He jumped overboard & shark bit his arm. He knifed & killed shark. Later his arm was surgically amputated",N,,,"New York Times, 11/28/1929",1929.11.21-Yugoago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.11.21-Yugoago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.11.21-Yugoago.pdf,1929.11.21,1929.11.21,1161,, +1929.10.20,20-Oct-29,1929,Unprovoked,AUSTRALIA,Torres Strait,Near Badu Island,Pearl diving,Lifu,M,,Heel injured,N,,,"V.M. Coppleson (1958), p.242",1929.10.20-Lifu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.10.20-Lifu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.10.20-Lifu.pdf,1929.10.20,1929.10.20,1160,, +1929.10.02,02-Oct-29,1929,Unprovoked,SPAIN,Valencia,Nasareth Beach,Fishing ,Vicente Bonet,M,,Arm injured when sharks rammed his boat,N,,,C. Moore,1929.10.02-Bonet-Valencia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.10.02-Bonet-Valencia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.10.02-Bonet-Valencia.pdf,1929.10.02,1929.10.02,1159,, +1929.09.01,01-Sep-29,1929,Unprovoked,AUSTRALIA,Queensland,"Ross River, Townsville",Fell from wharf into water & attacked immediately,Edward William Hobbs,M,42,"FATAL, severe injuries to both legs ",Y,,,"V.M. Coppleson.Q7. (1933); V.M. Coppleson (1958), pp.90 & 237; A. Sharpe, p.96",1929.09.01-Hobbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.09.01-Hobbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.09.01-Hobbs.pdf,1929.09.01,1929.09.01,1158,, +1929.08.05,05-Aug-29,1929,Unprovoked,USA,South Carolina,Fort Moultrie,Bathing,"Robert W. McGhee, Private 1st Class, 8th Infantry",M,,Left foot & ankle bitten,N,,,"Clay Creswell, GSAF",1929.08.05-McGhee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.08.05-McGhee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.08.05-McGhee.pdf,1929.08.05,1929.08.05,1157,, +1929.07.29,29-Jul-29,1929,Unprovoked,MEXICO,Tamaulipas,Tampico,Swimming,Crew member of Casanova,M,,Right leg severed below knee,N,,,"V.M. Coppleson (1958), p.262",1929.07.29-Casanova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.07.29-Casanova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.07.29-Casanova.pdf,1929.07.29,1929.07.29,1156,, +1929.07.17.R,Reported 17-Jul-1929,1929,Invalid,CAPE VERDE,Santiago Island,Tarrafal,,female,F,,Body of woman recovered from shark,Y,,15' shark,"C. Moore; Heraldo de Madrid, 7/17/1929",1929.07.17.R-CapeVerde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.07.17.R-CapeVerde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.07.17.R-CapeVerde.pdf,1929.07.17.R,1929.07.17.R,1155,, +1929.06.23,23-Jun-29,1929,Provoked,USA,Florida,"Fort Pierce, St Lucie County",Fishing,F.P. Jones,M,,Leg bitten by hooked shark PROVOKED INCIDENT,N,,9-foot shark,"Miami News, 6/25/1929",1929.06.23-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.06.23-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.06.23-Jones.pdf,1929.06.23,1929.06.23,1154,, +1929.05.31,31-May-29,1929,Unprovoked,AUSTRALIA,Torres Strait,,Pearl diving,Johnny Moira,M,,"Injuries to both legs, buttocks, back, lower abdomen & chest",N,,,"V.M. Coppleson (1958), p.242",1929.05.31-Moira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.05.31-Moira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.05.31-Moira.pdf,1929.05.31,1929.05.31,1153,, +1929.04.26.R,Reported 26-Apr-1929,1929,Unprovoked,AUSTRALIA,Queensland,Great Barrier Reef,Diving for trepang,Ali Ah Mat,M,,Thigh bitten,N,,,"Northern Standard (Dawin), 4/26/1929",1929.04.26.R-AliAhMat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.26.R-AliAhMat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.26.R-AliAhMat.pdf,1929.04.26.R,1929.04.26.R,1152,, +1929.04.17.R,Reported 17-Apr-1929,1929,Unprovoked,AUSTRALIA,Queensland,Great Barrier Reef,Diving for trochus,Nistritani Taked,M,,Lacerations to right wrist,N,,,"Brisbane Courier, 4/19/1929",1929.04.17.R-Taked.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.17.R-Taked.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.17.R-Taked.pdf,1929.04.17.R,1929.04.17.R,1151,, +1929.04.11,11-Apr-29,1929,Provoked,AUSTRALIA,Queensland,"Bribie Passage, Caloundra",Standing in knee-deep water,David Alexander Manners,M,19,Right calf severely bitten by shark caught in the net PROVOKED INCIDENT,N,13h45,"Grey nurse shark, 4' ","Brisbane Courier, 4/12/1929; Coppleson (1933)",1929.04.11-Manners.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.11-Manners.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.11-Manners.pdf,1929.04.11,1929.04.11,1150,, +1929.04.09,09-Apr-29,1929,Unprovoked,AUSTRALIA,Torres Strait,Badu Island,,diver,M,,FATAL,Y,,,"G.P. Whitley, citng R.S.M.A.C.",1929.04.09-BaduIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.09-BaduIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.09-BaduIsland.pdf,1929.04.09,1929.04.09,1149,, +1929.04.04,04-Apr-29,1929,Unprovoked,AUSTRALIA,Torres Strait,Badu Island,Swimming between boats,"Ned Luffman, a Torres Strait Islander",M,,FATAL,Y,,,"V.M. Coppleson (1958), p.242 ",1929.04.04-Luffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.04-Luffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.04-Luffman.pdf,1929.04.04,1929.04.04,1148,, +1929.03.16,16-Mar-29,1929,Unprovoked,USA,Florida,"Sea Spray, Palm Beach",Swimming,Leroy Chadbourne,M,26,Right sole & toes lacerated,N,12h00,,"New York Herald Tribune, 3/17/1929 edtion; H. Monsen, L. Green",1929.03.16-Chadbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.16-Chadbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.16-Chadbourne.pdf,1929.03.16,1929.03.16,1147,, +1929.03.12,12-Mar-29,1929,Unprovoked,AUSTRALIA,Torres Strait,Near Dauan Island,Bathing,"schoolboy, a Torres Strait Islander",M,,FATAL,Y,,,"G.P. Whitley; J. Green, p.32; V.M. Coppleson (1958), p.242",1929.03.12-schoolboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.12-schoolboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.12-schoolboy.pdf,1929.03.12,1929.03.12,1146,, +1929.03.04.b,04-Mar-29,1929,Unprovoked,AUSTRALIA,South Australia,Ardrossan,Launching rowboat through the surf,L. Aldridge,M,9,Foot bitten,N,,"""a dog shark""","Barrier Miner, 3/5/1929",1929.03.04.a-b.Roads-Aldridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.04.a-b.Roads-Aldridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.04.a-b.Roads-Aldridge.pdf,1929.03.04.b,1929.03.04.b,1145,, +1929.03.04.a,04-Mar-29,1929,Unprovoked,AUSTRALIA,South Australia,Ardrossan,Launching rowboat through the surf,Dick Roads ,M,12,Legs bitten,N,,"""a dog shark""","Barrier Miner, 3/5/1929",1929.03.04.a-b.Roads-Aldridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.04.a-b.Roads-Aldridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.04.a-b.Roads-Aldridge.pdf,1929.03.04.a,1929.03.04.a,1144,, +1929.02.18,18-Feb-29,1929,Unprovoked,AUSTRALIA,New South Wales,Maroubra Bay,Body surfing,Allan Butcher,M,20,"FATAL, both thighs lacerated, right foot, fingers and knee abraded, died of sepsis",Y,15h30,,"V.M. Coppleson.N12. (1933); V.M. Coppleson (1958), pp.64 & 231; A. Sharpe, pp.63-64",1929.02.18-Butcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.02.18-Butcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.02.18-Butcher.pdf,1929.02.18,1929.02.18,1143,, +1929.02.09,09-Feb-29,1929,Boating,AUSTRALIA,Western Australia,Glenelg,Canoeing,canoe. Occupants: Doreen Tyrell & Frederick Bates,,,"No injury, shark pushed canoe from jetty to a point 100 m away",N,,"Blue pointer, 12'","The Mail, 2/9/1929; G.P. Whitley; SAF Case #505",1929.02.09-canoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.02.09-canoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.02.09-canoe.pdf,1929.02.09,1929.02.09,1142,, +1929.02.08,08-Feb-29,1929,Unprovoked,AUSTRALIA,New South Wales,Bondi,Swimming,John Gibson,M,39,"FATAL, right thigh bitten, femoral artery severed",Y,16h00,,"V. M. Coppleson.N11. (1933); J. Green, p.32; A. Sharpe, p.62",1929.02.08-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.02.08-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.02.08-Gibson.pdf,1929.02.08,1929.02.08,1141,, +1929.01.27,27-Jan-29,1929,Unprovoked,AUSTRALIA,Queensland,"Alma Bay, Magnetic Island, Townsville",Swimming,Harry Weatherall,M, ,"FATAL, right buttock lacerated, left arm severed above elbow, right forearm severed by shark, both arms surgically amputated",Y,17h30,,"V.M. Coppleson.Q.6. (1933); V.M. Coppleson (1958), pp. 90 & 237; G.A. Llano, pp.169-170",1929.01.27-Weatherall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.27-Weatherall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.27-Weatherall.pdf,1929.01.27,1929.01.27,1140,, +1929.01.14,14-Jan-29,1929,Unprovoked,NEW ZEALAND,North Island,"Miranda Head, Hauriki Gulf",Bathing,2 women,F,,"One was bitten on the leg, the other on the arm",N,,,"Argus, 1/15/1929",1929.01.14-NewZealand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.14-NewZealand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.14-NewZealand.pdf,1929.01.14,1929.01.14,1139,, +1929.01.12,12-Jan-29,1929,Unprovoked,AUSTRALIA,New South Wales,Bondi,Body surfing,Colin James Stewart,M,14,"FATAL, right thigh & hip bitten",Y,18h10,12' shark,"V.M. Coppleson.N9. (1933); V.M. Coppleson (1958), pp.64 & 231 ; A. Sharpe, p.59-62",1929.01.12-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.12-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.12-Stewart.pdf,1929.01.12,1929.01.12,1138,, +1929.01.06.R,06-Jan-29,1929,Boating,TURKEY,,San Stefano,Fishing boat,male x 2,M,,FATAL,Y,,,"C. Moore, GSAF",1929.01.06.R-Istanbul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.06.R-Istanbul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.06.R-Istanbul.pdf,1929.01.06.R,1929.01.06.R,1137,, +1929.01.05,05-Jan-29,1929,Unprovoked,FIJI,Viti Levu Island,Suva Harbor,Diving for coins thrown from ship S.S. Moeraki,male,M,,"FATAL, hand severed, both legs & arms bitten & nearly severed ",Y,,,"V.M. Coppleson (1962), p.253, possibly GSAF 1925.00.00",1929.01.05-FijianBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.05-FijianBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.05-FijianBoy.pdf,1929.01.05,1929.01.05,1136,, +1929.00.00.e.R,Reported 1929,1929,Invalid,AUSTRALIA,New South Wales,Sydney Harbor,Swimming,Eric Johanssen,M,,"Later found to be fixtion, never happened",N,,,"J. Lowell, Cradle of the Deep",1929.00.00.e.R-Johanssen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.e.R-Johanssen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.e.R-Johanssen.pdf,1929.00.00.e.R,1929.00.00.e.R,1135,, +1929.00.00.d,Ca. 1929,1929,Provoked,AUSTRALIA,South Australia,Ardrossan,"Wading, netting fish",Ted Bowman,M,,Bitten below the knee,N,,"""a dog shark""","Barrier Miner, 3/5/1929",1929.00.00.d-Bowman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.d-Bowman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.d-Bowman.pdf,1929.00.00.d,1929.00.00.d,1134,, +1929.00.00.c,1929,1929,Provoked,USA,Florida,Indian River area,Fishing,Buck Jones,M,,Thigh lacerated by hooked shark PROVOKED INCIDENT,N,,9' shark,"News Tribune, 6/28/1964",1929.00.00.c-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.c-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.c-Jones.pdf,1929.00.00.c,1929.00.00.c,1133,, +1929.00.00.b,1929,1929,Unprovoked,AUSTRALIA,New South Wales,"Garden Island, Sydney",,William Luckie,M,,Hand lacerated,N,,,"G.P. Whitley, p.261",1929.00.00.b-Luckie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.b-Luckie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.b-Luckie.pdf,1929.00.00.b,1929.00.00.b,1132,, +1929.00.00.a,1929,1929,Unprovoked,USA,Florida,"Cape Canaveral, Brevard County",Hardhat diving ,Carl Holm,M,27,"�Put hand through hatch, shark nearly bit off thumb�",N,,,"R. McAllister; D. Baldridge, p.180 ",1929.00.00.a-Holm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.a-Holm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.a-Holm.pdf,1929.00.00.a,1929.00.00.a,1131,, +1928.12.21,21-Dec-28,1928,Unprovoked,AUSTRALIA,,,Pearl diving,Rueben,M,,Injuries to arm ,N,,,"V.M. Coppleson (1958), p.242",1928.12.21-Rueben.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.12.21-Rueben.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.12.21-Rueben.pdf,1928.12.21,1928.12.21,1130,, +1928.11.18,18-Nov-28,1928,Provoked,USA,New Jersey,"Seabright, Monmouth County",Fishing,"boat, occupants: Captains Charles Anderson, Emit Lindberg & Oscar Benson",M,,"Fishermen were cut & bruised by netted, harpooned and gaffed sharks PROVOKED INCIDENT",N,,"""Blue nose sharks""",NY Herald Tribune,1928.11.18-SeaBright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.18-SeaBright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.18-SeaBright.pdf,1928.11.18,1928.11.18,1129,, +1928.11.15.R,Reported 15-Nov-1928,1928,Boating,INDIA,,,,"dhow, occupant Eugene Wright",M,24,"No injury to occupants, shark bit keel",N,,,"Sun Herald, 11/15/1938",1928.11.15.R-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.15.R-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.15.R-Wright.pdf,1928.11.15.R,1928.11.15.R,1128,, +1928.11.12,12-Nov-28,1928,Sea Disaster,USA,Virginia,"200 miles off Hampton Roads, Virginia, USA","Sea Disaster, sinking of the SS Vestris",Earl DeVore,M,,FATAL,Y,,,"Havre Daily News Promoter, 11/20/1928; TIME Magazine, 11/28/1928",1928.11.12-Vestris-DeVore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.12-Vestris-DeVore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.12-Vestris-DeVore.pdf,1928.11.12,1928.11.12,1127,, +1928.11.04,04-Nov-28,1928,Unprovoked,PANAMA,Gulf of Panama,Taboga Island Bay,Swimming,Abraham Moreno,M,17,"FATAL, multiple injuries including evisceration, 3 fractures of right arm, 5 fingers & leg severed below knee",Y,10h00,Moreno�s leg & part of his swim suit found in 9' shark caught two hours after the attack. Identified as carcharhinid shark by L. Schultz & C. Limbaugh on photograph,"J.W. Phalen is original source. NOTE: V.M. Coppleson (1958), p.263, records the date as 11/4/1929, as does L. Schultz & M. Malin, p.535",1928.11.04-Moreno.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.04-Moreno.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.04-Moreno.pdf,1928.11.04,1928.11.04,1126,, +1928.09.00,Sep-28,1928,Unprovoked,USA,Texas,Corpus Christi,Fishing,W.R. Loesberg,M,,Knee bitten,N,,,"Galveston Daily News, 12/7/1929",1928.09.00-Loesberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.09.00-Loesberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.09.00-Loesberg.pdf,1928.09.00,1928.09.00,1125,, +1928.08.24.R,Reported 24-Aug-1928,1928,Invalid,USA,New Jersey,Off shore,,male,M,,Thumb & coat sleeve recovered from shark's gut,UNKNOWN,,7' shark,"Decatur Evening Herald, 8/24/1928 ",1928.08.24.R-Thumb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.08.24.R-Thumb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.08.24.R-Thumb.pdf,1928.08.24.R,1928.08.24.R,1124,, +1928.07.11,11-Jul-28,1928,Unprovoked,AUSTRALIA,,,Pearl diving,"Willie Poid, a Torres Strait islander",M,,Injuries to chest,N,,,"V.M. Coppleson (1958), p.242",1928.07.11-Poid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.07.11-Poid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.07.11-Poid.pdf,1928.07.11,1928.07.11,1123,, +1928.07.00,Late Jul-1928,1928,Provoked,ITALY,Tuscany,Viareggio,Boating,Mr. Bagolinii,M,,"No injury, shark approached the boat, he hit it with and oar and fell into the sea PROVOKED INCIDENT",N,,"Species unknown, possibly a white shark",A. De Maddalena; Gianturco (1978),1928.07.00-Bagolini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.07.00-Bagolini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.07.00-Bagolini.pdf,1928.07.00,1928.07.00,1122,, +1928.06.24.R,Reported 24-Jun-1928,1928,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Swimming,Jim Stevens,M,,Bitten on leg,N,,,"Ludington Daily News, 6/24/1928",1928.06.24.R-Stevens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.06.24.R-Stevens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.06.24.R-Stevens.pdf,1928.06.24.R,1928.06.24.R,1121,, +1928.05.17,27-May-28,1928,Invalid,INDIA,,,,A.F.C. Smiot,M,,No details,UNKNOWN,13h00,Shark involvement not confirmed,"H.D. Baldridge (1994) SAF Case #1595, questioned authenticity of this incident",1928.05.17-Smiot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.05.17-Smiot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.05.17-Smiot.pdf,1928.05.17,1928.05.17,1120,, +1928.04.14.R,Reported 14-Apr-1928,1928,Unprovoked,AUSTRALIA,Queensland,"Barrow Point, 100 miles north of Cooktown, Queensland",Fishing,a Murray Islander,M,,Severe lacerations to arm,N,,Tiger shark,"The Western Champion, 4/14/1928",1928.04.14.R-BarrowPoint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.14.R-BarrowPoint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.14.R-BarrowPoint.pdf,1928.04.14.R,1928.04.14.R,1119,, +1928.04.14,14-Apr-28,1928,Unprovoked,AUSTRALIA,New South Wales,Bondi,Treading water,Maxwell Steele,M,19,Tissue of left leg stripped from knee to ankle ,N,16h00,,"V. M. Coppleson.N8. (1933); V.M. Coppleson (1958), pp.64 &231; A. Sharpe, p.59",1928.04.14.a-Steele.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.14.a-Steele.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.14.a-Steele.pdf,1928.04.14,1928.04.14,1118,, +1928.04.09,09-Apr-28,1928,Unprovoked,JAMAICA,,"Coal wharf, Port Royal",Diving,Lewis,M,,FATAL,Y,Evening,,"Kingston Gleaner, 4/11/1928",1928.04.09-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.09-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.09-Jamaica.pdf,1928.04.09,1928.04.09,1117,, +1928.04.06,06-Apr-28,1928,Unprovoked,AUSTRALIA,Queensland,Graceville,Bathing,Noel Arthy,M,15,Lacerations to right leg ,N,Morning,4' shark,"Brisbane Courier, 5/8/1928",1928.04.06-Arthy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.06-Arthy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.06-Arthy.pdf,1928.04.06,1928.04.06,1116,, +1928.04.04,04-Apr-28,1928,Unprovoked,AUSTRALIA,New South Wales,"Cooks Hill, Newcastle",Standing in waist-deep water,Edward Arthur Lane,M,28,"FATAL, right hand severed, large lacerations on thigh",Y,18h00,,"V.M. Coppleson.N18. (1933); V.M. Coppleson (1958), pp.76 & 231; A. Sharpe, pp.83-84; G.A. Llano, pp.166-167",1928.04.04-Lane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.04-Lane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.04-Lane.pdf,1928.04.04,1928.04.04,1115,, +1928.03.28.R,Reported 28-Mar-1928,1928,Unprovoked,AUSTRALIA,Queensland,,,Bob,M,,Hip bitten,N,,,"Townsville Daily Bulletin, 3/28/1928",1928.03.28.R-Bob.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.03.28.R-Bob.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.03.28.R-Bob.pdf,1928.03.28.R,1928.03.28.R,1114,, +1928.02.20,20-Feb-28,1928,Unprovoked,AUSTRALIA,Torres Strait,"Near Barrow Point, Queensland",Pearl diving,"Wanewa, a Torres Strait Islander",M,,FATAL,Y,,,"Townsville Daily Bulletin, 2/28/1928",1928.02.20-Wanewa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.02.20-Wanewa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.02.20-Wanewa.pdf,1928.02.20,1928.02.20,1113,, +1928.02.00.b,Feb-28,1928,Unprovoked,COSTA RICA,Near Puntarenas,,Swimming,Lily Artavia,F,,Right leg severely lacerated. Surgically amputated,N,,,"Gleaner (Jamaica), 3/7/1928",1928.02.00.b-Artavia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.02.00.b-Artavia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.02.00.b-Artavia.pdf,1928.02.00.b,1928.02.00.b,1112,, +1928.02.00.a,Feb-28,1928,Unprovoked,COSTA RICA,Near Puntarenas,,Swimming,Armando Chavez,M,,Right leg & hand severely lacerated,N,,,"Gleaner (Jamaica), 3/7/1928",1928.02.00.a-Chavez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.02.00.a-Chavez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.02.00.a-Chavez.pdf,1928.02.00.a,1928.02.00.a,1111,, +1928.01.27,27-Jan-28,1928,Unprovoked,AUSTRALIA,Torres Strait,Deliverance Island,Retrieving meat from a cage in the water,Harry Envoldt,M,78,FATAL,Y,,,"Portland Guardian, 12/10/1934",1928.01.27-Envoldt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.27-Envoldt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.27-Envoldt.pdf,1928.01.27,1928.01.27,1110,, +1928.01.21.b,21-Jan-28,1928,Invalid,USA,Florida,,Swimming,Unknown,,,Body not recovered ,Y,Night,Shark involvement not confirmed,H.D. Baldridge (1994) SAF Case #838,1928.01.21.b-Florida-Swimmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.21.b-Florida-Swimmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.21.b-Florida-Swimmer.pdf,1928.01.21.b,1928.01.21.b,1109,, +1928.01.21.a,Some time between 08-Jan-1928 & 21-Jan-1928,1928,Invalid,USA,Florida,Off Florida coast,Jumped overboard and swimming,Two stowaways on German steamer Vela,M,,"FATAL, presumed taken by shark/s",Y,Night,Shark involvement not confirmed,"NY Times, 1/22/1928; V.M. Coppleson (1962), p.257",1928.01.21.a-Stowaways.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.21.a-Stowaways.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.21.a-Stowaways.pdf,1928.01.21.a,1928.01.21.a,1108,, +1928.01.02,02-Jan-28,1928,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Salt Vlei, Port Alfred",,Mrs. Hoskin,F,,Leg lacerated,N,,,"M. Levine, GSAF; Natal Mercury, 1/4/1928",1928.01.02-Hoskin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.02-Hoskin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.02-Hoskin.pdf,1928.01.02,1928.01.02,1107,, +1928.01.00,Jan-28,1928,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kei River mouth,Body surfing,Patrick Desmond Lynch,M,18,Foot bitten,N,11h00,1.2 m [4'] shark,"P.D. Lynch, M. Levine, GSAF",1928.01.00-Lynch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.00-Lynch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.00-Lynch.pdf,1928.01.00,1928.01.00,1106,, +1928.00.00,1928,1928,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Tugela River Mouth,Standing,N'gena Zakali,M,25,"Tissue of right thigh removed to the bone, both thumbs & some fingers severed ",N,11h00,,"T. O. Niven, M. Levine, GSAF",1928.00.00-N'genaZakali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.00.00-N'genaZakali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.00.00-N'genaZakali.pdf,1928.00.00,1928.00.00,1105,, +1927.12.28,28-Dec-27,1927,Unprovoked,SOUTH AFRICA,Western Cape Province,Little Brak River,Swimming,Ockert Stephanus Heyns,M,17,"FATAL, leg bitten ",Y,11h00,"White shark, 4.4 m [14.5'] . ",M. Levine & C. Fourie,1927.12.28-Heyns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.12.28-Heyns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.12.28-Heyns.pdf,1927.12.28,1927.12.28,1104,, +1927.11.03,03-Nov-27,1927,Sea Disaster,AUSTRALIA,New South Wales,"Bradleys Head, Sydney ",The steamer Tahiti collided with the ferry Greycliffe,,,,40 people perished,Y,,,"Oakland Tribune, 8/16/1930",1927.11.0-Tahiti-diaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.11.0-Tahiti-diaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.11.0-Tahiti-diaster.pdf,1927.11.03,1927.11.03,1103,, +1927.10.25,25-Oct-27,1927,Sea Disaster,BRAZIL,Porto Seguro,90 miles off Albrohos Island,Italian liner Principessa Mafalda sank,,,,"Of 1256 on board, 295 perished, some were taken by sharks",Y,12h00,,"L. Schultz & M. Malin, p.557; SAF Case #833",1927.10.25-Mafalda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.10.25-Mafalda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.10.25-Mafalda.pdf,1927.10.25,1927.10.25,1102,, +1927.10.12,12-Oct-27,1927,Unprovoked,AUSTRALIA,New South Wales,"Kiah Creek, Eden",Riding horseback across the creek,Norman Severs & horse,M,,No injury to man or horse,N,,,"Advertiser, 10/14/1927; V.M. Coppleson (1933); G.P. Whitley",1927.10-12-Severs-horse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.10-12-Severs-horse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.10-12-Severs-horse.pdf,1927.10.12,1927.10.12,1101,, +1927.10.00,Oct-27,1927,Unprovoked,FIJI,,a river,"Standing, collecting bananas",Josiah,M,,Leg bitten. He survived,N,,,"The Methodist, 3/13/1937",1927.10.00-Josiah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.10.00-Josiah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.10.00-Josiah.pdf,1927.10.00,1927.10.00,1100,, +1927.07.03,03-Jul-27,1927,Boating,AUSTRALIA,New South Wales,Bellambi Reef,,"14' boat, occupants: 2 men",,,"No injury to occupants, boat was bumped & lifted 2' out of the water by the shark",N,,,"G.P. Whitley; V.M. Coppleson (1933); Note: V.M. Coppleson (1958), p.185, also describes the same incident, listing a date of July 1937 ",1927.07.03-Bellambi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.07.03-Bellambi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.07.03-Bellambi.pdf,1927.07.03,1927.07.03,1099,, +1927.05.29,29-May-27,1927,Sea Disaster,PHILIPPINES,Luzon Island,Bondoc Peninsula,Sea disaster,Inter island ferry Negros foundered during a typhoon,,," 55 perished, some were taken by sharks",Y,,,"The Times (London), 6/2/1927 ",1927.05.29-Negros.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.05.29-Negros.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.05.29-Negros.pdf,1927.05.29,1927.05.29,1098,, +1927.05.09.R,Reported 09-May 1927,1927,Unprovoked,AUSTRALIA,Queensland,Off Cairns,Walking,"Quassa, a Torres Strait Islander",M,,FATAL,Y,,,"Brisbane Courier, 5/10/1927; V.M. Coppleson (1958), p.242",1927.05.09.R-Quassa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.05.09.R-Quassa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.05.09.R-Quassa.pdf,1927.05.09.R,1927.05.09.R,1097,, +1927.04.10,20-Apr-27,1927,Unprovoked,AUSTRALIA,Torres Strait,Near Thursday Island,Diving,"Napoleon Doola, a Murray Islander)",M,,Extensive injuries to left leg,N,,,"J. Green, p.32; Bartlett, p. 160; V.M. Coppleson (1958), p.242",1927.04.10-NapoleonDoola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.04.10-NapoleonDoola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.04.10-NapoleonDoola.pdf,1927.04.10,1927.04.10,1096,, +1927.04.08,08-Apr-27,1927,Unprovoked,AUSTRALIA,Queensland,Near Thursday Island,Pearl diving,Eseromi,M,,Leg injured,N,,,"J. Green, p.32; V.M. Coppleson (1958), p.241",1927.04.08-Eseromi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.04.08-Eseromi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.04.08-Eseromi.pdf,1927.04.08,1927.04.08,1095,, +1927.03.01,11-Mar-27,1927,Unprovoked,AUSTRALIA,New South Wales,Mereweather Beach,Body surfing / treading water,Edward Pritchard,M,17,"Right buttock & thigh bitten, thumb removed",N,15h00,Grey nurse shark?,"V.M. Coppleson.N17. (1933); V.M. Coppleson (1958), p.76 & 231; G.A. Llano, p.165",1927.03.01-Pritchard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.03.01-Pritchard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.03.01-Pritchard.pdf,1927.03.01,1927.03.01,1094,, +1927.02.14,14-Feb-27,1927,Provoked,NICARAGUA,Salinas Bay,"A shark was caught, its head severed from body and hung from the anchor davit onboard the U.S.S. Borie",Feeling the shark�s teeth,a sailor,M,,"Sharks�s jaws snapped shut, lacerating his right hand PROVOKED INCIDENT",N,,,"G.A. Llano, p.178",1927.02.14-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.02.14-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.02.14-sailor.pdf,1927.02.14,1927.02.14,1093,, +1927.02.09,09-Feb-27,1927,Unprovoked,AUSTRALIA,Queensland,Brisbane River,Attempting to rescue drowning man,Bernard Gill,M,,"No injury, but trouser leg shredded by shark",N,,,"Northern Territory Times & Gazette, 2/11/1927",1927.02.09-Gill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.02.09-Gill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.02.09-Gill.pdf,1927.02.09,1927.02.09,1092,, +1927.02.00,Feb-27,1927,Provoked,NEW ZEALAND,South Island,"Menzies Bay, Banks Peninsula, ",Fishing,male,M,70,Severely bitten by shark caught 30 minutes earlier PROVOKED INCIDENT,N,,Mako shark,"R.D. Weeks, GSAF; V.M. Coppleson (1958), p.263; SAF #328",1927.02.00-MenziesBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.02.00-MenziesBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.02.00-MenziesBay.pdf,1927.02.00,1927.02.00,1091,, +1927.01.20,20-Jan-27,1927,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kidd�s Beach,Body surfing,Andrew I. Brown,M,,Both thighs lacerated,N,11h45,"Raggedtooth shark, 1.5 m [5'] ","M. Levine, GSAF",1927.01.20-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.20-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.20-Brown.pdf,1927.01.20,1927.01.20,1090,, +1927.01.08.R,Reported 08-Jan-1927,1927,Unprovoked,USA,California,"Catalina Channel, Los Angeles County",Swimming,Price Taylor,M,,Lost hand,N,,,"The Afro-American, 1/8/1927",1927.01.08.R-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.08.R-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.08.R-Taylor.pdf,1927.01.08.R,1927.01.08.R,1089,, +1927.01.03,03-Jan-27,1927,Unprovoked,AUSTRALIA,New South Wales,"Grey�s Point, Port Hacking",Swimming,Mervwyn Allum,M,15,"FATAL, leg bitten from thigh to ankle",Y,11h30,3.7 m [12'] shark,"V.M. Coppleson.N.21.(1933); V.M. Coppleson (1958), p.230; NYTimes, 1/5/1927",1927.01.03-Allum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.03-Allum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.03-Allum.pdf,1927.01.03,1927.01.03,1088,, +1927.00.00.b,1927,1927,Unprovoked,AUSTRALIA,New South Wales,15 miles up the Cataract River,Swimming,Anonymous ,M,10,"FATAL, shoulder bitten ",Y,,,"W.E., pp. 192-193",1927.00.00.b-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.00.00.b-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.00.00.b-Australia.pdf,1927.00.00.b,1927.00.00.b,1087,, +1927.00.00.a,1927,1927,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island,Pearl diving,Dick Lahou,M,,Shoulder bitten,N,,,"V.M. Coppleson (1958), p.241",1927.00.00.a-Lahou.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.00.00.a-Lahou.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.00.00.a-Lahou.pdf,1927.00.00.a,1927.00.00.a,1086,, +1926.12.02.R,Reported 02-Dec-1926,1926,Unprovoked,AUSTRALIA,Torres Strait,Palm Island,Diving for trochus,Norman Skeen,M,,FATAL,Y,,,"Brisbane Courier, 12/3/1926",1926.12.02-Norman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.12.02-Norman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.12.02-Norman.pdf,1926.12.02.R,1926.12.02.R,1085,, +1926.11.17,17-Nov-26,1926,Unprovoked,AUSTRALIA,Torres Strait,Near Thursday Island,Diving,Noma,M,,Arm injured,N,,,"J. Green, p.32; V.M. Coppleson (1958), p.241",1926.11.17-Noma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.11.17-Noma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.11.17-Noma.pdf,1926.11.17,1926.11.17,1084,, +1926.10.29.R,Reported 29-Oct-1926,1926,Unprovoked,PAPUA NEW GUINEA,Central Province,Roku Point,Jumped into the water,male,M,,"FATAL, abdomen bitten",Y,,,"Cairns Post, 10/29/1926",1926.10.29.R-RokuPoint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.29.R-RokuPoint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.29.R-RokuPoint.pdf,1926.10.29.R,1926.10.29.R,1083,, +1926.10.23.b,23-Oct-26,1926,Unprovoked,AUSTRALIA,New South Wales,Clarence River,Bathing,Herbert Webster,M,17,"3"" laceration to leg",N,Afternoon,"Grey nurse shark, 4'","Barrier Miner, 10/25/1926",1926.10.23.b-Webster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.23.b-Webster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.23.b-Webster.pdf,1926.10.23.b,1926.10.23.b,1082,, +1926.10.23.a,23-Oct-26,1926,Sea Disaster,BERMUDA,,18 miles southwest of Bermuda ,British patrol boat 1250-ton HMS Valerian foundered in a hurricane,,,,"Of 104 people in the water, only 20 survived. 84 people were lost, many to sharks. Sharks 2 pulled crew off life rafts",N,01h30,,"New York Herald Tribune, 10/29/1926",1926.10.23.a - HMS Valerian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.23.a - HMS Valerian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.23.a - HMS Valerian.pdf,1926.10.23.a,1926.10.23.a,1081,, +1926.09.06.R,Reported 06-Sep-1926,1926,Unprovoked,PAPUA NEW GUINEA,,Near Port Moresby,Jumped out of canoe,a native,M,,FATAL,Y,,,"Barrier Miner, 9/6/1926",1926.09.06.R-PortMoresby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.09.06.R-PortMoresby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.09.06.R-PortMoresby.pdf,1926.09.06.R,1926.09.06.R,1080,, +1926.08.24,24-Aug-26,1926,Unprovoked,USA,New Jersey,"Seaside, Ocean County",Swimming,Charles A. Burke,M,18,FATAL,Y,,,"Washington Post 8/25/1926; L. Schultz & M. Malin, p.531",1926.08.24-Burke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.08.24-Burke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.08.24-Burke.pdf,1926.08.24,1926.08.24,1079,, +1926.07.23,23-Jul-26,1926,Unprovoked,ITALY,Golfo di Genova in the Ligurian Sea,Varazze,Swimming,Augusto Casellato,M,20,"FATAL, body was not recovered",Y,11h00,Said to involve 6 to 7 m [20' to 23'] white shark,"NY Herald Tribune, 7/25/1926; A. De Maddalena; Anon. (1926a), Anon. (1926b); C. Moore, GSAF",1926.07.23-Casellato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.23-Casellato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.23-Casellato.pdf,1926.07.23,1926.07.23,1078,, +1926.07.12,12-Jul-26,1926,Boating,USA,New Jersey,20 miles off Seabright,Fishing,"boat, occupants: Andrew Peterson & Peter Jergerson",M,,No injury to occupants,N,,"""whiptail shark"" (thresher shark?)","Evening Sun, undated clipping",1926.07.12-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.12-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.12-boat.pdf,1926.07.12,1926.07.12,1077,, +1926.07.08,08-Jul-26,1926,Unprovoked,USA,California,"San Francisco Bay (or San Leandro Bay), near cannery, Alameda County",Swimming with dog near canning factory,Norman Piexotto,M,15,Leg & hand lacerated and dog bitten,N, ,1.5 m [5'] white shark or sevengill shark,"D. Miller & R. Collier, R. Collier, p. __; V.M. Coppleson (1958), pp. 156 & 252; [SAF Case #215]",1926.07.08-Peixotto_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.08-Peixotto_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.08-Peixotto_Collier.pdf,1926.07.08,1926.07.08,1076,, +1926.07.03,03-Jul-26,1926,Invalid,SPAIN,Sants-Montjic,"Casa Antunez Beach, Barcelona",Bathing,Sebastian Llopis Puges,M,,No injury,N,,2m shark,"C. Moore, GSAF",1926.07.03-Puges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.03-Puges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.03-Puges.pdf,1926.07.03,1926.07.03,1075,, +1926.05.18,18-May-26,1926,Unprovoked,USA,Hawaii,"Hale'iwa, O'ahu",Swimming,William J. Goins,M,,"FATAL, gave sudden shriek & disappeared, body found in shark caught off Kahuka",Y,,"White shark, 3.8 m [12.5'] ","G.H. Balazs & A.K.H. Kam; J. Borg, p.70; L. Taylor (1993), pp.96-97",1926.05.18-Goins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.05.18-Goins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.05.18-Goins.pdf,1926.05.18,1926.05.18,1074,, +1926.04.22,22-Apr-26,1926,Unprovoked,SOUTH ATLANTIC OCEAN,South of the Equator ,Steamship bound from Cape Town to Philadelphia,Fell overboard from SS Ripley Castle,Thomas (or Tony) Madison,M,26,When taken back on board 2 hours later both legs were bleeding from shark bites,N,Night,,"New York Times, 4/28/1926 ",1926.04.22-Madison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.04.22-Madison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.04.22-Madison.pdf,1926.04.22,1926.04.22,1073,, +1926.04.07,07-Apr-26,1926,Unprovoked,USA,Hawaii,"Hilo Bay Yacht Club, Hilo, Hawai'i",Swimming,Mrs. Leonard Carlsmith,F,,Right leg bitten thigh to heel,N,17h30,"According to Carlsmith, the shark's mouth was 3' wide","New York Tribune, 8/9/1953; V.M. Coppleson (1958), p.260; G.H. Balazs & A.K.H. Kam; J. Borg, p.70",1926.04.07-Carlsmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.04.07-Carlsmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.04.07-Carlsmith.pdf,1926.04.07,1926.04.07,1072,, +1926.03.17,17-Mar-26,1926,Unprovoked,AUSTRALIA,South Australia,"West Beach, Brighton",Swimming ,Primrose Whyte,F,,FATAL,Y,15h45,"White shark, 3.7 m [12'] ","V.M. Coppleson.S1.(1933); V.M. Coppleson (1958), pp.107 & 240; A. Sharpe, pp.119-120",1926.03.17-Whyte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.03.17-Whyte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.03.17-Whyte.pdf,1926.03.17,1926.03.17,1071,, +1926.01.26,26-Jan-26,1926,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Hamburg,Swimming,Mr. Bennett,M,,Thigh lacerated,N,,"""a blue shark""","M. Levine, GSAF",1926.01.26-Bennett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.01.26-Bennett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.01.26-Bennett.pdf,1926.01.26,1926.01.26,1070,, +1926.01.00,Jan-26,1926,Unprovoked,AUSTRALIA,Victoria,,,male,M,,Leg lacerated,N,,,"V.M. Coppleson (1958), p.110",1926.01.00-Victoria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.01.00-Victoria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.01.00-Victoria.pdf,1926.01.00,1926.01.00,1069,, +1926.00.00.d,Summer of 1926,1926,Unprovoked,MONACO,Bay of Monaco,,,boy,M,,FATAL,Y,,,Excerpt from news article dated 10/23/1926,1926.00.00.d-Monaco.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.d-Monaco.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.d-Monaco.pdf,1926.00.00.d,1926.00.00.d,1068,, +1926.00.00.c,1926,1926,Provoked,NEW ZEALAND,Cook Islands,Rarotonga,Shark hoisted on board liner Tahiti,Bosun of the ship,M,,"Struck on head by shark�s tail, knocked unconscious & deep gash in head PROVOKED INCIDENT",N,,,"V.M. Coppleson (1958), pp.176-177",1926.00.00.c-bosun-Tahiti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.c-bosun-Tahiti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.c-bosun-Tahiti.pdf,1926.00.00.c,1926.00.00.c,1067,, +1926.00.00.b,1926,1926,Unprovoked,SINGAPORE,,Sea View Beach,Dived onto shark from floating stage,woman,F,,"FATAL, femoral artery severed ",Y,,,"V.M. Coppleson (1958), pp.148 & 265 (Note: ""A few days earlier, a Chinese fisherman had been bitten a few hundred yards from this spot."")",1926.00.00.b-womanSingapore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.b-womanSingapore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.b-womanSingapore.pdf,1926.00.00.b,1926.00.00.b,1066,, +1926.00.00.a,1926,1926,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Swimming to mail boat,Mr. Daniels,M,,No details,UNKNOWN,,,"M. Joss; M. Levine, GSAF",1926.00.00.a-Daniels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.a-Daniels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.a-Daniels.pdf,1926.00.00.a,1926.00.00.a,1065,, +1925.11.22,22-Nov-25,1925,Unprovoked,AUSTRALIA,Western Australia,Cottesloe Beach,Floating on his back,Simeon (Samuel) Ettelton,M,55,"FATAL, thigh & torso bitten, then shark charged rescue boat ",Y,15h15,"Tiger shark, 4 m [13'] female","V.M. Coppleson.W2, (1933); V.M. Coppleson (1958), pp.111 & 241; West Australia, 1/5/1967; A. Sharpe, pp.129-130; H. Edwards, pp.131-133",1925.11.22-Ettelton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.11.22-Ettelton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.11.22-Ettelton.pdf,1925.11.22,1925.11.22,1064,, +1925.11.00.b,Nov-25,1925,Unprovoked,USA,Puerto Rico,"Condado Beach, San Juan",,Lawyer�s secretary,,,Laceration across abdomen,N,,,"V.M. Coppleson (1958), pp.48 & 265",1925.11.00.b-secretary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.11.00.b-secretary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.11.00.b-secretary.pdf,1925.11.00.b,1925.11.00.b,1063,, +1925.11.00.a,Nov-25,1925,Unprovoked,USA,Puerto Rico,"Condado Beach, San Juan",,American lawyer,M,,Both calves lacerated,N,,,"V.M. Coppleson (1958), pp.48 & 265",1925.11.00.a-Lawyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.11.00.a-Lawyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.11.00.a-Lawyer.pdf,1925.11.00.a,1925.11.00.a,1062,, +1925.09.04,04-Sep-25,1925,Provoked,SPAIN,Valencia ,Valencia,Fishing,Pascual Gurran,M,,Right hand bitten by hooked shark PROVOKED INCIDENT,N,,,Chris Moore,1925.09.04-Gurren-Valencia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.09.04-Gurren-Valencia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.09.04-Gurren-Valencia.pdf,1925.09.04,1925.09.04,1061,, +1925.09.03,03-Sep-25,1925,Unprovoked,ENGLAND,Isle of Wight,Off Shanklin,Fishing,Mr. S. Page ,M,,No injury but shark lifted boat out of the water,N,08h00,,C. Moore,1925.09.03-Page-Isle-of-Wight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.09.03-Page-Isle-of-Wight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.09.03-Page-Isle-of-Wight.pdf,1925.09.03,1925.09.03,1060,, +1925.08.02,02-Aug-25,1925,Unprovoked,USA,South Carolina,"Folly Island, near Charleston",Swimming,Mrs. Walter H. Kahrs,F,,"Multiple lacerations on both thighs, right buttock and hip",N,,,E. M. Burton,1925.08.02-MrsKahrs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.08.02-MrsKahrs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.08.02-MrsKahrs.pdf,1925.08.02,1925.08.02,1059,, +1925.06.15,15-Jun-25,1925,Invalid,AUSTRALIA,Western Australia,"Princess Royal Harbor, near King George�s Sound",,,,,Human arm found in shark,UNKNOWN,,,"Geraldton Guardian, 6/18/1925 ",1925.06.15 Princess Royal Harbor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.06.15 Princess Royal Harbor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.06.15 Princess Royal Harbor.pdf,1925.06.15,1925.06.15,1058,, +1925.05.00,May-25,1925,Unprovoked,USA,Puerto Rico,"Condado Beach, San Juan",,American University student,M,,"Right arm nearly severed at shoulder, left wrist lacerated",N,,,"V.M. Coppleson (1958), pp.48 & 265",1925.05.00-AmericanUniversityStudent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.05.00-AmericanUniversityStudent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.05.00-AmericanUniversityStudent.pdf,1925.05.00,1925.05.00,1057,, +1925.03.27,07-Mar-1925 or 27-Mar-1925,1925,Unprovoked,AUSTRALIA,New South Wales,Coogee,Bathing in waist-deep water,Jack Dagworthy,M,16,"Left thigh bitten, leg surgically amputated ",N,17h00,Said to be a �small shark�,"V.M. Coppleson.N7.(1933); V.M. Coppleson (1958), pp.63 & 230; A. Sharpe, pp.58-59; G.A. Llano, pp.160-164",1925.03.27-Dagworthy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.03.27-Dagworthy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.03.27-Dagworthy.pdf,1925.03.27,1925.03.27,1056,, +1925.03.12,12-Mar-25,1925,Unprovoked,AUSTRALIA,New South Wales,Newcastle Beach,Swimming,Jack Canning,M,16,"FATAL, right forearm severed, lacerations from buttocks to heel L",Y,15h15,,"V.M. Coppleson.N16.(1933) V.M. Coppleson (1958), pp.76 & 230",1925.03.12-Canning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.03.12-Canning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.03.12-Canning.pdf,1925.03.12,1925.03.12,1055,, +1925.03.10,10-Mar-25,1925,Unprovoked,PAPUA NEW GUINEA,Central Province,Hula,Swimming,a Papuan,M,A.M.,FATAL,Y,,,"The Queenslander, 4/4/1925",1925.03.10-Papuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.03.10-Papuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.03.10-Papuan.pdf,1925.03.10,1925.03.10,1054,, +1925.01.27.R,Reported 27-Jan-1925,1925,Unprovoked,USA,Florida,"Miami Beach, Miami-Dade County",Swimming,Frank Chorie,M,,Lacerations to arm,N,,,"Evening Independent, 1/27/1925",1925.01.27.R-Chorie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.01.27.R-Chorie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.01.27.R-Chorie.pdf,1925.01.27.R,1925.01.27.R,1053,, +1925.01.08,08-Jan-25,1925,Unprovoked,CANADA,Vancouver,Second Narrows in Burrard Inlet,"Diving, repairing water main at depth of 90'", male,M,,"Injuries, if any, unknown, but afterwards diver stunned shark with iron bar",N,,2.1 m [7'] shark,"ABCS; Manitoba Free-Press, 1/13/1925",1925.01.08-Vancouver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.01.08-Vancouver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.01.08-Vancouver.pdf,1925.01.08,1925.01.08,1052,, +1925.00.00,1925,1925,Unprovoked,FIJI,Viti Levu Island,"Suva Harbor, Suva",Diving for coins tossed from passenger ship,Fijian boy,M,,"Both arms bitten, surgically amputated",N,,,"V.M. Coppleson (1958), p.258",1925.00.00-Fijian boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.00.00-Fijian boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.00.00-Fijian boy.pdf,1925.00.00,1925.00.00,1051,, +1924.11.25,25-Nov-24,1924,Unprovoked,MEXICO,Tamaulipas,Tampico,The Ward liner Esperanza stranded during a gale & she leapt overboard to rescue her dog which had been swept overboard.,Ofelia Rivas,F,,FATAL,Y,,1.8 m shark,"Indianapolis Star, 12/15/1924",1924.11.25-Rivas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.11.25-Rivas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.11.25-Rivas.pdf,1924.11.25,1924.11.25,1050,, +1924.11.24,24-Nov-24,1924,Unprovoked,PANAMA,"2 to 3 miles off Taboguilla Island, Pacific Ocean",Pacific Anchorage off the Panama Canal,"Inebriated, woke from sleep and fell off deck into the water ",male,M,35,Knee bitten,N,After midnight,,Gorgas Hospital Records,1924.11.24-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.11.24-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.11.24-Panama.pdf,1924.11.24,1924.11.24,1049,, +1924.11.21,21-Nov-24,1924,Unprovoked,USA,Puerto Rico,Santurce,Bathing,Professor Winslow,M,35,"FATAL, hand severed, both legs & arms bitten & nearly severed ",Y,Late afternon,,"R. W. Kramer; V.M. Coppleson (1958), pp.48 & 264",1924.11.21-Winslow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.11.21-Winslow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.11.21-Winslow.pdf,1924.11.21,1924.11.21,1048,, +1924.10.31.R,Reported 31-Oct-1924,1924,Provoked,FRENCH POLYNESIA,Tuamotus,Rangiroa,Pearl diving,Huri-Huri,M,,Abrasions PROVOKED ATTACK,N,,,F. O'Brien in Atolls of the Sea,1924.10.31-Huri-Huri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.10.31-Huri-Huri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.10.31-Huri-Huri.pdf,1924.10.31.R,1924.10.31.R,1047,, +1924.10.18,18-Oct-24,1924,Unprovoked,AUSTRALIA,Victoria,Port Melbourne,Bathing,Fred White,M,,Leg bitten,N,,10' shark,"Coppleson.V1. (1933); Melbourne Herald, 1/7/1925",1924.10.18-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.10.18-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.10.18-White.pdf,1924.10.18,1924.10.18,1046,, +1924.07.31,31-Jul-24,1924,Unprovoked,USA,South Carolina,"Folly Island, near Charleston",Standing,Lewis Kornahrens,M,,Left knee & leg bitten. (Tooth fragment recovered from kneecap),N,,"Mako shark, 1.9 m [6.5']. Tooth fragment recovered & identified by J.T. Nichols.","E. M. Burton; E.W. Gudger (1935); V.M. Coppleson (1958), pp.152 & 252; J. Randall, p.350 in Sharks & Survival",1924.07.31-Kornahrens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.07.31-Kornahrens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.07.31-Kornahrens.pdf,1924.07.31,1924.07.31,1045,, +1924.07.14,14-Jul-24,1924,Provoked,ENGLAND,Dorset,Weymouth,Fishing for mackerel,2 fishermen,M,,Arms broken by hooked shark PROVOKED INCIDENT,N,,12' shark,"C. Moore; The Times, 7/14/1924",1924.07.14-Weymouth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.07.14-Weymouth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.07.14-Weymouth.pdf,1924.07.14,1924.07.14,1044,, +1924.07.04,04-Jul-24,1924,Boating,USA,California,"Newport Beach, Orange County",Fishing,"18' boat, occupants Richard Gunther & Donald Cavanaugh",M,? & 14,"No injury, shark tore hole in the side of the boat",N,,,"The Daily Pilot, 3/6/2010, citing The Times 7/5/1924)",1924.07.04-boat-NewportBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.07.04-boat-NewportBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.07.04-boat-NewportBeach.pdf,1924.07.04,1924.07.04,1043,, +1924.06.18,18-Jun-24,1924,Provoked,USA,Florida,"Bayboro, Pinellas County",Removing shark from a net,Robert Martin,M,,Netted shark made a5-inch incision above the knee PROVOKED INCIDENT,N,Evening,,"Evening Independent, 6/19/1924",1924.06.18-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.06.18-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.06.18-Martin.pdf,1924.06.18,1924.06.18,1042,, +1924.04.25,25-Apr-24,1924,Unprovoked,AUSTRALIA,New South Wales,Kiama,"Fishing, fell in water & swimming strongly to shore",Ernest Conroy,M,20,"FATAL, partial remains recovered ",Y,Afternoon,,"V.M. Coppleson (1933); G.P. Whitley, p.266",1924.04.25-Conroy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.04.25-Conroy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.04.25-Conroy.pdf,1924.04.25,1924.04.25,1041,, +1924.04.22,22-Apr-24,1924,Unprovoked,PANAMA,150 miles offshore,,"Floating, after falling or jumping off the Standard Oil tanker Frederick W. Weller",Claremont L. Staden,M,21,"Reported to have had ""2 fights with sharks"" before being rescued by the British freighter Dorsetafter 23 hours in the water",N,,,"NY Times, 5/4/1924, p.14, col.3",1924.04.22-Staden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.04.22-Staden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.04.22-Staden.pdf,1924.04.22,1924.04.22,1040,, +1924.04.20,20-Apr-24,1924,Invalid,AUSTRALIA,Western Australia,Fremantle,Swimming ,Noel Knight,M,,Abrasions,N,,,"V.M. Coppleson (1933); G.P. Whitley (1951), p.185, both considered it a ""doubtful attack""",1924.04.20-Knight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.04.20-Knight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.04.20-Knight.pdf,1924.04.20,1924.04.20,1039,, +1924.03.28.R,Reported 28-Mar-1924,1924,Unprovoked,SOLOMON ISLANDS,Central Province,Savo Island,Swimming,male,M,,"Left arm severed, leg bitten",N,,,"Cairns Post, 3/28/1924",1924.03.28.R-Savo-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.03.28.R-Savo-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.03.28.R-Savo-Island.pdf,1924.03.28.R,1924.03.28.R,1038,, +1924.03.24,24-Mar-24,1924,Boating,SPAIN,Galica,Sisargas Islands,Fishing,Boat owned by Ricardo Laneiro,,,"No injury to occupants, shark bit boat",N,,3.5 m shark,"C. Moore, GSAF",1924.03.24.Sisargas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.03.24.Sisargas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.03.24.Sisargas.pdf,1924.03.24,1924.03.24,1037,, +1924.02.13,13-Feb-24,1924,Unprovoked,AUSTRALIA,New South Wales,Bronte,Bathing in 5' of water,Nita Derritt,F,30,"Legs severely bitten, surgically amputated",N,19h00,,"V.M. Coppleson.N6. (1933); V.M. Coppleson (1958), pp.63 & 230; A. Sharpe, pp.57-58",1924.02.13-Derritt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.13-Derritt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.13-Derritt.pdf,1924.02.13,1924.02.13,1036,, +1924.02.08,08-Feb-24,1924,Invalid,AUSTRALIA,Queensland,Currumbin,Bathing,Frederick Dullroy,M,,Probable drowning & scavenging,UNKNOWN,16h00,,11/02/1924,1924.02.08-Dullroy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.08-Dullroy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.08-Dullroy.pdf,1924.02.08,1924.02.08,1035,, +1924.01.29,29-Jan-24,1924,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"South Beach, Durban",Swimming,Johannes Karl Schultz,M,22,FATAL,Y,15h15,,"M. Levine, GSAF",1924.01.29-Schultz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.01.29-Schultz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.01.29-Schultz.pdf,1924.01.29,1924.01.29,1034,, +1924.01.25,25-Jan-24,1924,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"St. George�s Strand, Port Elizabeth",Swimming,male,M,,Foot lacerated,N,Afternoon,,"Eastern Province Herald, 1/28/1924, M. Levine, GSAF",1924.01.25-StGeorgesStrand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.01.25-StGeorgesStrand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.01.25-StGeorgesStrand.pdf,1924.01.25,1924.01.25,1033,, +1924.01.19,09-Jan-24,1924,Unprovoked,AUSTRALIA,New South Wales,"Near Asbestos Works, Camellia, Parramatta River",Had just dived into water & was swimming,Charles Brown,M,16,"FATAL, right thigh severely bitten, left arm lacerated ",Y,16h00,3 m [10'] shark,"V.M. Coppleson.N.2. (1933); V.M. Coppleson (1958), pp.69 & 230",1924.01.19-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.01.19-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.01.19-Brown.pdf,1924.01.19,1924.01.19,1032,, +1923.12.12,12-Dec-23,1923,Unprovoked,AUSTRALIA,New South Wales,"Murwillumbah, Tweed River",Swimming,Leo Wohill,M,,Lacerations to leg,N,,,"Barrier Miner, 12/12/1923",1923.12.12-Wohill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.12.12-Wohill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.12.12-Wohill.pdf,1923.12.12,1923.12.12,1031,, +1923.12.02,02-Dec-23,1923,Unprovoked,AUSTRALIA,New South Wales,"Urunga, Belliger Heads","Fishing, standing in waist-deep water",James Elton,M,,"FATAL, disappeared, thought to have been taken by a shark ",Y,,,"Sydney Morning Herald, 12/5/1923 ",1923.12.02 - Elton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.12.02 - Elton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.12.02 - Elton.pdf,1923.12.02,1923.12.02,1030,, +1923.11.23,23-Nov-23,1923,Unprovoked,AUSTRALIA,Western Australia,"Condon, 88 km NE of Port Hedland",Dry shelling,"Selim and Dea Opre, Koepang Islanders",M,,"FATAL, disappeared, partial remains of Selim was found, there was no trace of Dea Opre",Y,,,"Western Mail, 11/29/1923; V.M. Coppleson (1933); G.P. Whitley (1940), p.260; G.P. Whitley (1951), p 185; A. Sharpe, p.129",1923.11.23-KoepangIslanders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.11.23-KoepangIslanders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.11.23-KoepangIslanders.pdf,1923.11.23,1923.11.23,1029,, +1923.11.02,02-Nov-23,1923,Invalid,AUSTRALIA,New South Wales,Bellinger Head,Fishing,male,M,,FATAL,Y,,Shark involvement suspected but not confirmed,"V.M. Coppleson, p.452; G.P. Whitley",1923.11.02-BellingerHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.11.02-BellingerHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.11.02-BellingerHead.pdf,1923.11.02,1923.11.02,1028,, +1923.10.20,20-Oct-23,1923,Invalid,AUSTRALIA,New South Wales,"Botany Bay, Sydney",Sailing,male,M,,"He failed to return, his body was recovered 11/9/1922; chest & abdomen had been bitten by shark/s",Y,,,V.M. Coppleson (1933);,1923.10.20-BotanyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.10.20-BotanyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.10.20-BotanyBay.pdf,1923.10.20,1923.10.20,1027,, +1923.10.17,17-Oct-23,1923,Boating,AUSTRALIA,New South Wales," Black Head, south of Taree",Fishing,15' boat,,,"No injury to occupants, shark bit boat",N,,"""a very large shark""",V.M. Coppleson (1933); SAF Case #494,1923.10.17-boat-Taree.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.10.17-boat-Taree.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.10.17-boat-Taree.pdf,1923.10.17,1923.10.17,1026,, +1923.10.16,16-Oct-23,1923,Unprovoked,AUSTRALIA,Torres Strait,Near Thursday Island,Pearl diving,"Amano, a Japanese diver",M,,"Arm severed, but survived",N,,,"V.M. Coppleson (1958), p.241; J. Green, p.32",1923.10.16-Amano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.10.16-Amano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.10.16-Amano.pdf,1923.10.16,1923.10.16,1025,, +1923.08.08,08-Aug-23,1923,Unprovoked,GUYANA,Demerara County,Off the Demerara River ,Fishing,Charles Blair,M,,Puncture wounds to left leg,N,01h00,,"Gleaner (Jamaica), 9/6/1923",1923.08.08-Blair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.08.08-Blair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.08.08-Blair.pdf,1923.08.08,1923.08.08,1024,, +1923.07.02.R,Reported 02-Jul-1923,1923,Unprovoked,AUSTRALIA,Queensland,Great Barrier Reef,Diving for pearl,aboriginal male,M,,non-fatal,N,,,"Brisbane Courer, 7/2/1923",1923.07.02-Mildred-Diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.07.02-Mildred-Diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.07.02-Mildred-Diver.pdf,1923.07.02.R,1923.07.02.R,1023,, +1923.06.16,16-Jun-23,1923,Boating,AUSTRALIA,New South Wales,Bellambi Reef,"After rowing skiff was holed by shark, he was attempting to swim ashore",J. Rigby,M,,"FATAL, taken by shark. Two other men drowned, only 1 man survived",Y,,,"V.M. Coppleson (1933); G. P. Whitley; V.M. Coppleson (1958), p.185",1923.06.16-Rigby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.06.16-Rigby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.06.16-Rigby.pdf,1923.06.16,1923.06.16,1022,, +1923.06.06,06-Jun-23,1923,Boating,MEXICO,Vera Cruz,Outside Vera Cruz Harbor,Dismantling cable buoys of the cable ship All America,"boat, occupants; Carl Sjoistrom & 2 other crew",,,"No injury to occupants, shark rammed boat",N,,,"NY Herald Tribune, undated clipping",1923.06.06-AllAmerica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.06.06-AllAmerica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.06.06-AllAmerica.pdf,1923.06.06,1923.06.06,1021,, +1923.05.23.R,Reported 23-May-1923,1923,Unprovoked,AUSTRALIA,Western Australia,"Southgates, near Geraldton",Wading,Percy Evensen,M,,Minor puncture wounds to foot,N,,,"The West Australian, 5/23/1923",1923.05.23.R-Evensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.05.23.R-Evensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.05.23.R-Evensen.pdf,1923.05.23.R,1923.05.23.R,1020,, +1923.05.22,22-May-23,1923,Unprovoked,AUSTRALIA,Queensland,Great Barrier Reef,Diving?,Keizo Masoyo,M,,FATAL,Y,Midday,,"Northern Miner, 5/27/1923",1923.05.22-Masoyo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.05.22-Masoyo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.05.22-Masoyo.pdf,1923.05.22,1923.05.22,1019,, +1923.03.18,18-Mar-23,1923,Unprovoked,AUSTRALIA,Queensland,"Ross River, Townsville",Diving,Jellannie Solomon,M,,Lacerations to right thigh and knee,N,,,"Northern Miner, 3/19/1923",1923.03.18-Solomon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.03.18-Solomon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.03.18-Solomon.pdf,1923.03.18,1923.03.18,1018,, +1923.02.00,Feb-23,1923,Unprovoked,USA,Puerto Rico,San Juan,Swimming ,Puerto Rican,M,25,"Right calf, right side of abdomen & left wrist & hand bitten",N,,,"V.M. Coppleson (1958), pp.48 & 265",1923.02.00.a-PuertoRican.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.02.00.a-PuertoRican.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.02.00.a-PuertoRican.pdf,1923.02.00,1923.02.00,1017,, +1923.01.27.b,27-Jan-23,1923,Invalid,AUSTRALIA,Western Australia,Bunbury,,John Hayes,M,,Death may have been due to drowning,UNKNOWN,,Shark involvement prior to death was not confirmed,"The Register, 2/3/1923",1923.01.27.b-Hayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.01.27.b-Hayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.01.27.b-Hayes.pdf,1923.01.27.b,1923.01.27.b,1016,, +1923.01.27.a,27-Jan-23,1923,Unprovoked,AUSTRALIA,Western Australia,"In Swan River at Freshwater Bay, Claremont, 5 miles from river mouth",Swimming,Charles Topsail Robertson,M,13,"FATAL, back of thigh bitten ",Y,,,"V.M. Coppleson.W1.(1933) V.M. Coppleson (1958), pp.111 & 241; A. Sharpe, p.129",1923.01.27.a-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.01.27.a-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.01.27.a-Robertson.pdf,1923.01.27.a,1923.01.27.a,1015,, +1923.01.13,14-Jan-23,1923,Invalid,CUBA,Caribbean Sea,20 miles from Havana,seaplane Columbus ditched in the sea,"Edwin F. Atkins, Jr.",M,,"Although this incident is listed elsewhere as a shark attack, the account of the disaster suggests the 4 who perished probably drowned. Five people survived",Y,,"Atkins' remains were recovered from a dusky shark, C. obscurus, by Capt. W. F. Young, shark fisherman","W.E., pp.152-156; L. Schultz & M. Malin, p.557",1923.01.13-seaplaneColumbus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.01.13-seaplaneColumbus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.01.13-seaplaneColumbus.pdf,1923.01.13,1923.01.13,1014,, +1923.00.00.c,1923,1923,Boating,USA,New Jersey,"Sea Bright, Monmouth County",Fishing,"boat, occupant: Richard Rodney",M,,No injury to occupant Shark struck boat,N,,,"NY Herald Tribune, 8/27/1931; L. Schultz & M. Malin, p.555",1923.00.00.c - NJ fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.c - NJ fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.c - NJ fisherman.pdf,1923.00.00.c,1923.00.00.c,1013,, +1923.00.00.b,1923-1924,1923,Unprovoked,PHILIPPINES, Manila Bay,Fort Drum,,male,M,,"FATAL, abdomen severely bitten. Airplane summoned from Corregidor & injured man was lashed to wing, but he died ",Y,,,"Pinchot in To the South Seas, citing M. Craig who reports 6 incidents in 1923-24 including this one",1923.00.00.b-FortDrum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.b-FortDrum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.b-FortDrum.pdf,1923.00.00.b,1923.00.00.b,1012,, +1923.00.00.a,1923,1923,Provoked,USA,New Jersey,Ocean City (offshore),Hoisting shark aboard fishing boat,male,M,,Shark's tail broke his leg. PROVOKED INCIDENT,N,,,"Ref in New York Herald Tribune, 8/23/1960; V.M. Coppleson (1962), p.155",1923.00.00.a-NJ fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.a-NJ fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.a-NJ fisherman.pdf,1923.00.00.a,1923.00.00.a,1011,, +1923.00.00.a,1923,1922,Provoked,USA,New Jersey,Ocean City (offshore),Hoisting shark aboard fishing boat,male,M,,Shark's tail broke his leg. PROVOKED INCIDENT,N,,,"Ref in New York Herald Tribune, 8/23/1960; V.M. Coppleson (1962), p.155",1923.00.00.a-NJ fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.a-NJ fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.a-NJ fisherman.pdf,1923.00.00.a,1923.00.00.a,1010,, +1922.12.14,14-Dec-22,1922,Unprovoked,USA,Puerto Rico,San Juan,Bathing,Katherine W. Bourne,F,,"FATAL, hip & thigh bitten with tissue removed, including bone ",Y,,,"L.A. Times, 12/17/1922; V.M. Coppleson (1958), pp.48 & 265",1922.12.14-KatherineBourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.12.14-KatherineBourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.12.14-KatherineBourne.pdf,1922.12.14,1922.12.14,1009,, +1922.12.05,05-Dec-22,1922,Unprovoked,AUSTRALIA,Queensland,Pialba Beach near Maryborough,Bathing in 3' to 4' of water,Alfred Gassman,M,19,"FATAL, severe injuries to torso ",Y,09h15,"2.7 m [9'] ""blue"" shark","Coppleson.Q4.(1933); V.M. Coppleson (1958), pp.92 & 237 ",1922.12.05-Gassman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.12.05-Gassman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.12.05-Gassman.pdf,1922.12.05,1922.12.05,1008,, +1922.09.29,29-Sep-22,1922,Unprovoked,BARBADOS,Lucy,Pie Corner,Fishing,Master Hurley,M,16,FATAL,Y,,,"Kingston Gleaner, 10/17/1922",1922.09.29-Barbados.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.29-Barbados.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.29-Barbados.pdf,1922.09.29,1922.09.29,1007,, +1922.10.29,29-Oct-22,1922,Invalid,AUSTRALIA,New South Wales,"Botany Bay, Sydney",Sailing,H.R.W.,M,,"FATAL, but shark involvement prior to death unconfirmed",UNKNOWN,,,"R.D. Weeks, GSAF",1922.10.29-HRW.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.10.29-HRW.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.10.29-HRW.pdf,1922.10.29,1922.10.29,1006,, +1922.09.28,28-Sep-22,1922,Unprovoked,USA,Hawaii,"Keawanui, Kamalo, Moloka'i","Freediving, inspecting Kaunakakai wharf construction after blasting & dredging ","male, Territorial Surveyor",M,,Survived,N,,,"Honolulu Advertiser, 8/19/1953; Tribune Herald (Hilo), 4/14/1963; V.M. Coppleson (1958), p.259; L. Taylor (1993), pp.96-97",1922.09.28-TerritorialSurveyor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.28-TerritorialSurveyor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.28-TerritorialSurveyor.pdf,1922.09.28,1922.09.28,1005,, +1922.09.26.R,Reported 26-Sep-1922,1922,Unprovoked,ENGLAND,East Yorkshire,Hornsea,Swimming ,Mr.P. H. Lee,M,,FATAL,Y,,,"Western Argus, 9/26/1922",1922.09.26.R-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.26.R-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.26.R-Lee.pdf,1922.09.26.R,1922.09.26.R,1004,, +1922.09.21.R,Reported 21-Sep-1922,1922,Boating,USA,Massachusetts,Nahant,Fishing,"boat, occupants: Mr. Goslin & 4 passengers",,,"No injury to occupants, shark splintered stern",N,,"""A pack of 6 sharks""","L. Schultz & M. Malin, p.554",1922.09.21-GoslinBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.21-GoslinBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.21-GoslinBoat.pdf,1922.09.21.R,1922.09.21.R,1003,, +1922.07.19,19-Jul-22,1922,Unprovoked,USA,Florida,"Pablo Beach, Jacksonville, Duval County",,Francis L'Engle,M,,Leg bitten,N,,,"Palm Beach Post, 7/19/1932",1922.07.19-L'Engle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.07.19-L'Engle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.07.19-L'Engle.pdf,1922.07.19,1922.07.19,1002,, +1922.06.17,17-Jun-22,1922,Unprovoked,USA,Florida,"Municipal Pier, St. Petersburg, Tampa bay",Floating,Dorothy MacLatchie,F,18,"FATAL, thigh bitten",Y,,1.8 m [6'] shark,"V.M. Coppleson, (1958) pp.155 & 252",1922.06.17-MacLatchie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.06.17-MacLatchie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.06.17-MacLatchie.pdf,1922.06.17,1922.06.17,1001,, +1922.05.24,24-May-22,1922,Unprovoked,JAMAICA,Westmoreland Parish,Savanna-la-Mar,Swimming,Sausse Leon,M,19,"FATAL, arm severed, thigh severely bitten ",Y,10h00,6' shark,"Daily Gleaner, 5/25/1922; H.E. Lloyd, NY Times, 6/22/1922",1922.05.24-Leon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.05.24-Leon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.05.24-Leon.pdf,1922.05.24,1922.05.24,1000,, +1922.05.06,06-May-22,1922,Unprovoked,SOUTH AFRICA,Western Cape Province,"Simon�s Town, False Bay",Swimming,Edward G. Pells,M,18,Abdomen & thigh bitten,N,A.M.,"White shark, 12', identity confirmed by tooth fragment, witness and photograph of captured shark ","M. Levine, GSAF; E.Wilson",1922.05.06-Pells.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.05.06-Pells.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.05.06-Pells.pdf,1922.05.06,1922.05.06,999,, +1922.04.26,26-Apr-22,1922,Unprovoked,AUSTRALIA,New South Wales,Hawkesbury River,Swimming,William A. Munro,M,,FATAL,Y,,,"Argus, 4/29/1922",1922.04.26-Munro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.04.26-Munro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.04.26-Munro.pdf,1922.04.26,1922.04.26,998,, +1922.03.20,20-Mar-22,1922,Unprovoked,JAMAICA,Kingston Parish,Kingston Harbor,Fishing,,M,,Survived,N,,,"Daily Gleaner, 3/21/1922, p.8",1922.03.20-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.03.20-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.03.20-Jamaica.pdf,1922.03.20,1922.03.20,997,, +1922.03.13,13-Mar-22,1922,Unprovoked,JAMAICA,Kingston Parish,Kingston Harbor,Standing,Adeline Lopez,F,14,"FATAL, right leg severed at thigh ",Y,,2.7 m [9'] shark later captured by Mitchell-Hedges,"Daily Gleaner, 3/21/1922, p.8; H. E. Lloyd, N.Y. Times, 6/22/1922; F.A. Mitchell-Hedges (1928), pp.95-100",1922.03.13-Lopez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.03.13-Lopez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.03.13-Lopez.pdf,1922.03.13,1922.03.13,996,, +1922.03.02,02-Mar-22,1922,Unprovoked,AUSTRALIA,New South Wales,Coogee,Bathing in knee-deep water,Mervyn Gannon,M,21,"FATAL, right hand severed, lacerations on left thigh & left hand, died in hospital of gas gangrene",Y,11h00,"White shark, 2.4 m [8'] ","V.M. Coppleson.N5. (1933); V.M. Coppleson (1958), pp.63 & 230; A. Sharpe, pp.56-57; G.A. Llano, pp.160-161",1922.03.02-Gannon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.03.02-Gannon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.03.02-Gannon.pdf,1922.03.02,1922.03.02,995,, +1922.02.22.R,Reported 02-Feb-1922,1922,Invalid,AUSTRALIA,New South Wales,"Bilgola Beach, Sydney",Swimming,Norman Whiteley,M,,"Disappeared whiile swimming alone, body parts recovered, but shark involvement prior to death unconfirmed",Y,,,"Cairns Post, 2/33/1922",1922.02.22.R-Whiteley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.02.22.R-Whiteley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.02.22.R-Whiteley.pdf,1922.02.22.R,1922.02.22.R,994,, +1922.02.04,04-Feb-22,1922,Unprovoked,AUSTRALIA,New South Wales,Coogee ,Swimming,Milton Coughlan,M,18,"FATAL, both arms & shoulder bitten",Y,15h30,White shark,"V.M. Coppleson.N.4. (1933); V.M. Coppleson (1958), pp.62 & 230; A. Sharpe, pp.53-55",1922.02.04-Coughlan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.02.04-Coughlan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.02.04-Coughlan.pdf,1922.02.04,1922.02.04,993,, +1922.01.28.R,Reported 28-Jan-1922,1922,Unprovoked,IRAQ,,Shatt-al Arab River,Bathing,Haroun-al-Raschid,M,,FATAL,Y,,,"The Queenslander, 1/28/1922",1922.01.28.R-Haroun-al-Raschid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.28.R-Haroun-al-Raschid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.28.R-Haroun-al-Raschid.pdf,1922.01.28.R,1922.01.28.R,992,, +1922.01.15,15-Jan-22,1922,Unprovoked,AUSTRALIA,Queensland,"Ross River, Townsville",Swimming ,Robert Milroy,M,54,FATAL,Y,17h30,,"V.M. Coppleson.Q5. (1933); V.M. Coppleson (1958), pp. 90 & 229",1922.01.15-Milroy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.15-Milroy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.15-Milroy.pdf,1922.01.15,1922.01.15,991,, +1922.01.13,13-Jan-22,1922,Unprovoked,AUSTRALIA,New South Wales,"Stockton Beach, Newcastle",Standing,Alwyn Bevan,M,,Small laceration on left thigh & swim costume torn,N,18h00,Grey nurse shark?,"V.M. Coppleson.N15. (1933); V.M. Coppleson (1958), p.229",1922.01.13-Bevan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.13-Bevan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.13-Bevan.pdf,1922.01.13,1922.01.13,990,, +1922.01.04,04-Jan-22,1922,Unprovoked,AUSTRALIA,New South Wales,"Stockton Beach, Newcastle",Surfing,John Manning Rowe,M,26,"FATAL, disappeared, then his shark-bitten remains washed ashore ",Y,Evening,,"The Argus, 1/9/1922; V.M. Coppleson (1933), N15",1922.01.04-JManningRowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.04-JManningRowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.04-JManningRowe.pdf,1922.01.04,1922.01.04,989,, +1921.12.11,11-Dec-21,1921,Unprovoked,AUSTRALIA,Queensland,Fitzroy River at Rockhampton,Swimming,Robert Murphy,M,20,Survived,N,,,"The Queenslander, 12/17/ 1921",1921.12.11-Murphy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.12.11-Murphy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.12.11-Murphy.pdf,1921.12.11,1921.12.11,988,, +1921.11.27.b,27-Nov-21,1921,Unprovoked,AUSTRALIA,Queensland,"Gay�s Corner, Bulimba Reach of Brisbane River",Fell from his father's back into the water,George Jack,M,8,"FATAL, disappeared, body not recovered",Y,Morning,,"V.M. Coppleson (1958), pp.92 & 237",1921.11.27.a-b-Jack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.27.a-b-Jack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.27.a-b-Jack.pdf,1921.11.27.b,1921.11.27.b,987,, +1921.11.27.a,27-Nov-21,1921,Unprovoked,AUSTRALIA,Queensland,"Gay�s Corner, Bulimba Reach of Brisbane River","Wading to dinghy, carrying his son",Herbert Jack,M,40,"Right hip, buttock, elbow, arm & wrist bitten",N,Morning,,"V.M. Coppleson.Q3. (1933); V.M. Coppleson (1958), pp.92 & 237",1921.11.27.a-b-Jack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.27.a-b-Jack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.27.a-b-Jack.pdf,1921.11.27.a,1921.11.27.a,986,, +1921.11.15.R,Reported 15-Nov-1921,1921,Unprovoked,FIJI,Viti Levu Island,Rewa River,Swimming,Esau & his young daughter,,,FATAL,Y,,,"Richmond River Express, 12/2/1921",1921.11.15.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.15.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.15.R-Fiji.pdf,1921.11.15.R,1921.11.15.R,985,, +1921.10.12,12-Oct-21,1921,Unprovoked,AUSTRALIA,Queensland,Off Hinchinbrook Island,Diving for beche-de-mer ,aboriginal diver,M,,Lacerations to right arm & chest,N,,,"Brisbane Courier, 10/15/1921",1921.10.12-Hinchinbrook-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.10.12-Hinchinbrook-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.10.12-Hinchinbrook-Island.pdf,1921.10.12,1921.10.12,984,, +1921.10.04,04-Oct-21,1921,Unprovoked,AUSTRALIA,Queensland,Barrier Reef,Diving for beche-de-mer,Yoichi Schamok,M,22,"Left thigh bitten, FATAL",Y,Afternoon,,"Cairns Post, 10/17/1921",1921.10.04-Schamok.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.10.04-Schamok.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.10.04-Schamok.pdf,1921.10.04,1921.10.04,983,, +1921.09.00,Sep-21,1921,Provoked,ENGLAND,Dorset,Weymouth,Fishing,Roberts,M,,Leg bitten by shark he was attempting to capture PROVOKED INCIDENT,N,,"Blue shark, 4' ","Argus, 10/8/1921",1921.09.00-Roberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.09.00-Roberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.09.00-Roberts.pdf,1921.09.00,1921.09.00,982,, +1921.08.29.R,Reported 29-Aug-1929,1921,Unprovoked,AUSTRALIA,Torres Strait,,,Oku Hayadi,M,,Lacerations to arm,N,,,"The Register, 8/29/1921",1921.08.29.R-Hayadi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.29.R-Hayadi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.29.R-Hayadi.pdf,1921.08.29.R,1921.08.29.R,981,, +1921.08.28,28-Aug-21,1921,Unprovoked,PHILIPPINES,Luzon Island,"Fort Frank, Manila Bay",Swimming,"Marcellus T. Abernathy, a US soldier in the 9th Coast Artillery",M,21,"FATAL, abdomen severely lacerated, taken by seaplane to hospital in Corrigedor but died ",Y,15h00,,"New York Times, 9/1/1921",1921.08.28-Abernathy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.28-Abernathy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.28-Abernathy.pdf,1921.08.28,1921.08.28,980,, +1921.01.11.R,Reported 11-Jan-1921,1921,Invalid,PHILIPPINES,"Cavite Province, Luzon",,,,,,Buttons & shoes found in shark caught in fish trap,UNKNOWN,,,"Reno Evening Gazette, 1/11/1921",1921.01.11.R-Cavite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.01.11.R-Cavite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.01.11.R-Cavite.pdf,1921.01.11.R,1921.01.11.R,979,, +1920.11.29,29-Nov-20,1920,Unprovoked,AUSTRALIA,Western Australia,Bunbury,Wading,Reginald Gibbs,M,,Lacerations to leg & hand,N,,4' to 5' shark,"Geraldton Guardian, 12/4/1920 ",1920.11.29-Gibbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.11.29-Gibbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.11.29-Gibbs.pdf,1920.11.29,1920.11.29,978,, +1921.08.22,22-Aug-21,1921,Unprovoked,HAITI,Cape Haitien,Marine Dock,Dived into a school of baitfish,"E.C.P, a U.S. Marine",M,,"FATAL, large wound on thigh",Y,15h30,Comrades saw shark's tail appear about 5' away,"V.M. Coppleson (1958), p.259; Baker & Rose, pp.881-3",1921.08.22-ECP.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.22-ECP.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.22-ECP.pdf,1921.08.22,1921.08.22,977,, +1920.11.22,22-Nov-20,1920,Unprovoked,AUSTRALIA,Western Australia,Cottesloe Beach,Standing,T.F. Davies,M,,"Minor injuries to leg, hand & fingers",N,,"15* to 24"" dog shark","Daily News, 11/24/1920",1920.11.22-Davies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.11.22-Davies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.11.22-Davies.pdf,1920.11.22,1920.11.22,976,, +1920.11.04,04-Nov-20,1920,Sea Disaster,PHILIPPINES,Leyte,,The coastwise steamer San Basilio capsized in a typhoon,male,,,FATAL,Y,,,"Oakland Tribune, 11/11/1920",1920.11.04-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.11.04-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.11.04-Philippines.pdf,1920.11.04,1920.11.04,975,, +1920.07.14,14-Jul-20,1920,Invalid,USA,New York,"Woodcliff Channel, Freeport, Long Island",Swimming ,Thomas McCann,M,30,Thought to have been taken by a shark. Body was not recovered,Y,,,"V.M. Coppleson (1958), p.151 ",1920.07.14-McCann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.07.14-McCann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.07.14-McCann.pdf,1920.07.14,1920.07.14,974,, +1920.07.05.R,Reported 06-Jul-1920,1920,Unprovoked,AUSTRALIA,Torres Strait,200 miles from MacKay,Diving for trochus shell,Japanese diver,M,,Severe lacerations to right shoulder & arm,N,,,"Brisbane Courier, 7/6/1920",1920.07.05.R-Japanese-DIver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.07.05.R-Japanese-DIver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.07.05.R-Japanese-DIver.pdf,1920.07.05.R,1920.07.05.R,973,, +1920.06.29,29-Jun-20,1920,Unprovoked,USA,Florida,"Englewood Beach, Charlotte County",Swimming ,Hayward Green,M,13,Knee & thigh bitten,N,18h30,,E. Clark,1920.06.29-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.06.29-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.06.29-Green.pdf,1920.06.29,1920.06.29,972,, +1920.06.27,27-Jun-20,1920,Provoked,CANADA,Halifax,"Slaunwhite's Ledge, Hubbard Cove",Harpooned shark,occupants: John Chandler & Walter Winters,,,"No injury to occupants, but shark struck boat with such force that Chandler was flung overboard. PROVOKED INCIDENT",N,,15',H. Piers (1933),1920.06.27-Hubbard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.06.27-Hubbard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.06.27-Hubbard.pdf,1920.06.27,1920.06.27,971,, +1920.03.08,08-Mar-20,1920,Unprovoked,AUSTRALIA,Queensland,"Between Bay Rock & Magnetic Island, Cleveland Bay","Boat capsized, swimming to shore",Alfred Burgess,M,20,"Tossed in air by shark, sustained abrasions",N,,,"H. Miller (1920); V.M. Coppleson Q.2.(1933); V.M. Coppleson (1958), pp.43, 44, 237; A. Sharpe, p.24",1920.03.08-Burgess.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.03.08-Burgess.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.03.08-Burgess.pdf,1920.03.08,1920.03.08,970,, +1920.01.24.R.b,Reported 24-Jan-1920,1920,Unprovoked,AUSTRALIA,Torres Strait,,Diving,male,M,,Lacerations to foot,N,,,"The Argus, 1/24/1920",1920.01.24.R.b-TorresStrait-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.24.R.b-TorresStrait-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.24.R.b-TorresStrait-diver.pdf,1920.01.24.R.b,1920.01.24.R.b,969,, +1920.02.03,03-Feb-20,1920,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Zwartkops River,Floating face down,Thea Toft,F,18,Abdomen bitten,N,17h30,,"T. Toft, M. Levine, GSAF",1920.02.03-Toft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.02.03-Toft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.02.03-Toft.pdf,1920.02.03,1920.02.03,968,, +1920.01.24.R.a,Reported 24-Jan-1920,1920,Unprovoked,AUSTRALIA,Torres Strait,Arlington Reef,Free diving,Japanese diver,M,,FATAL,Y,,,"The Argus, 1/24/1920",1920.01.24.R.a-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.24.R.a-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.24.R.a-JapaneseDiver.pdf,1920.01.24.R.a,1920.01.24.R.a,967,, +1920.01.15,15-Jan-20,1920,Unprovoked,AUSTRALIA,New South Wales,"Throsby Creek, Newcastle",Swimming ,David Miller,M,12,Leg bitten. FATAL,Y,10h00,,"V.M. Coppleson.N14. (1933); V.M. Coppleson (1958), p.229",1920.01.15-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.15-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.15-Miller.pdf,1920.01.15,1920.01.15,966,, +1920.00.00.b,1920s,1920,Unprovoked,JAMAICA,Westmoreland Parish,Savanna-la-Mar,Jumped overboard,sailor,M,,FATAL,Y,,,"Daily Gleaner, 4/14/1969",1920.00.00.c-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.00.00.c-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.00.00.c-Jamaica.pdf,1920.00.00.b,1920.00.00.b,965,, +1920.00.00.b,1920,1920,Unprovoked,NEW ZEALAND,North Island,"Stanley Bay, Auckland Harbor",,female,F,,"""Recovered""",N,,,"V.M. Coppleson (1958), p.262",1920.00.00.b-StanleyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.00.00.b-StanleyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.00.00.b-StanleyBay.pdf,1920.00.00.b,1920.00.00.b,964,, +1920.00.00.a,1920,1920,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Tugela River,Splashing,Zulu male,M,12,Thigh & buttocks bitten. Not known if he survived.,N,,,J.L.B. Smith,1920.00.00.a-TugelaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.00.00.a-TugelaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.00.00.a-TugelaRiver.pdf,1920.00.00.a,1920.00.00.a,963,, +1919.12.30.R,Reported 30-Dec-1919,1919,Unprovoked,AUSTRALIA,Queensland,Brible Island,Swimming,John Brothy,M,29,Lacerations to left leg,N,,,"Brisbane Courier, 12/30/1919",1919.12.30.R-Brothy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.12.30.R-Brothy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.12.30.R-Brothy.pdf,1919.12.30.R,1919.12.30.R,962,, +1919.12.07,07-Dec-19,1919,Unprovoked,AUSTRALIA,New South Wales,"Pelican Island, Macleay River",Swimming,James Ridley,M,47,"FATAL, left leg & calf bitten, leg surgically amputated ",Y,05h30,,"Sydney Morning Herald, 12/9/1919; V.M. Coppleson.N.20.(1933",1919.12.07-Ridley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.12.07-Ridley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.12.07-Ridley.pdf,1919.12.07,1919.12.07,961,, +1919.11.18,18-Nov-19,1919,Unprovoked,AUSTRALIA,Northern Territory,Darwin,Sitting in a boat,a sailor,M,,Lacerations to buttocks,N,,,G.P. Whitley; V.M. Coppleson (1933) ,1919.11.18-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.11.18-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.11.18-sailor.pdf,1919.11.18,1919.11.18,960,, +1919.09.12,12-Sep-19,1919,Unprovoked,COSTA RICA,Turtle Bogue,Where Colorado River enters the sea,Small vessel with 13 men on board capsized crossing the bar and 6 men drowned. The 7 survivors were swimming to shore,6 males,M,,"FATAL, 6 men were taken by sharks as they neared the beach, 1 survived",Y,,,"Pinchot, p.85-86",1919.09.12-CostaRica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.09.12-CostaRica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.09.12-CostaRica.pdf,1919.09.12,1919.09.12,959,, +1919.08.10,10-Aug-19,1919,Unprovoked,USA,Florida,"Gadsden Point, Tampa Bay",Swimming,George (or Edward) Eaton,M,,Laceration to left thigh,N,Afternoon,,"Miami Metropolis, 8/14/1919",1919.08.10-Eaton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.08.10-Eaton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.08.10-Eaton.pdf,1919.08.10,1919.08.10,958,, +1919.05.29,29-May-19,1919,Unprovoked,USA,South Carolina,"James Island Sound, Charleston","""Swimming vigorously""",W.E. Davis,M,,Left foot bitten & abraded,N,12h00,,E. M. Burton,1919.05.29-WE-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.05.29-WE-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.05.29-WE-Davis.pdf,1919.05.29,1919.05.29,957,, +1919.04.06,06-Apr-19,1919,Unprovoked,USA,Florida,"Florida Keys 25�N,82�W",Knocked into the water,"fisherman, a companion of J. Rose & W. Koegler",M,,FATAL,Y,,"3.7 m [12'], 1200-lb shark. Shark caught & its jaw exhibited at the Carnegie Museum","Gazette (Pittsburgh), no date",1919.04.06-Rose-Koegler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.04.06-Rose-Koegler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.04.06-Rose-Koegler.pdf,1919.04.06,1919.04.06,956,, +1919.03.16,16-Mar-19,1919,Invalid,AUSTRALIA,New South Wales,Sydney Harbor,Cutter capsized,5 cadets from the Naval training ship Tingara,M,,Shark involvement not confirmed,UNKNOWN,Late afternon,,"The Mercury, 3/18/1919",1919.03.16-Cadets.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.03.16-Cadets.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.03.16-Cadets.pdf,1919.03.16,1919.03.16,955,, +1919.01.17,17-Jan-19,1919,Unprovoked,AUSTRALIA,New South Wales,Newcastle Beach,Swimming,Douglas Arkell,M,,"Multiple injuries, left leg surgically amputated at knee",N,17h15,3.7 m to 4.3 m [12' to 14'] shark,"V.M. Coppleson.N13. (1933); V.M. Coppleson (1958), p.76 & 229",1919.01.17-Arkell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.17-Arkell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.17-Arkell.pdf,1919.01.17,1919.01.17,954,, +1919.01.15,15-Jan-19,1919,Unprovoked,NEW ZEALAND,South Island,"Tahuna Beach, Nelson",Swimming,female,F,,Leg bitten,N,Afternoon,,"Marlborough Express, 1/16/1919",1919.01.15-Tahuna-Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.15-Tahuna-Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.15-Tahuna-Beach.pdf,1919.01.15,1919.01.15,953,, +1919.01.09,09-Jan-19,1919,Unprovoked,AUSTRALIA,New South Wales,"Sirius Cove, Sydney Harbor",Wading,Richard Simpson,M,13,"FATAL, right thigh bitten ",Y,07h30,12' shark,"T. Peake, GSAF; V.M. Coppleson.N1.(1933); V.M. Coppleson (1958), pp.70 & 229; A. Sharpe, p.71",1919.01.09-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.09-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.09-Simpson.pdf,1919.01.09,1919.01.09,952,, +1919.01.05,05-Jan-19,1919,Unprovoked,AUSTRALIA,Queensland,"Ross River, Townsville",Wading (shrimping),Jack Hoey,M,38,"FATAL, thigh bitten, leg amputated ",Y,10h00,,"V.M. Coppleson.Q1.(1933); V.M. Coppleson (1958), pp.90 & 237",1919.01.05-Hoey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.05-Hoey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.05-Hoey.pdf,1919.01.05,1919.01.05,951,, +1900.00.00.R,Reported to have taken place in 1919,1919,Boating,ITALY,,Savona,Fishing,,M,,No injury,N,,13' shark,"C. Moore, GSAF",1919.00.00.R-Savona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.00.00.R-Savona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.00.00.R-Savona.pdf,1919.00.00.R,1900.00.00.R,950,, +1919.00.00,1919,1919,Unprovoked,USA,Florida,"Near Panama City, Bay County",Swimming,adult female (Mrs. Avery?),F,,Leg severed,N,,,"R. F. Hutton; T. Helm, p.219; V.M. Coppleson (1962), p.249",1919.00.00-MrsAvery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.00.00-MrsAvery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.00.00-MrsAvery.pdf,1919.00.00,1919.00.00,949,, +1918.11.00.b,Nov-18,1918,Unprovoked,USA,Hawaii,Papaikou plantation ,Fishing,Tadaichi Mayamura,M,,FATAL,Y,,,"Ogden Examiner, 12/15/1918",1918.11.00.b-Mayamura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.11.00.b-Mayamura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.11.00.b-Mayamura.pdf,1918.11.00.b,1918.11.00.b,948,, +1918.11.00.a,Nov-18,1918,Sea Disaster,SAN DOMINGO,60 miles north of San Domingo in the West Indies,Muchoir Banks,Steamer Una wrecked with 75 laborers onboard. Survivors took to rafts & lifeboats.,males,M,,"FATAL, ""men snatched from rafts by sharks"" ",Y,,"Tiger sharks, 2.4 m to 4.9 m [8' to 16'] ","V.M. Coppleson (1958), p.194; V.M. Coppleson (1962), p.210",1918.11.00.a-Una.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.11.00.a-Una.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.11.00.a-Una.pdf,1918.11.00.a,1918.11.00.a,947,, +1918.09.19,19-Sep-18,1918,Unprovoked,AUSTRALIA,Queensland,Townsville,Bathing,Joseph Bartlett,M,22,FATAL,Y,,,"Cairns Post, 9/24/1918",1918.09.19-Bartlett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.09.19-Bartlett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.09.19-Bartlett.pdf,1918.09.19,1918.09.19,946,, +1918.03.22,22-Mar-18,1918,Unprovoked,AUSTRALIA,New South Wales,Newcastle,Surfing,Arthur Cook,M,,"Severe laceration to arm, necessitating surgical amputation at the elbow",N,18h00,12' shark,"The Advertiser, 3/25/1918",1918.03.22-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.03.22-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.03.22-Cook.pdf,1918.03.22,1918.03.22,945,, +1918.00.00,1918,1918,Unprovoked,AUSTRALIA,Queensland,Near Cairns,Diving,Iona Asai,M,,Survived,N,,,"A. Sharpe, p.109",1918.00.00-Asai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.00.00-Asai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.00.00-Asai.pdf,1918.00.00,1918.00.00,944,, +1917.12.15,15-Dec-17,1917,Unprovoked,AUSTRALIA,Western Australia,Port Hedland,Swimming,F.W. Dean,M,,Lacerations to left leg,N,05h00,,"West Australian, 12/17/1917",1917.12.15-Dean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.12.15-Dean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.12.15-Dean.pdf,1917.12.15,1917.12.15,943,, +1917.11.00,Nov-17,1917,Unprovoked,MOZAMBIQUE,Maputo Province,Off Inhaca Island,Wreck of the tug Magellan,a South African sailor,M,,FATAL,Y,Night,,C.J. McGuinness,1917.11.00-Magellan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.11.00-Magellan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.11.00-Magellan.pdf,1917.11.00,1917.11.00,942,, +1917.09.21,21-Sep-17,1917,Unprovoked,USA,New Jersey,"Sea Bright, Monmouth County","Swimming, towing an empty barrel","Daniel Thompson, lifeguard",M,,Left knee lacerated,N,,,"V.M. Coppleson (1958), p.251 ",1917.09.21-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.09.21-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.09.21-Thompson.pdf,1917.09.21,1917.09.21,941,, +1917.09.09,09-Sep-17,1917,Provoked,USA,Hawaii,"Nanakuli, Oah�u",Stuffing a shark into an automobile,Carl Nakuina,M,,Arm severely lacerated by shark that had been hooked and shot PROVOKED INCIDENT,N,,12' shark,"Ogden Standard, 9/11/1917",1917.09.09-Nakuina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.09.09-Nakuina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.09.09-Nakuina.pdf,1917.09.09,1917.09.09,940,, +1917.09.00,Sep-17,1917,Unprovoked,PANAMA,Colon,,Swimming to shore from the Medic,male,M,,FATAL,Y,,,"Morwell Advertiser & Gazette, 1/18/1918",1917.09.00-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.09.00-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.09.00-Panama.pdf,1917.09.00,1917.09.00,939,, +1917.07.18,18-Jul-17,1917,Unprovoked,USA,Florida,Florida Keys ,Diving,William Sinker,M,,FATAL,Y,Afternoon,,"Washington Post, 7/20/1917",1917.07.18-WmSinker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.07.18-WmSinker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.07.18-WmSinker.pdf,1917.07.18,1917.07.18,938,, +1917.07.15,15-Jul-17,1917,Sea Disaster,IRELAND,Off Ireland,82 miles from Fastnet,Ship Mariston torpedoed & sunk,,M,,"FATAL, only 1 survivor",Y,Morning,,"Western Mail, 11/9/1917",1917.07.15-Mariston-ship.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.07.15-Mariston-ship.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.07.15-Mariston-ship.pdf,1917.07.15,1917.07.15,937,, +1917.06.03,03-Jun-17,1917,Unprovoked,USA,South Carolina,Calibogue Sound,Swimming beside launch,"Walter J. Pierpont, Jr.",M,,Right arm bitten,N,P.M.,,"C. Creswell, GSAF; V.M. Coppleson (1958), pp.153, 154 & 251; NY Times 6/4/1917, p.9 ",1917.06.03-Pierpont.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.06.03-Pierpont.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.06.03-Pierpont.pdf,1917.06.03,1917.06.03,936,, +1917.05.31,31-May-17,1917,Unprovoked,PHILIPPINES,Luzon Island,Canacao Bay,Swimming,"E.E., water tender of the U.S.S. Dale",M,,"FATAL, abdominal cavity removed ",Y,17h45,,"P.F. Prioleau; W.E., p.195; V.M. Coppleson (1958), p.264",1917.05.31-EE.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.05.31-EE.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.05.31-EE.pdf,1917.05.31,1917.05.31,935,, +1917.05.05,Reported 05-May-1917,1917,Unprovoked,KUWAIT,,,Diving for pearls,a young Arab,M,,Torso bitten,N,,,"Denton Journal, 5/5/1917",1917.05.05-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.05.05-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.05.05-Arab.pdf,1917.05.05,1917.05.05,934,, +1917.00.00,1917,1917,Unprovoked,LIBYA,Mediterranean Sea,Tripoli,Diving for sponges,male,M,,"Bitten by shark, but repelled it with his 'skandalopetra' ",N,,,F. Warn (see Bitter Sea in bibliography),1917.00.00-SpongeDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.00.00-SpongeDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.00.00-SpongeDiver.pdf,1917.00.00,1917.00.00,933,, +1916.12.30,30-Dec-16,1916,Unprovoked,AUSTRALIA,Queensland,"Yeppoon, near Ross Creek",Bathing,John Ford,M,25,Right calf bitten,N,A.M.,,"Morning Bulletin, 1/1/1917",1916.12.30-Ford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.12.30-Ford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.12.30-Ford.pdf,1916.12.30,1916.12.30,932,, +1916.12.08.b,08-Dec-16,1916,Unprovoked,AUSTRALIA,New South Wales,"Seven Shillings Beach, Middle Harbor, Sydney (Estuary)",Taking wife to beach & about 1 m from the shore,Walter C. German,M,41,"FATAL, right arm severed, chest punctured ",Y,09h00,,"G.P. Whitley, ref. Dr. Cleland, 1924; V.M. Coppleson (1962), p.79; A. Sharpe, p.71",1916.12.08.a-b-German.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.12.08.a-b-German.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.12.08.a-b-German.pdf,1916.12.08.b,1916.12.08.b,931,, +1916.12.08.a,08-Dec-16,1916,Unprovoked,AUSTRALIA,New South Wales,"Seven Shillings Beach, Middle Harbor, Sydney (Estuary)",Swimming 10 m from shore,Mrs Walter German,F,,Leg nipped by shark,N,08h58,,"A. Sharpe, p.71",1916.12.08.a-b-German.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.12.08.a-b-German.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.12.08.a-b-German.pdf,1916.12.08.a,1916.12.08.a,930,, +1916.11.15,15-Nov-16,1916,Provoked,PANAMA,,Panama Canal,,Clarence Ware,M,,"""Severely bitten""",N,,,"Hartford Courant, 11/16/1916",1916.11.15-ClarenceWare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.11.15-ClarenceWare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.11.15-ClarenceWare.pdf,1916.11.15,1916.11.15,929,, +1916.11.10,10-Nov-16,1916,Unprovoked,AUSTRALIA,Queensland,Townsville,Swimming,Walter Gregson,M,,FATAL,Y,06h00,,"Cairns Post, 11/11/1916",1916.11.10-Gregson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.11.10-Gregson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.11.10-Gregson.pdf,1916.11.10,1916.11.10,928,, +1916.11.09,09-Nov-16,1916,Unprovoked,AUSTRALIA,Queensland,"Kissing Point Camp, Townsville",Bathing,Robert Alexander Poultney,M,27,FATAL,Y,Evening,,"Brisbane Courier, 11/10/1916",1916.11.09-Poultney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.11.09-Poultney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.11.09-Poultney.pdf,1916.11.09,1916.11.09,927,, +1916.10.11,11-Oct-16,1916,Provoked,USA,Florida,"Sewell�s Point, near Palm Beach","Fishing, attempted to take a netted shark",J.L. Hanscomb,M,,"FATAL, leg severely bitten, surgically amputated PROVOKED INCIDENT",Y,,,"V.M. Coppleson (1958), p.251; R.F. Hutton; NY Times, 10/12/1916, p.8 ",1916.10.11-Hanscom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.10.11-Hanscom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.10.11-Hanscom.pdf,1916.10.11,1916.10.11,926,, +1916.08.24, 24-Aug-1916,1916,Unprovoked,USA,Louisiana,Grand Lake,Netting shrimp,William Lerey,M,,Lower left leg severely bitten & became septic. Not known if he survived,N,,,"The News, 8/15/1916",1916.08.24-Lerey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.08.24-Lerey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.08.24-Lerey.pdf,1916.08.24,1916.08.24,925,, +1916.07.26,26-Jul-16,1916,Unprovoked,USA,North Carolina,"Atlantic, near New Bern, Craven County",Fishing,William Nelson,M,,Arm severely lacerated,N,,,"C. Creswell, GSAF",1916.07.26-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.26-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.26-Nelson.pdf,1916.07.26,1916.07.26,924,, +1916.07.13.b,13-Jul-16,1916,Invalid,USA,New York,"Sheepshead Bay, Brooklyn",Swimming,Gertude Hoffman,F,,"No attack, no injury",N,10h00,,"New York Times, 7/14/1916",1916.07.13.b-Hoffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.13.b-Hoffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.13.b-Hoffman.pdf,1916.07.13.b,1916.07.13.b,923,, +1916.07.13,13-Jul-16,1916,Unprovoked,USA,New York,"Sheepshead Bay, Brooklyn",Swimming,Thomas Richards,M,,Ankle bruised,N,,,"NY Tribune, 7/14/1916",1916.07.13.a-Richards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.13.a-Richards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.13.a-Richards.pdf,1916.07.13,1916.07.13,922,, +1916.07.12.c,12-Jul-16,1916,Unprovoked,USA,New Jersey,"In Matawan Creek, off NJ Clay Company brickyards at Cliffwood, Monmouth County, 9.5 miles from the sea, Monmouth County",Swimming,John Dunn,M,12,"Lower left leg bitten, surgically amputated",N,,Said to involve a 2.7 m [9'] shark,"R. Fernicola, GSAF",1916.07.12.c-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.12.c-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.12.c-Dunn.pdf,1916.07.12.c,1916.07.12.c,921,, +1916.07.12.b,12-Jul-16,1916,Unprovoked,USA,New Jersey,"Matawan Creek, 10 miles from the sea, Monmouth County",Swimming (recovering remains of Stilwell) ,Stanley Fisher,M,24,"FATAL, thigh bitten ",Y,,3 m [10'] shark,"R. Fernicola, GSAF",1916.07.12.a-b-Stillwell-Fisher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.12.a-b-Stillwell-Fisher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.12.a-b-Stillwell-Fisher.pdf,1916.07.12.b,1916.07.12.b,920,, +1916.07.12.a,12-Jul-16,1916,Unprovoked,USA,New Jersey,"Matawan Creek, 10 miles from the sea, Monmouth County",Swimming,Lester Stillwell,M,10,"FATAL, legs & torso bitten ",Y,A.M.,,"R. Fernicola, GSAF ",1916.07.12.a-b-Stillwell-Fisher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.12.a-b-Stillwell-Fisher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.12.a-b-Stillwell-Fisher.pdf,1916.07.12.a,1916.07.12.a,919,, +1916.07.11,11-Jul-16,1916,Sea Disaster,BAHAMAS,,50 miles off Bahamas,S.S. Ramos foundered in a hurricane. Captain & 14 crew in water-logged lifeboats. ,Mr. Wichman,M,,"FATAL. When the survivors were rescued next day they were clubbing sharks with oars. ""Sharks were so thick that it was difficult to row""",Y,,,"NY Times, 7/18/1916",1916.07.11-Wichman-Ramos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.11-Wichman-Ramos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.11-Wichman-Ramos.pdf,1916.07.11,1916.07.11,918,, +1916.07.08,08-Jul-16,1916,Unprovoked,SPAIN,Gran Canaria,Las Palmas,Diving,male,M,,Survived,N,,,C. Moore,1916.07.08-GrandCanary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.08-GrandCanary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.08-GrandCanary.pdf,1916.07.08,1916.07.08,917,, +1916.07.07,07-Jul-16,1916,Unprovoked,PHILIPPINES,Luzon Island,"Olongapo Harbor, Subic Bay",Bathing,a sailor from the U.S.S. Galveston,M,,Right foot severed,N,,,"The Sun, 12/16/1917",1916.07.07-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.07-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.07-Sailor.pdf,1916.07.07,1916.07.07,916,, +1916.07.06,06-Jul-16,1916,Unprovoked,USA,New Jersey,"Spring Lake, Monmouth County",Swimming,Charles Bruder,M,,FATAL,Y,Afternoon,Thought to involve a 2.6 m [8.5'] white shark,"R. Fernicola, GSAF",1916.07.06-Bruder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.06-Bruder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.06-Bruder.pdf,1916.07.06,1916.07.06,915,, +1916.07.01,01-Jul-16,1916,Unprovoked,USA,New Jersey,"Beach Haven, Ocean County",Swimming,Charles E. Vansant,M,24,"FATAL, left leg bitten",Y,17h00,Thought to involve a 2.6 m [8.5'] white shark,"R. Fernicola, GSAF",1916.07.01-Vansant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.01-Vansant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.01-Vansant.pdf,1916.07.01,1916.07.01,914,, +1916.06.30,30-Jun-16,1916,Unprovoked,USA,New Jersey,"Atlantic City, Atlantic County",Swimming,boy,M,10 or 12,Heel bitten,N,,,C. Phinizy,1916.06.30-AtlanticCity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.30-AtlanticCity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.30-AtlanticCity.pdf,1916.06.30,1916.06.30,913,, +1916.06.24.R,Reported 24-Jun-1916,1916,Unprovoked,ATLANTIC OCEAN,,,Jumped overboard from Norwegian steamship Venator,Victor Matheson,M,,Presumed FATAL,Y,,,"Washington Post, 6/24/1916, p.6",1916.06.24.R-Matheson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.24.R-Matheson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.24.R-Matheson.pdf,1916.06.24.R,1916.06.24.R,912,, +1916.06.23,23-Jun-16,1916,Provoked,USA,Florida,,,Adolph Crouse,M,26,Leg bitten by shark hooked shark PROVOKED INCIDENT,N,,,"New York Times, 6/29/1916",1916.06.23-Crouse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.23-Crouse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.23-Crouse.pdf,1916.06.23,1916.06.23,911,, +1916.04.25.R,Reported 25-Apr-1916,1916,Unprovoked,AUSTRALIA,New South Wales,Manley Beach,Swimming,Thomas Harrington,M,,FATAL,Y,,,"Modesto Evening News, 4/25/1916",1916.04.25.R-Harrington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.04.25.R-Harrington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.04.25.R-Harrington.pdf,1916.04.25.R,1916.04.25.R,910,, +1916.04.03,03-Apr-16,1916,Unprovoked,AUSTRALIA,Victoria,Carrum,Clinging to overturned rowing boat,Monte Robinson & Andrew McNeill,M,17,FATAL,Y,,,"Argus, 3/5/1917",1916.04.03-Robinson-McNeill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.04.03-Robinson-McNeill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.04.03-Robinson-McNeill.pdf,1916.04.03,1916.04.03,909,, +1916.03.19,19-Mar-16,1916,Unprovoked,AUSTRALIA,New South Wales,Curl Curl,Bathing,Alexander Robinson,M,,Minor lacerations to heel,N,15h30,,"Argus, 4/21/1916",1916.03.19-Robinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.03.19-Robinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.03.19-Robinson.pdf,1916.03.19,1916.03.19,908,, +1915.12.09.R,Reported 09-Dec-1915,1915,Unprovoked,AUSTRALIA,Torres Strait, Thursday Island,Diving,A Japanese diver,M,,"Arm severed, lacerations to thigh",N,,,"Big Piney Examiner, 12/9/1915",1915.12.09.R-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.12.09.R-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.12.09.R-JapaneseDiver.pdf,1915.12.09.R,1915.12.09.R,907,, +1915.11.10,10-Nov-15,1915,Unprovoked,AUSTRALIA,Queensland,"Cabbage Tree Creek, Sandgate",Bathing,James Gleeson,M,10,Severe bite to arm,N,,,"Argus, 11/11/1915",1915.11.10-Gleeson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.11.10-Gleeson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.11.10-Gleeson.pdf,1915.11.10,1915.11.10,906,, +1915.11.08,08-Nov-14,1915,Unprovoked,AUSTRALIA,New South Wales,Manly,Bathing,Albert Rebecchi,M,,Severe lacerations to feet & ankles,N,,,"Sydney Morning Herald, 11/9/1915; V.M. Coppleson (1962), p.245 ",1915.11.08-Rebecchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.11.08-Rebecchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.11.08-Rebecchi.pdf,1915.11.08,1915.11.08,905,, +1915.08.03,03-Aug-15,1915,Unprovoked,USA,Florida,"St. Augustine, St Johns County",,M.F. Turnipseed,M,,Laceration to left leg,N,,,,1915.08.03-Turnipseed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.08.03-Turnipseed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.08.03-Turnipseed.pdf,1915.08.03,1915.08.03,904,, +1915.07.06.a.R,Reported 06-Jul-1915,1915,Unprovoked,MEXICO,Tamaulipas,Tampico,Fishing,Captain Thaxton,M,,FATAL,Y,,,"Oakland Tribune, 7/6/1915",1915.07.06.b.R-Thaxton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.07.06.b.R-Thaxton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.07.06.b.R-Thaxton.pdf,1915.07.06.a.R,1915.07.06.a.R,903,, +1915.07.06.a.R,Reported 06-Jul-1915,1915,Unprovoked,MEXICO,,Santa Maria Bar,Wading,J.W. McDonald,M,,FATAL,Y,,,"Oakland Tribune, 7/6/1915",1915.07.06.a.R-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.07.06.a.R-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.07.06.a.R-McDonald.pdf,1915.07.06.a.R,1915.07.06.a.R,902,, +1915.05.15.R,Reported 15-May-1915,1915,Invalid,EGYPT,,Alexandria,Fell overboard,male,M,,Shark involvement not confirmed,Y,,,"C. Moore, GSAF",1915.05.15.R-Alexandria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.05.15.R-Alexandria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.05.15.R-Alexandria.pdf,1915.05.15.R,1915.05.15.R,901,, +1915.03.29,29-Mar-15,1915,Unprovoked,AUSTRALIA,Torres Strait,Near Thursday Island,Skin diving for trepang but at surface next to the boat,Hana,M,,"Shoulder bitten. Hana, one of the rescuers, fended shark off with an oar, then shark bit oar in two",N,,3 m [10'] shark,"N. Bartlett, pp.234",1915.03.29-Hana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.03.29-Hana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.03.29-Hana.pdf,1915.03.29,1915.03.29,900,, +1915.02.06,06-Feb-15,1915,Unprovoked,AUSTRALIA,Queensland,Wynnum-Manley,Swimming,H. Stanton,M,,Foot bitten,N,,,"Brisbane Courier, 2/8/1915",1915.02.06-Stanton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.02.06-Stanton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.02.06-Stanton.pdf,1915.02.06,1915.02.06,899,, +1915.01.13,13-Jan-15,1915,Invalid,NEW ZEALAND,North Island,Otaki,Fishing,Henry Hodge & his son,M,,Death may have been due to drowning,Y,,,"The Mercury, 1/14/1915",1915.01.13-Hodge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.01.13-Hodge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.01.13-Hodge.pdf,1915.01.13,1915.01.13,898,, +1915.01.01,01-Jan-15,1915,Unprovoked,AUSTRALIA,New South Wales,"Sirius Cove, Sydney Harbor",Bathing,Warren Tooze,M,17,FATAL,Y,,,"G.P. Whitley, citing Argus (Melbourne) 1/5/1915; V.M. Coppleson (1958), p.70",1915.01.01-Tooze.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.01.01-Tooze.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.01.01-Tooze.pdf,1915.01.01,1915.01.01,897,, +1915.00.00,Ca. 1915,1915,Invalid,USA,Florida,"Soldier Key, Miami-Dade County",,Remains of male found in shark,M,,"Fatal, drowning or scavenging",UNKNOWN,,"Reported to involve a 3.7 m [12'] shark, possibly a white shark","Fishing Gazette 1915, Vol. 32, No. 10, p.296",1915.00.00-HumanRemains.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.00.00-HumanRemains.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.00.00-HumanRemains.pdf,1915.00.00,1915.00.00,896,, +1914.12.04.R,Reported 04-Dec-1914,1914,Unprovoked,AUSTRALIA,Queensland,Magnetic Island,Swimming,A. Steinstecke,M,,Lacerations to right thigh and knee,N,,,"Northern Miner, 12/4/1914",1914.12.04.R-Steinstecke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.12.04.R-Steinstecke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.12.04.R-Steinstecke.pdf,1914.12.04.R,1914.12.04.R,895,, +1914.10.17,17-Oct-14,1914,Sea Disaster,SAMOA,Apolima Strait,Opposite Apelima & Manona,Copra vessel with 19 on board was wrecked in a squall,female,F,,Thigh bitten,N,,,"Evening Post, 12/2/1914",1914.10.17-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.10.17-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.10.17-Samoa.pdf,1914.10.17,1914.10.17,894,, +1914.09.26.R,Reported 26-Sep-1914,1914,Unprovoked,JAMAICA,Kingston Parish,Port Royal,Fell overboard,"""a native boy""",M,,FATAL,Y,,"A 20' shark known as ""Old Tom""","Stevens Point Daily Journal, 9/26/1914, p.2 ",1914.09.26.R-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.09.26.R-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.09.26.R-Jamaica.pdf,1914.09.26.R,1914.09.26.R,893,, +1914.09.09,09-Sep-14,1914,Unprovoked,USA,Louisiana,Lake Pontchartrain,Swimming,Peter Kontspoulas,M,17,FATAL,Y,,,"Washington Post, 9/10/1914, p.6",1914.09.09-PeterKontspoulas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.09.09-PeterKontspoulas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.09.09-PeterKontspoulas.pdf,1914.09.09,1914.09.09,892,, +1914.07.15.R,Reported 15-Jul-1914,1914,Unprovoked,CROATIA,Zadar County,Biograd na moru,Washing clothes,female,F,,"No injury, shark grabbed clothes",N,,1.5 m [5'] shark,"C. Moore, GSAF",1914.07.15.R.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.15.R.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.15.R.pdf,1914.07.15.R,1914.07.15.R,891,, +1914.07.09.R,Reported 09-Jul-1914,1914,Provoked,USA,Louisiana,New Orleans,Fishing,Lopez,M,,PROVOKED INCIDENT Legs severed by shark entangled in his net,N,,,"Lima Daily News, 7/9/1914",1914.07.09.R-Lopez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.09.R-Lopez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.09.R-Lopez.pdf,1914.07.09.R,1914.07.09.R,890,, +1914.07.07,07-Jul-14,1914,Unprovoked,CROATIA, Primorje-Gorski Kotar County,Rijeka,,male,M,,"No injury, shark nudged raft and circled for 2 hrs.",N,,6 m shark,"C. Moore, GSAF",1914.07.07.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.07.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.07.pdf,1914.07.07,1914.07.07,889,, +1914.06.12,13-Jun-14,1914,Boating,MONTENEGRO,Adriatic Sea,Between St. Stjepan and Budva,Fishing boat,Occupants: Ivan Angjus & Stevo Kentera,M,,"No injury, shark bit paddle and stern of boat",N,07h00,,"C. Moore, GSAF",1914.06.13-Budva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.06.13-Budva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.06.13-Budva.pdf,1914.06.12,1914.06.12,888,, +1914.06.10,10-Jun-14,1914,Unprovoked,AUSTRALIA,Victoria,Sandringham,Bathing,Mr. Croxford,M,43,FATAL,Y,Afternoon,,"Evening Post, 6/11/1914",1914.06.10-Croxford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.06.10-Croxford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.06.10-Croxford.pdf,1914.06.10,1914.06.10,887,, +1914.05.31,31-May-14,1914,Sea Disaster,NEW CALEDONIA,South Province,Noumea,Swimming ashore from swamped 13-ft boat,Mr. Child & a Kanaka,M,,FATAL x 2,Y,,,"The Mercury, 6/23/1914",1914.05.31-Child-Kanaka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.05.31-Child-Kanaka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.05.31-Child-Kanaka.pdf,1914.05.31,1914.05.31,886,, +1914.05.14,14-May-14,1914,Provoked,USA,Florida,"Boca Ciega Bay, Pinellas County",Fishing,Mrs. A.L. Cummings,F,,PROVOKED INCIDENT Lacerations to right hand by hooked shark,N,Afternoon,3' shark,"Evening Independent, 5/14/1914, p.1",1914.05.14-Cummings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.05.14-Cummings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.05.14-Cummings.pdf,1914.05.14,1914.05.14,885,, +1914.03.14.R,Reported 14-Mar-1914,1914,Invalid,USA,Florida,"St. Augustine, St Johns County",Swimming,John B. Mooney,M,,His remains were recovered from a shark 3 years after his disappearance - Probable drowning / scavenging,Y,,,"Washington Post, 3/14/1914, p.E9",1914.03.14.R-Mooney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.03.14.R-Mooney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.03.14.R-Mooney.pdf,1914.03.14.R,1914.03.14.R,884,, +1914.03.03,03-Mar-14,1914,Unprovoked,USA,Hawaii,"Honomu, Hawai'i",Washed into sea while picking opihi & attacked by 2 large sharks ,Okomoto,M,,FATAL,Y,,,C.H. Townsend,1914.03.03-Okomoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.03.03-Okomoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.03.03-Okomoto.pdf,1914.03.03,1914.03.03,883,, +1914.02.09.R,Reported 09-Feb-1914,1914,Unprovoked,AUSTRALIA,South Australia,Marion Bay,Wading,Mr. Hasell,M,,Lacerations to foot,N,,said to involve a tiger shark,"The Advertiser, 2/10/1914",1914.02.09.R-Hasell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.02.09.R-Hasell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.02.09.R-Hasell.pdf,1914.02.09.R,1914.02.09.R,882,, +1914.02.03, 03-Feb-1914,1914,Unprovoked,AUSTRALIA,New South Wales,Paramatta River,Canoeing,John Dabbs,M,,Lacerations to arms,N,,,"Oakland Tribune, 3/241914, p.22",1914.02.03-Dabbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.02.03-Dabbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.02.03-Dabbs.pdf,1914.02.03,1914.02.03,881,, +1914.01.17.R,Reported 17-Jan-1914,1914,Unprovoked,AUSTRALIA,Queensland,Brisbane,Wading,Mrs. Schmidt,F,,Laceration to leg,N,,,"The Queenslandert , 1/17/1914",1914.01.17.R-Schmidt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.01.17.R-Schmidt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.01.17.R-Schmidt.pdf,1914.01.17.R,1914.01.17.R,880,, +1914.00.00,1914,1914,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban,,Indian female,F,,No details,UNKNOWN,,,"L. Green, South African Beachcomber, p.97",1914.00.00-IndianWoman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.00.00-IndianWoman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.00.00-IndianWoman.pdf,1914.00.00,1914.00.00,879,, +1913.12.30.R,Reported 30-Dec-1913,1913,Provoked,USA,Florida,"Palm Beach, Palm Beach County",Fishing for mackerel,"motor boat, occupants: Mr. & Mrs. Sidney M. Colgate and their three children, Bayard, Caroline and Margaret ",,,No injury to occupants but hull splintered by harpooned shark PROVOKED INCIDENT,N,,13' shark,"New Smyrna Daily News, 1/2/1914, p.12",1913.12.30.R-Colgate Boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.12.30.R-Colgate Boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.12.30.R-Colgate Boat.pdf,1913.12.30.R,1913.12.30.R,878,, +1913.11.27,27-Nov-13,1913,Unprovoked,NIGERIA,Lagos ,Lagos,Boat swamped,Gerald Arthur Edwin Denny,M,,FATAL,Y,,,"The Times (London), 7/21/1914, p.7; Lima Daily News, 1/10/1914",1913.11.27-Denny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.11.27-Denny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.11.27-Denny.pdf,1913.11.27,1913.11.27,877,, +1913.11.21,21-Nov-13,1913,Unprovoked,AUSTRALIA,Queensland,"Sandgate Jetty, Brisbane",Swimming,Henry Boucher,M,12,Calf severely bitten; leg surgically amputated,N,,,"Sydney Morning Herald, 11/24/1913 ",1913.11.21-Boucher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.11.21-Boucher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.11.21-Boucher.pdf,1913.11.21,1913.11.21,876,, +1913.09.21,21-Sep-13,1913,Unprovoked,USA,Florida,"West Palm Beach, Palm Beach County",,male,M,,Major injuries but survived,N,,Said to involve a 2.4 m [8'] hammerhead shark,"V.M. Coppleson (1958), p.251; T. Helm, p.212",1913.09.21-WestPalmBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.09.21-WestPalmBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.09.21-WestPalmBeach.pdf,1913.09.21,1913.09.21,875,, +1913.09.03,03-Sep-13,1913,Provoked,CROATIA,Istria County,Pula,,Fishing,M,,Badly bitten by a shark dragged onboard PROVOKED INCIDENT,N,,2 m shark,"C.Moore, GSAF",1913.09.03-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.09.03-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.09.03-Croatia.pdf,1913.09.03,1913.09.03,874,, +1913.08.27.R,Reported 27-Aug-1913,1913,Invalid,USA,New Jersey,"Lavalette, Ocean County",,,M,,Man's leg recovered from 800-lb shark,UNKNOWN,,,"Trenton Evening Times, 8/27/1913",1913.08.27.R-Lavalette.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.27.R-Lavalette.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.27.R-Lavalette.pdf,1913.08.27.R,1913.08.27.R,873,, +1913.08.27.R,Reported 27-Aug-1913,1913,Invalid,USA,New Jersey,"Spring Lake, Monmouth County",,,F,,Female foot recovered from shark,UNKNOWN,,,"Washington Post, 8/27/1913",1913.08.27.R-FemaleFoot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.27.R-FemaleFoot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.27.R-FemaleFoot.pdf,1913.08.27.R,1913.08.27.R,872,, +1913.08.26.R,26-Aug-13,1913,Invalid,ITALY,Trieste,,,,,,Human casualties,Y,,,"C. Moore, GSAF",1913.08.26.R-Trieste.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.26.R-Trieste.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.26.R-Trieste.pdf,1913.08.26.R,1913.08.26.R,871,, +1913.07.12,12-Jul-13,1913,Unprovoked,USA,South Carolina,Charleston,,soldier,M,,FATAL,Y,,,"C. Creswell, GSAF",1913.07.12-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.07.12-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.07.12-soldier.pdf,1913.07.12,1913.07.12,870,, +1913.05.21,21-May-13,1913,Provoked,USA,Florida,"John's Pass, Pinellas County",Fishing,George Roberts,M,,"Forefinger of right hand bitten by a ""dead"" shark PROVOKED INCIDENT",N,,,"Evening Independent, 5/22/1913",1913.05.21-Roberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.05.21-Roberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.05.21-Roberts.pdf,1913.05.21,1913.05.21,869,, +1913.05.02,02-May-13,1913,Provoked,AUSTRALIA,New South Wales,,Hauling in net,Richard Moss,M,,Lacerations to thigh by netted shark PROVOKED INCIDENT,N,,,"Northern Star, 5/7/1913",1913.05.02-Moss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.05.02-Moss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.05.02-Moss.pdf,1913.05.02,1913.05.02,868,, +1913.03.27,27-Mar-13,1913,Unprovoked,SAMOA,Upolu Island,Apia Harbor,,German sailor,M,,Leg severed,N,,,"Coppleson (1962), p.247",1913.03.27-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.03.27-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.03.27-Samoa.pdf,1913.03.27,1913.03.27,867,, +1913.01.00,Jan-13,1913,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island,Diving,"Treacle, a Torres Strait islander",M,,"Head, neck & left shoulder bitten",N,,Tiger shark ,"N. Bartlett, pp.232-233; V.M. Coppleson (1958), p.7 ",1913.01.00-Treacle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.01.00-Treacle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.01.00-Treacle.pdf,1913.01.00,1913.01.00,866,, +1913.00.00.d,1913,1913,Unprovoked,REUNION,Saint-Denis,Barachoise bridge,Swimming after his hat,male,M,,FATAL,Y,,,H. Cornu,1913.00.00.d-ReunionIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.00.00.d-ReunionIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.00.00.d-ReunionIsland.pdf,1913.00.00.d,1913.00.00.d,865,, +1913.00.00.c,1913,1913,Unprovoked,REUNION,5aint-Denis,Barachois,Swimming,male,M,,FATAL,Y,,,H. Cornu,1913.00.00.c-ReunionIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.00.00.c-ReunionIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.00.00.c-ReunionIsland.pdf,1913.00.00.c,1913.00.00.c,864,, +1913.00.00.a,1913,1913,Unprovoked,AUSTRALIA,Victoria,Brighton,,"male, a ""youth""",M,,Arm severed,N,,,"V.M. Coppleson (1958), p.110 [ Note: Coppleson had no concrete evidence about this incident; he heard only ""vague reports"".",1913.00.00.a-youth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.00.00.a-youth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.00.00.a-youth.pdf,1913.00.00.a,1913.00.00.a,863,, +1912.08.30,30-Aug-12,1912,Unprovoked,USA,Georgia,"Tybee Island, Chatham County",Swimming,Edward Coffee,M,12,FATAL,Y,,,"Atlanta Constitution, 8/31/1912, p.5",1912.08.30-Coffee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.08.30-Coffee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.08.30-Coffee.pdf,1912.08.30,1912.08.30,862,, +1912.07.23,23-Jul-12,1912,Unprovoked,USA,South Carolina,Sullivan's Island,Swimming,Corporal Kirkpatrick,M,,Toes severed,N,Afternoon,8' shark,"Atlanta Constitution, 7/25/1912",1912.07.23-Kirkpatrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.07.23-Kirkpatrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.07.23-Kirkpatrick.pdf,1912.07.23,1912.07.23,861,, +1912.07.06.R,Reported 06-Jul-1912,1912,Unprovoked,SOLOMON ISLANDS,Central Province,Savo,Bathing,male,M,,FATAL,Y,,,"Sydney Morning Herald, 7/6/1912",1912.07.06.R-Savo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.07.06.R-Savo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.07.06.R-Savo.pdf,1912.07.06.R,1912.07.06.R,860,, +1912.05.04,04-May-12,1912,Invalid,SOUTH AFRICA,KwaZulu-Natal,Durban,,arm recovered from hooked shark,M,,,UNKNOWN,,,"M. Levine, GSAF",1912.05.04-arm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.05.04-arm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.05.04-arm.pdf,1912.05.04,1912.05.04,859,, +1912.03.18,18-Mar-12,1912,Unprovoked,NEW ZEALAND,North Island,Takapuna,Swimming,male,M,,"""Slight laceration to leg""",N,,,"Evening Post, 3/20/1912",1912.03.18-Takapuna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.03.18-Takapuna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.03.18-Takapuna.pdf,1912.03.18,1912.03.18,858,, +1912.02.22,22-Feb-12,1912,Provoked,AUSTRALIA,Western Australia,Bunbury,Hard hat diving,Mr. Swanson,M,,"No injury, shark nipped diving suit after he prodded the shark PROVOKED INCIDENT ",N,,,"Western Argus, 2/27/1912",1912.02.22-Swanson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.22-Swanson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.22-Swanson.pdf,1912.02.22,1912.02.22,857,, +1912.02.19,19-Feb-12,1912,Unprovoked,AUSTRALIA,New South Wales,Coogee,Swimming,Fred Wort,M,18,Left calf & heel bitten,N,16h00,,"Argus (Melbourne) 2/20/1912, p.6; G.P. Whitley, p.260",1912.02.19-Wort.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.19-Wort.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.19-Wort.pdf,1912.02.19,1912.02.19,856,, +1912.02.03,03-Feb-12,1912,Unprovoked,NEW CALEDONIA,South Province,Noumea,Swimming,Raoul Gillies,M,,Left shoulder & both legs bitten,N,,,"Northern Star, 3/16/1912",1912.02.03-Gillies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.03-Gillies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.03-Gillies.pdf,1912.02.03,1912.02.03,855,, +1912.01.26,26-Jan-12,1912,Unprovoked,AUSTRALIA,New South Wales,"Fig Tree Bridge, Lane Cove River, near Sydney ",Swimming,James Edward Morgan,M,21,FATAL,Y,15h00,"2.8 m [9'3""] whaler shark captured 3 days later with his remains in its gut","Argus (Melbourne) 1/27, 28, 29, 30/1912; G.P. Whitley, p.260; V.M. Coppleson (1962), p.245; A. Sharpe, p.88",1912.01.26-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.26-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.26-Morgan.pdf,1912.01.26,1912.01.26,854,, +1912.01.13.R,Reported 13-Jan-1912,1912,Unprovoked,FIJI,Viti Levu group,Beqa,Washed overboard,,M,7,FATAL,Y,,,"Clarence & Richmond Examiner, 1/13/1912",1912.01.13.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.13.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.13.R-Fiji.pdf,1912.01.13.R,1912.01.13.R,853,, +1912.01.06,06-Jan-12,1912,Unprovoked,AUSTRALIA,New South Wales,Sydney Harbor,,male,M,,Thigh & lower abdomen severely bitten,N,,"C. macrurus captured 48 hours after attack with tissue removed from man in its gut; species identified by G.P. Whitley, reported as C. obscurus by R. Steel"," V.M. Coppleson (1933), page 450, citing J. Burton Cleland Australasian Medical Gazette, September 14, 1912, page 270",1912.01.06-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.06-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.06-Sydney.pdf,1912.01.06,1912.01.06,852,, +1912.01.01,01-Jan-12,1912,Unprovoked,AUSTRALIA,Queensland,Ross Creek,Bathing,Samuel Tristing,M,,FATAL,Y,Morning,,"Argus, 1/2/1912",1912.01.01-Tristing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.01-Tristing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.01-Tristing.pdf,1912.01.01,1912.01.01,851,, +1912.00.00,1912,1912,Unprovoked,SPAIN,Balearics,Isla Cabrera,Fell into the water,the governor of Cabrera,M,,FATAL,Y,,White shark,C. Moore,1912.00.00-Isla-Cabrera-Balearics.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.00.00-Isla-Cabrera-Balearics.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.00.00-Isla-Cabrera-Balearics.pdf,1912.00.00,1912.00.00,850,, +1911.11.08,08-Nov-11,1911,Invalid,USA,Florida,"Pensacola Bay, Escambia County",,Jules Antoine,M,,"Cause of death undetermined. 3.6 m [11'9""] shark seen carrying body. Next day, shark was killed & Antoine's entire body was found in its gut.",Y,,,"The Sun, 7/13/1913; H.D. Baldridge, p.170",1911.11.08-Antonine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.11.08-Antonine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.11.08-Antonine.pdf,1911.11.08,1911.11.08,849,, +1911.10.26,26-Oct-11,1911,Unprovoked,USA,South Carolina,Off Charleston,Fell overboard from steamship Rio Grande,George Spencer,M,,FATAL,Y,,,"Fresno Bee, 10/31/1911",1911.10.26-Spencer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.10.26-Spencer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.10.26-Spencer.pdf,1911.10.26,1911.10.26,848,, +1911.10.25,25-Oct-11,1911,Unprovoked,AUSTRALIA,Queensland,Great Barrier Reef,Diving,Toby,M,23,Calves bitten,N,Evening,,"Cairns Post, 11/2/1911",1911.10.25-Toby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.10.25-Toby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.10.25-Toby.pdf,1911.10.25,1911.10.25,847,, +1911.09.23,23-Sep-11,1911,Unprovoked,USA,Texas,Galveston Ship Channel,Jumped overboard to rescue companion,"John Blomquist, a dredgerman",M,,FATAL,Y,Early morning,,"The Sun, 7/13/1913; V.M. Coppleson (1962), p.249",1911.09.23-Blomquist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.09.23-Blomquist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.09.23-Blomquist.pdf,1911.09.23,1911.09.23,846,, +1911.09.20,20-Sep-11,1911,Unprovoked,USA,Florida,"Pensacola Bay, Escambia County",Fell overboard & swimming,"Thomas Ashe, a ship�s pilot",M,,FATAL,Y,,,"The Sun, 7/13/1913; Washington Post, 9/21/1911; V.M. Coppleson (1962) p.249",1911.09.20-Ashe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.09.20-Ashe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.09.20-Ashe.pdf,1911.09.20,1911.09.20,845,, +1911.09.17,17-Sep-11,1911,Unprovoked,USA,Florida,"Pablo Beach, Jacksonville, Duval County",Bathing,Harold C. Rood,M,,Left arm & thigh bitten,N,,,"Sun, 7/13/1913; V.M. Coppleson (1962), p.249",1911.09.17-HCRood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.09.17-HCRood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.09.17-HCRood.pdf,1911.09.17,1911.09.17,844,, +1911.07.31.R,Reported 31-Jul-1911,1911,Unprovoked,SPAIN,M�laga ,Ceuta,Bathing,a soldier,M,,FATAL,Y,,,C. Moore,1911.07.31.R-Ceuta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.07.31.R-Ceuta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.07.31.R-Ceuta.pdf,1911.07.31.T,1911.07.31.R,843,, +1911.07.16.R,Reported 16-Jul-1911,1911,Provoked,USA,Delaware,Delaware Lightship,Fishing,Martin Berg,M,,"Hooked shark bit his leg, knee to ankle PROVOKED INCIDENT",N,,,"Washington Post, 7/16/1911",1911.07.16.R-Berg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.07.16.R-Berg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.07.16.R-Berg.pdf,1911.07.16.R,1911.07.16.R,842,, +1911.05.09,09-May-11,1911,Unprovoked,SOUTH AFRICA,Western Cape Province,Victoria Bay,Bathing,James May,M,64,"FATAL, partial remains recovered",Y,"""Early evening""",,"Cape Mercantile Advertiser, 5/16/1911; M. Levine, GSAF",1911.05.09-JamesMay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.09-JamesMay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.09-JamesMay.pdf,1911.05.09,1911.05.09,841,, +1911.05.01.R,Reported 01-May-1911,1911,Provoked,USA,Texas,"Rockport, Aransas County",Fishing,Mateo Zapeda,M,,Bitten on left leg by hooked shark PROVOKED INCIDENT,N,,5' shark,"Daily Advocate, 5/1/1911",1911.05.01.R-Zepada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.01.R-Zepada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.01.R-Zepada.pdf,1911.05.01.R,1911.05.01.R,840,, +1911.05.01,01-May-11,1911,Unprovoked,SOUTH AFRICA,Western Cape Province,Victoria Bay,Swimming,James Jantjes,M,,FATAL,Y,,,"Cape Mercantile Advertiser, 5/2/1911, M. Levine, GSAF",1911.05.01-Jantjies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.01-Jantjies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.01-Jantjies.pdf,1911.05.01,1911.05.01,839,, +1911.04.08.R,Reported 08-Apr-1911,1911,Boating,NEW ZEALAND,Chatham Islands,,Fishing,2 fishermen,,,"No injury to occupants, shark bit boat",N,,,"Grey River Argus, 4/8/1911",1911.04.08.R-ChathamIslandBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.04.08.R-ChathamIslandBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.04.08.R-ChathamIslandBoat.pdf,1911.04.08.R,1911.04.08.R,838,, +1911.03.29.R,Reported 29-Mar-1911,1911,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island,Swimming,male,M,,FATAL,Y,,,"Northern Star, 3/29/1911",1911.03.29.R-ThursdayIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.03.29.R-ThursdayIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.03.29.R-ThursdayIsland.pdf,1911.03.29.R,1911.03.29.R,837,, +1911.01.04,04-Jan-11,1911,Sea Disaster,AUSTRALIA,Western Australia,Off Legendre Island,3-masted steel barque Glenbank foundered during a cyclone,Anti Ketola,M,22,Minor injuries,N,,,"Washington Post, 1/26/1913",1911.01.04-Katola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.01.04-Katola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.01.04-Katola.pdf,1911.01.04,1911.01.04,836,, +1911.00.00.b,1911,1911,Unprovoked,USA,Texas,"Texas City, Galveston",Swimming,a sailor,M,,Minor injury to feet,N,,,D.G. McComb,1911.00.00.b-TexasCity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.00.00.b-TexasCity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.00.00.b-TexasCity.pdf,1911.00.00.b,1911.00.00.b,835,, +1911.00.00.a,Ca. 1911,1911,Unprovoked,NEW ZEALAND,North Island,"Manukau Harbor, 6 miles south of Auckland",Fishing,male,M,50,FATAL,Y,,,H.C. Chapman,1911.00.00.a-Manukau Harbor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.00.00.a-Manukau Harbor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.00.00.a-Manukau Harbor.pdf,1911.00.00.a,1911.00.00.a,834,, +1910.12.25.R,Reported 25-Dec-1910,1910,Invalid,CROATIA, Primorje-Gorski Kotar County,Rijeka,,male,M,,FATAL?,Y,,,C. Moore,1910.12.15.R-Rijeka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.12.15.R-Rijeka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.12.15.R-Rijeka.pdf,1910.12.25.R,1910.12.25.R,833,, +1910.12.23.R,Reported 23-Dec-1910,1910,Sea Disaster,AUSTRALIA,Western Australia,Fremantle,Shipwrecked pearling schooner,Theodore Anderson�s captain & rest of crew taken by sharks,M,,FATAL,Y,,,"Iowa City Citizen, 12/23/1910",1910.12.23.R-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.12.23.R-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.12.23.R-Anderson.pdf,1910.12.23.R,1910.12.23.R,832,, +1910.11.28,28-Nov-10,1910,Provoked,NORTH ATLANTIC OCEAN,Georges Bank,,Fishing,Tham Key,M,,Right hand severely bitten by netted shark PROVOKED INCIDENT,N,,Angel shark,"NY Times, 11/30/1910",1910.11.28-Key.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.11.28-Key.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.11.28-Key.pdf,1910.11.28,1910.11.28,831,, +1910.11.24,24-Nov-10,1910,Unprovoked,AUSTRALIA,Queensland,Mackay,Bathing,Cecil Smith,M,,Foot bitten,N,,Said to involve 9' blue shark,"The Advertiser, 11/25/1910",1910.11.24-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.11.24-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.11.24-Smith.pdf,1910.11.24,1910.11.24,830,, +1910.06.25.R,Reported 25-Jun-1910,1910,Unprovoked,MEXICO,,LaBarra,Swimming,H. Gebler,M,,Leg bitten,N,,,"Indiana Evening Gazette, 9/25/1910",1910.06.25.R-Gebler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.06.25.R-Gebler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.06.25.R-Gebler.pdf,1910.06.25.R,1910.06.25.R,829,, +1910.06.08.R,Reported 08-Jun-1910,1910,Sea Disaster,MOZAMBIQUE,Zambesi River,Portuguese territory,"Steamer Durao struck rock & filled, boats capsized, passengers & crew tried to swim to shore",,,,"FATAL, 3 passengers & 14 crew taken by sharks, captain, 1 passenger & 2 crew survived",Y,,,D. Davies,1910.06.08.R-Durao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.06.08.R-Durao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.06.08.R-Durao.pdf,1910.06.08.R,1910.06.08.R,828,, +1910.05.16.R,Reported 16-May-1910,1910,Invalid,USA,Alabama,"Off Fort Gaines, Dauphin Island, Mobile County","Unknown, their unoccupied yawlboat was recovered","William Olsen, William Peterson, Albert Thomas & R. Zekoski",M,,Presumed drowned & bodies taken by sharks,N,,,"Atlanta Constitution, 5/17/1910, p.5",1910.05.16.R-yawlboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.05.16.R-yawlboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.05.16.R-yawlboat.pdf,1910.05.16.R,1910.05.16.R,827,, +1910.03.31,31-Mar-10,1910,Unprovoked,PANAMA,Col�n Province,Cristobal,Fell overboard from USS cruiser Tacoma,"Samuel Barnes, a Marine",M,,FATAL,Y,,,"The Ogden Standard, 4/13/1910",1910.03.31-Barnes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.03.31-Barnes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.03.31-Barnes.pdf,1910.03.31,1910.03.31,826,, +1910.03.08,08-Mar-10,1910,Unprovoked,NEW ZEALAND,North Island,"Waikanae Beach, Gisborne",Swimming,H. McGregor,M,,Lacerations to foot,N,Evening,6' shark,"Poverty Bay Herald, 3/9/1910",1910.03.08-McGregor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.03.08-McGregor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.03.08-McGregor.pdf,1910.03.08,1910.03.08,825,, +1910.03.00,Mar-10,1910,Invalid,USA,Hawaii,"Pearl Harbor, O'ahu","Hard hat diving, laying some charge of powder",Martin Lund,M,,No injury,N,,,"The Sun, 4/3/1910; Authenticity questioned by G.H. Balazs in J. Borg, p.70",1910.03.00-Lund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.03.00-Lund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.03.00-Lund.pdf,1910.03.00,1910.03.00,824,, +1910.02.16, 16-Feb-1910,1910,Unprovoked,AUSTRALIA,Western Australia,Bunbury,Surf bathing,George Cridland,M,,"Shoulder, back & leg bitten",N,Night,5.5' to 6' shark,"Western Mail, 2/26/1910",1910.02.16-Cridland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.02.16-Cridland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.02.16-Cridland.pdf,1910.02.16,1910.02.16,823,, +1910.01.26,26-Jan-10,1910,Unprovoked,AUSTRALIA,New South Wales,Newcastle Harbor,,Alfred Victor Clulow,M,,FATAL,Y,,,"V.M. Coppleson (1962), p.245",1910.01.26-Clulow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.01.26-Clulow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.01.26-Clulow.pdf,1910.01.26,1910.01.26,822,, +1910.00.00.b,1910,1910,Invalid,USA,Hawaii,"Hilo, Hawai'i","Fishing, thrown into water by heavy sea, clinging to rocks at the water line",male,M,,"Body bitten by shark/s, but death may have been due to drowning",Y,,,"C.H. Townsend; Authenticity questioned by G.H. Balazs in J. Borg, p.70",1910.00.00.b-Hilo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.00.00.b-Hilo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.00.00.b-Hilo.pdf,1910.00.00.b,1910.00.00.b,821,, +1910.00.00.a,1910,1910,Unprovoked,PHILIPPINES,Luzon Island,"Polinao Point, Manila",Swimming,Lieut. James H. Stewart,M,,"Calf removed, not known if he survived ",UNKNOWN,,6 m [20'] shark,"V.M. Coppleson (1958), p.264",1910.00.00.a-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.00.00.a-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.00.00.a-Stewart.pdf,1910.00.00.a,1910.00.00.a,820,, +1909.12.26.R,Reported 26-Nov-1909,1909,Unprovoked,USA,Florida,"16 miles north of Fort Pierce Inlet, Indian River County ",,Herman Hovelsrud ,M,,Severe lacerations to arm,N,,,"Washington Post, 12/26/1909",1909.12.26.R-Hovelsrud.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.26.R-Hovelsrud.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.26.R-Hovelsrud.pdf,1909.12.26.R,1909.12.26.R,819,, +1909.12.15.R,Reported 15-Dec-1909,1909,Unprovoked,AUSTRALIA,New South Wales,20 miles off Sydney,Fell overboard,Mr. Witt,M,,FATAL,Y,,,"Star, 12/15/1909",1909.12.15.R-Witt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.15.R-Witt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.15.R-Witt.pdf,1909.12.15.R,1909.12.15.R,818,, +1909.12.05,05-Dec-09,1909,Provoked,AUSTRALIA,New South Wales,Bondi,Fishing,male,M,,3 fingers bitten by hooked shark PROVOKED INCIDENT,N,,7' shark,"The Advertiser, 12/9/1909",1909.12.05-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.05-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.05-Fisherman.pdf,1909.12.05,1909.12.05,817,, +1909.11.14,14-Nov-1909 to 19-Nov-1909,1909,Sea Disaster,INDONESIA,30 nm from Singapore,Rhio Strait,The 2379-ton French steamer La Seyne collied with British steamer Onda & sank in minutes. Passengers jumped overboard expecting to be picked up by Onda�s boats,,,,"FATAL, 101 people perished, including commander, Joseph Couailhac. Iit was reported that a �shoal of sharks circled passengers in the water and dragged scores of people to their deaths� Of the 61 survivors, many were injured by sharks",Y,,,"The Sun, 7/13/1913 ",1909.11.14-LaSeyne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.11.14-LaSeyne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.11.14-LaSeyne.pdf,1909.11.14,1909.11.14,816,, +1909.09.04.R,Reported 04-Sep-1909,1909,Provoked,USA,Delaware,"Lewes, Sussex County",Seine netting,Walter Beach,M,,Abrasion to leg from netted shark PROVOKED INCIDENT,N,,5' shark,"Gettysburg Times, 9/4/1909",1909.09.04.R-Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.09.04.R-Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.09.04.R-Beach.pdf,1909.09.04.R,1909.09.04.R,815,, +1909.08.13,13-Aug-09,1909,Unprovoked,USA,Florida,"Pensacola Bay, Escambia County",Fell overboard from fishing schooner Halycon,William Craug,M,,FATAL,Y,,,"Laurel Ledger, 8/19/1909",1909.08.13-Craug.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.08.13-Craug.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.08.13-Craug.pdf,1909.08.13,1909.08.13,814,, +1909.07.24,24-Jul-09,1909,Unprovoked,USA,New York,Rockaway,Fell overboard while fishing for sharks,Albert Tyler,M,,Right leg bitten,N,Afternoon,,"NY Times, 7/25/1909",1909.07.24-Tyler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.07.24-Tyler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.07.24-Tyler.pdf,1909.07.24,1909.07.24,813,, +1909.07.15,15-Jul-09,1909,Unprovoked,USA,Florida,"Panama City, Bay County",Swimming,Henry Munson,M,16,Hip & thigh lacerated,N,,,"News Herald, 7/29/2001",1909.07.15-Munson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.07.15-Munson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.07.15-Munson.pdf,1909.07.15,1909.07.15,812,, +1909.06.26.a.R,Reported 26-Jun-1909,1909,Unprovoked,MEXICO,Guerrero,Zacatula,Bathing,Rosa Lopez,F,,FATAL,Y,,,"Adams County News, 6/26/1909",1909.06.26.a.R-Lopez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.26.a.R-Lopez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.26.a.R-Lopez.pdf,1909.06.26.a.R,1909.06.26.a.R,811,, +1909.06.26.b.R,26-Jun-09,1909,Unprovoked,SOUTH AFRICA,Western Cape Province,Cape Town,,,M,,Remains of soldier in uniform. Probable drowning & scavenging,Y,,18-foot shark,"Adams County News, 6/26/1909",1909.06.26.b.R-CapeTown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.26.b.R-CapeTown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.26.b.R-CapeTown.pdf,1909.06.26.b.R,1909.06.26.b.R,810,, +1909.06.18,18-Jun-09,1909,Sea Disaster,AUSTRALIA,Queensland,"Middleton Reef, 300 nm from Brisbane","1446-ton Norwegian barque Errol, bound from Peru to Newcastle with 22 on board wrecked. Survivors shelterd on the wreck of the Annasona. Subsequently the Master, his wife & 4 children perished along with several crew. Survivors (5) were rescued 7/12/1909",Master of the Errol,M,,"FATAL, only his legs, still in sea-boots, were recovered ",Y,,,"Australian Zoologist, viii., 1937, p.207",1909.06.18-Errol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.18-Errol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.18-Errol.pdf,1909.06.18,1909.06.18,809,, +1909.04.27.R,Reported 27-Apr-1909,1909,Provoked,SPAIN,Andalucia,"Puente Mayorga, San Roque, C�diz",Fishing,male,M,,Shark knocked him down after he grabbed it by the tail. No injury. PROVOKED INCIDENT,N,,,"C. Moore, GSAF",1909.04.27.R-Cadiz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.27.R-Cadiz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.27.R-Cadiz.pdf,1909.04.27.R,1909.04.27.R,808,, +1909.04.10,10-Apr-09,1909,Invalid,USA,Hawaii,"Pa'uwela, Maui",Reported swept away by waves while gathering opihi,Mrs. Ah Kim Chong,F,19, Search party saw a large shark devour what appeared to be part of her body,Y,,,"J. Borg, pp.69-70; L. Taylor (1993), pp.94-95",1909.04.10-Chong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.10-Chong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.10-Chong.pdf,1909.04.10,1909.04.10,807,, +1909.04.09.R,Reported 09-Apr-1909,1909,Unprovoked,TUNISIA,Sfax,,Diving (Helmet) for sponges,Johannis Zambeltos,M,,FATAL,Y,,,"C. Moore, GSAF; Petit Paisien, 4/15/1909 ",1909.04.09.R-Zambeltos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.09.R-Zambeltos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.09.R-Zambeltos.pdf,1909.04.09.R,1909.04.09.R,806,, +1909.03.06,06-Mar-09,1909,Sea Disaster,SOUTH AFRICA,South Atlantic Ocean,Possession Island,Wreck of the 1308-ton Norwegian ship Auckland,The Captain�s wife,F,,FATAL,Y,,,"L. Green, GSAF",1909.03.06-Auckland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.03.06-Auckland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.03.06-Auckland.pdf,1909.03.06,1909.03.06,805,, +1909.01.17,17-Jan-09,1909,Invalid,,,Near the equator,Jumped overboard ,Thomas Butler,M,36,FATAL,Y,,,"Star, 3/18/1909",1909.01.17-Butler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.01.17-Butler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.01.17-Butler.pdf,1909.01.17,1909.01.17,804,, +1909.01.00,Jan-09,1909,Invalid,ITALY,Sicily,"Off Capo San Croce, near Augusta (Catania)","On December 28, 1908, an earthquake, followed by tsunamis, destroyed coastal towns in Silcily and southern Italy, killing more than 100,000 people",,,," 3 unidentified bodies recovered (male, female & young girl) from gut of female 4.5 m [14'9""] white shark caught in fishing net. They may have drowned in tidal wave following earthquake ",Y,,,MEDSAF,1909.01.00-Messina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.01.00-Messina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.01.00-Messina.pdf,1909.01.00,1909.01.00,803,, +1909.00.00,1909,1909,Unprovoked,AUSTRALIA,New South Wales,Woy Woy,,anonymous,,,Survived,N ,,,"G.P. Whitley, citing Lone Hand, 12/1/1910, p.134",1909.00.00-WoyWoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.00.00-WoyWoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.00.00-WoyWoy.pdf,1909.00.00,1909.00.00,802,, +1908.12.31,31-Dec-08,1908,Unprovoked,SOUTH AFRICA,Western Cape Province,Stilbaai,Swimming,The son of Rabbi East,M,16,FATAL,Y,,,"Fairbridge Index, Cape Archives, M. Levine, GSAF",1908.12.31-East.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.12.31-East.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.12.31-East.pdf,1908.12.31,1908.12.31,801,, +1908.12.16.R,Reported 16-Dec-1908,1908,Unprovoked,MEXICO,Quintana Roo,,Swimming ashore from capsized boat,Colonel Harry J. Earle,M,,"FATAL, ""bitten in two""",Y,,,"Lowell Sun, 12/16/1908; V.M. Coppleson (1962), p.247; H.D. Baldridge, p.161",1908.12.16-Earle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.12.16-Earle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.12.16-Earle.pdf,1908.12.16.R,1908.12.16.R,800,, +1908.09.21, 21-Sep-1908,1908,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island,Fell from the jetty,Kong Choong Ting,M,,FATAL,Y,,Remains recovered from 3 sharks,"Northern Territory Times & Gazette, 9/25/1908",1908.09.21-KongChoongTing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.09.21-KongChoongTing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.09.21-KongChoongTing.pdf,1908.09.21,1908.09.21,799,, +1908.09.05,05-Sep-08,1908,Unprovoked,USA,California,"Redondo, Los Angeles County",On fishing boat & trailing hand in the water,Ralph Nelson,M,,Lacerations to fingers,N,,,"Los Angeles Times, 9/6/1908, p.I6",1908.09.05-RalphNelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.09.05-RalphNelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.09.05-RalphNelson.pdf,1908.09.05,1908.09.05,798,, +1908.08.28.R,Reported 28-Aug-1908,1908,Unprovoked,SPAIN,Galicia,Cape Finisterre,Fell overboard from P&O steamship Arabia,William Newbury,M,,FATAL,Y,,,"Poverty Bay Herald, 10/14/1908",1908.08.28.R-Newbury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.08.28.R-Newbury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.08.28.R-Newbury.pdf,1908.08.28.R,1908.08.28.R,797,, +1908.07.18.R,Reported 18-Jul-1908,1908,Invalid,SPAIN,Canary Islands,"Tazacorte, La Palma",,,,,Human remains recovered but shark involvement prior to death unconfirmed ,Y,,,"C. Moore, GSAF",1908.07.18.R-LasPalmas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.07.18.R-LasPalmas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.07.18.R-LasPalmas.pdf,1908.07.18.R,1908.07.18.R,796,, +1908.07.08.R,Reported 08-Jul-1908,1908,Unprovoked,CROATIA,Adriatic Sea,Medola,Boating,Milena Scambelli,F,,"FATAL, lost a leg",Y,,"Species unknown, possible white shark","A. De Maddalena; M. Zuffa (pers. Comm.), Anon. (1908); C. Moore, GSAF",1908.07.08.R-Milena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.07.08.R-Milena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.07.08.R-Milena.pdf,1908.07.08.R,1908.07.08.R,795,, +1908.06.18,18-Jun-08,1908,Unprovoked,EGYPT,Gulf of Suez,Off Ras Gharib,The 168-ton Belmore foundered in heavy seas,Seaman Gray,M,,FATAL,Y,,,"Bay of Plenty Times, 6/26/2008",1908.06.18-Gray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.18-Gray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.18-Gray.pdf,1908.06.18,1908.06.18,794,, +1908.06.08,08-Jun-08,1908,Sea Disaster,USA,Georgia,,The British steamer Caribbee foundered,Walter Howe,M,,FATAL,Y,,,"New York Times, 6/15/1908",1908.06.08-Howe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.08-Howe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.08-Howe.pdf,1908.06.08,1908.06.08,793,, +1908.06.02.R,Reported 02-Jun-1908,1908,Sea Disaster,PAPUA NEW GUINEA,New Britain,Matupi,.,,.,,"Remains of 3 humans recovered from shark, but shark involvement prior to death unconfirmed",Y,,Allegedly a 33-foot shark,"Taranaki Herald, 6/2/1908",1908.06.02.R-Matupi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.02.R-Matupi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.02.R-Matupi.pdf,1908.06.02.R,1908.06.02.R,792,, +1908.05.13,13-May-08,1908,Sea Disaster,INDONESIA,Java,Jakarta Harbor,native boats sunk in storm,,,F,FATAL,Y,,,"The Advertiser, 6/26/1908",1908.05.13-Jakarta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.05.13-Jakarta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.05.13-Jakarta.pdf,1908.05.13,1908.05.13,791,, +1908.05.10,10-May-08,1908,Invalid,USA,Florida," Marathon, Monroe County",,John C. Williams,M,,"FATAL, but shark involvement prior to death was not confirmed",Y,,,"Weekly Miami Metropolis, 5/11/1908",1908.05.10-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.05.10-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.05.10-Williams.pdf,1908.05.10,1908.05.10,790,, +1908.01.08,08-Jan-08,1908,Unprovoked,USA,Hawaii,"Mana, Kaua'i",Gathering fish stunned by dynamite,"male, a Japanese fisherman",M,,"FATAL, ""pulled below the surface' ",Y,,,"C.H. Townsend, Bull. N.Y. Zoological Society, 11-12/1931",1908.01.08-JapaneseFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.01.08-JapaneseFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.01.08-JapaneseFisherman.pdf,1908.01.08,1908.01.08,789,, +1907.12.21,21-Dec-07,1907,Unprovoked,AUSTRALIA,New South Wales,"Middle Harbour, Sugarloaf Bay, Sydney (Estuary)",Bathing,Henry Jones,M,,FATAL,Y,,Bull shark,"R.D. Weeks, GSAF; Otago Daily Times, 12/24/1907",1907.12.21-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.12.21-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.12.21-Jones.pdf,1907.12.21,1907.12.21,788,, +1907.10.18.R,Reported 18-Oct-1907,1907,Unprovoked,AUSTRALIA,Torres Strait,Near Thursday Island,Bathing,male from the lugger Teazer,M,,FATAL,Y,,,"The Queenslander, 10/26/1907",1907.10.18.R-male-Teazer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.18.R-male-Teazer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.18.R-male-Teazer.pdf,1907.10.18.R,1907.10.18.R,787,, +1907.10.16.R,Reported 16-Oct-1907,1907,Unprovoked,CHINA,Hong Kong,"Sharp Peak, Sai Kung Peninsula, New Territories",Fishing,fishermen,M,,"3 of thel 5 were injured, one of whom lost both hands",N,,Shark involvement probable,"Dawson Daily News, 11/20/1907",1907.10.16.R-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.16.R-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.16.R-HongKong.pdf,1907.10.16.R,1907.10.16.R,786,, +1907.10.16.R,Reported 16-Oct-1907,1907,Unprovoked,CHINA,Hong Kong,"Sharp Peak, Sai Kung Peninsula, New Territories",Fishing,fishermen,M,, 2 of the 5 fishermen were so seriously injured they died of their wounds,Y,,Shark involvement probable,"Dawson Daily News, 11/20/1907",1907.10.16.R-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.16.R-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.16.R-HongKong.pdf,1907.10.16.R,1907.10.16.R,785,, +1907.10.14,14-Oct-07,1907,Unprovoked,AUSTRALIA,New South Wales,"Merewether Beach, near Newcastle",Bathing,Edward. Nolan,M,,Lacerations to left arm from shoulder to wrist,N,11h00,,"Evening Post, 10/14/1907",1907.10.14-Nolan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.14-Nolan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.14-Nolan.pdf,1907.10.14,1907.10.14,784,, +1907.10.12,12-Oct-07,1907,Invalid,HAITI,Tiburon Peninsula,Aux Cayes (now Les Cayes),Reached out to disentangle rope & fell overboard,"William Thomas, a seaman from the Hamburg-American liner Alleghany",M,,"No attack, no injury",N,,,"H.D. Baldridge, SAF Case #412",1907.10.12-alleghany-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.12-alleghany-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.12-alleghany-sailor.pdf,1907.10.12,1907.10.12,783,, +1907.10.08,08-Oct-07,1907,Unprovoked,USA,Hawaii," Kalepolepo, Kihei, Maui","Diving, retrieving fish caught in net ","male, a Japanese fisherman",M,,"Arm severed at elbow, surgically amputated at shoulder ",N,09h00,,"C. Townsend; Pacific Commerical Advertiser, 10/13/1907; J. Borg, p.69; L. Taylor (1993), pp.94-95; Honolulu Advertiser, 8/9/1953",1907.10.08-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.08-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.08-fisherman.pdf,1907.10.08,1907.10.08,782,, +1907.09.18.R,Reported 19-Sep-1907,1907,Invalid,ENGLAND,English Channel,,Swimming,J. Wolffe,M,," ""Struck across loins"" but no injury. According to witnesses, incident involved a bottlenose dolphin.",N,,,"C. Moore, GSAF",1907.09.18.R-Wolffe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.09.18.R-Wolffe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.09.18.R-Wolffe.pdf,1907.09.18.R,1907.09.18.R,781,, +1907.09.11,11-Sep-07,1907,Unprovoked,CROATIA," Split-Dalmatia Count,","Sucurja, Hvar Island,",Swimming,female,F,,FATAL,Y,,,"C. Moore, GSAF",1907.09.11-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.09.11-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.09.11-Croatia.pdf,1907.09.11,1907.09.11,780,, +1907.08.12.b..R,Reported 12-Aug-1907,1907,Unprovoked,CROATIA, Primorje-Gorski Kotar County,Krk Island,Swimming,a school teacher,F,,FATAL,Y,,,"Ogden Standard, 8/13/1907",1907.08.12.b.R-SchoolTeacher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.12.b.R-SchoolTeacher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.12.b.R-SchoolTeacher.pdf,1907.08.12.b..R,1907.08.12.b..R,779,, +1907.08.12.a..R,Reported 12-Aug-1907,1907,Unprovoked,CROATIA, Primorje-Gorski Kotar County,Krk Island,Swimming,Josef Slivovic,M,,FATAL,Y,,,"Ogden Standard, 8/13/1907",1907.08.12.a.R-Silvovic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.12.a.R-Silvovic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.12.a.R-Silvovic.pdf,1907.08.12.a..R,1907.08.12.a..R,778,, +1907.08.08.R,Reported 08-Aug-1907,1907,Unprovoked,USA,New Jersey,Lower Delaware Bay,Wading,George Kell,M,,Abrasion to chest,N,,,"New Oxford Item, 8/8/1907",1907.08.08.R-Kell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.08.R-Kell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.08.R-Kell.pdf,1907.08.08.R,1907.08.08.R,777,, +1907.07.14.R,Reported 14-Jul-1907,1907,Unprovoked,CROATIA," Split-Dalmatia Count,","Su?uraj, Hvar Island",Swimming,female,F,,FATAL,Y,,,"C. Moore, S. Navajas, R. Rocconi, GSAF",1907.07.14-R-Adriatic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.14-R-Adriatic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.14-R-Adriatic.pdf,1907.07.14.R,1907.07.14.R,776,, +1907.07.04.R,Reported 04-Jul-1907,1907,Invalid,AUSTRALIA,Queensland,Karra Garra,.,Dick Atkins,M,,"Disappeared, but shark involvement unconfirmed",Y,,,"Queensland Figaro, 7/4/1907",1907.07.04-R-Atkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.04-R-Atkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.04-R-Atkins.pdf,1907.07.04.R,1907.07.04.R,775,, +1907.07.00,Jul-07,1907,Unprovoked,USA,South Carolina,Small creek near Coles Island,Floating in creek,C.B. Hernandez,M,,Slight injuries to left knee & calf ,N,,1.5 m [5'] shark,E. M. Burton,1907.07.00-CB-Hernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.00-CB-Hernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.00-CB-Hernandez.pdf,1907.07.00,1907.07.00,774,, +1907.04.20,20-Apr-07,1907,Unprovoked,MEXICO,Oaxaca,Salina Cruz,Bathing,Laurence Funda,M,," 3 fingers & thigh lacerated, foot crushed",N,,,"Los Angles Times, 8/7/1907, p.II11",1907.04.20-Funda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.04.20-Funda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.04.20-Funda.pdf,1907.04.20,1907.04.20,773,, +1907.03.26,26-Mar-07,1907,Unprovoked,USA,Florida,"Garden Key, Charlotte County","Fishing, tarpon being chased by shark leapt across his skiff, breaking it in half & Larkin became tangled in the net",Belton Larkin,M,,"FATAL, shark bit his side, nearly cutting him in two ",Y,,,"The Sun, 7/13/1913 reprinted article from Punta Gorda Herald of 3/31/1907. NOTE: V.M. Coppleson (1962), p.246 lists the location as Punta Gorda, British Honduras",1907.03.26-Larkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.03.26-Larkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.03.26-Larkin.pdf,1907.03.26,1907.03.26,772,, +1907.03.07,07-Mar-07,1907,Unprovoked,MALTA,Harare Province,Marsaskala,Fishing,2 fishermen,M,,"FATAL, Fell overboard and were killed by shark",Y,,"White shark, 6 m ","A. De Maddalena, citing Mojetta, et.al",1907.03.07-fishemen-Malta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.03.07-fishemen-Malta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.03.07-fishemen-Malta.pdf,1907.03.07,1907.03.07,771,, +1907.02.09,09-Feb-07,1907,Unprovoked,PHILIPPINES,Luzon Island,Manila Bay,"Row boat (from the gunboat Elcano) was sinking, put finger in hole",J.J. Dunlap,M,,Finger severed,N,,,"Souix Vally News, 4/4/1907; V.M. Coppleson (1958), p.264",1907.02.09-J.J.Dunlap.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.02.09-J.J.Dunlap.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.02.09-J.J.Dunlap.pdf,1907.02.09,1907.02.09,770,, +1907.02.05,05-Feb-07,1907,Unprovoked,NEW ZEALAND,South Island,Port Moeraki,Standing,Mr. W. H. Hutcheson,M,55,"FATAL, leg severely bitten ",Y,,,"R.D. Weeks, GSAF; Otago Daily Times, 1/13/1962",1907.02.05-Hutcheson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.02.05-Hutcheson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.02.05-Hutcheson.pdf,1907.02.05,1907.02.05,769,, +1907.02.03,03-Feb-07,1907,Unprovoked,AUSTRALIA,Queensland,Ross Creek,Bathing,William Williams,M,18,FATAL,Y,Morning,,"The Queenslander, 2/9/1907",1907.02.03-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.02.03-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.02.03-Williams.pdf,1907.02.03,1907.02.03,768,, +1907.00.00.b,1907,1907,Unprovoked,VIETNAM,Kh�nh H�a Province,Nha Trang,Fishing,A fisherman,M,20,"Leg severely bitten, surgically amputated",N,,,G. Vassal,1907.00.00.b-Vietnam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.00.00.b-Vietnam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.00.00.b-Vietnam.pdf,1907.00.00.b,1907.00.00.b,767,, +1907.00.00.a,1907,1907,Unprovoked,USA,Hawaii,"Pepe'ekeo, Honomu, Hawai'i","Net fishing, fell into the water",Japanese fisherman,M,,FATAL,Y,,,"C. H. Townsend; G. H. Balazs & A. H. Kam; J. Borg, p.69; L. Taylor (1993), pp.94-95",1907.00.00.a-Pepeekeo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.00.00.a-Pepeekeo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.00.00.a-Pepeekeo.pdf,1907.00.00.a,1907.00.00.a,766,, +1906.11.16,16-Nov-06,1906,Unprovoked,JAMAICA,Westmoreland Parish,Cabaritta River mouth,Fishing,Zacey Allen,M,,Leg bitten,N,,,"The Gleaner (Jamaica), 11/20/1906",1906.11.16-ZaceyAllen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.11.16-ZaceyAllen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.11.16-ZaceyAllen.pdf,1906.11.16,1906.11.16,765,, +1906.10.10.d.R,Reported 10-Oct-1906,1906,Unprovoked,USA,Hawaii,,,"an ""old native""",M,,Buttock bitten,N,,,"Washington Post, 10/10/1906",1906.10.10.d.R-OldNative.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.d.R-OldNative.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.d.R-OldNative.pdf,1906.10.10.d.R,1906.10.10.d.R,764,, +1906.10.10.c.R,Reported 10-Oct-1906,1906,Unprovoked,USA,Hawaii,,Swimming,skipper of a coasting schooner,M,,FATAL,Y,,,"Washington Post, 10/10/1906",1906.10.10.c.R-skipper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.c.R-skipper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.c.R-skipper.pdf,1906.10.10.c.R,1906.10.10.c.R,763,, +1906.10.10.b.R,Reported 10-Oct-1906,1906,Unprovoked,USA,Hawaii,,Diving,a native,M,,Arm severed,N,,,"Washington Post, 10/10/1906",1906.10.10.b.R-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.b.R-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.b.R-Hawaii.pdf,1906.10.10.b.R,1906.10.10.b.R,762,, +1906.10.10.a.R,Reported 10-Oct-1906,1906,Unprovoked,USA,Hawaii,,Swimming,a sailor,M,,FATAL,Y,,,"Washington Post, 10/10/1906",1906.10.10.a.R-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.a.R-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.a.R-Hawaii.pdf,1906.10.10.a.R,1906.10.10.a.R,761,, +1906.09.27.R.b,Reported 27-Sep-1906,1906,Unprovoked,INDONESIA,Java,Lorok Bay,Swimming,William Munich,M,,Thumb & index finger of left hand severed,N,,,"Atlanta Constitution, 9/27/1906",1906.09.27.R.a&b-Munich-Swede.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.27.R.a&b-Munich-Swede.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.27.R.a&b-Munich-Swede.pdf,1906.09.27.R.b,1906.09.27.R.b,760,, +1906.09.27.R.a,Reported 27-Sep-1906,1906,Unprovoked,INDONESIA,Java,Lorok Bay,Swimming,a Swedish sailor,M,,FATAL,Y,,,"Atlanta Constitution, 9/27/1906",1906.09.27.R.a&b-Munich-Swede.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.27.R.a&b-Munich-Swede.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.27.R.a&b-Munich-Swede.pdf,1906.09.27.R.a,1906.09.27.R.a,759,, +1906.09.05.R,Reported 05-Sep-1906,1906,Unprovoked,AUSTRALIA,Torres Strait,Mabiuag,Swimming,Smith,M,,FATAL,Y,,,"Wanganui Herald, 9/12/1906",1906.09.05.R-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.05.R-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.05.R-Smith.pdf,1906.09.05.R,1906.09.05.R,758,, +1906.09.00,Sep-06,1906,Provoked,USA,California,"Avalon, Los Angeles County",Fishing,Percy Neale,M,,PROVOKED INCIDENT No injury; shirt torn by gaffed shark,N,,"Shortfin mako shark, 175-lb ","L.A.Times, 10/1/1906",1906.09.00-Neale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.00-Neale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.00-Neale.pdf,1906.09.00,1906.09.00,757,, +1906.08.20,20-Aug-06,1906,Unprovoked,YEMEN ,Aden,,Diving around anchored liner,boy,M,,Leg severed. Injury originally thought due to boat's propeller,N,,,S. Samuels,1906.08.20-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.08.20-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.08.20-boy.pdf,1906.08.20,1906.08.20,756,, +1906.08.04,04-Aug-06,1906,Unprovoked,USA,Maryland,"Tangier Sound, Somerset County",Fell overboard,William McFlood,M,,FATAL,Y,,Remains recovered 5 days later,"Washington Post, 8/11/1906",1906.08.04-McFlood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.08.04-McFlood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.08.04-McFlood.pdf,1906.08.04,1906.08.04,755,, +1906.07.05.R,Reported 05-Jul-1906,1906,Unprovoked,USA,Mississippi,"Bay St. Louis, Hancock County",Swimming,a St. Stanislaus College student,M,,FATAL,Y,,Fishermen recovered partial remains from shark a week later,"The Courier, 7/5/1906",1906.07.05.R-St.Stanislaus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.07.05.R-St.Stanislaus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.07.05.R-St.Stanislaus.pdf,1906.07.05.R,1906.07.05.R,754,, +1906.07.00,Jul-06,1906,Invalid,MOZAMBIQUE,Maputo Province,Lourenco Marques,,Captain Sanna,M,,Sanna drowned; his hand (identified by ring on finger) found in a shark at the market,Y,,,"L.M. Guardian, 7/23/1906; M. Levine, GSAF",1906.07.00-CaptainSanna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.07.00-CaptainSanna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.07.00-CaptainSanna.pdf,1906.07.00,1906.07.00,753,, +1906.04.27.R,Reported 27-Apr-1906,1906,Unprovoked,INDONESIA,Maluku Province,Aru Islands,Hard hat diving,,M,,FATAL,Y,,,"The Advertiser, 5/16/1906",1906.04.27.R-Aru-Islands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.27.R-Aru-Islands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.27.R-Aru-Islands.pdf,1906.04.27.R,1906.04.27.R,752,, +1906.04.16,16-Apr-06,1906,Provoked,AUSTRALIA,Victoria,Western Port Bay,Shooting sharks ,Leo Clarke,M,,Finger severed by shark he had shot & stabbed PROVOKED INCIDENT,N,,13' shark,"The Argus, 4/18/1906",1906.04.16-Clarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.16-Clarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.16-Clarke.pdf,1906.04.16,1906.04.16,751,, +1906.04.14,14-Apr-06,1906,Unprovoked,AUSTRALIA,Queensland,Lizard Island,Diving for beche-de-mer ,Charley ,M,17,FATAL,Y,,,"Morning Post, 4/20/1906",1906.04.14-Charley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.14-Charley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.14-Charley.pdf,1906.04.14,1906.04.14,750,, +1906.04.10.R.a & b,Reported 10-April 1906,1906,Sea Disaster,INDONESIA,,40 miles from Tahane Island,The schooner Tahitienne foundered in a hurricane,Captain Baxter & Dick Chares,M,,FATAL x 2,Y,,,"Atlanta Constitution, 5/13/1906, et al.",1906.04.10.R.a-b-Baxter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.10.R.a-b-Baxter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.10.R.a-b-Baxter.pdf,1906.04.10.R.a & b,1906.04.10.R.a & b,749,, +1906.04.02.R,Reported 02-April 1906,1906,Invalid,AUSTRALIA,New South Wales,Moodie Beach,.,Herbert Mills,M,18,Cause of death may have been downing,Y,,,".Morning Bulletin, 4/3/1906",1906.04.02.R-Mills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.02.R-Mills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.02.R-Mills.pdf,1906.04.02.R,1906.04.02.R,748,, +1906.02.14.R,Reported 14-Feb-1906,1906,Invalid,NEW ZEALAND,North Island,Mototapu Island,Swimming,Herbert Thomas,M,,"FATAL, but shark involvement prior to death was not determined",Y,,,"Otago Witness, 2/14/11906",1906.02.14.R-Thomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.02.14.R-Thomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.02.14.R-Thomas.pdf,1906.02.14.R,1906.02.14.R,747,, +1906.01.28,28-Jan-06,1906,Unprovoked,AUSTRALIA,New South Wales,Georges River,Bathing,William Joseph Dobson.,M,31 or 33,FATAL,Y,14h10,,"J. Green, p.31",1906.01.28-Dobson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.01.28-Dobson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.01.28-Dobson.pdf,1906.01.28,1906.01.28,746,, +1906.01.20,20-Jan-06,1906,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Battery Beach, Durban",Washing horses,Ramdayal,M,30,"FATAL, hips & thigh bitten ",Y,12h00,1.8 m to 2.7 m [6' to 9'] shark,"Natal Mercury Pictorial, 1/31/1906; M. Levine, GSAF",1906.01.20-Ramdayal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.01.20-Ramdayal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.01.20-Ramdayal.pdf,1906.01.20,1906.01.20,745,, +1905.12.31,31-Dec-05,1905,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Back Beach, Durban",Floating or standing,"Eric Suppeman, cabin boy on the Norwegian ship Blanca",M,,"FATAL, left torso, buttocks, thigh & foot bitten ",Y,Morning,2.4 m [8'] shark,"Natal Mercury 1/1/1906; Natal Mercury Pictorial, 1/10/1906; M. Levine, GSAF",1905.12.31-Suppeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.12.31-Suppeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.12.31-Suppeman.pdf,1905.12.31,1905.12.31,744,, +1905.12.29,29-Dec-05,1905,Invalid,AUSTRALIA,Western Australia,Geraldton,Bathing,Hugh Carroll,M,,"""Bad wound in the leg"" - 7-ft shark caught in the bath same day",N,,Shark involvement not confirmed,"The Advertiser, 12/30/1905",1905.12.29-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.12.29-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.12.29-Carroll.pdf,1905.12.29,1905.12.29,743,, +1905.11.17.R,Reported 17-Nov-1905,1905,Invalid,MEDITERRANEAN SEA?,,,A man's head found in a shark caught by British steamer Syria,,M,,Probable scavenging,Y,,,"Altoona Mirror, 11/17/1905",1905.11.17.R-Syria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.11.17.R-Syria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.11.17.R-Syria.pdf,1905.11.17.R,1905.11.17.R,742,, +1905.09.29,29-Sep-05,1905,Unprovoked,AUSTRALIA,New South Wales,"Waverly, Sydney",Swimming,Jame Crotty,M,,FATAL. Shark involvement suspected but not confirmed,Y,,,"The Argus, 9/30/1905",1905.09.29-Crotty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.09.29-Crotty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.09.29-Crotty.pdf,1905.09.29,1905.09.29,741,, +1905.08.00.b,Late Aug-1905,1905,Unprovoked,USA,New Jersey,"Atlantic City, Atlantic County",Swimming from naptha launch after a day of fishing,George Wright,M,,3 toes of right foot were severed,N,,,The Sun (undated article),1905.08.00.b-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.08.00.b-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.08.00.b-Wright.pdf,1905.08.00.b,1905.08.00.b,740,, +1905.08.00.a,Aug-05,1905,Unprovoked,PHILIPPINES,Luzon Island,Manila Bay,Bathing,Frank Abernathy,M,21,Leg bitten,N,,,"Obrien County Bell, 8/31/1905",1905.08.00.a-Abernathy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.08.00.a-Abernathy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.08.00.a-Abernathy.pdf,1905.08.00.a,1905.08.00.a,739,, +1905.07.29,29-Jul-05,1905,Unprovoked,USA,North Carolina,"Davis Shore, east of Beaufor, Carteret Countyt",Wading,Sutton Davis,M,16,Body not recovered FATAL,Y,Afternoon,,"C. Creswell, GSAF; F. Schwartz, p.23",1905.07.29-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.29-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.29-Davis.pdf,1905.07.29,1905.07.29,738,, +1905.07.25.R,Reported 25-Jul-1905,1905,Invalid,ITALY,,Naples,,boy,M,8,"Body recovered from shark, probable drowning and scavenging",Y,,,"C. Moore, GSAF",1905.07.25.R-Naples.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.25.R-Naples.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.25.R-Naples.pdf,1905.07.25.R,1905.07.25.R,737,, +1905.07.00,Jul-05,1905,Unprovoked,USA,North Carolina,"Ocracoke, Hyde County",Fishing,Coast Guard personnel,M,,FATAL,Y,,,"F. Schwartz, p.23 & pers.com to C. Creswell, GSAF",1905.07.00,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.00,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.00,1905.07.00,1905.07.00,736,, +1905.05.22,22-May-05,1905,Unprovoked,USA,Florida,"Pablo Beach, Jacksonville, Duval County",Swimming,Dunham Coxetter,M,,Lacerations to back & right leg,N,,,"Atlanta Constitution, 5/23/1905",1905.05.22.R-Coxetter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.05.22.R-Coxetter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.05.22.R-Coxetter.pdf,1905.05.22,1905.05.22,735,, +1905.04.06,06-Apr-05,1905,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Back Beach, Durban",Swimming,James Anderson,M,26,"FATAL, thigh bitten, femoral artery severed ",Y,16h30,,"Natal Mercury, 4/7/1905; H.Gill & M. Levine, GSAF",1905.04.06-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.04.06-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.04.06-Anderson.pdf,1905.04.06,1905.04.06,734,, +1905.03.26,26-Mar-05,1905,Unprovoked,AUSTRALIA,New South Wales,Lismore,Bathing,Richard Owen,M,40,Righ thigh severely bitten,N,Morning,5' shark,"Adelaide Advertiser, 3/31/1905",1905.03.26-Owen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.03.26-Owen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.03.26-Owen.pdf,1905.03.26,1905.03.26,733,, +1905.03.25,25-Mar-05,1905,Invalid,AUSTRALIA,Tasmania,Bridport,Bathing,Charles Taylor,,,FATAL,Y,,,"C. Black, GSAF; Adelaide Advertiser, 3/27/1905",1905.03.25-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.03.25-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.03.25-Taylor.pdf,1905.03.25,1905.03.25,732,, +1905.02.10,10-Feb-05,1905,Invalid,AUSTRALIA,Victoria,Elwood,Bathing,Charles Blake,M,23,Thought to have been taken by a shark,Y,,,"Adelaide Advertiser, 2/13/1905",1905.02.10-Blake.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.02.10-Blake.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.02.10-Blake.pdf,1905.02.10,1905.02.10,731,, +1905.01.01,01-Jan-05,1905,Invalid,AUSTRALIA,Victoria,Elwood,Bathing,Alfred Boldner,M,39,Reported to have been killed by a shark but 2 years later he was found very much alive,Y,,,"Adelaide Advertiser, 1/3/1905",1905.01.01-Boldner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.01.01-Boldner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.01.01-Boldner.pdf,1905.01.01,1905.01.01,730,, +1905.00.00,1905,1905,Boating,USA,North Carolina,"Cape Lookout, Carteret County",Harpooning turtles,"skiff, occupants: Russel J. Coles and others",,,"No injury, shark bumped skifft",N,,20' shark,"Clay Creswell, GSAF",1905.00.00.b-CoastGuard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.00.00.b-CoastGuard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.00.00.b-CoastGuard.pdf,1905.00.00,1905.00.00,729,, +1904.11.02,02-Nov-04,1904,Unprovoked,PHILIPPINES,Luzon Island,"Inner Harbor, Olongapo",Bathing alongside US Naval ship,"sailor, a boatswain's mate from the Piscataqua",M,,Foot bitten,N,,,"The Sun, undated article; V.M. Coppleson (1958), p.264",1904.11.02-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.11.02-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.11.02-sailor.pdf,1904.11.02,1904.11.02,728,, +1904.10.11.R,Reported 11-Oct-1904,1904,Unprovoked,INDIAN OCEAN,Between Noumea & Sydney,,Fell overboard,Axel Slettsten,M,,FATAL,Y,,,"The Argus, 10/11/1904",1904.10.11.R-Slettsten.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.10.11.R-Slettsten.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.10.11.R-Slettsten.pdf,1904.10.11.R,1904.10.11.R,727,, +1904.09.00,Sep-04,1904,Unprovoked,CUBA,Havana Province,Havana Harbor,Lost his footing & fell overboard,Sailor from ship Mobile,M,,"FATAL, left leg severed below knee, right leg severed above knee by a second shark",Y,,,Washington Post 7/19/1905,1904.09.00-Mobile-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.09.00-Mobile-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.09.00-Mobile-sailor.pdf,1904.09.00,1904.09.00,726,, +1904.08.00,Aug-04,1904,Unprovoked,CUBA,Villa Clara Province,Caibarien Harbor,"Ship's boat capsized in squall, captain & 2 sailors clinging onto hull",2 sailors,M,,"FATAL, shark pulled them off hull of boat ",Y,,,Washington Post 7/19/1905,1904.08.00-boat-of-German-bark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.08.00-boat-of-German-bark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.08.00-boat-of-German-bark.pdf,1904.08.00,1904.08.00,725,, +1904.07.28,28-Jul-04,1904,Unprovoked,USA,New Jersey,"Shrewsbury River, Monmouth County",Sailing,"boat, 2 occupants",M,,No injury,N,,,"New York Herald Tribune, 7/29/1904",1904.07.28-ShrewsburyRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.28-ShrewsburyRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.28-ShrewsburyRiver.pdf,1904.07.28,1904.07.28,724,, +1904.07.27,27-Jul-04,1904,Unprovoked,USA,Texas,,Swimming,Chester Kennedy,M,,"FATAL, body not recovered",Y,,,"New York Times, 7/28/1904",1904.07.27-ChesterKennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.27-ChesterKennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.27-ChesterKennedy.pdf,1904.07.27,1904.07.27,723,, +1904.07.01.R,Reported 01-Jul-1904,1904,Unprovoked,ITALY,Ancona Province,Ancona,Swimming,,M,,FATAL x 4. Afterwards metal mesh nets were installed,Y,,,"C. Moore, GSAF, Translations by S. Navajas",1904.07.01-Ancona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.01-Ancona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.01-Ancona.pdf,1904.07.01.R,1904.07.01.R,722,, +1904.02.07,07-Feb-04,1904,Unprovoked,AUSTRALIA,Queensland,Brisbane,Swimming after his hat,George Grant,M,,FATAL,Y,,,"Grey River Argus, 2/26/1904",1904.02.07-Grant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.02.07-Grant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.02.07-Grant.pdf,1904.02.07,1904.02.07,721,, +1904.02.04,04-Feb-04,1904,Unprovoked,NEW ZEALAND,North Island,Waitara,Swimming,Ngawai Rakau,M,30,FATAL,Y,,,"Star, 2/4/1904",1904.02.04-Rakau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.02.04-Rakau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.02.04-Rakau.pdf,1904.02.04,1904.02.04,720,, +1904.01.23,23-Jan-04,1904,Unprovoked,NEW CALEDONIA,South Province,Noumea,Bathing,Charley Smith,M,,FATAL,Y,,,"The Advertiser, 2/4/1904",1904.01.23-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.01.23-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.01.23-Smith.pdf,1904.01.23,1904.01.23,719,, +1904.00.00.c,1904,1904,Invalid,USA,,,Diving on a wreck,Egan,M,,Leg bitten,N,,,"New York Times, 6/21/1914",1904.00.00.c-Egan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.c-Egan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.c-Egan.pdf,1904.00.00.c,1904.00.00.c,718,, +1904.00.00.b,1904,1904,Unprovoked,PHILIPPINES,Quezon,Tayabas,Bathing,Lt. Edward Hearn,M,,Left arm bitten,N,,,"N.Y. Sun, 3/19/1911 ",1904.00.00.b-Hearn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.b-Hearn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.b-Hearn.pdf,1904.00.00.b,1904.00.00.b,717,, +1904.00.00.a,1904,1904,Unprovoked,USA,Hawaii,"Off Diamond Head, Honolulu, O'ahu",Swimming,male,M,,"FATAL, disappeared, then shark caught with head and body of man, from waist down minus leg, in its gut",Y,,,"The Sun (no date); D. Baldridge, p.171; G.H. Balazs, J. Borg, p.69; L. Taylor (1993), pp. 94-95",1904.00.00.a-Honolulu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.a-Honolulu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.a-Honolulu.pdf,1904.00.00.a,1904.00.00.a,716,, +1903.10.04,04-Oct-03,1903,Unprovoked,CUBA,Havana Province,Havana Harbor,Fell overboard,a sailor,M,,FATAL,Y,,,"NY Times, 10/18/1903",1903.10.04-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.10.04-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.10.04-Sailor.pdf,1903.10.04,1903.10.04,715,, +1903.09.16.R,Reported 16-Sep-1903,1903,Unprovoked,USA,New Jersey,"Atlantic City, Atlantic County",Fishing,Rev. John McMillan,M,,Lacerations to right arm & shoulder,N,,9' shark,"Indiana Messenger, 9/16/1903",1903.09.16.R-McMillan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.09.16.R-McMillan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.09.16.R-McMillan.pdf,1903.09.16.R,1903.09.16.R,714,, +1903.07.00,Jul-03,1903,Unprovoked,FALKLAND ISLANDS,,,"Swimming, after falling overboard",Juan de la Cruz Silva Martinez,M,28,"Right leg bitten, surgically amputated",N,,,"Atlanta Constitution, 1/10/1904",1903.07.00-Martinez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.07.00-Martinez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.07.00-Martinez.pdf,1903.07.00,1903.07.00,713,, +1903.06.21,21-Jun-03,1903,Unprovoked,AUSTRALIA,New South Wales,Georges River,Swimming,William Price,M,,FATAL,Y,,,"The Advertiser, 6/22/1903",1903.06.21-Price.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.06.21-Price.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.06.21-Price.pdf,1903.06.21,1903.06.21,712,, +1903.05.04,04-May-03,1903,Unprovoked,MEXICO,Veracruz,Coatzacoalcos,Bathing,3 men,M,,FATAL x 3,Y,,,"Chicago Tribune, 5/5/1903",1903.05.04-Mexicox3.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.05.04-Mexicox3.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.05.04-Mexicox3.pdf,1903.05.04,1903.05.04,711,, +1903.03.20.R,Reported 20-Mar-1903,1903,Unprovoked,AUSTRALIA,New South Wales,Sydney,Suicide,R. Raymond,M,,Jumped off cliff,Y,,,"Northern Territory Times, 3/20/1903",1903.03.20.R-Raymond-Suicide.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.03.20.R-Raymond-Suicide.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.03.20.R-Raymond-Suicide.pdf,1903.03.20.R,1903.03.20.R,710,, +1903.03.12,12-Mar-03,1903,Unprovoked,AUSTRALIA,Queensland,Logan River,Swimming,William Bartlett,M,,FATAL,Y,,,"Sydney Morning Herald, 3/16/1903",1903.03.12-Bartlett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.03.12-Bartlett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.03.12-Bartlett.pdf,1903.03.12,1903.03.12,709,, +1903.01.10, 10-Jan-1903,1903,Unprovoked,AUSTRALIA,New South Wales,"Lane Cove River, Sydney Harbor (Estuary)",,Sydney James,M,,FATAL,Y,,Bull shark,"Northern Territory Times & Gazette, 1/12/1903",1903.01.10-James.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.01.10-James.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.01.10-James.pdf,1903.01.10,1903.01.10,708,, +1903.00.00.b,Summer of 1903,1903,Unprovoked,CRETE,,,Sponge diving,2 males,M,,FATAL,Y,,,M. Bardanis,1903.00.00.b-Crete.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.00.00.b-Crete.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.00.00.b-Crete.pdf,1903.00.00.b,1903.00.00.b,707,, +1903.00.00.a,Ca. 1903,1903,Unprovoked,USA,Hawaii,"Koko Head, south side of O'ahu Island",Fishing,Phil Kitchin,M,,"FATAL, remains (foot) recovered from shark 2 days later",Y,,,"Captain W. Young, 51-52",1903.00.00.a-PhilKitchin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.00.00.a-PhilKitchin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.00.00.a-PhilKitchin.pdf,1903.00.00.a,1903.00.00.a,706,, +1902.12.22.R,Reported 22-Dec-1902,1902,Unprovoked,NICARAGUA,Rio San Juan,Greytown,Swimming,Frederick Wiseman,M,30,FATAL,Y,18h00,,"Racine Daily Journal, 12/22/1902",1902.12.22.R-Wiseman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.12.22.R-Wiseman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.12.22.R-Wiseman.pdf,1902.12.22.R,1902.12.22.R,705,, +1902.11.10,10-Nov-02,1902,Unprovoked,AUSTRALIA,New South Wales,"Middle Harbour, Sydney ",Swimming,Howard Dent,M,17,FATAL,Y,Afternoon,,"The Advertiser, 11/11/1902",1902.11.10-Dent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.11.10-Dent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.11.10-Dent.pdf,1902.11.10,1902.11.10,704,, +1902.11.01.R,Reported 01-Nov-1902,1902,Unprovoked,USA,Texas,"Near Port Lavaca, Calhoun County",Fishing,male,M,,Severe laceration to hand,N,,,"Victoria Weekly, 1/11/ 1902",1902.11.01.R-PortLavaca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.11.01.R-PortLavaca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.11.01.R-PortLavaca.pdf,1902.11.01.R,1902.11.01.R,703,, +1902.08.28.R,Reported 29-Aug-1902,1902,Unprovoked,ITALY,Calabria,Nicotera,Swimming,male,M,,FATAL,Y,,,"C. Moore, GSAF",1902.08.28.R-Nicotera.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.28.R-Nicotera.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.28.R-Nicotera.pdf,1902.08.28.R,1902.08.28.R,702,, +1902.08.24.R,Reported 24-Aug-1902,1902,Boating,CROATIA,Istria County,Porec,Fishing,Row boat; occupants - 2 young men,M,,"No injury to occupants, shark grabbed anchor rope & towed boat",N,,,"C. Moore, GSAF",1902.08.24.R-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.24.R-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.24.R-Croatia.pdf,1902.08.24.R,1902.08.24.R,701,, +1902.08.08,08-Aug-02,1902,Unprovoked,USA,Hawaii,"Kalihi, O'ahu",Catching crabs,Hawaiian boy,M,,"FATAL, both arms severed ",Y,,,"G. H. Balazs & A. H. Kam; V.M. Coppleson (1958), p.250; J. Borg, p.69; L. Taylor (1993), pp. 94-95",1902.08.08-HawaiianBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.08-HawaiianBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.08-HawaiianBoy.pdf,1902.08.08,1902.08.08,700,, +1902.07.15,15-Jul-02,1902,Provoked,ITALY,Liguria,"Galliera dock, Genoa",Fishing,male,M,,Face & arms injured by hooked shark PROVOKED INCIDENT ,N,,,"C. Moore, GSAF",1902.07.15-Genoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.07.15-Genoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.07.15-Genoa.pdf,1902.07.15,1902.07.15,699,, +1902.07.06,06-Jul-02,1902,Provoked,USA,New Jersey,"Atlantic City, Atlantic County",Swimming,Harry M. Speerman,M,,Shark bit his left arm after he grabbed its tail PROVOKED INCIDENT,N,,,"New York Times, 7/7/1902",1902.07.06-Speerman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.07.06-Speerman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.07.06-Speerman.pdf,1902.07.06,1902.07.06,698,, +1902.06.02,02-Jun-02,1902,Unprovoked,PHILIPPINES,Zamboanga del Sur Province,"Near mouth of River Cumalarang, 5 miles from Port Isabela, Basilan Island",,Apy,M,,"""Nose hanging by a threat, prints of shark's teeth over entire right cheek""",N,,,"V.M. Coppleson, p.264",1902.06.08-Apy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.06.08-Apy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.06.08-Apy.pdf,1902.06.02,1902.06.02,697,, +1902.06.00,Jun-02,1902,Unprovoked,EGYPT,Mediterranean Sea,"Tzortzou Reef, Marsa Matruh",Sponge diving,Giorgos,M,,Bitten on hand and thigh,N,,,M. Bardanis,1902.06.00-Giorgos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.06.00-Giorgos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.06.00-Giorgos.pdf,1902.06.00,1902.06.00,696,, +1902.04.00,Apr-02,1902,Invalid,SOUTH AFRICA,Eastern Cape Province,Algoa Bay,Swimming,Neil Sorenson,M,,Probable drowning & scavenging,Y,,,"M. Levine, GSAF",1902.04.19-Sorenson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.04.19-Sorenson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.04.19-Sorenson.pdf,1902.04.00,1902.04.00,695,, +1902.02.22.R,.Reported 22-Feb-1902,1902,Provoked,NEW ZEALAND,North Island,Poverty Bay,Standing on ship deck,male,M,,"No injury, hooked shark bit tousers. PROVOKED INCIDENT",N,,,The Colonist 2/22/1902,1902.02.22.R-PovertyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.02.22.R-PovertyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.02.22.R-PovertyBay.pdf,1902.02.22.R,1902.02.22.R,694,, +1902.01.25.R,Reported 25-Jan-1902,1902,Unprovoked,AUSTRALIA,New South Wales,Kerosene Bay,Dangling feet in the water,John Ogier,M,,FATAL,Y,,,"The Advertiser, 1/25/1902",1902.01.22-Ogier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.22-Ogier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.22-Ogier.pdf,1902.01.25.R,1902.01.25.R,693,, +1902.01.19.R,Reported 19-Jan-1902,1902,Invalid,SOUTH AFRICA,KwaZulu-Natal,Durban,,a soldier from the Natal Garrison,M,,Possible drowning & scavenging. Remains were recovered from a 15' shark's gut,Y,,,"M. Levine, GSAF",1902.01.19R-soldier-Durban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.19R-soldier-Durban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.19R-soldier-Durban.pdf,1902.01.19.R,1902.01.19.R,692,, +1902.01.19,19-Jan-02,1902,Unprovoked,AUSTRALIA,Queensland,Brisbane,Swimming,Charles Jones,M,16,Legs bitten,N,12h00,,"Brisbane Courier, 1/20/1902",1902.01.19-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.19-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.19-Jones.pdf,1902.01.19,1902.01.19,691,, +1901.12.01,01-Dec-01,1901,Unprovoked,AUSTRALIA,Queensland,Brisbane,Bathing,William Quince,M,10,Lacerations to torso & thigh,N,,,"The Argus, 12/2/1901",1901.12.01-Quince.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.12.01-Quince.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.12.01-Quince.pdf,1901.12.01,1901.12.01,690,, +1901.10.00,Mid Oct-1901,1901,Unprovoked,PHILIPPINES,Zamboanga del Sur Province, Port Isabela de Basilan,Taking catch from a fish weir in which the shark was snared,"Dahkus, a Molussa Moro",M,,Right thigh bitten ,N,,,"J.A. Guthrie, M.D.; Newark Advocate, 5/24/1902; V.M. Coppleson (1958), p.264",1901.10.00-Dahkus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.10.00-Dahkus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.10.00-Dahkus.pdf,1901.10.00,1901.10.00,689,, +1901.09.23.R,Reported 23-Sep-1901,1901,Unprovoked,CYPRUS,Southern Cyprus,Larnaca,Swimming,male,M,Teen,"FATAL, bitten on arms, chest & legs",Y,,2 m shark,"Bardanis citing Embros, 9/23/1901",1901.09.23.R-Cyprus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.09.23.R-Cyprus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.09.23.R-Cyprus.pdf,1901.09.23.R,1901.09.23.R,688,, +1901.07.30,30-Jul-01,1901,Unprovoked,SOUTH AFRICA,Western Cape Province,Windmill Beach,Swimming,"John Hendrick Adrian Chandler, a prisoner of war",M,29,"Right leg bitten & foot severed, right arm bitten, bones fractured & nearly severed FATAL",Y,14h15,White shark,"M. Levine, GSAF",1901.07.30-Chandler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.07.30-Chandler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.07.30-Chandler.pdf,1901.07.30,1901.07.30,687,, +1901.07.17,17-Jul-01,1901,Invalid,ITALY,Syracuse,Capo Santa Croce,Swimming,Antonio Tornatori,M,20,"Disappeared, but shark involvement unconfirmed",,,,C. Moore,1901.07.17-Antonio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.07.17-Antonio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.07.17-Antonio.pdf,1901.07.17,1901.07.17,686,, +1901.06.29.R,Reported 29-Jun-1901,1901,Invalid,YEMEN ,Aden,,Diving around anchored liner,boy,M,,,UNKNOWN,,,"The Graphic, 6/29/1901",1901.06.29.R-Aden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.06.29.R-Aden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.06.29.R-Aden.pdf,1901.06.29.R,1901.06.29.R,685,, +1901.06.24,24-Jun-01,1901,Unprovoked,PHILIPPINES,Western Viscayas,"Island of Panay, Iliolo",Swimming,"S. McKie, apprentice 1st class on the U.S. Naval ship Annapolis",M,,"Left thigh stripped of flesh 4"" above the knee ",N,15h00,,"J.A. Guthrie; Sun, 7/13/1913; V.M. Coppleson, p.264 also states ""Native taken near same spot 3 months previously.""",1901.06.24-McK.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.06.24-McK.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.06.24-McK.pdf,1901.06.24,1901.06.24,684,, +1901.01.30,30-Jan-01,1901,Unprovoked,AUSTRALIA,Queensland,Brisbane,Bathing,John Thompson,M,,"Thigh bitten, FATAL",Y,,,"Otago Witness, 2/6/1901",1901.01.30-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.01.30-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.01.30-Thompson.pdf,1901.01.30,1901.01.30,683,, +1901.00.00,Summer 1901,1901,Unprovoked,USA,Florida,Indian River Inlet / Fort Pierce Inlet,Bathing,Michael O'Brien,M,,Abdomen bitten,N,,,"W.H. Gregg; L. Schultz & M. Malin, p.533",1901.00.00-O'Brien.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.00.00-O'Brien.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.00.00-O'Brien.pdf,1901.00.00,1901.00.00,682,, +1900.12.27,27-Dec-00,1900,Unprovoked,AUSTRALIA,New South Wales,"Middle Harbour, Sydney ",Bathing,Thomas Houstan,M,,FATAL,Y,,,"Taranaki Herald, 12/28/1900",1900.12.27-Houston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.12.27-Houston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.12.27-Houston.pdf,1900.12.27,1900.12.27,681,, +1900.11.14,14-Nov-00,1900,Unprovoked,SOUTH AFRICA,Western Cape Province,Three Anchor Bay,Swimming,William Strathorn,M,30,"FATAL, legs severed",Y,,,"P. Logan; M. Levine, GSAF",1900.11.14-Strathorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.11.14-Strathorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.11.14-Strathorn.pdf,1900.11.14,1900.11.14,680,, +1900.10.27,27-Oct-00,1900,Invalid,SOUTH AFRICA,Western Cape Province,"Woodstock Beach, Cape Town",Swimming,Amos Layzell,M,,Probable drowning & scavenging,Y,,,"P. Logan; M. Levine, GSAF",1900.10.27-Layzell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.10.27-Layzell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.10.27-Layzell.pdf,1900.10.27,1900.10.27,679,, +1900.09.15,15-Sep-00,1900,Unprovoked,AUSTRALIA,Queensland,Townsville,Swimming,John Hennessy,M,,Laceration to right leg,N,,,"Sydney Morning Herald, 9/17/1900",1900.09.15-Hennessy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.09.15-Hennessy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.09.15-Hennessy.pdf,1900.09.15,1900.09.15,678,, +1900.09.13,13-Sep-00,1900,Unprovoked,USA,Rhode Island,Coddington Cove,Diving,George Brown,M,,No injury,UNKNOWN,, ,"NY Times, 9/14/1900",1900.09.13-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.09.13-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.09.13-Brown.pdf,1900.09.13,1900.09.13,677,, +1900.09.05,05-Sep-00,1900,Unprovoked,USA,Hawaii,"Waikiki Beach, Oahu",Floating,Joe Hartman,M,,"Bathing suit torn & ""imprints of the shark's teeth on his body""",N,Afternoon,,"Honolulu Republican, 9/6/1900",1900.09.05-Hartman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.09.05-Hartman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1900.09.05-Hartman.pdf,1900.09.05,1900.09.05,676,, +1900.08.21,21-Aug-00,1900,Unprovoked,USA,North Carolina,"Southport, Brunswick County",Bathing,Burris,M,,Left hand lacerated,N,Afternoon,,"C. Creswell, GSAF",1900.08.21-Burriss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.08.21-Burriss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.08.21-Burriss.pdf,1900.08.21,1900.08.21,675,, +1900.07.31,31-Jul-00,1900,Unprovoked,CROATIA, Primorje-Gorski Kotar County,"Volosko, Opatija",Swimming,male,M,,FATAL,Y,,,"C. Moore, GSAF",1900.07.31-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.07.31-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.07.31-Croatia.pdf,1900.07.31,1900.07.31,674,, +1900.07.14,14-Jul-00,1900,Invalid,USA,Hawaii,"Makapu'u Point, O'ahu",Hunting seashells,Emil Uhlbrecht & unidentified person,M,,"Believed drowned. Uhlbrecht�s foot, and the pelvis & femur of another person recovered in gut of tiger shark shark caught on 17-Aug-1900",Y,,,"Los Angeles Times, 7/28/1900",1900.07.14-Uhlbrecht.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.07.14-Uhlbrecht.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.07.14-Uhlbrecht.pdf,1900.07.14,1900.07.14,673,, +1900.07.00,Late Jul-1900,1900,Provoked,USA,Connecticut,"Bridgeport, Fairfield County", ,"skiff with Dr. William T. Healey, Dr. Henry Callahan on board",,,"No injury to occupants. They shot shark, then it capsized their skiff. PROVOKED INCIDENT",N,,,"Times, 8/1/1900",1900.07.00-Bridgeport.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.07.00-Bridgeport.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.07.00-Bridgeport.pdf,1900.07.00,1900.07.00,672,, +1900.01.28, 28-Jan-1900,1900,Unprovoked,AUSTRALIA,New South Wales,"Lane Cove River, Sydney Harbor (Estuary)","Standing, gathering oysters",Charles Duck,M,,Right posterior thigh bitten,N,12h00,,"Poverty Bay Herald, 2/12/1900",1900.01.28-Duck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.01.28-Duck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.01.28-Duck.pdf,1900.01.28,1900.01.28,671,, +1900.00.00.b,Early 1900s,1900,Unprovoked,USA,Hawaii,"Inter-Island Dry Dock at Kakaako Street, Honolulu, O'ahu",,Emil A. Berndt,M,,Severe abrasion when shark swam between his legs,N,,,"G. H. Balazs; J. Borg, p.69; L. Taylor (1993), pp.94-95",1900.00.00.b-Berndt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.00.00.b-Berndt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.00.00.b-Berndt.pdf,1900.00.00.b,1900.00.00.b,670,, +1900.00.00.a,Ca. 1900,1900,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port Elizabeth,Swimming,Mr. Gruner,M,,Leg severed,N,Early morning,,H. Monsen ,1900.00.00.a-Gruner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.00.00.a-Gruner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.00.00.a-Gruner.pdf,1900.00.00.a,1900.00.00.a,669,, +1899.12.18,18-Dec-1899,1899,Unprovoked,AUSTRALIA,Queensland,Tingalpa Creek,Fell into the water,J. Richardson,M,,bite to lower leg,N,Afternoon,,"Brisbane Courier, 12/21/1899",1899.12.18-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.12.18-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.12.18-Richardson.pdf,1899.12.18,1899.12.18,668,, +1899.11.20,20-Nov-1899,1899,Sea Disaster,PHILIPPINES,Mindoro Occidental,Off Lubang Island,Sea Disaster,wreck of the steamship Hubeh,,,FATAL,Y,,,"The Mercury, 1/191900",1899.11.20-Hupeh-wreck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.11.20-Hupeh-wreck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.11.20-Hupeh-wreck.pdf,1899.11.20,1899.11.20,667,, +1899.10.12.b,Reported 12-Oct-1899,1899,Unprovoked,LIBYA,Mediterranean Sea,Off Bengasi,Diving,John Cataris,M,,Lacerations to head,N,,,"Iowa Daily Press, 10/12/1899",1899.10.12.b.R-Cataris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.10.12.b.R-Cataris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.10.12.b.R-Cataris.pdf,1899.10.12.b,1899.10.12.b,666,, +1899.10.12.a,Reported 12-Oct-1899,1899,Unprovoked,LIBYA,Mediterranean Sea,Off Bengasi,Sponge diving,Skoumbourdi,M,,FATAL,Y,,,"Iowa Daily Press, 10/12/1899",1899.10.12.a.R-Skoumbourdi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.10.12.a.R-Skoumbourdi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.10.12.a.R-Skoumbourdi.pdf,1899.10.12.a,1899.10.12.a,665,, +1899.09.11.R,Reported 11-Sep-1899,1899,Unprovoked,MEXICO,Tamaulipas,Tampico,Swimming,Paul Guyot,M,,FATAL,Y,,,"Bryan Morning Eagle, 9/12/1899",1899.09.11.R-Guyot,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.09.11.R-Guyot,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.09.11.R-Guyot,1899.09.11.R,1899.09.11.R,664,, +1899.08.23.R,Reported 23-Aug-1899,1899,Provoked,USA,California,"Monterey Bay, Monterey County",Hunting sharks,males,M,,"FATAL, Drowned or crushed when harpooned shark smashed their boat PROVOKED INCIDENT",Y,,Basking shark,"Mexia Evening Ledger, 8/23/1899",1899.08.23.R-BaskingShark-Monterey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.23.R-BaskingShark-Monterey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.23.R-BaskingShark-Monterey.pdf,1899.08.23.R,1899.08.23.R,663,, +1899.08.15,15-Aug-1899,1899,Unprovoked,USA,Florida,"Trout River, Panama Park",Swimming,Delano Wood,M,15,FATAL,Y,,3 m [10'] shark,"Washington Post, 8/16/1899, p.1",1899.08.15-DelanoWood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.15-DelanoWood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.15-DelanoWood.pdf,1899.08.15,1899.08.15,662,, +1899.08.08.c,08-Aug-1899,1899,Unprovoked,EGYPT ,Mediterranean Sea,Port Said,Floating on his back,Arab boy,M,9,Back muscles torn away,N,11h30,,W. B. Orme,1899.08.08.c-ArabBoy-9.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.c-ArabBoy-9.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.c-ArabBoy-9.pdf,1899.08.08.c,1899.08.08.c,661,, +1899.08.08.b,08-Aug-1899,1899,Unprovoked,EGYPT ,Mediterranean Sea,Port Said,Bathing,Arab boy,M,19,"Forearm, wrist & hand bitten",N,09h30,,W. B. Orme,1899.08.08.b-ArabBoy-19.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.b-ArabBoy-19.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.b-ArabBoy-19.pdf,1899.08.08.b,1899.08.08.b,660,, +1899.08.08.a,08-Aug-1899,1899,Unprovoked,EGYPT,Mediterranean Sea,Port Said,Bathing,Arab boy,M,13,Left leg bitten,N,08h30,,W. B. Orme,1899.08.08.a-ArabBoy-13.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.a-ArabBoy-13.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.a-ArabBoy-13.pdf,1899.08.08.a,1899.08.08.a,659,, +1899.07.08.R,Reported 08-Jul-1899,1899,Unprovoked,BAHAMAS,,,Fell overboard ,Captain Masson,M,,FATAL,Y,,,"Mataura Ensign, 7/8/1899",1899.07.08.R-Masson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.07.08.R-Masson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.07.08.R-Masson.pdf,1899.07.08.R,1899.07.08.R,658,, +1899.06.07,07-Jun-1899,1899,Provoked,ITALY,Calabria,Bagnara Calabra,Fishing,Enrico & Noce,M,,Multiple injuries from boated shark PROVOKED INCIDENT,N,,70 kg shark,C. Moore. GSAF,1899.06.07-Bagnara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.06.07-Bagnara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.06.07-Bagnara.pdf,1899.06.07,1899.06.07,657,, +1899.06.02, 02-Jun-1899,1899,Invalid,NEW ZEALAND,North Island,East Cape,Attempting to land a boat from the Hinemoa,N. Buchanan,M,,FATAL,Y,,Shark involvement not confirmed,"Brisbane Courier, 6/7/1899",1899.06.02-Buchanan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.06.02-Buchanan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.06.02-Buchanan.pdf,1899.06.02,1899.06.02,656,, +1899.05.28,28-May-1899,1899,Invalid,PHILIPPINES,Negros ,Escalante,Swimming,Captain Tilly,M,,FATAL,Y,,Shark involvement not confirmed,"New York Times, 5/30/1899",1899.05.28-CaptTilly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.05.28-CaptTilly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.05.28-CaptTilly.pdf,1899.05.28,1899.05.28,655,, +1899.05.04.R,Reported 04-May-1899,1899,Unprovoked,ITALY,Imperia Province,Bordighera,Bathing,The valet of the Earl of Strathmore and Kinghorne,M,,FATAL,Y,,,"Washington Post, 5/5/1899",1899.05.04.R-Valet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.05.04.R-Valet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.05.04.R-Valet.pdf,1899.05.04.R,1899.05.04.R,654,, +1899.01.28,28-Jan-1899,1899,Invalid,AUSTRALIA,New South Wales,Newcastle,Bathing,Rose Sutcliffe,F,13,Drowning may hav preceded attack,Y,,,"Kalgoorlie Western Argus, 2/2/1899",1899.01.28-Sutcliffe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.01.28-Sutcliffe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.01.28-Sutcliffe.pdf,1899.01.28,1899.01.28,653,, +1899.00.00.c,1899 During the Seige of Ladysmith,1899,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban,Dangling feet in the water,a petty officer,M,,Foot severed ,N,,,"Indiana Evening Gazette, 11/22/1904",1899.00.00.c-Durban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.00.00.c-Durban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.00.00.c-Durban.pdf,1899.00.00.c,1899.00.00.c,652,, +1899.00.00.b,1899,1899,Boating,USA,Florida,St. John's River,Rowing,"boat, occupants: 2 Jacksonville pilots",M,,No injury to occupants. shark bit oar,N,,,"W. H. Gregg, p. 22",1899.00.00.b-2pilots.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.00.00.b-2pilots.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.00.00.b-2pilots.pdf,1899.00.00.b,1899.00.00.b,651,, +1899.00.00.a,Ca. 1899,1899,Unprovoked,USA,Florida,Near a small wreck in a channel at Indian Key,Hunting crayfish,male,M,,Leg bitten,N,,1.5 m [5'] shark,"W.H. Gregg, p.19",1899.00.00.a-IndianKey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.00.00.a-IndianKey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.00.00.a-IndianKey.pdf,1899.00.00.a,1899.00.00.a,650,, +1898.12.28.R,Reported 28-Dec-1898,1898,Unprovoked,AUSTRALIA,Queensland,The Narrows,Fell oveboard,James Waters,M,,FATAL,Y,,,"Brisbane Courier, 12/28/1898",1898.12.28.R-Waters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.12.28.R-Waters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.12.28.R-Waters.pdf,1898.12.28.R,1898.12.28.R,649,, +1898.10.28,28-Oct-1898,1898,Unprovoked,USA,Hawaii,Off Kohala,Jumped overboard,Ah Hoi,M,,FATAL,Y,,,"Hawaiian Gazette, 11/1/1898",1898.10.28-AhHol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.10.28-AhHol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.10.28-AhHol.pdf,1898.10.28,1898.10.28,648,, +1898.09.19.b.R,Reported 19-Sep-1898,1898,Unprovoked,,,,Diving,Halletts,M,,Lacerations to hand from shark trapped inside diving bell. ,N,,,"Lincoln Evening News & Daily Call, 9/19/1898",1898.09.19.b.R-Halletts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.09.19.b.R-Halletts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.09.19.b.R-Halletts.pdf,1898.09.19.b.R,1898.09.19.b.R,647,, +1898.09.19.a.R,Reported 19-Sep-1898,1898,Unprovoked,,,,Diving,male,M,,Lacerations to fingers,N,,,"Lincoln Evening News & Daily Call, 9/19/1898",1898.09.19.a.R.Sully.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.09.19.a.R.Sully.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.09.19.a.R.Sully.pdf,1898.09.19.a.R,1898.09.19.a.R,646,, +1898.08.22,22-Aug-1898,1898,Unprovoked,USA,New York,"Prince's Bay, Staten Island",Swimming,Charles E. Boone,M,,Laceration to thigh,N,Afternoon,,"Lima News, 9/27/1898",1898.08.22-Boone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.08.22-Boone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.08.22-Boone.pdf,1898.08.22,1898.08.22,645,, +1898.07.26.R,Reported 26-Jul-1898,1898,Invalid,AUSTRALIA,New South Wales,Sydney,Swimming after their boat capsized,Martin Gunner,,M,"Reported fatal, but this is a questionable incident",Y,,,"Brisbane Courier, 7/26/1898",1898.07.26.R-Gunner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.26.R-Gunner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.26.R-Gunner.pdf,1898.07.26.R,1898.07.26.R,644,, +1898.07.15,15-Jul-1898,1898,Unprovoked,YEMEN ,Aden,Outer Harbor,Swimming at side of small boat,Somali boatman,M,24,"FATAL, severe injuries to both arms & legs, 3 limbs surgically amputed & died after 3 days ",Y,Afternoon,,Captain J. L.T. Jones,1898.07.15-SomaliBoatman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.15-SomaliBoatman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.15-SomaliBoatman.pdf,1898.07.15,1898.07.15,643,, +1898.07.14,14-Jul-1898,1898,Unprovoked,YEMEN ,Aden,Sapper Bay,Standing,Davies,M,22,FATAL,Y,,,"Inangahua Times, 10/26/1898",1878.07.14-Davies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.07.14-Davies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.07.14-Davies.pdf,1898.07.14,1898.07.14,642,, +1898.07.00, Jul-1898,1898,Unprovoked,CUBA,Santiago de Cuba Province,Santiago de Cuba,Swimming,male,M,,FATAL,Y,,,"V.M. Coppleson (1958), p.258 ",1898.07.00-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.00-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.00-Cuba.pdf,1898.07.00,1898.07.00,641,, +1898.06.22,22-Jun-1898,1898,Unprovoked,NEW CALEDONIA,South Province,Noumea,boat from City of Naples capsized,14 sailors,M,,FATAL,Y,,,"New York Times, 6/23/1898",1898.06.22-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.06.22-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.06.22-NewCaledonia.pdf,1898.06.22,1898.06.22,640,, +1898.04.13,13-Apr-1898,1898,Sea Disaster,FIJI,Muala,,The cutter Francis Adams foundered,male,M,,Lacerations to thigh,N,,,"Launceston Examiner, 8/26/1898",1898.04.13-FrancisAdams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.04.13-FrancisAdams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.04.13-FrancisAdams.pdf,1898.04.13,1898.04.13,639,, +1898.00.00.R,Reported 1898,1898,Invalid,CRETE,,,Sponge divers,male,M,,Unknown,UNKNOWN,,,"C. Moore, GSAF",1898.00.00.R-Syria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.R-Syria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.R-Syria.pdf,1898.00.00.R,1898.00.00.R,638,, +1898.00.00.f,1898,1898,Unprovoked,USA,South Carolina,Ramshorn Creek,Fishing (Seining),Archibald Rutledge,M,15,Lacerations to left hand,N,,White shark,"Field & Stream, 1933",1898.00.00.f-Rutledge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.f-Rutledge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.f-Rutledge.pdf,1898.00.00.f,1898.00.00.f,637,, +1898.00.00.e,1898 (soon after the close of the Spanish-American War),1898,Unprovoked,CUBA,Santiago de Cuba Province,Off Santiago de Cuba,13 men in the water after sailboat capsized & sank,seamen,M,,"FATAL, 7 survived but 6 were taken by sharks",Y,,,"J. E. Kirby, letter to Captain Dinning, dated 10/14/1927",1898.00.00.e-13-men.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.e-13-men.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.e-13-men.pdf,1898.00.00.e,1898.00.00.e,636,, +1898.00.00.d,1898,1898,Unprovoked,JAMAICA,Kingston Parish,Kingston Harbor,Trailing hand in the water,Gonzales,F,,"Hand lacerated, 2 fingers severed",N,,,"Indiana Evening Gazette, 11/22/1904",1898.00.00.d-Gonzales.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.d-Gonzales.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.d-Gonzales.pdf,1898.00.00.d,1898.00.00.d,635,, +1898.00.00.c,1898,1898,Unprovoked,CUBA,Camaguey Province,Nuevitas Harbor,Attempting to escape by swimming to shore,"5 American soldiers, prisoners ",M,,"FATAL, 4 were killed by sharks, 1 survived",Y,,,"J. E. Kirby, letter to Captain Dinning, dated 10/14/1927",1898.00.00.c-AmericanPOWs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.c-AmericanPOWs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.c-AmericanPOWs.pdf,1898.00.00.c,1898.00.00.c,634,, +1898.00.00.b,1898-1899,1898,Unprovoked,USA,Florida,"a creek near Jacksonville, Duval County",,boy,M,,Lacerations,N,,,W. H. Gregg,1898.00.00.b-Florida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.b-Florida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.b-Florida.pdf,1898.00.00.b,1898.00.00.b,633,, +1898.00.00.a,Summer of 1898,1898,Unprovoked,YEMEN ,Aden,Harbor,Diving for coins,male,M,,FATAL,Y,,,"Daily Kennebec Journal, 3/27/1911",1898.00.00.a-AdenDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.a-AdenDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.a-AdenDiver.pdf,1898.00.00.a,1898.00.00.a,632,, +1898.00.00 g,1898,1898,Sea Disaster,USA,Hawaii,,Loss of the schooner Nomad,male,M,,FATAL,Y,,,"H.W. McCurdy, History of the Pacific Northwest, p. 51",1898.00.00.g-Nomad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.g-Nomad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.g-Nomad.pdf,1898.00.00 g,1898.00.00 g,631,, +1897.12.04.R,Reported 04-Dec-1897,1897,Provoked,USA,East coast,,Angling,a sailor,M,,Hooked shark bit his leg PROVOKED INCIDENT,N,,,"Trenton Evening Times, 12/4/1897",1897.12.04.R-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.12.04.R-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.12.04.R-Sailor.pdf,1897.12.04.R,1897.12.04.R,630,, +1897.10.15,15-Oct-1897,1897,Invalid,MEXICO,Vera Cruz,Vera Cruz Harbor,Diving,Alexander Cameron,M,,Minor injuries,N,,Questionable,"NY Times, 11/11/1897",1897.10.15-Cameron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.10.15-Cameron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.10.15-Cameron.pdf,1897.10.15,1897.10.15,629,, +1897.10.05.R,Reported 05-Oct-1897,1897,Unprovoked,MARSHALL ISLANDS,Ratak ,Ailuk Island,Fishing,5 children,,,FATAL,Y,,3 sharks,"North Otago Times, 1258/1897",1897.10.05.R-Ailuk-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.10.05.R-Ailuk-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.10.05.R-Ailuk-Island.pdf,1897.10.05.R,1897.10.05.R,628,, +1897.09.17,17-Sep-1897,1897,Provoked,USA,Rhode Island,Point Judith,Fishing,"""Hoke"" Smith",M,,Lacerations to hand by netted shark PROVOKED INCIDENT,N,Late Afternoon,"13'10"" shark","New York Times, 9/18/1897",1897.09.17-HokeSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.09.17-HokeSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.09.17-HokeSmith.pdf,1897.09.17,1897.09.17,627,, +1897.09.06,06-Sep-1897,1897,Unprovoked,USA,South Carolina,"Elliott Cut, Charleston County",Standing,Allan Fripp,M,,Lacerations to lower leg,N,,,"Hartford Courant, 8/7/1897",1897.09.06-Fripp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.09.06-Fripp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.09.06-Fripp.pdf,1897.09.06,1897.09.06,626,, +1897.07.21,21-Jul-1897,1897,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Back Beach, Durban",Wading after stray fish from seine netter�s catch,a young Indian boy,M,,FATAL,Y,Morning,,"Natal Mercury, 7/24/1897; M. Levine, GSAF",1897.07.21-Indianboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.07.21-Indianboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.07.21-Indianboy.pdf,1897.07.21,1897.07.21,625,, +1897.06.09,09-Jun-1897,1897,Invalid,YEMEN ,Socotra Islands,Socotra,Wreck of the steamship Sultan of Bombay,Moslem pilgrims,,,Sharks scavenged on the dead,Y,,,"Star, 7/10/1897; Kalgoorlie Western Argus, 7/15/1897",1897.06.09-Sultan-of-Bombay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.06.09-Sultan-of-Bombay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.06.09-Sultan-of-Bombay.pdf,1897.06.09,1897.06.09,624,, +1897.03.15.b.R,Reported 15-Mar-1897,1897,Unprovoked,,Mediterranean Sea,,Swimming,male,M,,FATAL,Y,,,"Daily Northwestern, 5/15/1897",1897.03.15.b.R-Mediterranean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.03.15.b.R-Mediterranean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.03.15.b.R-Mediterranean.pdf,1897.03.15.b.R,1897.03.15.b.R,623,, +1897.03.15.a.R,Reported 15-Mar-1897,1897,Unprovoked,USA,Massachusetts,30 miles south of Lynn,Fishing,male,M,,FATAL,Y,,,"Daily Northwestern, 5/15/1897",1897.03.15.a.R-Lynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.03.15.a.R-Lynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.03.15.a.R-Lynn.pdf,1897.03.15.a.R,1897.03.15.a.R,622,, +1897.00.00.b,1897,1897,Unprovoked,NEW ZEALAND,,,,Maori male,M,,Lacerations to left arm,N,,,"Deseret News, 6/28/1946",1987.00.00.b-Maori.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.00.00.b-Maori.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.00.00.b-Maori.pdf,1897.00.00.b,1897.00.00.b,621,, +1897.00.00.a,1897,1897,Unprovoked,EGYPT,Mediterranean Sea,Port Said,,Anonymous,,,No details,UNKNOWN,,,"Mentioned in paper by W.B. Orme; G.A. Llano, p.127",1897.00.00.a-Egypt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.00.00.a-Egypt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.00.00.a-Egypt.pdf,1897.00.00.a,1897.00.00.a,620,, +1896.12.23,23-Decp1896,1896,Boating,AUSTRALIA,Victoria,Hobson's Bay,Fishing,10' skiff. Occupants F. Whitehead & L. Honeybone,M,,No injury to occupants. Shark bit boat several times,N,05h00,12' to 14' shark,"South Australian Register, 12/25/1896",1896.12.23-skiff-HobsonsBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.23-skiff-HobsonsBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.23-skiff-HobsonsBay.pdf,1896.12.23,1896.12.23,619,, +1896.12.20,20-Dec-1896,1896,Unprovoked,NEW ZEALAND,North Island,"Marine Parade, Napier, Hawke Bay",Bathing,Bright Cooper,M,26,"FATAL, left arm severed at elbow, right arm at wrist ",Y,,,"A.W. Parrott, p. 68; V.M. Coppleson (1958), p.258",1896.12.20-Cooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.20-Cooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.20-Cooper.pdf,1896.12.20,1896.12.20,618,, +1896.12.17.R,Reported 17-Dec-1896,1896,Unprovoked,NEW ZEALAND,South Island,Hoiktika,,E. Reynolds,M,,FATAL,Y,,,"The Star, 12/17/1896",1896.12.17.R-Reynolds.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.17.R-Reynolds.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.17.R-Reynolds.pdf,1896.12.17.R,1896.12.17.R,617,, +1896.11.29,29-Nov-1896,1896,Unprovoked,AUSTRALIA,Western Australia,Albany,Swimming,Davies,M,,FATAL,Y,,,"West Australian, 12/3/1896",1896.11.29-Davies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.11.29-Davies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.11.29-Davies.pdf,1896.11.29,1896.11.29,616,, +1896.11.01,01-Nov-1896,1896,Unprovoked,AUSTRALIA,Western Australia,Esperance,Boat swamped,Louis,M,,FATAL,Y,,,"West Australian, 11/2/1896",1896.11.01-Louis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.11.01-Louis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.11.01-Louis.pdf,1896.11.01,1896.11.01,615,, +1896.09.11.R,Reported 11-Sep-1896,1896,Unprovoked,SRI LANKA,,,Diving,,M,,Leg severed,N,,,"New Oxford Item, 9/11/1896",1896.09.11.R-SriLanka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.09.11.R-SriLanka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.09.11.R-SriLanka.pdf,1896.09.11.R,1896.09.11.R,614,, +1896.07.25,25-Jul-1896,1896,Unprovoked,USA,Hawaii,"Kahului, Maui",Fishing,Nahalehau,M,35,FATAL,Y,10h30,,"Hawaiian Gazette, 8/4/1896",1896.07.25-Nahalehau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.07.25-Nahalehau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.07.25-Nahalehau.pdf,1896.07.25,1896.07.25,613,, +1896.06.21.R,Reported 21-Jun-1896,1896,Unprovoked,USA,South Carolina,Charleston,Bathing,Mr. Walsh ,M,,Lacerations to foot and calf,N,,,"New York Times, 6/21/1896",1896.06.21.R-Walsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.06.21.R-Walsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.06.21.R-Walsh.pdf,1896.06.21.R,1896.06.21.R,612,, +1896.01.11, 11-Jan-1896,1896,Unprovoked,AUSTRALIA,New South Wales,"Johnstone's Bay, Sydney",Bathing,William Ready,M,11,FATAL,Y,Afternoon,,"Brisbane Courier, 1/13/1896",1896.01.11-Ready.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.01.11-Ready.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.01.11-Ready.pdf,1896.01.11,1896.01.11,611,, +1896.00.00.b,1896,1896,Unprovoked,USA,Florida,,"Swimming ashore from a ""filibuster""",male,M,,FATAL,Y,,,W.H. Gregg,1896.00.00.b-filibuster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.00.00.b-filibuster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.00.00.b-filibuster.pdf,1896.00.00.b,1896.00.00.b,610,, +1896.00.00.a,1896,1896,Unprovoked,HAITI,Off Cape Haitien,,Wading,Syrian,M,15,Leg severed below knee,N,,,"C. R. Baker & C.M. Rose; V.M. Coppleson (1958), p.259 ",1896.00.00.a-Syrian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.00.00.a-Syrian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.00.00.a-Syrian.pdf,1896.00.00.a,1896.00.00.a,609,, +1895.12.09,09-Dec-1895,1895,Unprovoked,AUSTRALIA,New South Wales,"West Balmain, Sydney",Bathing,Thomas John Terrill,M,14,FATAL,Y,,,"Brisbane Courier, 12/9/1895",1895.12.09-Terrill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.12.09-Terrill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.12.09-Terrill.pdf,1895.12.09,1895.12.09,608,, +1895.11.21.R,Reported 21-Nov-1895,1895,Unprovoked,BARBADOS,St Michael Parish,Bridgetown,Diving for coins,Rouee Youma,M,,Leg bitten,N,,,"NY Times, 11/21/1895",1895.11.21.R-Youma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.11.21.R-Youma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.11.21.R-Youma.pdf,1895.11.21.R,1895.11.21.R,607,, +1895.11.16,16-Nov-1895,1895,Unprovoked,AUSTRALIA,New South Wales,Jervis Bay ,Fishing,Edward Bailey,M,,FATAL,Y,,,"West Australian, 11/19/1895",1895.11.16-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.11.16-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.11.16-Bailey.pdf,1895.11.16,1895.11.16,606,, +1895.09.18,18-Sep-1895,1895,Sea Disaster,CUBA,Havana Province,Havana Harbor,Shipwreck,male,M,,Probable drowning & scavenging,Y,Night,,"NY Times, 9/21/1895",1895.09.18-HavanaShipwreck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.18-HavanaShipwreck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.18-HavanaShipwreck.pdf,1895.09.18,1895.09.18,605,, +1895.09.14.R,Reported 14-Sep-1895,1895,Unprovoked,YEMEN ,Aden,,Diving for coins,a native boy ,M,,FATAL,Y,,,"Queenslander, 9/14/8/1895",1895.09.14.R-Aden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.14.R-Aden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.14.R-Aden.pdf,1895.09.14.R,1895.09.14.R,604,, +1895.09.00,Sep-1895,1895,Provoked,USA,North Carolina,"Near the mouth of the Cape Fear River, Brunswick County",Fishing,"open boat, occupants: Robert Ruark, Hoyle Dosher & Elmer Adkins",,,"No injury, hooked shark rammed boat & Ruark fell on its back PROVOKED INCIDENT",N,,5' shark,"C. Creswell, GSAF",1895.09.00-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.00-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.00-boat.pdf,1895.09.00,1895.09.00,603,, +1895.08.11,11-Aug-1895,1895,Unprovoked,USA,Rhode Island,Noyes Beach,Swimming,Charles Beattie,M,26,FATAL,Y,05h00,,Boston Globe,1895.08.11-Beattie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.08.11-Beattie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.08.11-Beattie.pdf,1895.08.11,1895.08.11,602,, +1895.08.02,2-Aug-1895,1895,Unprovoked,USA,New Jersey,Raritan Bay,Fishing,Elias Turner,M,,Arm bitten,N,,,"Boston Globe, 8/3/1895, p.5",1895.08.02-Turner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.08.02-Turner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.08.02-Turner.pdf,1895.08.02,1895.08.02,601,, +1895.07.16.R,Reported 16-Jul-1895,1895,Unprovoked,JAPAN,,,Hunting seals,William Lloyd,M,,FATAL,Y,,,"Morning News, 7/16/1895",1895.07.16.R-Lloyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.07.16.R-Lloyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.07.16.R-Lloyd.pdf,1895.07.16.R,1895.07.16.R,600,, +1895.06.13.R,Reported 13-Jun-1895,1895,Unprovoked,,,,Diving,Marsh,M,,Right hand severed,N,,,"Lima Times, 6/13/1895",1895.06.13.R-EnglishDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.06.13.R-EnglishDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.06.13.R-EnglishDiver.pdf,1895.06.13.R,1895.06.13.R,599,, +1895.06.03.R,Reported 03-Jun-1895,1895,Unprovoked,AUSTRALIA,Western Australia,Barrow Passage,Pearl diving,a Japanese diver,M,,FATAL,Y,,,"The West Australian, 6/3/1895",1895.06.03.R-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.06.03.R-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.06.03.R-JapaneseDiver.pdf,1895.06.03.R,1895.06.03.R,598,, +1895.05.21,21-May-1895,1895,Sea Disaster,BAHAMAS,Bimini Islands,Off Gun Cay,Sea Disaster : Wreck of the Carrie E. Long,Tip Stanley,M,,Heel bitten,N,,,"Meriden Daily Republican, 6/12/1895",1895.05.21-Stanley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.05.21-Stanley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.05.21-Stanley.pdf,1895.05.21,1895.05.21,597,, +1895.05.03,03-May-1895,1895,Unprovoked,NEW ZEALAND,South Island,Preservation Inlet,"""Boat accident""",James Cromarty,M,,FATAL Thigh bitten,Y,,,"Otago Witness, 5/16/1895",1895.05.03-Cromarty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.05.03-Cromarty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.05.03-Cromarty.pdf,1895.05.03,1895.05.03,596,, +1895.04.29,29-Apr-1895,1895,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Mzimvubu River,"""Crossing the river""",Sombutize,M,28,"FATAL, right arm lacerated ",Y,12h00,,"M. Levine, GSAF",1895.04.29-Sombutize.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.04.29-Sombutize.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.04.29-Sombutize.pdf,1895.04.29,1895.04.29,595,, +1895.04.23,23-Apr-1895,1895,Unprovoked,NEW ZEALAND,South Island,Oamaru,Swimming,Percy Mitchell,M,,Lacerations to foot,N,Early morning,,"Star, 4/25/1895, p.",1895.04.23-Mitchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.04.23-Mitchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.04.23-Mitchell.pdf,1895.04.23,1895.04.23,594,, +1895.03.29.R,Reported 29-Mar-1895,1895,Unprovoked,INDONESIA,Moluccas,South Aroo Island,Swimming,Pindo Island pirates,M,,FATAL,Y,,,"Fitzroy City Press, 3/29/1895",1895.03.29.R-Pindo-Islanders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.03.29.R-Pindo-Islanders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.03.29.R-Pindo-Islanders.pdf,1895.03.29.R,1895.03.29.R,593,, +1895.03.15,15-Mar-1895,1895,Unprovoked,AUSTRALIA,Queensland,Burnett River,Swimming,Nicol Pringle,M,13,Lower leg & foot bitten,N,,,"The Telegraph, 3/20/1895",1895.03.15-Pringle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.03.15-Pringle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.03.15-Pringle.pdf,1895.03.15,1895.03.15,592,, +1895.02.27,27-Feb-1895,1895,Unprovoked,AUSTRALIA,New South Wales,Sydney Harbor,Swimming,James Edward Clifton Donald,M,14,FATAL,Y,,,I. Donald ,1895.02.27-Donald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.02.27-Donald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.02.27-Donald.pdf,1895.02.27,1895.02.27,591,, +1895.02.23.R,Reported 23-Feb-1895,1895,Unprovoked,PANAMA,Bocas del Toro,,"Swimming, after sailboat capsized",John Minard,M,,FATAL,Y,,,"Fort Wayne Sentinel, 2/23/1895",1895.02.23.R-Minard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.02.23.R-Minard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.02.23.R-Minard.pdf,1895.02.23.R,1895.02.23.R,590,, +1895.00.00.b,1895,1895,Boating,AUSTRALIA,Western Australia,"Dampier's Creek, Broome",,oar of Knut Dahl's boat,,,No injury to occupants of boat,N,,,"G.P. Whitley (1951), p.192",1895.00.00-Dahl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.00.00-Dahl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.00.00-Dahl.pdf,1895.00.00.b,1895.00.00.b,589,, +1894.12.11,11-Dec-1894,1894,Provoked,USA,Florida,"North Beach, St. Augustine",Fishing,Chatiles F. Brynes,M,,Left leg bitten PROVOKED INCIDENT,N,,12' shark,"Atlanta Constitution, 12/12/1894",1894.12.11-Brynes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.12.11-Brynes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.12.11-Brynes.pdf,1894.12.11,1894.12.11,588,, +1894.11.28,28-Nov-1894,1894,Unprovoked,AUSTRALIA,New South Wales,Newcastle ,Bathing,Horace Hewison,M,19,"""Lost his arm""",N,Morning,10' to 12' shark,"Brisbane Courier, 1/7/1895, p.5",1894.11.28-Hewison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.11.28-Hewison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.11.28-Hewison.pdf,1894.11.28,1894.11.28,587,, +1894.10.06.R,Reported 06-Oct-1894,1894,Unprovoked,USA,Alabama,Mobile Bay,Swimming,a deserter from the ship Evarest,M,,FATAL,Y,,,"Middletown Daily Argus, 10/6/1894",1894.10.06.R-deserter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.10.06.R-deserter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.10.06.R-deserter.pdf,1894.10.06.R,1894.10.06.R,586,, +1894.09.12.R,Reported 12-Sep-1894,1894,Unprovoked,USA,Virginia,Norfolk,Bathing,Michael Daly,M,,Lacerations to leg,N,,,"Washington Post, 9/13/1894",1894.09.12.R-Daly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.12.R-Daly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.12.R-Daly.pdf,1894.09.12.R,1894.09.12.R,585,, +1894.09.06.R,Reported 06-Sep-1894,1894,Unprovoked,FIJI,Vita Levu,Rewa River,Dangling feet in the water,Fijian girl,F,,Foot severed,N,,,"The Colonist, 9/6/1894",1894.09.06.R-FijianGirl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.06.R-FijianGirl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.06.R-FijianGirl.pdf,1894.09.06.R,1894.09.06.R,584,, +1894.09.01.R,Reported 01-Sep-1894,1894,Provoked,USA,Texas,Rockport,Fishing,William Muller,M,,Laceration to calf PROVOKED INCIDENT,N,,,"Lima Times Democrat, 9/1/1894",1894.09.01.R-Muller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.01.R-Muller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.01.R-Muller.pdf,1894.09.01.R,1894.09.01.R,583,, +1894.08.21,21-Aug-1894,1894,Unprovoked,USA,New York,"Woolsey's Point, East River",Swimming,Catherine Beach,F,,No injury,UNKNOWN,,"Shovelnose shark, 5'","NY Times, 8/22/1894 ",1894.08.21-CatherineBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.08.21-CatherineBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.08.21-CatherineBeach.pdf,1894.08.21,1894.08.21,582,, +1894.08.01,01-Aug-1894,1894,Unprovoked,USA,Florida,"Jacksonville, Duval County",Swimming / floating on his back,Milton Shane,M,,Lacerations to thigh,N,,,"Jacksonville Times-Union, 8/2/1894",1894.08.01-MiltonShane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.08.01-MiltonShane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.08.01-MiltonShane.pdf,1894.08.01,1894.08.01,581,, +1894.07.15.R,Reportd 15-Jul-1894,1894,Unprovoked,FRANCE,Provence,"la Badine, Hy�res ",Fishing,"la Badine, Hy�res, ",M,,No injury,Y,,1.8 m shark,"C. Moore, GSAF",1894.07.15.R-France.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.07.15.R-France.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.07.15.R-France.pdf,1894.07.15.R,1894.07.15.R,580,, +1894.06.29,29-Jun-1894,1894,Unprovoked,USA,Florida,Anastasia Island,Bathing,Erskine H. Reynolds,M,,"""Painfully injured"" but no details",UNKNOWN,,,"Atlanta Constitution, 7/1/1894; Washington Post 7/1/1894, p.17",1894.06.29-ErskineReynolds.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.29-ErskineReynolds.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.29-ErskineReynolds.pdf,1894.06.29,1894.06.29,579,, +1894.06.25,25-Jun-1894,1894,Unprovoked,SOUTH AFRICA,Western Cape Province,Simons Town,Swimming after harpooned whale capsized boat,"Swedish male, crewman from the Harry Mundahl",M,,FATAL,Y,,,"Cape Argus, 7/2/1894 ",1894.06.25-SwedishWhaler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.25-SwedishWhaler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.25-SwedishWhaler.pdf,1894.06.25,1894.06.25,578,, +1894.06.15.b.R,Reported 15-Jun-1894,1894,Unprovoked,USA,North Carolina,"New Bern, Craven County",bathing ,soldier ,M,,Right leg bitten,N,,,"Warren Ledger, 6/15/1894",1894.06.15.b.R-Newbern.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.15.b.R-Newbern.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.15.b.R-Newbern.pdf,1894.06.15.b.R,1894.06.15.b.R,577,, +1894.06.15.a.R,Reported 15-Jun-1894,1894,Unprovoked,MEXICO,Bay of Campeche,,Fell from yardarm of British ship Rover,sailor,M,,"FATAL, torso bitten ",Y,,20' shark,"Warren Ledger, 6/15/1894",1894.06.15.a-R-Rover.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.15.a-R-Rover.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.15.a-R-Rover.pdf,1894.06.15.a.R,1894.06.15.a.R,576,, +1894.04.28.b.R,Reported 28-Apr-1894,1894,Unprovoked,BURMA,Rangoon,Amherst,Bathing, Grace Darling,F,,FATAL,Y,,,"Bruce Herald, 8/24/1894",1894.04.28.b.R-GraceDarling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.04.28.b.R-GraceDarling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.04.28.b.R-GraceDarling.pdf,1894.04.28.b.R,1894.04.28.b.R,575,, +1894.04.28.a.R,Reported 28-Apr-1894,1894,Unprovoked,BURMA,Rangoon,Amherst,Bathing,Lucy Stone ,F,,FATAL ,Y,,,"Bruce Herald, 8/24/1894",1894.04.28.a.R-LucyStone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.04.28.a.R-LucyStone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.04.28.a.R-LucyStone.pdf,1894.04.28.a.R,1894.04.28.a.R,574,, +1893.10.20.R,Reported 20-Oct-1893,1893,Unprovoked,INDIA,Bay of Bengal,Madras Harbor,Murder,A young pearl trader,M,,FATAL,Y,,,"Middletown Daily Argus, 10/20/1893",1893.10.20.R-PearlTrader.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.10.20.R-PearlTrader.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.10.20.R-PearlTrader.pdf,1893.10.20.R,1893.10.20.R,573,, +1893.10.16,16-Oct-1893,1893,Invalid,CROATIA, Primorje-Gorski Kotar County,"Off Volusca, Opatija",small boat,4 passengers frightened by shark,,,No injury; no attack,N,,,C. Moore,1893.10.16-Opatija.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.10.16-Opatija.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.10.16-Opatija.pdf,1893.10.16,1893.10.16,572,, +1893.07.03,03-Jul-1893,1893,Unprovoked,PHILIPPINES,,Off Manila,Abandoning burning steamship Don Juan,,M,,FATAL,Y,,,"New Zealand Tablet, 12/1/1893",1893.07.03-DonJuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.07.03-DonJuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.07.03-DonJuan.pdf,1893.07.03,1893.07.03,570,, +1893.06.22,22-Jun-1893,1893,Unprovoked,LEBANON,,Off Tripoli,HMS Victoria collided with the HMS Camperdown,crew,M,,FATAL,Y,,,"The Sydney Morning Herald, 6/29/1893",1893.06.22-HMSVictoria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.06.22-HMSVictoria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.06.22-HMSVictoria.pdf,1893.06.22,1893.06.22,569,, +1893.06.22.R,Reported 22-Jun-1893,1893,Unprovoked,NIGERIA,Bayelsa State,Mouth of the Nun River,A barque wrecked,mate & crew,M,,FATAL,Y,,,"Otago Witness, 6/22/1893",1893.06.22.R-Nigeria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.06.22.R-Nigeria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.06.22.R-Nigeria.pdf,1893.06.22.R,1893.06.22.R,569,, +1893.05.23.R,Reported 23-May-1893,1893,Unprovoked,FIJI,,Between Kadavu & Beqa,Canoe swamped,a girl,F,,FATAL,Y,,,"Brisbane Courier, 5/23/1893",1893.05.23.R-FijianCanoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.05.23.R-FijianCanoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.05.23.R-FijianCanoe.pdf,1893.05.23.R,1893.05.23.R,568,, +1893.05.17,17-May-1893,1893,Unprovoked,CUBA,Havana Province,Havana Harbor,His balloon crashed in the harbor,"Ramon Margulies, aeronaut",M,,FATAL,Y,16h00,,"Portsmouth Herald, 3/6/1899",1893.05.17-Margulies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.05.17-Margulies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.05.17-Margulies.pdf,1893.05.17,1893.05.17,567,, +1893.04.15,Reported 15-Apr-1893,1893,Unprovoked,SOUTH ATLANTIC OCEAN,,,Swimming after falling overboard from the sealing ship Vesper,Charles Barclay,M,,"One leg severed by the shark, the other surgically amputated",N,,,"The News, 4/15/1893",1893.04.15.R-Barclay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.15.R-Barclay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.15.R-Barclay.pdf,1893.04.15,1893.04.15,566,, +1893.04.14,14-Apr-1893,1893,Unprovoked,AUSTRALIA,Queensland,Torres Strait,"Boat capsized, swimming ashore",Kangaroo,M,,Leg bitten,N,,,"Brisbane Courier, 6/2/1893",1893.04.14-Kangaroo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.14-Kangaroo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.14-Kangaroo.pdf,1893.04.14,1893.04.14,565,, +1893.04.04,04-Apr-1893,1893,Invalid,AUSTRALIA,Tasmania,"Chimney Point, George�s Bay","Boat capsized, swimming ashore",Joseph Meredith,M,,"Fatal, probable drowning",Y,16h30,,"C. Black, GSAF; V.M. Coppleson (1958), p.105",1893.04.04-Meredith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.04-Meredith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.04-Meredith.pdf,1893.04.04,1893.04.04,564,, +1893.01.30.R,Reported 30-Jan-1893,1893,Unprovoked,NEW ZEALAND,South Island?,Downs River,Bathing,Donald McKenzie,M,,FATAL,Y,,,"Taranaki Herald, 1/30/1893",1893.01.30.R-McKenzie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.01.30.R-McKenzie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.01.30.R-McKenzie.pdf,1893.01.30.R,1893.01.30.R,563,, +1893.01.18.R,Reported 18-Jan-1893,1893,Unprovoked,FRENCH POLYNESIA,,One week out of P�pete,Murdered,sailor,M,,FATAL.Tossed overboard to sharks by Rodrigue brothers who were later executed in Manila,Y,,,"West Australian, 1/18/1893",1893.01.18.R-RodrigueBrothersVictims.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.01.18.R-RodrigueBrothersVictims.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.01.18.R-RodrigueBrothersVictims.pdf,1893.01.18.R,1893.01.18.R,562,, +1893.00.00,1893,1893,Unprovoked,EGYPT,Mediterranean Sea,Port Said,,No details,,,No details,UNKNOWN,,,"Briefly mentioned in paper by W.B. Orme; G.A. Llano, p.127",1893.00.00-PortSaid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.00.00-PortSaid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.00.00-PortSaid.pdf,1893.00.00,1893.00.00,561,, +1892.12.15,15-Dec-1892,1892,Unprovoked,ATLANTIC OCEAN,,,Fell overboard,Samuel Coolidge,M,15,FATAL,Y,,,"Washington Post, 1/9/1893",1892.12.15-SamuelCoolidge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.12.15-SamuelCoolidge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.12.15-SamuelCoolidge.pdf,1892.12.15,1892.12.15,560,, +1892.11.09.R,Reported 09-Nov-1892,1892,Unprovoked,AUSTRALIA,Norfolk Island,,Fishing,a boat steerer,M,,Laceration to arm,N,,,"Timaru Herald, 11/8/1892",1892.11.09.R-NorfolkIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.11.09.R-NorfolkIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.11.09.R-NorfolkIsland.pdf,1892.11.09.R,1892.11.09.R,559,, +1892.11.06,06-Nov-1892,1892,Unprovoked,AUSTRALIA,Queensland,"Wellington Point, Brisbane",Swimming,Mrs. Coe,F,,Abrasions to left leg,N,,,"Brisbane Courier, 11/9/1892",1892.11.06-Coe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.11.06-Coe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.11.06-Coe.pdf,1892.11.06,1892.11.06,558,, +1892.09.16.R,Reported 16-Sep-1892,1892,Unprovoked,USA,Texas,Velasco,,Baker,M,,Hand bitten,N,,,"Galveston Daily News, 9/16/1892 ",1892.09.16.R-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.09.16.R-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.09.16.R-Baker.pdf,1892.09.16.R,1892.09.16.R,557,, +1892.06.24,24-Jun-1892,1892,Invalid,FRANCE,Brittany,Brest,Fishing boat,,,,"No injury, no attack",,,,"C.Moore, GSAF",1892.06.24-Brest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.06.24-Brest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.06.24-Brest.pdf,1892.06.24,1892.06.24,556,, +1892.06.20.R,Reported 20-Jun-1892,1892,Unprovoked,CUBA,Havana Province,Havana Harbor,Riding a horse,a mestizo,M,,FATAL,Y,,,"Daily Citizen, 6/20/1892",1892.06.20.R-Rider.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.06.20.R-Rider.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.06.20.R-Rider.pdf,1892.06.20.R,1892.06.20.R,555,, +1892.05.19.R,Reported 19-May-1892,1892,Unprovoked,NEW ZEALAND,North Island,Rockhampton,Bathing,Abraham Yates,M,,Minor injury to leg,N,,,"Wanganui Chronicle, 5/19/1892",1892.05.19.R-Yates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.05.19.R-Yates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.05.19.R-Yates.pdf,1892.05.19.R,1892.05.19.R,554,, +1892.04.21.R,Reported 21-Apr-1892,1892,Unprovoked,BAHAMAS,Out Islands,,Fell overboard from sponge vessel,male,M,,"FATAL, leg severed",Y,,16' shark,"The Gleaner (Jamaica), 4/21/1892",1892.04.21.R-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.04.21.R-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.04.21.R-Bahamas.pdf,1892.04.21.R,1892.04.21.R,553,, +1892.03.25.R,Reported 25-Mar-1893,1892,Unprovoked,PACIFIC OCEAN,,, a canoe was pursuing a schooner that had forcibily abducted 5 young girls,,M,,6 or 8 of the would-be rescuers were shot & the rest were killed by sharks,Y,,,"West Australian, 3/25/1892",1892.03.25.R-Canoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.03.25.R-Canoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.03.25.R-Canoe.pdf,1892.03.25.R,1892.03.25.R,552,, +1892.03.02,02-Mar-1892,1892,Provoked,AUSTRALIA,New South Wales,Lake Macquarie,Fishing,Christopher Wang,M,21,Lacerations to calf by netted shark PROVOKED INCIDENT,N,Night,12' shark,"The Argus, 3/4/1892",1892.03.02-Wang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.03.02-Wang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.03.02-Wang.pdf,1892.03.02,1892.03.02,551,, +1892.00.00,1892,1892,Provoked,AUSTRALIA,Torres Strait,Badu Island,Dress diving,Mr. A. Rotaman,M,,FATAL Bitten in two by shark that he molested with a knife. Buried at Batu Island. PROVOKED INCIDENT,Y,,,"G.P. Whitley, p.259",1892.00.00-Rotaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.00.00-Rotaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.00.00-Rotaman.pdf,1892.00.00,1892.00.00,550,, +1891.12.31.R,Reported 31-Dec-1891,1891,Unprovoked,AUSTRALIA,New South Wales,,Swimming,Mr. Christesen,M,,Foot severed,N,,,"Maitland Mercury & Hunter River General Advertiser, 12/31/1891 ",1891.12.31.R-Christesen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.12.31.R-Christesen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.12.31.R-Christesen.pdf,1891.12.31.R,1891.12.31.R,549,, +1891.12.22.R,Reported 22-Dec-1891,1891,Unprovoked,NEW ZEALAND,North Island,"Manukau Harbor, 6 miles south of Auckland","Swimming, after boat swamped",Henry Jacobson,M,,Hand bitten,N,,,"The Advertiser, 1/1/1892",1891.12.22.R-Jacobson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.12.22.R-Jacobson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.12.22.R-Jacobson.pdf,1891.12.22.R,1891.12.22.R,548,, +1891.09.14.R,Reported 14-Sep-1891,1891,Sea Disaster,KIRIBATI,Line Islands,Flint Island,"Sea Disaster, canoes capsized in storm",,,,"FATAL Of 38 people in the water, 8 were killed by sharks & 1 man's leg was severed",Y,,,"Newark Daily Advocate, 9/14/1891; Bismark Daily Tribune, 9/15/1891",1891.09.14.R-Kiribati.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.09.14.R-Kiribati.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.09.14.R-Kiribati.pdf,1891.09.14.R,1891.09.14.R,547,, +1891.08.30.R,Reported 30-Aug-1891,1891,Unprovoked,CANADA,Nova Scotia,Halifax,Knocked overboard,John Roult,M,,FATAL,Y,,,"Washington Post, 8/31/1891",1891.08.30.R-Roult.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.08.30.R-Roult.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.08.30.R-Roult.pdf,1891.08.30.R,1891.08.30.R,546,, +1891.08.29,29-Aug-1891,1891,Provoked,USA,New Jersey,"Off Longport, Atlantic County",Shooting sharks ,one of the crew of the schooner Mary C. Brown,M,,"Survived, PROVOKED INCIDENT",N,,,"The Daily Argus News, 9/3/1891 ",1891.08.29-Mary-Brown-crew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.08.29-Mary-Brown-crew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.08.29-Mary-Brown-crew.pdf,1891.08.29,1891.08.29,545,, +1891.06.11,11-Jun-1891,1891,Invalid,USA,Virginia,Hampton Roads,Fishing for sharks when he became entangled in net & fell overboard,John Howard,M,,"Fatal, but death may have been due to drowning",Y, ,,"Washington Post, 6/12/1891, p.1",1891.06.11-JohnHoward.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.06.11-JohnHoward.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.06.11-JohnHoward.pdf,1891.06.11,1891.06.11,544,, +1891.03.10,10-Mar-1891,1891,Unprovoked,PARAGUAY,,,Fleeing across a river,,,,FATAL,Y,Night,,"West Australian, 11/2/1891",1891.03.10-Paraguay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.03.10-Paraguay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.03.10-Paraguay.pdf,1891.03.10,1891.03.10,543,, +1891.01.08.R,Reported 08-Jan-1891,1891,Unprovoked,JAMAICA,Kingston Parish,Port Royal Harbour,boat capsized,3 sailors,M,,FATAL,Y,Night,,"Tuapeka Times, 1/21/1891",1891.01.08.R-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.01.08.R-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.01.08.R-Jamaica.pdf,1891.01.08.R,1891.01.08.R,542,, +1890.12.30,30-Dec-1890,1890,Invalid,AUSTRALIA,Queensland,Moreton Bay,Swimming to shore after boat capsized by a squall,C. Gregory,,,"Fatal, but death may have been due to drowning",Y,,,"The Argus, 21/2/1891",1890.12.30-Gregory.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.12.30-Gregory.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.12.30-Gregory.pdf,1890.12.30,1890.12.30,541,, +1890.12.27.R,Reported 27-Dec-1890,1890,Unprovoked,BRITISH NEW GUINEA,Woodlark Islands,Off Panamota,Thrown overboard,Tetebara,M,18,Arm bitten,N,,,"Queenslander, 12/27/1890",1890.12.27.R-Tetebara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.12.27.R-Tetebara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.12.27.R-Tetebara.pdf,1890.12.27.R,1890.12.27.R,540,, +1890.10.25.R,Reported 25-Oct-1890,1890,Unprovoked,ATLANTIC OCEAN,,,Thrown overboard,Captain Lavarello ,M,,FATAL,Y,,,"Taranaki Herald, 10/25/1890",1890.10.25.R-Lavarello.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.10.25.R-Lavarello.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.10.25.R-Lavarello.pdf,1890.10.25.R,1890.10.25.R,539,, +1890.08.17.R,Reported 17-Aug-1890,1890,Provoked,USA,New Jersey,"Off Normandie-by-the-Sea, Monmouth County",Fishing for bluefish,a charter fishing boat with James Whiteside and his party,,,No injury to occupants. Hooked shark damaged boat PROVOKED INCIDENT,N,,"5'7"" shark","NY Times, 8/17/1890",1890.08.17.R-NJ-PartyBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.17.R-NJ-PartyBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.17.R-NJ-PartyBoat.pdf,1890.08.17.R,1890.08.17.R,538,, +1890.08.09,9-Aug-1890,1890,Unprovoked,USA,Connecticut,"Bridgeport, Fairfield County",Treading for clams,Raymond Odell,M,,Severe lacerations to left arm.,N,,,"NY Times, 8/12/1890",1890.08.09-Odell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.09-Odell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.09-Odell.pdf,1890.08.09,1890.08.09,537,, +1890.08.08, 08-Aug-1890,1890,Unprovoked,SAMOA,Upolu Island,Apia Harbour,Bathing,Hermann Schwebke,M,,Both legs severed,N,,,"Argus, 9/9/1890",1890.08.08-Schwebke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.08-Schwebke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.08-Schwebke.pdf,1890.08.08,1890.08.08,536,, +1890.06.26,06-26-1890,1890,Unprovoked,CROATIA,,Fiume,Swimming,Mayonni,M,,Legs severed ,N,,,"C. Moore, GSAF",1890.06.26-Mayonni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.26-Mayonni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.26-Mayonni.pdf,1890.06.26,1890.06.26,535,, +1890.06.14.R,Reported 14-Jun-1890,1890,Unprovoked,PERSIAN GULF,,,Fell overboard,a Frenchman,M,,Severe lacerations to foot,N,,,"Bush Advocate, 6/14/1890",1890.06.14.R-Frenchman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.14.R-Frenchman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.14.R-Frenchman.pdf,1890.06.14.R,1890.06.14.R,534,, +1890.06.02.R,Reported 02-Jun-1890,1890,Unprovoked,EGYPT,,Port Said,Swimming,male,M,,FATAL,Y,,,"C. Moore, GSAF",1890.06.02.R-PortSaid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.02.R-PortSaid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.02.R-PortSaid.pdf,1890.06.02.R,1890.06.02.R,533,, +1890.05.14,14-May-1890,1890,Invalid,SOUTH AFRICA,Eastern Cape Province,Port Elizabeth,,Joseph Lundy,M,,"Forensic evidence indicated death resulted from drowning, his body was subsequently scavenged by a shark",#VALUE!,,,"M. Levine, GSAF",1890.05.14-Lundy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.05.14-Lundy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.05.14-Lundy.pdf,1890.05.14,1890.05.14,532,, +1890.02.25,25-Feb-1890,1890,Boating,MALTA,Munxar Reef,Marsascala,"Fishing boat with 4 men on board was rammed & capsized by a shark, throwing all occupants into the water",Salvatore & Agostino Bugeja,M,,"FATAL, 2 men were lost, presumed taken by the shark",Y,,,A. Buttigieg,1890.02.25-Malta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.02.25-Malta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.02.25-Malta.pdf,1890.02.25,1890.02.25,531,, +1890.00.00.e,1890,1890,Unprovoked,AUSTRALIA,Tasmania,Derwent River (empties into the sea at Hobart),Wading,Frederick Sampson Johnson,M,,Knee bitten,N,,"Sevengill shark, 14', was caught in the vicinity","V.M. Coppleson (1958), p.105; C. Black pp. 147-148",1890.00.00.e-FrederickSampsonJohnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.e-FrederickSampsonJohnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.e-FrederickSampsonJohnson.pdf,1890.00.00.e,1890.00.00.e,530,, +1890.00.00.d,1890,1890,Unprovoked,INDIA,Tamil Nadu,Tuticorin,Diving,a pearl diver,M,,No details,UNKNOWN,,,"Sydney Morning Herald, 10/1/1890",1890.00.00.d-Tuticorin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.d-Tuticorin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.d-Tuticorin.pdf,1890.00.00.d,1890.00.00.d,529,, +1890.00.00.c,1890,1890,Unprovoked,INDIA,Tamil Nadu,Tuticorin,Diving,a pearl diver,M,,No details,UNKNOWN,,,"Steubenville Herald, 11/12/1896",1890.00.00.c-Tuticorin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.c-Tuticorin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.c-Tuticorin.pdf,1890.00.00.c,1890.00.00.c,528,, +1890.00.00.b,1890,1890,Unprovoked,NEW ZEALAND,North Island,"Lampton Harbour, Wellington",Swimming,soldier ,M,,FATAL,Y,,,"A. W. Parrott, p.68",1890.00.00.b-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.b-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.b-soldier.pdf,1890.00.00.b,1890.00.00.b,527,, +1890.00.00.a,Ca. 1890,1890,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Cape Vidal,Bathing,Zulu boy,M,,"FATAL, leg bitten, foot partly severed ",Y,15h30,,"J. Daniel, M. Levine, GSAF",1890.00.00.a-ZuluMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.a-ZuluMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.a-ZuluMale.pdf,1890.00.00.a,1890.00.00.a,526,, +1889.11.29.R,Reported 29-Nov-1889,1889,Invalid,GREECE,Northern Peloponnese,Patras,,,,,"Human remains found in 4m, 900 kg shark",,,,"C. Moore, GSAF",1889.11.29.R-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.29.R-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.29.R-Greece.pdf,1889.11.29.R,1889.11.29.R,525,, +1889.11.22,22-Nov-1889,1889,Unprovoked,AUSTRALIA,Queensland,Bowen,Fell into the water,E.J. Sharpe,M,,FATAL,Y,,,"Brisbane Courier, 11/26/1889",1889.11.22-Sharpe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.22-Sharpe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.22-Sharpe.pdf,1889.11.22,1889.11.22,524,, +1889.11.16,16-Nov-1889,1889,Invalid,USA,Hawaii,Honolulu,Parachuted from balloon,Joe Lawrence,M,,Speculated that he was taken by a shark but most likely drowned,Y,,,"NY Times, 11/24/1889 ",1889.11.16-Honolulu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.16-Honolulu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.16-Honolulu.pdf,1889.11.16,1889.11.16,523,, +1889.10.03.R,Reported 03-Oct-1889,1889,Unprovoked,INDIA,Tamil Nadu,Madras,Swimming,"B, a young English officer",M,,FATAL,Y,,,"Decatur Daily Republican, 10/3/1889",1889.10.03.R-Madras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.10.03.R-Madras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.10.03.R-Madras.pdf,1889.10.03.R,1889.10.03.R,522,, +1889.07.21,21-Jul-1889,1889,Unprovoked,USA,Florida,"Fernandina, Nassau County",Swimming,Eddie Roe,M,,"FATAL, calf bitten",Y,,,"NY Times, 7/22/1889",1889.07.21-Roe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.21-Roe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.21-Roe.pdf,1889.07.21,1889.07.21,521,, +1889.07.19, 19-Jul-1889,1889,Unprovoked,USA,Texas,West Bay near Galveston ,Fishing,John Bolling,M,,Leg bitten,N,07h30,18' shark,"Galveston Daily News, 7/21/1889",1889.07.19-Bolling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.19-Bolling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.19-Bolling.pdf,1889.07.19,1889.07.19,520,, +1889.07.08,08-Jul-1889,1889,Unprovoked,AUSTRALIA,Victoria,Port Phillip,Fell into the water,male,M,,FATAL ,Y,,,"Brisbane Courier, 7/9/1889",1889.07.08-PortPhillip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.08-PortPhillip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.08-PortPhillip.pdf,1889.07.08,1889.07.08,519,, +1889.01.31.R,Reported 31-Jan-1889,1889,Provoked,USA,Florida,Hillsborough Bay,Fishing,"rowboat, ",,,No injury to occupants. Gaffed shark capsized boat PROVOKED INCIDENT,N,,,"Timaru Herald, 1/31/1889",1889.01.31.R-Florida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.01.31.R-Florida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.01.31.R-Florida.pdf,1889.01.31.R,1889.01.31.R,518,, +1889.01.00,Jan-1889,1889,Unprovoked,SIERRA LEONE,Western Area,Freetown,Cleaning the side of a ship,English sailor,M,,FATAL,Y,,,"NY Times, 1/20/1889",1889.01.00-EnglishSailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.01.00-EnglishSailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.01.00-EnglishSailor.pdf,1889.01.00,1889.01.00,517,, +1888.12.25.R,Reported 25-Dec-1888,1888,Unprovoked,INDIAN OCEAN,Between Perth & Colombo,,Swimming,E. Burnside,M,,Foot severed,N,,,"West Australian, 12/25/1888",1888.12.25.R-Burnside.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.25.R-Burnside.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.25.R-Burnside.pdf,1888.12.25.R,1888.12.25.R,516,, +1888.12.09,09-Dec-1888,1888,Unprovoked,AUSTRALIA,New South Wales,"Iron Cove Bridge, Sydney (Estuary)",Swimming,Stephen Carter,M,11,FATAL,Y,13h00,,"G.P. Whitley (1951), p.192, citing Sydney Morning Herald, 12/10/ 1888 ",1888.12.09-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.09-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.09-Carter.pdf,1888.12.09,1888.12.09,515,, +1888.12.00,Dec-1888,1888,Unprovoked,AUSTRALIA,New South Wales,"Hawkesbury Bridge, Sydney",Working on the bridge when he fell into the river,Mr. Ryland,M,,FATAL,Y,,,"G.P. Whitley (1951), p.192, citing Sydney Morning Herald, 12/10/1888",1888.12.00-Ryland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.00-Ryland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.00-Ryland.pdf,1888.12.00,1888.12.00,514,, +1888.10.23.R,Reported 23-Oct-1888,1888,Unprovoked,CROATIA, Primorje-Gorski Kotar County,Rijeka,,,,,Human remains found in shark,Y,,5 mm 3500 kg female shark,"C. Moore, GSAF",1888.10.23.R-Croatia. Pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.10.23.R-Croatia. Pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.10.23.R-Croatia. Pdf,1888.10.23.R,1888.10.23.R,513,, +1888.08.14,14-Aug-1888,1888,Sea Disaster,CANADA,Nova Scotia,Off Sable Island,The steamships Thingvalla and Geiser collided,1 man,M,,FATAL,Y,Before daybreak,,"Aurora Daiy Express, 8/18/1888",1888.08.14-Geiser-passenger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.08.14-Geiser-passenger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.08.14-Geiser-passenger.pdf,1888.08.14,1888.08.14,512,, +1888.08.01.R,Reported 01-Aug-1888,1888,Boating,USA,New York,,Sailing,catboat. Occupants: Captain Tuppe & 2 young ladiesr,,,No injury to occupants. Shark beat away with oar,N,,,"The Ledger, 8/3/1888",1888.08.01-catboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.08.01-catboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.08.01-catboat.pdf,1888.08.01.R,1888.08.01.R,511,, +1888.07.20.R,Reported 20-Jul-1888,1888,Invalid,JAMAICA,,,Probabable drowning,,M,,Human remains recovered from a 10' to 12' shark caught in a turtle net,Y,,,"Otago Witness, 7/20/1888",1888.07.20.R-Jamaica-scavenging.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.20.R-Jamaica-scavenging.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.20.R-Jamaica-scavenging.pdf,1888.07.20.R,1888.07.20.R,510,, +1888.07.13.R,Reported 13-Jul-1888,1888,Sea Disaster,INDIA,Gujarat,Cutch Coast,The Dwarka foundered,6 crew,M,,"FATAL, only 1 of her crew of 7 survived",Y,,,"Otago Witness, 7/13/1888",1888.07.13.R-Dwarka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.13.R-Dwarka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.13.R-Dwarka.pdf,1888.07.13.R,1888.07.13.R,509,, +1888.07.04,04-Jul-1888,1888,Invalid,CROATIA,Lukovo,,,,,,Human remains & clothing found in 7' shark,Y,,,"C. Moore, GSAF",1888.07.04-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.04-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.04-Croatia.pdf,1888.07.04,1888.07.04,508,, +1888.06.24,24-Jun-1888,1888,Boating,AUSTRALIA,Victoria,Port Melbourne,Fishing,2 men,,,"No injury to occupants, shark holed boat",N,Evening,,"Taranaki Herald, 7/9/1888",1888.06.24-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.06.24-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.06.24-fishermen.pdf,1888.06.24,1888.06.24,507,, +1888.06.18.R,Reported 18-Jun-1888,1888,Invalid,AUSTRALIA,Victoria,"Point Cook, Port Phillip Bay",The cutter yacht Cutty Sark sank,"Claude Hadley, William Grundy, Albert Faulkner & Frederick Faulkner",M,,Probable drowning & scavenging,Y,,,"New York Times, 6/18/1888",1888.06.18-PortPhillip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.06.18-PortPhillip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.06.18-PortPhillip.pdf,1888.06.18.R,1888.06.18.R,506,, +1888.02.17,17-Feb-1888,1888,Unprovoked,NEW ZEALAND,South Island,Oamaru,Floating on his back,David Grant,M,,"Arm severely lacerated, surgically amputated",N,06h00,"Unknown, but the shark was caught and put on exhibition","R.D. Weeks, GSAF; K.C. McDonald; Evening Post (Wellington), 8/21/1937",1888.02.17-DavidGrant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.02.17-DavidGrant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.02.17-DavidGrant.pdf,1888.02.17,1888.02.17,505,, +1888.02.00,Feb-1888,1888,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Mzimvubu River mouth,Crossing the river mouth,male,M,,FATAL,Y,,,"Cape Mercantile Advertiser, 2/15/1888, M. Levine, GSAF",1888.02.00-Mzimvubu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.02.00-Mzimvubu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.02.00-Mzimvubu.pdf,1888.02.00,1888.02.00,504,, +1888.01.22,22-Jan-1888,1888,Boating,AUSTRALIA,New South Wales,Sydney Harbor,Rowing,Burke,M,,"Shark bit boat, but no injury to occupant who swam ashore",N,,,"Star, 1/23/1888",1888.01.22-Burke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.01.22-Burke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.01.22-Burke.pdf,1888.01.22,1888.01.22,503,, +1888.00.00,1888,1888,Unprovoked,LIBYA,Mediterranean Sea,Off Tripoli,Sponge diving,T riantafyllos,M,,Lacerations to thorax and hands,N,,,M. Bardanis,1888.00.00-Triantafyllos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.00.00-Triantafyllos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.00.00-Triantafyllos.pdf,1888.00.00,1888.00.00,502,, +1887.12.22.R,Reported 22-Dec-1887,1887,Unprovoked,HONDURAS,Cort�s,Off Puerto Cortez (Caribbean coast),Fell oveboard from steamer Wanderer,Carl Luhudahl,M,33,FATAL,Y,,,"Union County Journal, 12/22/1887",1887.12.22.R-Luhudahl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.12.22.R-Luhudahl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.12.22.R-Luhudahl.pdf,1887.12.22.R,1887.12.22.R,501,, +1887.12.04,04-Dec-1887,1887,Unprovoked,AUSTRALIA,New South Wales,"Ryde, Sydney (Estuary)",,Thomas Cochrane (William Charles Corkhill0,M,,FATAL,Y,11h30,12' to 14' shark,"G.P. Whitley (1951), p.192",1887.12.04-Cochrane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.12.04-Cochrane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.12.04-Cochrane.pdf,1887.12.04,1887.12.04,500,, +1887.10.18,18-Oct-1887,1887,Unprovoked,USA,Florida,"Between Lake Worth & Biscayne Bay, near Hillsboro","Crossing inlet in a boat, seen fighting sharks with his oar, sharks smashed boat","James F. Hamilton, a mail carrier",M,,FATAL,Y,,,"Evening Telegram, 11/5/1887",1887.10.18-Hamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.10.18-Hamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.10.18-Hamilton.pdf,1887.10.18,1887.10.18,499,, +1887.10.00,October 1887,1887,Sea Disaster,BAHAMAS,,,"Sea disaster, wreck of the Alfred Watts",Burgess & 2 seamen,M,,FATAL,Y,,,"New York Times, 12/23/1887 ",1887.10.00-Shipwreck-Alfred-Watts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.10.00-Shipwreck-Alfred-Watts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.10.00-Shipwreck-Alfred-Watts.pdf,1887.10.00,1887.10.00,498,, +1887.09.22,22-Sep-1887,1887,Unprovoked,ITALY,,Trieste,Swimming,Joseph Weissmantel,M,,Leg injured,N,,,"C. Moore, GSAF",1887.09.22-Weissmantel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.09.22-Weissmantel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.09.22-Weissmantel.pdf,1887.09.22,1887.09.22,497,, +1887.09.06,11-Sep-1887,1887,Invalid,CROATIA, Primorje-Gorski Kotar County,Kraljevica,,,,,Shoes & human remains found in a shark,Y,,,"C. Moore, GSAF",1887.09.06-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.09.06-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.09.06-Croatia.pdf,1887.09.06,1887.09.06,496,, +1887.03.12,12-Mar-1887,1887,Boating,AUSTRALIA,South Australia,Black Point,Rowing a dinghy,Mr. Boucaut & Mr. Harris,,,No injury to occupants,N,,13' shark,"New York Times, 5/16/1887",1887.03.12-dinghy-Black-Point.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.03.12-dinghy-Black-Point.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.03.12-dinghy-Black-Point.pdf,1887.03.12,1887.03.12,495,, +1887.02.08.R,Reported 08-Feb-1887,1887,Unprovoked,NEW ZEALAND,North Island,Kaipara,Swimming,a seaman from the Johann Brodersen,M,,FATAL,Y,,,"Bruce Herald, 2/8/1887",1887.02.08-Kaipara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.02.08-Kaipara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.02.08-Kaipara.pdf,1887.02.08.R,1887.02.08.R,494,, +1887.02.08,08-Feb-1887,1887,Provoked,SOUTH AFRICA,Western Cape Province,Blaauwberg,,boat,,,"Harpooned shark, bit boat, causing it to ship water. Boat reached shore in sinking condition PROVOKED INCIDENT",N,,4.7 m [15.5'] shark,GSAF,1887.02.08-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.02.08-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.02.08-boat.pdf,1887.02.08,1887.02.08,493,, +1887.01.20,20-Jan-1887,1887,Sea Disaster,BRAZIL,Alagoas,Macei�,The passenger ship Kapuna was run down the ore carrier Ada Melmore,Whittle,M,,FATAL,Y,03h00,,"Brisbane Courier, 4/14/1887",1887.01.20-Whittle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.01.20-Whittle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.01.20-Whittle.pdf,1887.01.20,1887.01.20,492,, +1887.01.12,12-Jan-1887,1887,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Mzimvubu River, 9.6 km from the sea",Swimming,Zangile,M,13,"FATAL, flesh removed hip to knee, calf & heel bitten ",Y,12h00,,"Cape Mercantile Advertiser, 1/25/1887, M. Levine, GSAF",1887.01.12-Zangile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.01.12-Zangile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.01.12-Zangile.pdf,1887.01.12,1887.01.12,491,, +1887.00.00,1887,1887,Sea Disaster,OCEAN,"Somewhere between Philadelphia and Hiogo, Japan",,British ship Macedon was thrown on her beam ends by a sudden squall,a ship's steward,M,,Foot severed,N,,,"Galveston Daily News, 2/11/1888",1887.00.00-Macedom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.00.00-Macedom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.00.00-Macedom.pdf,1887.00.00,1887.00.00,490,, +1886.08.00.c,Mid-Aug-1886,1886,Boating,USA, New Jersey,"Shrewsbury River, Highlands, Monmouth County",,"boat, occupants: 4 men",M,,"Shark attacked boat, shark killed & towed to shore",N,,Shark was said to �have a very rough ��-thick skin�,"R. Heyer, citing the Red Bank Register, 9/1/1886",1886.08.00.c-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.08.00.c-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.08.00.c-boat.pdf,1886.08.00.c,1886.08.00.c,489,, +1886.08.00.b,Mid-Aug-1886,1886,Provoked,USA,New Jersey,"Sandy Hook Bay, Highlands, Monmouth County","Netting menhaden, sharks caught in net",Boat of Captain Forman White,,,"No injury, sharks ripped net & bit boat PROVOKED INCIDENT",N,,,"R. Heyer, citing the Red Bank Register, 9/1/1886",1886.08.00.b-FormanWhite-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.08.00.b-FormanWhite-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.08.00.b-FormanWhite-boat.pdf,1886.08.00.b,1886.08.00.b,488,, +1886.08.00.a,Aug-1886,1886,Boating,USA,New Jersey,"Shrewsbury River, Highlands, Monmouth County",Clamming,John Parker & Edward Matthews,M,,"No injury. They were chased by three sharks, one of which rammed their boat",N,,3 m [10'] sharks,"R. Heyer citing the Red Bank Register, 9/1/1886",1886.08.00.a-Parker-Matthews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.08.00.a-Parker-Matthews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.08.00.a-Parker-Matthews.pdf,1886.08.00.a,1886.08.00.a,487,, +1886.06.17,17-Jun-1886,1886,Unprovoked,AUSTRALIA,Queensland,Off Bribie Heads,Swimming after being washed overboard,Lacoon,M,18,FATAL,Y,,,"Brisbane Courier, 6/21/1886",1886.06.17-Lacoon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.06.17-Lacoon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.06.17-Lacoon.pdf,1886.06.17,1886.06.17,486,, +1886.06.02,02-Jun-1886,1886,Invalid,USA,Hawaii,"Hamakua Homakua, Hawai'i","Fishing from shore, washed into the sea",2 women,F,,"The body of one woman had been bitten by a shark but it is not known if she was alive at the time, the other woman disappeared",Y,,,"G. H. Balazs & A. H. Kam; V.M. Coppleson (1958), p.259, J. Borg, p.68; L. Taylor (1993), pp.94-95",1886.06.02-Hamakua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.06.02-Hamakua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.06.02-Hamakua.pdf,1886.06.02,1886.06.02,485,, +1886.05.06,06-May-1886,1886,Unprovoked,NEW CALEDONIA,South Province,Noumea,Bathing,male,M,,FATAL,Y,12h00,,"Timaru Herald, 6/8/1886",1886.05.06-Noumea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.05.06-Noumea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.05.06-Noumea.pdf,1886.05.06,1886.05.06,484,, +1886.04.26,26-Apr-1886,1886,Unprovoked,AUSTRALIA,Queensland,Rothesay Bay,Oystering,male,M,,Wrist bitten,N,,,"The Capricornian, 5/1/1886",1886.04.26-RothesayBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.04.26-RothesayBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.04.26-RothesayBay.pdf,1886.04.26,1886.04.26,483,, +1886.04.11,11-Apr-1886,1886,Invalid,NEW ZEALAND,South Island,Near the mouth of the Clarence River,Sea disaster : Wreck of the Taiaroa,male,M,,Probable drowning & scavenging,Y,,,"Auckland Star, 4/24/1886",1886.04.11-TaiaroaShipwreck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.04.11-TaiaroaShipwreck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.04.11-TaiaroaShipwreck.pdf,1886.04.11,1886.04.11,482,, +1886.03.06.R,Reported 06-Mar-1886,1886,Invalid,NEW ZEALAND,South Island,Dunedin ,Bathing ,Rodwell,M,,Left leg severed. Probably confusion with GSAF 1886.01.28,N,,,"Feilding Star, 3/6/1886, p.2",1886.03.06-Rodwell-NZ.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.03.06-Rodwell-NZ.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.03.06-Rodwell-NZ.pdf,1886.03.06.R,1886.03.06.R,481,, +1886.03.00,Mar-1886,1886,Invalid,AUSTRALIA,New South Wales,"Dobroyd Head, Watson Bay, Sydney",He drowned when boat capsized,James Barefoot,M,,His body was found in a tiger shark; next day other human remains found in sharks at Berry's Bay ,Y,,,"Evening Post, 4/7/1886; G.P. Whitley (1951), p.192",1886.03.00-Barefoot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.03.00-Barefoot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.03.00-Barefoot.pdf,1886.03.00,1886.03.00,480,, +1886.02.13.R,13-Feb-1886,1886,Boating,AUSTRALIA,Victoria,Mordialloc,Fishing,20' boat; occupants: John Wright & a friend,M,,"No injury to occupants, shark shook boat ""stem to stern""",N,,,"Evening Post, 2/13/1886",1886.02.13.R-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.02.13.R-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.02.13.R-Wright.pdf,1886.02.13.R,1886.02.13.R,479,, +1886.01.28,28-Jan-1886,1886,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"South Jetty, Port Elizabeth",Diving off jetty,Mr. Rodwell,M,,"Chest & buttocks bitten, left leg severed at knee",N,07h00,,"Eastern Province Herald, 1/28/1886; M. Levine, GSAF ",1886.01.28-Rodwell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.28-Rodwell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.28-Rodwell.pdf,1886.01.28,1886.01.28,478,, +1886.01.26,26-Jan-1886,1886,Unprovoked,AUSTRALIA,Queensland,,Diving alongsidethe steamship Ranelagh ,John Byrne,M,,Foot bitten,N,,,"Brisbane Courier, 1/27/1886",1886.01.26-Byrne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.26-Byrne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.26-Byrne.pdf,1886.01.26,1886.01.26,477,, +1886.01.01,01-Jan-1886,1886,Unprovoked,SOUTH AFRICA,Western Cape Province,Groot River,Swimming,Dr. James Woolby,M,,"FATAL. He threw up his hands, shrieked and disappeared. Partial remains washed ashore the next day",Y,,,"P. Logan; M. Levine, GSAF",1886.01.01-Woolby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.01-Woolby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.01-Woolby.pdf,1886.01.01,1886.01.01,476,, +1886.00.00,1886,1886,Unprovoked,AUSTRALIA,New South Wales,Sydney Harbor,Sailing,male,M,,Leg severed,N,Afternoon,,"I. M. Sigismund, M.D.",1886.00.00-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.00.00-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.00.00-Sydney.pdf,1886.00.00,1886.00.00,475,, +1885.11.26.R,Reported 26-Nov-1885,1885,Boating,AUSTRALIA,Queensland,Brisbane ,,"boat, occupant John Bishop",,,"No injury to occupant, shark bit off section of the boat's rudder",N,,15' shark,"Brisbane Courier, 11/26/1885",1885.11.26.R-Bishop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.11.26.R-Bishop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.11.26.R-Bishop.pdf,1885.11.26.R,1885.11.26.R,474,, +1885.11.26,26-Nov-1885,1885,Unprovoked,AUSTRALIA,Western Australia,Bunbury,Bathing,A.Y. Glyde,M,,Laceration to calf,N,Evening,,"The West Australia, 12/2/1885",1885.11.26.a-Glyde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.11.26.a-Glyde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.11.26.a-Glyde.pdf,1885.11.26,1885.11.26,473,, +1885.08.17,17-Aug-1885,1885,Unprovoked,ATLANTIC OCEAN,,,Fell or jumped overboard from the liner Rhynland,J.R. Loesch,M,,FATAL,Y,,,"New York Times, 8/27/1885",1885.08.17-Loesch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.08.17-Loesch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.08.17-Loesch.pdf,1885.08.17,1885.08.17,472,, +1885.07.26.c,26-Jul-1885,1885,Sea Disaster,USA,Hawaii,Kau District,Wreck of the schooner Pohoiki ,sailor,M,,Left arm severed,N,,,"Hawaiian Gazette, 8124/1885",1885.07.26-b-Schooner-crew-1.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26-b-Schooner-crew-1.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26-b-Schooner-crew-1.pdf,1885.07.26.c,1885.07.26.c,471,, +1885.07.26.b,26-Jul-1885,1885,Sea Disaster,USA,Hawaii,Kau District,Wreck of the schooner Pohoiki ,sailor ,M,,Laceration to torso,N,,,"Hawaiian Gazette, 8124/1885",1885.07.26.c-Schooner-crew-2.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26.c-Schooner-crew-2.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26.c-Schooner-crew-2.pdf,1885.07.26.b,1885.07.26.b,470,, +1885.07.26.a,26-Jul-1885,1885,Sea Disaster,USA,Hawaii,Kau District,Wreck of the schooner Pohoiki ,Captain Mark Robinson,M,,FATAL,Y,,,"Hawaiian Gazette, 8/24/1885",1885.07.26.a-CaptainRobinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26.a-CaptainRobinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26.a-CaptainRobinson.pdf,1885.07.26.a,1885.07.26.a,469,, +1885.04.16.R,Reported 16-Apr-1885,1885,Unprovoked,,,,Swimming,2 males,M,,FATAL,Y,,," Gleaner (Jamaica), 4/16/1885",1885.04.16.R-GermanShip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.04.16.R-GermanShip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.04.16.R-GermanShip.pdf,1885.04.16.R,1885.04.16.R,468,, +1885.04.09,09-Apr-1885,1885,Unprovoked,NEW ZEALAND,North Island,Auckland,Bathing,Pahi,M,,Lacerations to lower leg,N,,,"Grey River Argus,4/18/185",1885.04.09-Pahi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.04.09-Pahi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.04.09-Pahi.pdf,1885.04.09,1885.04.09,467,, +1885.03.28,28-Mar-1885,1885,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Kokstad District,Fishing,"boat, occupant: Mr. Anderson",M,,"No injury to occupant, rammed oar in shark's mouth and it bit the oar ",N,,3 m [10'] shark,"South African Illustrated News, 3/28/1885",1885.03.28-oar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.03.28-oar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.03.28-oar.pdf,1885.03.28,1885.03.28,466,, +1884.12.13,13-Dec-1884,1884,Sea Disaster,AUSTRALIA,South Australia,Port Phillip,yachting accident,Willaim Browne,M,,"Cause of death most likely drowning, remains recovered in shark",Y,,14' shark,"The Argus, 12/29/1884",1884.12.13-Browne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.12.13-Browne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.12.13-Browne.pdf,1884.12.13,1884.12.13,465,, +1884.12.08.R,Reported 08-Dec-1884,1884,Provoked,FRANCE,C�te d'Azur ,Between Nice & Villefranche,,child,F,,FATAL Leg severed by harpooned shark PROVOKED INCIDENT,Y,02h00,10' shark,"North Otago Times, 12/8/1884",1884.12.08.R-France.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.12.08.R-France.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.12.08.R-France.pdf,1884.12.08.R,1884.12.08.R,464,, +1884.08.28.R.,Reported 28-Aug-1884,1884,Unprovoked,USA,New Jersey,"Bayonne, Hudson County",Boating,Edward Monroe,M,,Hand bitten,N,,,"Atlanta Contitution, 8/28/1884",1884.08.28.R-EdwardMonroe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.08.28.R-EdwardMonroe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.08.28.R-EdwardMonroe.pdf,1884.08.28.R.,1884.08.28.R.,463,, +1884.08.18,18-Aug-1884,1884,Invalid,USA,New York,Jamaica Bay,Clamming,Stephen Rylor,M,,Unclear if he sustained any injury from the shark,N,,7' shark,"New York Times, 8/20/1884",1884.08.18-Rylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.08.18-Rylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.08.18-Rylor.pdf,1884.08.18,1884.08.18,462,, +1884.01.16,16-Jan-1884,1884,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"South Jetty, Port Elizabeth",Swimming,Mr. Meyer,M,,FATAL,Y,,,"Port Elizabeth Herald, 1/23/1884, M. Levine, GSAF",1884.01.16-Meyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.01.16-Meyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.01.16-Meyer.pdf,1884.01.16,1884.01.16,461,, +1884.01.14,14-Jan-1884,1884,Unprovoked,AUSTRALIA,South Australia,"Port Pirie, Spencer Gulf, 230 km north of Adelaide",Fell overboard,Miss Warren,F,,FATAL,Y,,Said to involve 2 sharks,"G.P. Whitley (1951), p. 192, citing the Register (S.A.), 12/9/1925; V.M. Coppleson (1958), p.107; A. Sharpe, p.119",1884.01.14-Warren.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.01.14-Warren.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.01.14-Warren.pdf,1884.01.14,1884.01.14,460,, +1883.12.19,19-Dec-1883,1883,Unprovoked,AUSTRALIA,New South Wales,Parramatta River,Swimming,Cuthbert Vere Lysaght,M,21,FATAL,Y,12h00,,"West Australian, 12/22/1883",1883.12.19-Lysaght.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.12.19-Lysaght.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.12.19-Lysaght.pdf,1883.12.19,1883.12.19,459,, +1883.09.14.R,Reported 14-Sep-1883 (probably happened Ca. 1843/1844),1883,Unprovoked,AUSTRALIA,Tasmania,Between Port Arthur Penal Colony & Forestier Peninsula,Swimming / escaping imprisonment ,Owen,M,,FATAL,Y,,,"C. Black, GSAF; Bruce Herald, 9/14/1993",1883.09.14.R-Owen-the-Bushranger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.09.14.R-Owen-the-Bushranger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.09.14.R-Owen-the-Bushranger.pdf,1883.09.14.R,1883.09.14.R,458,, +1883.07.05,05-Jul-1883,1883,Provoked,GEORGIA,,"Savannah River, Chatham County",Fishing for sharks,male,M,,Leg injured by hooked shark PROVOKED INCIDENT,N,,7' shark,"Savannah Times, 7/13/1883",1883.07.05-Savannah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.07.05-Savannah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.07.05-Savannah.pdf,1883.07.05,1883.07.05,457,, +1883.02.26.R,Reported 26-Feb-1883,1883,Unprovoked,AUSTRALIA,Northern Territory,the pearling beds,Diving,male,M,,Arm severed,N,,,"The Queenslander, 3/3/1883",1883.02.26.R-PearlDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.02.26.R-PearlDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.02.26.R-PearlDiver.pdf,1883.02.26.R,1883.02.26.R,456,, +1883.02.25.R,Reported 25-Feb-1883,1883,Unprovoked,AUSTRALIA,Northern Territory,the pearling beds,Diving,male,M,,FATAL,Y,,,"The Queenslander, 3/3/1883",1883.02.25.R-Pearl-Diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.02.25.R-Pearl-Diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.02.25.R-Pearl-Diver.pdf,1883.02.25.R,1883.02.25.R,455,, +1883.01.21,21-Jan-1883,1883,Unprovoked,AUSTRALIA,New South Wales,"Iron Cove, Sydney",Bathing,John Eaton,M,37,FATAL,Y,05h30,,"Maitland Mercury, 1/23/1883",1883.01.21-Eaton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.01.21-Eaton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.01.21-Eaton.pdf,1883.01.21,1883.01.21,454,, +1883.00.00.d,1883,1883,Unprovoked,PACIFIC OCEAN,,,Fishing,"male, a cook",M,,"FATAL, remains recovered from 2 sharks",Y,,14' shark,"Freeborn County Standard, 11/14/1883",1883.00.00.d-cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.d-cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.d-cook.pdf,1883.00.00.d,1883.00.00.d,453,, +1883.00.00.c,Summer of 1883,1883,Unprovoked,USA,Florida,"Fort Pickens, Escambia County",Fell overboard,the Captain�s boy,M,,FATAL,Y,,,"St Joseph Herald, 7/12/1884",1883.00.00.c-CaptainsBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.c-CaptainsBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.c-CaptainsBoy.pdf,1883.00.00.c,1883.00.00.c,452,, +1883.00.00.b,1883,1883,Invalid,USA,South Carolina,"Bull�s Bay, near Charleston",,adult male,M,,"Body found with arm severed by shark, but shark involvement prior to death was uncomfirmed",Y,,,"W.H. Gregg, p.21; SAF Case #910",1883.00.00.b-BullsBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.b-BullsBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.b-BullsBay.pdf,1883.00.00.b,1883.00.00.b,451,, +1883.00.00.a,1883,1883,Unprovoked,USA,South Carolina,,,an aeronaut,M,,FATAL,Y,,a school of sharks,"W.H. Greg, p.22",1883.00.00.a-aeronaut.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.a-aeronaut.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.a-aeronaut.pdf,1883.00.00.a,1883.00.00.a,450,, +1882.12.03,03-Dec-1882,1882,Provoked,NEW ZEALAND,South Island,New Brighton,Restraining a beached shark,Mr. Hill,M,,Hand severely nipped PROVOKED INCIDENT ,N,,4' to 5' shark,"The Star, 12/4/1882",1882.12.03-Hill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.12.03-Hill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.12.03-Hill.pdf,1882.12.03,1882.12.03,449,, +1882.11.12.b,12-Nov-1882,1882,Unprovoked,NEW ZEALAND,North Island,"Tararu, Thames",Bathing,Arthur Evans,M,,Sole of foot bitten,N,Morning,,"Colonist, 11/22/1882",1882.11.12.b-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.11.12.b-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.11.12.b-Evans.pdf,1882.11.12.b,1882.11.12.b,448,, +1882.11.12.a,12-Nov-1882,1882,Unprovoked,NEW ZEALAND,North Island,"Tararu, Thames",Bathing,William Connerly,M,,Lacerations to thigh,N,Morning,,"Colonist, 11/22/1882",1882.11.12.a-Connerly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.11.12.a-Connerly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.11.12.a-Connerly.pdf,1882.11.12.a,1882.11.12.a,447,, +1882.09.00,Sep-1882,1882,Unprovoked,JAPAN,,,Clinging to shipwrecked junk,Japanese fisherman,M,,Lacerations to elbows & knees,N,,,"Launceston Examiner, 6/21/1883 ",1882.09.00-JapaneseFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.09.00-JapaneseFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.09.00-JapaneseFisherman.pdf,1882.09.00,1882.09.00,446,, +1882.05.14,14-May-1882,1882,Unprovoked,AUSTRALIA,New South Wales,Millers Point,Fell overboard,John Clare,M,,Laceration to calf,N,Afternoon,,"Launceston Examiner, 5/20/1882 ",1882.05.14-Clare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.05.14-Clare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.05.14-Clare.pdf,1882.05.14,1882.05.14,445,, +1882.05.12.R,Reported 12-May-1882,1882,Unprovoked,AUSTRALIA,,,Pearl diving,a Malay diver,M,,FATAL Torso bitten,Y,,,"West Australian, 5/12/1882",1882.05.12.R-MalayDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.05.12.R-MalayDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.05.12.R-MalayDiver.pdf,1882.05.12.R,1882.05.12.R,444,, +1882.04.15,15-Apr-1882,1882,Unprovoked,AUSTRALIA,New South Wales,Lake Macquarie,Fishing,,M,,FATAL,Y,,,"The Mercury, 4/25/1882",1882.04.15-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.04.15-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.04.15-fisherman.pdf,1882.04.15,1882.04.15,443,, +1882.02.07.R,Reported 07-Feb-1882,1882,Unprovoked,AUSTRALIA,,,Pearl diving,a native diver,M,,FATAL Thigh bitten,Y,,,"West Australian, 3/28/1882",1882.02.07.R-PearlDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.02.07.R-PearlDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.02.07.R-PearlDiver.pdf,1882.02.07.R,1882.02.07.R,442,, +1882.01.23.R,Reported 23-Jan-1882,1882,Unprovoked,AUSTRALIA,New South Wales,"Darling Harbor, Sydney",Bathing,George Sinclair,M,,FATAL,Y,,,"Brisbane Courier, 1/24/1882",1882.01.23.R-Sinclair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.01.23.R-Sinclair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.01.23.R-Sinclair.pdf,1882.01.23.R,1882.01.23.R,441,, +1882.00.00.b,1882,1882,Unprovoked,USA,Florida,"In the bay near the naval yard at Pensacola, Escambia County","During ""an exhibition"" he was tied in sack & thrown overboard ",John T. Clark,M,,"No injury, sack rammed by shark & shark harassed him when he surfaced",N,,,"The Sun; Iowa City Citizen, 9/15/1910",1882.00.00.b-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.00.00.b-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.00.00.b-Clark.pdf,1882.00.00.b,1882.00.00.b,440,, +1882.00.00.a,1882,1882,Unprovoked,AUSTRALIA,Queensland,Maryborough,,male,M,,Survived,N,,,"V.M. Coppleson (1958), p.453; G.P. Whitley (1940), p.453; J. Green, p.31",1882.00.00.a-Maryborough.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.00.00.a-Maryborough.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.00.00.a-Maryborough.pdf,1882.00.00.a,1882.00.00.a,439,, +1881.11.13,13-Nov-1881,1881,Invalid,AUSTRALIA,New South Wales,"Johnstone's Bay, Sydney",Swimming,John Sullivan,M,,Shark involvement suspected but not confirmed,N,Evening,,"Maitland Mercury & Hunter River General Advertiser, 11/15/1881",1881.11.13-Sullivan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.11.13-Sullivan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.11.13-Sullivan.pdf,1881.11.13,1881.11.13,438,, +1881.10.16,16-Oct-1881,1881,Invalid,USA,Florida,"Pensacola Bay, Escambia County",Bathing,Anthony McDonald,M,18,Shark involvement prior to death unconfirmed,Y,,,"Pensacola Gazette, 10/18/1881; Fort Wayne Daily Gazette,11/2/1881 ",1881.10.16-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.10.16-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.10.16-McDonald.pdf,1881.10.16,1881.10.16,437,, +1881.09.05,05-Sep-1881,1881,Unprovoked,USA,North Carolina,"Elizabeth City, Pasquotank County ",Bathing,Frank G. Hines,M,,"FATAL, possible post-mortem bites",Y,A.M.,,"C. Creswell, GSAF",1881.09.05-Hines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.09.05-Hines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.09.05-Hines.pdf,1881.09.05,1881.09.05,436,, +1881.08.16.R,Reported 16-Aug-1881,1881,Unprovoked,,Western Banks,,"Floating, holding onto an oar after dory capsized",George Sedgwick,M,20,FATAL,Y,,,"Lewiston Evening Journal, 8/16/1881",1881.08.16.R-Sedgwick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.08.16.R-Sedgwick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.08.16.R-Sedgwick.pdf,1881.08.16.R,1881.08.16.R,435,, +1881.08.12,12-Aug-1881,1881,Unprovoked,USA,Rhode Island,Providence,Swimming,Jerry Lowney,M,,"No injury, overalls ripped by shark",N,,,Providence Journal 8/15/1881,1881.08.12-Lowney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.08.12-Lowney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.08.12-Lowney.pdf,1881.08.12,1881.08.12,434,, +1881.06.25,25-Jut-1881,1881,Unprovoked,,,Santa Cruz,Bathing,Father Hudson,M,,Survived,N,,,"Grey River Argus,10/3/1881, p.2",1881.06.25-FatherHudson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.06.25-FatherHudson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.06.25-FatherHudson.pdf,1881.06.25,1881.06.25,433,, +1881.06.13,13-Jun-1881,1881,Unprovoked,USA,Alabama,Mobile Bay,Fell overboard,William Smith,M,23,FATAL,Y,,,"Mobile Register, 7/14/1881; NY Times, 7/17/1881",1881.06.13-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.06.13-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.06.13-Smith.pdf,1881.06.13,1881.06.13,432,, +1881.00.00.b,1881,1881,Unprovoked,INDIA,,"At Panihattu, Barrackpore, Dackhineshwar, Barahonagore, Kashipur & Chitpur down to Baug Bazar ghats",,,,,"""More than 20 persons severely bitten by sharks this year. Almost all were fatal""",Y,,,"A.C. Kastagir, Asst. Surgeon in the Indian Medical Gazette, 4/1/1881, pp.105-106; G.A. Llano, p.142, V.M. Coppelson (1958), p.261 ",1881.00.00.b-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.00.00.b-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.00.00.b-India.pdf,1881.00.00.b,1881.00.00.b,431,, +1881.00.00.a,Ca. 1881,1881,Boating,ITALY,Sicily,Stretto di Messina,Fishing on a boat,male,M,,Non-Fatal,N,,White sharks,A. De Maddalena; Doderlein (1881),1881.00.00.a-Italy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.00.00.a-Italy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.00.00.a-Italy.pdf,1881.00.00.a,1881.00.00.a,430,, +1880.11.25,25-Nov-1880,1880,Unprovoked,AUSTRALIA,Queensland,"Petrie Bight, Brisbane River",Swimming,Alexey Drury,M,12,"Feet bitten, surgically amputated FATAL",Y,Afternoon,Bull shark,"Bucks County Gazette, 2/10/1881, Sunday Mail (QLD), 3/27/1994, p.107",1880.11.25-AlexeyDrury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.11.25-AlexeyDrury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.11.25-AlexeyDrury.pdf,1880.11.25,1880.11.25,429,, +1880.10.10,10-Oct-1880,1880,Sea Disaster,AUSTRALIA,New South Wales,Bermagui,Traveling by boat,The Lamont Young party,M,,"Disappeared, thought to have murdered or drowned or taken by a sharks after entrails washed ashore",Y,,,"Sydney Morning Herald, 10/26/1880",1880.10.10-Lamont-Young-Party.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.10.10-Lamont-Young-Party.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.10.10-Lamont-Young-Party.pdf,1880.10.10,1880.10.10,428,, +1880.08.08,08-Aug-1880,1880,Unprovoked,MOZAMBIQUE,,,Swimming to retrieve a flannel,Farejallah,M,,Legs severed FATAL,Y,11h45,,"Newfoundlander (NZ), 11/5/1880",1880.08.08-Farejallah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.08.08-Farejallah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.08.08-Farejallah.pdf,1880.08.08,1880.08.08,427,, +1880.07.25,25-Jul-1880,1880,Boating,USA,New York,The Narrows,Sailing,Captain Aleck Robertson,M,,"Shark bit stern, no injury to occupant",N,15h00,10' shark,"The Sun, 7/26/1880",1880.07.25-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.07.25-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.07.25-Robertson.pdf,1880.07.25,1880.07.25,426,, +1880.05.15,15-May-1880,1880,Unprovoked,INDIA,West Bengal,Ganges River,,"Sutto Cumar Mukerjea, a.k.a. Haboo",M,20,"Left hand severed, arm & right calf injured",N,11h00,,"A.C. Kastagir, surgeon; G.A. Llano, p.142, V.M. Coppelson (1958), p.261 ",1880.05.15-Haboo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.15-Haboo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.15-Haboo.pdf,1880.05.15,1880.05.15,425,, +1880.05.14,14-May-1880,1880,Unprovoked,INDIA,West Bengal,Hoogly River,Bathing in river,a widow,F,60,"Hands, forearm & left thigh lacerated, radial artery severed",N,,,"V.M. Coppleson (1958), p.261, G.A. Llano, pp.139-142]",1880.05.14-Widow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.14-Widow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.14-Widow.pdf,1880.05.14,1880.05.14,424,, +1880.05.07.R,Reported 07-May-1880,1880,Invalid,MEXICO,Guerro,Acapulco,,A.H.C.,M,,"Human remains recovered from a 15' shark, probable scavenging",Y,,,"Dover Weekly Argus, 5/7/1880",1880.05.07.R-AHC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.07.R-AHC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.07.R-AHC.pdf,1880.05.07.R,1880.05.07.R,423,, +1880.05.02.b,02-May-1880,1880,Unprovoked,INDIA,West Bengal,(Calcutta?),Bathing in river,Sasti,M,,"FATAL, left forearm & hand bitten, brachial artery severed, died of secondary hemorrhage 11 days later ",Y,12h00,,"V.M. Coppleson (1958), p.260, G.A. Llano, pp. 138-139]",1880.05.02.b-Sasti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.02.b-Sasti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.02.b-Sasti.pdf,1880.05.02.b,1880.05.02.b,422,, +1880.05.02.a,02-May-1880,1880,Unprovoked,INDIA,West Bengal,"Panihati, 4 miles south of Barrackpore on the Hoogly River",Bathing,"N., a native boy",M,11,"FATAL, right leg severed at mid-thigh, femur severed ",Y,10h00,,"V.M. Coppleson (1958), p.260, G.A. Llano, pp.137-138 ",1880.05.02.a-N.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.02.a-N.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.02.a-N.pdf,1880.05.02.a,1880.05.02.a,421,, +1880.01.22,22-Jan-1880,1880,Boating,AUSTRALIA,New South Wales,"Chowder Bay, Sydney",Fishing,"boat, Occupants: William Smith & Thomas Martin",,,"No injury to occupants, shark rammed boat",N,13h00,12' shark,"G.P. Whitley (1951), p.192, citing Sydney Morning Herald 1/24/1880 ",1880.01.22-ChowderBayBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.01.22-ChowderBayBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.01.22-ChowderBayBoat.pdf,1880.01.22,1880.01.22,420,, +1880.01.03,03-Jan-1880,1880,Unprovoked,AUSTRALIA,New South Wales,Cooranbong,Bathing,Teresa Bonnell,F,13,Lacerations to leg,N,,,"Morning Bulletin, 1/28/1880",1880.01.03-Bonnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.01.03-Bonnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.01.03-Bonnell.pdf,1880.01.03,1880.01.03,419,, +1880.00.00.e,1880?,1880,Invalid,SYRIA,,,Diving for sponges,male,M,,FATAL but shark involvement in death unconfirmed,Y,,,"C. Moore, GSAF",1898.00.00.R-Syria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.R-Syria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.R-Syria.pdf,1880.00.00.e,1880.00.00.e,418,, +1880.00.00.d,Ca. 1880,1880,Invalid,USA,Florida,"Hutchinson Island, Martin County",,"""Old Cuba""",M,,"Drowned, body scavenged by shark",Y,,,History of Martin County by J. Hutchinson,1880.00.00.d-OldCuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.00.00.d-OldCuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.00.00.d-OldCuba.pdf,1880.00.00.d,1880.00.00.d,417,, +1880.00.00.c,Ca. 1880,1880,Unprovoked,SOLOMON ISLANDS,Guadalcanal Province,Guadalcanal,,boy,M,,"Arm & leg severed, survived ",N,,,"C.M. Woodford, page 35",1880.00.00.c-Guadalcanal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.00.00.c-Guadalcanal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.00.00.c-Guadalcanal.pdf,1880.00.00.c,1880.00.00.c,416,, +1880.00.00.a,1880,1880,Unprovoked,NEW ZEALAND,South Island,Campbell�s Point,,male,M,,Recovered,N,,,"Coppleson (1958), p.262 ",1880.00.00.a-CampbellsPoint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.00.00.a-CampbellsPoint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.00.00.a-CampbellsPoint.pdf,1880.00.00.a,1880.00.00.a,415,, +1879.12.24,24-Dec-1879,1879,Unprovoked,INDIA,Andaman Islands,Port Blair,Swimming,Kenney,M,23,FATAL,Y,,3 sharks,"Elyria Republican, 3/18/1880",1879.12.24-Kenney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.12.24-Kenney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.12.24-Kenney.pdf,1879.12.24,1879.12.24,414,, +1879.11.10,10-Nov-1879,1879,Unprovoked,AUSTRALIA,New South Wales,Clarence Heads,Swimming,Goddard,M,,Thigh bitten,N,,,"Maitland Mercury & Hunter River General Advertiser, 11/18/1879",1879.11.10-Goddard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.11.10-Goddard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.11.10-Goddard.pdf,1879.11.10,1879.11.10,413,, +1879.09.22, 22-Sep-1879,1879,Provoked,SPAIN,Valencia,Castellon de la Plana,Fishing,,,,"No injuries to occupants, Hooked shark bit boat PROVOKED INCIDENT",N,,2.5 m shark,C. Moore,1879.09.22-Castellon-de-la-Plana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.09.22-Castellon-de-la-Plana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.09.22-Castellon-de-la-Plana.pdf,1879.09.22,1879.09.22,412,, +1879.08.30.R,Reported 30-Aug-1879,1879,Sea Disaster,FIJI,Lau Group,Totoya ,,male + 20,M,,"Severely bitten on heel, 20 others taken by sharks",N,,,"Wagga Wagga Advertiser, 8/30/1879",1879.08.30.R-Totoya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.08.30.R-Totoya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.08.30.R-Totoya.pdf,1879.08.30.R,1879.08.30.R,411,, +1879.07.03,3-Jul-1879,1879,Unprovoked,USA,California,"Los Angeles, Los Angeles County",Bathing,John Fry,M,,No details,N,,,"Reno Evening Gazette, 7/11/1879",1879.07.03-JohnFry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.07.03-JohnFry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.07.03-JohnFry.pdf,1879.07.03,1879.07.03,410,, +1879.03.19,19-Mar-1879,1879,Unprovoked,NEW ZEALAND,North Island,Napier,Standing,Michal O'Neill,M,19,FATAL,Y,,,"Star, 3/20/1879",1879.03.19-O'Neill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.03.19-O'Neill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.03.19-O'Neill.pdf,1879.03.19,1879.03.19,409,, +1879.03.10,10-Mar-1879,1879,Invalid,AUSTRALIA,New South Wales,Near Sydney ,The steamship Bonnie Dundee lost in collision,Cabin boy of the Bonnie Dundee,M,,Partial remains found in shark,Y,,,"Star, 3/22/1879",1879.03.10-Bonnie-Dundee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.03.10-Bonnie-Dundee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.03.10-Bonnie-Dundee.pdf,1879.03.10,1879.03.10,408,,change filename +1879.00.00,1879,1879,Unprovoked,USA,Mississippi,River mouth,Floating with life buoy after pilot launch capsized,Gus Ericsson,M,,FATAL,Y,,Tiger shark,"Indiana County Gazette, 10/3/1900",1879.00.00-Ericsson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.00.00-Ericsson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.00.00-Ericsson.pdf,1879.00.00,1879.00.00,407,, +1878.11.17,17-Nov-1878,1878,Unprovoked,AUSTRALIA,New South Wales,"Lane Cove River, Sydney Harbor ",Bathing,Mr. Meares,M,,Laceration to leg,N,, a small shark,"The Mercury, 11/22/1878",1878.11.17-Meares.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.11.17-Meares.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.11.17-Meares.pdf,1878.11.17,1878.11.17,406,, +1878.10.24.R,Reported 24-Oct-1878,1878,Unprovoked,INDONESIA,East Java,Probolinggo,Swimming,Owen,M,,FATAL,Y,,15' shark,"Hartford Weekly Times, 10/24/1878",1878.10.24.R-Owen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.10.24.R-Owen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.10.24.R-Owen.pdf,1878.10.24.R,1878.10.24.R,405,, +1878.10.13,13-Oct-1878,1878,Unprovoked,,,,Jumped overboard after murdering 2 shipmates,Sherrington,M,,FATAL,Y,,,"The Maitland Mercury & Hunter River General Advertiser, 1/28/1879",1878.10.13-Sherrington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.10.13-Sherrington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.10.13-Sherrington.pdf,1878.10.13,1878.10.13,404,, +1878.09.14.R,Reported 14-Sep-1878,1878,Provoked,USA,Connecticut,"Branford, New Haven County",Fishing,Captain Pattison,M,,Leg bitten by netted shark PROVOKED INCIDENT,N,,,"St. Joseph Herald, 9/14/1878",1878.09.14.R-Pattison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.14.R-Pattison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.14.R-Pattison.pdf,1878.09.14.R,1878.09.14.R,403,, +1878.09.02.b,02-Sep-1878,1878,Sea Disaster,SOUTH ATLANTIC OCEAN,Off the coast of West Africa,,Boat with 5 men capsized while returning to the Amerique,Antonio du Val,M,, Du Val's leg was bitten but he survived,N,,,"Brisbane Courier, 11/19/1878",1878.09.02.b-Amerique-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.02.b-Amerique-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.02.b-Amerique-boy.pdf,1878.09.02.b,1878.09.02.b,402,, +1878.09.02.a,02-Sep-1878,1878,Sea Disaster,SOUTH ATLANTIC OCEAN,Off the coast of West Africa,,Boat with 5 men capsized while returning to the Amerique,,M,,"FATAL, 2 of the crew were killed by sharks",Y,,,"Brisbane Courier, 11/19/1878",1878.09.02.a-Amerique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.02.a-Amerique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.02.a-Amerique.pdf,1878.09.02.a,1878.09.02.a,401,, +1878.08.09,09-Aug-1878,1878,Unprovoked,USA,New York,East River,Swimming,Cole,M,,FATAL?,Y,Afternoon,8' shark,"Daily Kennebec Journal, 8/10/1878",1878.08.09-Cole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.08.09-Cole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.08.09-Cole.pdf,1878.08.09,1878.08.09,400,, +1878.08.08,08-Aug-1878,1878,Unprovoked,USA,New York,Brooklyn,Swimming,George Gates,M,14,FATAL,Y,Afternoon,,"NY Times, 8/9 & 8/16/1878",1878.08.08-Gates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.08.08-Gates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.08.08-Gates.pdf,1878.08.08,1878.08.08,399,, +1878.06.10,10-Jun-78,1878,Unprovoked,PHILIPPINES,Misamis Oriental,Cagayan de Oro,,Dolores Margarita Corrales y Roa,F,,FATAL,Y,,,"A.J. Montalvan II, Philippine Daily Inquirer, 12/24/2011",1878.06.10-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.06.10-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.06.10-Philippines.pdf,1878.06.10,1878.06.10,398,, +1878.03.30.R,Reported 30-March-1878,1878,Unprovoked,NEW GUINEA,,,,,M,,"""Fearfully injured""",N,,,"Hawkes Bay Herald, 4/16/1878",1878.03.30.R-NewGuinea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.03.30.R-NewGuinea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.03.30.R-NewGuinea.pdf,1878.03.30.R,1878.03.30.R,397,, +1878.02.13,13-Feb-1878,1878,Sea Disaster,SOUTH AFRICA,Western Cape Province,Olifantbos Point,Wreck of the Union Steamship Company 982-ton iron steamer Kafir,An Arab who had been with Stanley when he met Livingstone,M,,"FATAL, shark removed large part of his hip",Y,,,"M. Levine, GSAF; Times of Natal, 3/15/1878 ",1878.02.13-Kafir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.02.13-Kafir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.02.13-Kafir.pdf,1878.02.13,1878.02.13,396,, +1878.00.00,1878,1878,Unprovoked,AUSTRALIA,New South Wales,"Balmain, Sydney (Estuary)",Bathing in 2 feet of water,boy,M,11,"FATAL, leg severed ",Y,,,"G.P. Whitley, ref Dr. Cleland, Med. Journal Australia, 10/4/1924; J. Green, p.31",1878.00.00-Balmain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.00.00-Balmain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.00.00-Balmain.pdf,1878.00.00,1878.00.00,395,, +1877.12.15.R,Reported 15-Dec-1877,1877,Sea Disaster,FIJI,,,,a male & a female,,,FATAL,Y,,,"Australian Town & Country Journal, 12/15/1877",1877.12.15.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.15.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.15.R-Fiji.pdf,1877.12.15.R,1877.12.15.R,394,, +1877.12.15,15-Dec-1877,1877,Unprovoked,AUSTRALIA,New South Wales,"Peacock Point, Balmain, Sydney",Bathing,Albert Thomas Burless,M,11,Leg severely bitten & later surgically amputated,N,,,"Sydney Mail, 2/16/1878; G.P. Whitley, (1951) p. 192, ref. F.A. McNeil ms. 1940; J. Green, p.31",1877.12.15-Burless.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.15-Burless.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.15-Burless.pdf,1877.12.15,1877.12.15,393,, +1877.12.12,12-Dec-1877,1877,Unprovoked,AUSTRALIA,New South Wales,Near Sydney,Washed overboard from the barque Mary Eady,2 males,M,,FATAL,Y,,,"Brisbane Courier, 12/15/1877",1877.12.12-MaryEady.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.12-MaryEady.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.12-MaryEady.pdf,1877.12.12,1877.12.12,392,, +1877.09.15,15-Sep-1877,1877,Unprovoked,AUSTRALIA,New South Wales,Port Jackson,Fishing,Mr. Coulthard,M,,"No injury, pulled overboard by a shark that grabbed his coat",N,Afternoon,13' shark,"The Mercury (Hobart), 9/22/1877",1877.09.15-Coulthard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.09.15-Coulthard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.09.15-Coulthard.pdf,1877.09.15,1877.09.15,391,, +1877.08.28.R,Reported 28-Aug-1877,1877,Invalid,INDIAN OCEAN,,,,female,M,,Partial human remains found in 13' shark,Y,,,"Western Australian Times, 8/28/1877",1877.08.28.R-IndianOcean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.08.28.R-IndianOcean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.08.28.R-IndianOcean.pdf,1877.08.28.R,1877.08.28.R,390,, +1877.04.07, 07-Apr-1877,1877,Provoked,AUSTRALIA,Tasmania,Smelting Works Bay near Hobart,,John Smart,M,,Fingers injured by landed shark PROVOKED INCIDENT,N,,7-gill shark,"C. Black, GSAF; G.P. Whitley, p.259",1877.04.07-Smart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.04.07-Smart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.04.07-Smart.pdf,1877.04.07,1877.04.07,389,, +1877.04.04.,04-Apr-1877,1877,Unprovoked,AUSTRALIA,Victoria,Portarlington,Bathing,Mitchell,M,,Thigh & foot bitten,N,Morning,,"Brisbane Courier, 4/11/1877",1877.04.04-Mitchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.04.04-Mitchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.04.04-Mitchell.pdf,1877.04.04.,1877.04.04.,388,, +1877.03.16,16-Mar-1877,1877,Unprovoked,ITALY,Strait of Messina,Off Calabria,Paddling,Captain Paul Boyton,M,,3 ribs broken by shark's tail,N,,,"J. Stanton, et. Al",1877.03.16-Boyton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.03.16-Boyton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.03.16-Boyton.pdf,1877.03.16,1877.03.16,387,, +1877.03.11, 11-Mar-1877,1877,Unprovoked,FIJI,Viti Levu Island,"Na Koro Vatu, Rewa River",,boy,M,15,"Thigh severely bitten, femur exposed ",N,,,"Timaru Herald, 5/18/1877",1877.03.11-RewaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.03.11-RewaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.03.11-RewaRiver.pdf,1877.03.11,1877.03.11,386,, +1877.02.17.R,Reported 17-Feb-1877,1877,Unprovoked,AUSTRALIA,Victoria,Off Melbourne,Fishing ,Gesoun Gentel,M,,Severe bite to hand,N,,,"Otago Witness, 2/17/1877",1877.02.17.R-Gentel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.02.17.R-Gentel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.02.17.R-Gentel.pdf,1877.02.17.R,1877.02.17.R,385,, +1877.01.28, 28-Jan-1877,1877,Unprovoked,AUSTRALIA,Victoria,Emerald Hill,Bathing,William Marks,M,,FATAL,Y,,,"The Mercury, 2/19/1877",1877.01.28-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.28-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.28-Marks.pdf,1877.01.28,1877.01.28,384,, +1877.01.24.R,Reported 24-Jan-1877,1877,Unprovoked,AUSTRALIA,Victoria,Boarding School Bay,Swimming,female,F,,Ankle injured,N,,6' shark,"The Argus, 1/24/1877",1877.01.24.R-BoardingSchoolBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.24.R-BoardingSchoolBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.24.R-BoardingSchoolBay.pdf,1877.01.24.R,1877.01.24.R,383,, +1877.01.04,04-Jan-1877,1877,Invalid,SOUTH AFRICA,KwaZulu-Natal,Durban,Body found floating next to his ship,"Anno Toosegir, a Malagasy crewman from the 130-ton brig Sea Nymph",M,,"Although his body was bitten by a shark/s, bruises on his neck & face suggested foul play & a shipmate taken into custody but no charges made",Y,,,"M. Levine, GSAF; Natal Colonist, 1/9/1877",1877.01.04-Toosegeir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.04-Toosegeir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.04-Toosegeir.pdf,1877.01.04,1877.01.04,382,, +1877.00.00,Before 1878,1877,Unprovoked,INDIA,Hoogly River,Near Calcutta,,Indian,,,"Thigh severely bitten, femur exposed & grooved",N,,,"J. Fayrer, M.D. cited in F. Day, The Fishes of India, p.715 ",1877.00.00-Calcutta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.00.00-Calcutta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.00.00-Calcutta.pdf,1877.00.00,1877.00.00,381,, +1876.09.07.R,Reported 07-Sep-1876,1876,Unprovoked,GREECE,Cyclades archipelago,Between the islands of Tenos and Andros ,Diving for sponges,male,M,,FATAL,Y,,,"C. Moore, GSAF",1876.09.07.R-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.09.07.R-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.09.07.R-Greece.pdf,1876.09.07.R,1876.09.07.R,380,, +1876.06.04.R,Reported 04-Jun-1876,1876,Unprovoked,USA,Georgia,Cumberland Island,Bathing,Arthur E.. Boardman,M,,Leg bitten,N,,,"The Constitution, 6/24/1876",1876.06.04.R-Boardman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.06.04.R-Boardman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.06.04.R-Boardman.pdf,1876.06.04.R,1876.06.04.R,379,, +1876.05.14,14-May-1876,1876,Unprovoked,AUSTRALIA,New South Wales,Sydney Harbour,Swimming,Frederick Brown,M,,FATAL,Y,,,"Sydney Mail, 6/3/1876",1876.05.14-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.05.14-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.05.14-Brown.pdf,1876.05.14,1876.05.14,378,, +1876.02.06,06-Feb-1876,1876,Unprovoked,AUSTRALIA,Victoria,Albert Park in Port Phillip Bay,Bathing,Patrick Rooney,M,,"FATAL, rescued by man on horseback, but died on the beach ",Y,,,"V.M. Coppleson (1958), p.110; A. Sharpe, p.111; Herald (Melbourne), 12/30/1929 & 5/16/1933 ",1876.02.06-Rooney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.02.06-Rooney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.02.06-Rooney.pdf,1876.02.06,1876.02.06,377,, +1876.00.00.d,1876,1876,Unprovoked,LEBANON,Mount Lebanon,Batroun,Sponge diving,male,M,,FATAL,Y,,,"Drug Cir. & Chem. Gazette, 1876",1876.00.00.d-Lebanon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.d-Lebanon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.d-Lebanon.pdf,1876.00.00.d,1876.00.00.d,376,, +1876.00.00.c,1876,1876,Unprovoked,ENGLAND,"Between Hastings & Fairlight, Sussex",,,male,M,,Leg abraded,N,,Blue or porbeagle shark,MEDSAF,1876.00.00.c-MEDSAF.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.c-MEDSAF.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.c-MEDSAF.pdf,1876.00.00.c,1876.00.00.c,375,, +1876.00.00.b,1876,1876,Unprovoked,AUSTRALIA,Western Australia,Between De Grey River and Port Walcott,Pearl diving,"male, aboriginal diver",M,,"""Severely bitten"" but survived",N,,,"G.P. Whitley (1951) pp.185 & 192, citing P.Walcott",1876.00.00.b-pearl-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.b-pearl-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.b-pearl-diver.pdf,1876.00.00.b,1876.00.00.b,374,, +1876.00.00.a,1876,1876,Unprovoked,AUSTRALIA,New South Wales,Sydney,,boy,M,,"FATAL, ""his side was bitten""",Y,,,"G.P. Whitley (1951), p.192",1876.00.00.a-boy-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.a-boy-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.a-boy-Sydney.pdf,1876.00.00.a,1876.00.00.a,373,, +1875.11.27.R,Reported 27-Nov-1875,1875,Unprovoked,AUSTRALIA,New South Wales,Clarence Heads,Fishing,Aboriginal male,M,,Foot severed at ankle,N,,,"Brisbane Courier, 11/27/1875",1875.11.27.R-AboriginalFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.11.27.R-AboriginalFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.11.27.R-AboriginalFisherman.pdf,1875.11.27.R,1875.11.27.R,372,, +1875.08.10,10-Aug-1875,1875,Invalid,SOUTH AFRICA,KwaZulu-Natal,"Back Beach, Durban",,,,,"Press reported that a 3 m shark was caught with human remains in its gut, but remains were those of a porpoise according to medical examiner",Y,,," Natal Colonist, 8/13/1875; M. Levine, GSAF",1875.08.10-porpoise.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.08.10-porpoise.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.08.10-porpoise.pdf,1875.08.10,1875.08.10,371,, +1875.03.03,03-Mar-1875,1875,Unprovoked,NEW ZEALAND,North Island,Tauranga,Bathing,male,M,3,FATAL,Y,,,"Thames Star, 3/3/1875",1875.03.03-Maori_boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.03.03-Maori_boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.03.03-Maori_boy.pdf,1875.03.03,1875.03.03,370,, +1875.01.20.R,Reported 20-Jan-1875,1875,Invalid,AUSTRALIA,Queensland,Mary River,Bathing,male,M,,"Forehead bitten, but shark involvement questionable",N,,,"Nelson Evening Mail, 1/20/1875",1875.01.20.R-MaryRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.01.20.R-MaryRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.01.20.R-MaryRiver.pdf,1875.01.20.R,1875.01.20.R,369,, +1874.11.21,21-Nov-1874,1874,Unprovoked,AUSTRALIA,Queensland,Maryborough,Bathing,"""a lad""",M,,Thigh bitten,N,,10' shark,"Maryborough Chronicle, 11/24/1874",1874.11.21-Maryborough.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.11.21-Maryborough.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.11.21-Maryborough.pdf,1874.11.21,1874.11.21,368,, +1875.00.00,Ca. mid-1870s,1875,Unprovoked,AUSTRALIA,Western Australia,Sharks Bay,Sitting on gunwale of boat,Andrew Farmer,M,,FATAL,Y,,,"Western Mail (Perth), 6/27/1919",1875.00.00-Farmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.00.00-Farmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.00.00-Farmer.pdf,1875.00.00,1875.00.00,367,, +1874.11.14.R,14-Nov-1874,1874,Boating,CROATIA,Zadar County,"Lika-Senj, Pag Island",Fishing,2 occupants,,,"Shark damaged boat, but no injury to occupants",N,,,"C. Moore, GSAF",1874.11.14.R-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.11.14.R-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.11.14.R-Croatia.pdf,1874.11.14.R,1874.11.14.R,366,, +1874.07.23,23-Jul-1874,1874,Boating,FRANCE,,,Fishing,,,,Shark and boat collided. No injury to occupants,N,,,"C. Moore, GSAF",1874.07.23-Planier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.23-Planier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.23-Planier.pdf,1874.07.23,1874.07.23,365,, +1874.07.15.R,Reported 15-Jul-1874,1874,Unprovoked,USA,Hawaii,Waikiki,Fishing,a native fisherman,M,,Thumb & thigh lacerated,N,,,"Empire, 7/15/1874",1874.07.15.R-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.15.R-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.15.R-Hawaii.pdf,1874.07.15.R,1874.07.15.R,364,, +1874.07.15,15-Jul-1874,1874,Unprovoked,USA,New York,Coney Island,Bathing,Mr. Keatly,M,,Lacerations to groin,N,Afternoon,"68"" shark","NY Times, 7/17/1874",1874.07.15.a-Keatly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.15.a-Keatly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.15.a-Keatly.pdf,1874.07.15,1874.07.15,363,, +1874.06.15.b.R,Reported 15-Jun-1874,1874,Unprovoked,KIRIBATI,Gilbert Islands,Beru,Escaping from blackbirding vessel,,M,,FATAL,Y,,,"Daily Southern Cross, 6/15/1874",1874.06.15.b.R-Blackbirder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.06.15.b.R-Blackbirder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.06.15.b.R-Blackbirder.pdf,1874.06.15.b.R,1874.06.15.b.R,362,, +1874.06.15.a.R,Reported 15-Jun-1874,1874,Unprovoked,,,,Salvaging a shipwreck,,M,,Heel bitten,N,,,"Daily Southern Cross, 6/15/1874",1874.06.15.a.R-Achilles-tendon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.06.15.a.R-Achilles-tendon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.06.15.a.R-Achilles-tendon.pdf,1874.06.15.a.R,1874.06.15.a.R,361,, +1874.04.20.R,Reported 20-Apr-1874,1874,Boating,CANADA,Newfoundland,St. Pierre Bank ,Fishing,A dory: occupants : 2 men,M,,Shark bit & tipped the dory,N,,White shark,Jones (1879); Piers (1933),1874.04.20.R-Dory.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.04.20.R-Dory.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.04.20.R-Dory.pdf,1874.04.20.R,1874.04.20.R,360,, +1874.01.09,09-Jan- 1874,1874,Unprovoked,AUSTRALIA,New South Wales,"Darling Harbor, Sydney",Bathing,Thomas Thompson,M,,Thigh severely bitten,N,,,"Sydney Morning Herald, 1/1/1874; V.M. Coppleson (1962)",1874.01.09-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.01.09-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.01.09-Thompson.pdf,1874.01.09,1874.01.09,359,, +1874.00.00,1874,1874,Boating,TUVALU,,Between Nanumea & Nanumaga Atolls,Fleet of canoes caught by a squall and charged by sharks.,,,,"2 people out of +70 survived, one of whom was bitten by sharks",Y,Night,,"Otago Witness, 10/28/1897",1874.00.00-Tuvalu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.00.00-Tuvalu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.00.00-Tuvalu.pdf,1874.00.00,1874.00.00,358,, +1873.07.28,28-Jul-1873,1873,Provoked,USA,Maryland,Chester River,Fishing (Seining),James Green,M,,Leg severely bitten by netted shark. Lower leg surgically amputated PROVOKED INCIDENT,N,,,"NY Times, 7/30/1873",1873.07.28-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.07.28-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.07.28-Green.pdf,1873.07.28,1873.07.28,357,, +1873.06.09.R,Reported 09-Jun-1873,1873,Invalid,AUSTRALIA,New South Wales,Newcastle ,Bathing,Joseph Henry,M,,Shark involvement prior to death was not confirmed,Y,,,"The Mercury, 6/9/1873",1873.06.09.R-Henry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.06.09.R-Henry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.06.09.R-Henry.pdf,1873.06.09.R,1873.06.09.R,356,, +1873.01.09.R,Reported 09-Jan-1873,1873,Unprovoked,AUSTRALIA,Queensland,White Cliffs,Bathing,young aboriginal male,M,,Survived,N,,Hammerhead shark,"Brisbane Courier, 1/9/1873",1873.01.09.R-Aboriginal-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.01.09.R-Aboriginal-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.01.09.R-Aboriginal-male.pdf,1873.01.09.R,1873.01.09.R,355,, +1873.00.00,Nov- or Dec-1873,1873,Unprovoked,CUBA,Havana Province,Havana Harbor,Swimming / escaping imprisonment ,Franz Mayer,M,27,"Legs severed bitten, later surgically amputated",N,,,"NY Times, 8/9/1931",1873.00.00-Mayer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.00.00-Mayer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.00.00-Mayer.pdf,1873.00.00,1873.00.00,354,, +1872.11.30.R,Reported 30-Nov-1872,1872,Unprovoked,INDIAN OCEAN?,,,Swimming to avoid capture,Malay pirates,M,,FATAL,Y,,,"The Mercury, 11/230/1872",1872.11.30.R-MalayPirates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.11.30.R-MalayPirates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.11.30.R-MalayPirates.pdf,1872.11.30.R,1872.11.30.R,353,, +1872.11.24,24-Nov-1872,1872,Invalid,AZORES,,,,Abel Fosdyk (who claimed to be sole survivor from the Mary Celeste),M,,"No injury, but according to Fosdyk, captain & crew were killed by sharks",N,,,Strand Magazine ,1872.11.24-MaryCeleste.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.11.24-MaryCeleste.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.11.24-MaryCeleste.pdf,1872.11.24,1872.11.24,352,, +1872.08.07.R,Reported 07-Aug-1872,1872,Invalid,CROATIA,,Fiume,Fishing,male,M,,No injury,,,,"C. Moore, GSAF",1872.08.07.R-Fiume.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.08.07.R-Fiume.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.08.07.R-Fiume.pdf,1872.08.07.R,1872.08.07.R,351,, +1872.04.03.R,Reported 03-Apr-1872,1872,Unprovoked,USA,Hawaii,Kawahae,Canoeing,Kaholo,M,,"Thigh bitten, shark teeth embedded in canoe",N,,,"Honolulu Gazette, 4/3/1872",1872.04.03.R-Kaholo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.04.03.R-Kaholo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.04.03.R-Kaholo.pdf,1872.04.03.R,1872.04.03.R,350,, +1872.02.26,26-Feb-1872,1872,Sea Disaster,AUSTRALIA,Queensland,Bramble Reef,Wreck of the 150-ton brig Maria,,,,"FATAL, some were taken by sharks",Y,,,coralsea-wrecks.com,1872.02.26-MariaShipwreck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.02.26-MariaShipwreck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.02.26-MariaShipwreck.pdf,1872.02.26,1872.02.26,349,, +1872.01.28,28-Jan-1872,1872,Invalid,Fiji,Lomaiviti Provine,"Levuka Point, Ovalau Island",boat capsized,Mr. Manning,M,,Probable drowning,Y,dusk,,"Empire, 2/20/1872",1872.01.28-Manning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.01.28-Manning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.01.28-Manning.pdf,1872.01.28,1872.01.28,348,, +1872.00.00,Circa 1872,1872,Sea Disaster,SOUTH ATLANTIC OCEAN,Off the coast of South America,,Adrift on a raft ,an Italian fisherman,M,,Leg bitten,N,Midnight,,"San Francisco Bulletin, 11/1/1872",1872.00.00-Italian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.00.00-Italian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.00.00-Italian.pdf,1872.00.00,1872.00.00,347,, +1871.12.11.R,Reported 11-Dec-1871,1871,Invalid,AUSTRALIA,New South Wales,Hawkesbury River,,male,M,,Human remains recovered from 11' shark,N,,,"Border Watch, 1/10/1872",1871.12.11.R-Remains.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.12.11.R-Remains.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.12.11.R-Remains.pdf,1871.12.11.R,1871.12.11.R,346,, +1871.08.29.R,Reported 29-Aug-1871,1871,Unprovoked,USA,Hawaii,,Fishing,male,M,,Limbs severed,N,,,"The British Colonist, 8/29/1871",1871.08.29.R-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.08.29.R-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.08.29.R-Hawaii.pdf,1871.08.29.R,1871.08.29.R,345,, +1871.08.00,Aug-1871,1871,Provoked,USA,New York,Long Island,Shark fishing,,M,,Hand injured PROVOKED INCIDENT,N,,,"New York Times, 8/26/1871",1871.08.00-SharkFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.08.00-SharkFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.08.00-SharkFisherman.pdf,1871.08.00,1871.08.00,344,, +1871.05.22.R,Reported 22-May-1871,1871,Unprovoked,SRI LANKA,Eastern Province,Trincomalee,Bathing,An officer from H.M. Forte,M,,Severe laceration to thigh,N,,,"The Argus, 5/22/1871",1871.05.22.R-Trincomalee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.05.22.R-Trincomalee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.05.22.R-Trincomalee.pdf,1871.05.22.R,1871.05.22.R,343,, +1871.03.24,24-Mar-1871,1871,Unprovoked,INDIA,"22�N, 88�E",Hoogly River at Multah,Bathing,Deno,M,30,"FATAL, left thigh & buttock bitten, died of pneumonia 7 weeks later ",Y,,,"J. Fayrer, M.D., pp.257-260 ",1871.03.24-Deno.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.03.24-Deno.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.03.24-Deno.pdf,1871.03.24,1871.03.24,342,, +1871.00.00.c,1871,1871,Unprovoked,AUSTRALIA,New South Wales,Manning River,,male,M,,"FATAL, ""caught by legs"" ",Y,,,"G.P. Whitley, ref E.S. Hill, Sydney Mail, 5/6/1871 ",1871.00.00.c-ManningRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.00.00.c-ManningRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.00.00.c-ManningRiver.pdf,1871.00.00.c,1871.00.00.c,341,, +1871.00.00.b,Before 1871,1871,Unprovoked,AUSTRALIA,Queensland,Brisbane River,,male,M,,Survived,N,,,"G.P. Whitley, ref. E.S. Hill",1871.00.00.b-BrisbaneRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.00.00.b-BrisbaneRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.00.00.b-BrisbaneRiver.pdf,1871.00.00.b,1871.00.00.b,340,, +1871.00.00.a,Before 1871,1871,Unprovoked,AUSTRALIA,New South Wales,Jervis Bay & Long Reef,Fishing,"2 males, aborigines",M,,Feet grabbed,N,Night,Wobbegongs,"G.P. Whitley (1940), p.79",1871.00.00.a-aborigines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.00.00.a-aborigines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.00.00.a-aborigines.pdf,1871.00.00.a,1871.00.00.a,339,, +1870.07.27,27-Jul-1870,1870,Unprovoked,USA,North Carolina,"Smithville (now Southport), Brunswick County",Bathing,Giles Gordon,M,,Foot bitten & toe severed,N,,,"C. Creswell, GSAF, F. Schwartz, p.23",1870.07.27-Gordon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.07.27-Gordon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.07.27-Gordon.pdf,1870.07.27,1870.07.27,338,, +1870.06.19,19-Jun-1870,1870,Unprovoked,INDIA,"22�N, 88�E","Calcutta, Hoogly River at one of the ghats",Bathing,"male, a Hindu shopkeeper",M,40,"Left arm bitten, developed gangrene, surgically amputated",N,,,"J. Fayrer, M.D.",1870.06.19-HinduShopkeeper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.06.19-HinduShopkeeper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.06.19-HinduShopkeeper.pdf,1870.06.19,1870.06.19,337,, +1870.06.01,01-Jun-1870,1870,Unprovoked,INDIA,West Bengal,"Hoogly River, Calcutta",Bathing / standing,"B., ""an Ooryah coolie""",M,40,"Right foot & leg bitten, surgically amputated",N,,,"J. Fayrer, M.D.",1870.06.01-Ooryah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.06.01-Ooryah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.06.01-Ooryah.pdf,1870.06.01,1870.06.01,336,, +1870.05.26.R,Reported 26-May-1870,1870,Unprovoked,AUSTRALIA,Queensland,Moreton Island,Fishing,Master Lacy,M,13,bite to lower leg,N,,,"Brisbane Courier, 5/26/1870",1870.05.26.R-Lacy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.26.R-Lacy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.26.R-Lacy.pdf,1870.05.26.R,1870.05.26.R,335,, +1870.05.18,18-May-1870,1870,Unprovoked,INDIA,"22�N, 88�E","Hatkolah, Ghat,",Bathing,"H.E.S., a Hindu trader",M,39,4 irregular lacerated wounds on right arm,N,,,"J. Fayrer, M.D.",1870.05.18-HinduTrader.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.18-HinduTrader.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.18-HinduTrader.pdf,1870.05.18,1870.05.18,334,, +1870.05.11,11-May-1870,1870,Unprovoked,INDIA,"22�N, 88�E",Near Sobah Bazar,Bathing,"male, a Hindu confectioner",M,40,3 lacerated irregular wounds on anterior left thigh,N,,,"J. Fayrer, M.D.",1870.05.11-HinduConfectioner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.11-HinduConfectioner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.11-HinduConfectioner.pdf,1870.05.11,1870.05.11,333,, +1870.01.09,09-Jan-1870,1870,Unprovoked,AUSTRALIA,Queensland,Brisbane River,Bathing,John Saunders,M,17,Right thigh bitten,N,,,"Brisbane Courier, 1/15/1870",1870.01.09-Saunders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.01.09-Saunders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.01.09-Saunders.pdf,1870.01.09,1870.01.09,332,, +1870.00.00,Early 1870s,1870,Invalid,AUSTRALIA,Tasmania,Derwent River,Canoeing,Sub Lieut. Bowyer of H.M.S. Chile,M,,Shark bit canoe in half & bit man. Note: There is an earlier story of FATAL shark attack in same river,N,,,"C. Black, p.12; V.M. Coppleson (1958) pp. 104-105",1870.00.00-Bowyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.00.00-Bowyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.00.00-Bowyer.pdf,1870.00.00,1870.00.00,331,, +1869.04.15.R,Reported 15-Apr-1869,1869,Unprovoked,AUSTRALIA,South Australia,Cape Elizabeth,Net fishing,Joseph Simms,M,,Foot bitten,N,,"Tiger shark, 7'","The Mercury, 4/151869",1869.04.15.R-Simms.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1869.04.15.R-Simms.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1869.04.15.R-Simms.pdf,1869.04.15.R,1869.04.15.R,330,, +1869.04.10,10-Apr-1869,1869,Invalid,,,,Fell overboard,Christian Frederick,M,,"FATAL, but shark involvement prior to death was not determined",Y,,,"Nelson Examiner & New Zealand Chronicle, 4/24/1869",1869.04.10-Frederick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1869.04.10-Frederick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1869.04.10-Frederick.pdf,1869.04.10,1869.04.10,329,, +1868.09.01,01-Sep-1868,1868,Unprovoked,ITALY,Adriatic Sea,Trieste,,male,M,,FATAL,Y,,White shark,"A. De Maddalena; Radovanovi (1965), Soldo & Jardas (2000)",1868.09.01-Trieste.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.09.01-Trieste.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.09.01-Trieste.pdf,1868.09.01,1868.09.01,328,, +1868.05.13,13-May-1868,1868,Unprovoked,INDIA,Hoogly River,Ghat,Standing,male,M,35,"FATAL, upper left thigh, groin & buttocks severely bitten, leg surgically amputated at the hip ",Y,Before 10h30,Identified as C. gangeticus by Dr. J. Fayrer,"J. Fayrer, M.D.",1868.05.13-Hindoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.05.13-Hindoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.05.13-Hindoo.pdf,1868.05.13,1868.05.13,327,, +1868.01.17,17-Jan-1868,1868,Sea Disaster,VIETNAM,,Cohong,A junk foundered,,M,,FATAL,Y,,,"Argus, 5/26/1868",1868.01.17-Vietnamese.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.01.17-Vietnamese.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.01.17-Vietnamese.pdf,1868.01.17,1868.01.17,326,, +1868.01.04.R,Reported 04-Jan-1868,1868,Sea Disaster,AUSTRALIA,South Australia,Belfast (now Port Fairy),Fishing,"boat, occupants: John Griffiths & Thomas Johnson",,,"No injury to occupants, shark's teeth embedded in keel",N,,,"Nelson Examiner & New Zealand Chronicle, 4/3/1868",1868.01.04.R-PortFairy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.01.04.R-PortFairy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.01.04.R-PortFairy.pdf,1868.01.04.R,1868.01.04.R,325,, +1868.00.00.b,"Reported 24-Oct-1888, but took place around 1868",1868,Unprovoked,AUSTRALIA,Torres Strait,South Aroo Island,Swimming,15 Pindo Islanders,M,,FATAL,Y,,,"The New Era, 10/24/1888",1868.00.00.b-PindoIslanders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.00.00.b-PindoIslanders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.00.00.b-PindoIslanders.pdf,1868.00.00.b,1868.00.00.b,324,, +1868.00.00.a,1868 (?),1868,Unprovoked,NEW ZEALAND,North Island,"Brickfield Bay, Auckland Harbour",Bathing close inshore,Cook,M,,Thigh bitten,N,,"""Shark caught later""","V.M. Coppleson (1958) (May refer to Thomas Cooke, see- 22-Dec-1862)",1868.00.00.a-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.00.00.a-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.00.00.a-Cook.pdf,1868.00.00.a,1868.00.00.a,323,, +1867.08.22.R,Reported 22-Aug-1867,1867,Unprovoked,EGYPT,,Port Said,Swimming,male,M,,FATAL,Y,,,"C. Moore, GSAF",1867.08.22.R-PortSaid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.08.22.R-PortSaid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.08.22.R-PortSaid.pdf,1867.08.22.R,1867.08.22.R,322,, +1867.08.00,Aug-1867,1867,Unprovoked,MEXICO,Veracruz ,Vera Cruz Harbor,boat from the Austrian ship Elizabeth,14 crewmen,M,,FATAL,Y,,,"Washington Star, 12/12/1891",1867.08.00-ElizabethCrew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.08.00-ElizabethCrew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.08.00-ElizabethCrew.pdf,1867.08.00,1867.08.00,321,, +1867.06.26,26-Jun-1867,1867,Sea Disaster,CUBA,Villa Clara Province,Remedios,boat from ship Josephine capsized in squall,2 crew clinging to floating barrels,M,,FATAL,Y,,,"Cork Examiner, 8/17/1867; Whaleman's Shipping List, 9/24;1867",1867.06.26-JosephineCrewmen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.06.26-JosephineCrewmen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.06.26-JosephineCrewmen.pdf,1867.06.26,1867.06.26,320,, +1867.00.00,1867,1867,Unprovoked,CUBA,Matanzas Province (north coast),Matanzas,Painting a ship,male,M,,"FATAL, pulled off float by shark, body not recovered ",Y,,,"Washington Star, 12/12/1891",1867.00.00-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.00.00-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.00.00-Cuba.pdf,1867.00.00,1867.00.00,319,, +1866.04.24.R,Reported 24-Apr-1866,1866,Invalid,AUSTRALIA,Western Australia,Off De Grey river,Fell overboard,Mr. Groves,M,,Thought to have been taken by a shark. Body was not recovered,Y,,,"The Argus, 4/24/1866",1866.04.24.R-Groves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1866.04.24.R-Groves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1866.04.24.R-Groves.pdf,1866.04.24.R,1866.04.24.R,318,, +1865.09.02,02-Sep-1865,1865,Unprovoked,USA,New York,"Greenport Sound, Long Island",Swimming alongside the schooner Catherine Wilcox,Peter Johnson,M,17,Multiple lacerations,N,09h00,,"P. Bailey; J. Gaudin, GSAF",1865.09.02-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.09.02-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.09.02-Johnson.pdf,1865.09.02,1865.09.02,317,, +1865.07.18.R,Reported 18-Jul-1865,1865,Unprovoked,USA,Texas,Brazos,Bathing,Col. Bryant,M,,FATAL,Y,,,"Daily Index, 7/18/1865",1865.07.18.R-Col-Bryant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.07.18.R-Col-Bryant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.07.18.R-Col-Bryant.pdf,1865.07.18.R,1865.07.18.R,316,, +1865.03.01.R,Reported 01-Mar-1865,1865,Boating,SOUTH AFRICA,Western Cape Province,St. Helena Bay,Fishing,boat: 4 occupants,M,,"FATAL: Boat capsized, sharks took fishermen",Y,,,"South African Advertiser, 3/1/1865",1865.03.01.R-St-HelenaBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.03.01.R-St-HelenaBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.03.01.R-St-HelenaBay.pdf,1865.03.01.R,1865.03.01.R,315,, +1865.00.00,1865,1865,Boating,AUSTRALIA,South Australia,Semaphore,Boarding a ship,"R.H. Barrett, pilot holding steering oar of whaleboat",,,"No injury to pilot, oar bitten",N,,,"V.M. Coppleson (1958), p.186",1865.00.00-Barrett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.00.00-Barrett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.00.00-Barrett.pdf,1865.00.00,1865.00.00,314,, +1864.09.18.R,Reported 18-Sep-1864,1864,Provoked,FRANCE,Alpes Maritime,Antibes,Dragging a shark,fisherman,M,,Knee bitten PROVOKED INCIDENT,N,,1.5 m shark,"C. Moore, GSAF",1864.09.18.R-Antibes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.09.18.R-Antibes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.09.18.R-Antibes.pdf,1864.09.18.R,1864.09.18.R,313,, +1864.09.00,Sep-1864,1864,Unprovoked,SCOTLAND,Edinburgh,Granton,,Mr. Ballard,M,,Leg bitten 3 times,N,,3' shark,C. Moore citing R. Peirce,1864.09.00-Ballard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.09.00-Ballard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.09.00-Ballard.pdf,1864.09.00,1864.09.00,312,, +1864.08.12,12-Aug-1864,1864,Unprovoked,USA,New York,Mahattan,Swimming,Henry Brice,M,13,Left thigh severely bitten,N,,,"NY Times, 8/13/1864",1864.08.12-Brice.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.08.12-Brice.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.08.12-Brice.pdf,1864.08.12,1864.08.12,311,, +1864.07.25,25-Jul-1864,1864,Unprovoked,SPAIN,Eastern Catalona,Badalona,Bathing,male,M,,FATAL,Y,Evening,,"C. Moore, GSAF",1864.07.25-Badalona-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.07.25-Badalona-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.07.25-Badalona-Spain.pdf,1864.07.25,1864.07.25,310,, +1864.01.27.R,Reported 27-Jan-1864,1864,Unprovoked,PANAMA,Col�n Province,Aspinwall (Col�n),Coming ashore on a hawser,a sailor from ther RM steam packet Solent,M,,FATAL,Y,,,"Chicago Tribune, 1/27/1864",1864.01.27.R-SailorSolent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.27.R-SailorSolent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.27.R-SailorSolent.pdf,1864.01.27.R,1864.01.27.R,309,, +1864.01.16.R,Reported 16-Jan-1864,1864,Unprovoked,NEW ZEALAND,Foveaux Strait,Stewart Island,Boat swamped,male,M,,FATAL,Y,,,"Otago Witness, 1/16/1864",1864.01.16.R-StewartsIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.16.R-StewartsIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.16.R-StewartsIsland.pdf,1864.01.16.R,1864.01.16.R,308,, +1864.01.02,02-Jan-1864,1864,Unprovoked,NEW ZEALAND,North Island,"Brickfield Bay, Auckland Harbour",Standing / Bathing,Mr. Kelsall,M,,Minor injury to hip,N,,,"Wellington Independent, 1/21/1864",1864.01.01-Kelsall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.01-Kelsall.pdf,,1864.01.02,1864.01.02,307,, +1864.00.00,1864,1864,Invalid,AUSTRALIA,South Australia,"Corio Bay, Port Phillip",Swimming,"Mr. Warren, Jr.",M,,"Presumed Fatal, but shark involvement not confirmed",Y,,,"The Argus, 11/24/1868",1864.00.00-Warren.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.00.00-Warren.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.00.00-Warren.pdf,1864.00.00,1864.00.00,306,, +1863.12.14,14-Dec-1863,1863,Unprovoked,GUINEA,Conakry Region,Ile de Loss,"Bathing near whaling ship (bark A. R. Tucker of New Bedford, Massachusetts)",Charles H. Petty,M,18,"FATAL ""Most of leg torn away . . . Buried on Island of DeLoss on the west coast of Africa""",Y,Evening,,"P. Purrington, Whaling Museum & Old Dartmouth Historical Society; V.M. Coppleson (1958), p.321 ",1863.12.14-Petty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.12.14-Petty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.12.14-Petty.pdf,1863.12.14,1863.12.14,305,, +1863.09.13.R,Reported 13-Sep-1863,1863,Unprovoked,USA,South Carolina,"Stono Inlet, near Charleston, Charleston County",Bathing,male,M,,Thrown into the air & bruised,N,,,"NY Times, 9/13/1863",1863.09.13.R-StonoInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.09.13.R-StonoInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.09.13.R-StonoInlet.pdf,1863.09.13.R,1863.09.13.R,304,, +1863.04.00,Apr-1863,1863,Unprovoked,AUSTRALIA,Queensland,Caloundra Heads,Launching a boat,Mr. Barnsfield,M,,FATAL,Y,,2 sharks,"Brisbane Courier, 6/12/1889, p.9",1863.04.00-Barnsfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.04.00-Barnsfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.04.00-Barnsfield.pdf,1863.04.00,1863.04.00,303,, +1863.03.05,05-Mar-1863,1863,Unprovoked,AUSTRALIA,Victoria,Brighton,Floating on back,William Thorn,M,,Lacerations to right torso & ankle,N,20h00,,"Argus, 3/10/1863",1863.03.05-Thorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.03.05-Thorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.03.05-Thorn.pdf,1863.03.05,1863.03.05,302,, +1863.02.05,05-Feb-1863,1863,Invalid,SOUTH AFRICA,KwaZulu-Natal,"Back Beach, Durban","Swimming, caught in strong backwash & disappeared",Mr. J. Canham,M,26,Shark caught 9 days later contained human remains thought to be those of Canham,Y,,3.2 m [10.5'] shark,"M. Levine, GSAF; Times of Natal, 2/16/1863",1863.02.05-Canham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.02.05-Canham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.02.05-Canham.pdf,1863.02.05,1863.02.05,301,, +1863.01.10,10-Jan-1863,1863,Unprovoked,AUSTRALIA,New South Wales,"""Bellynahinch"" on the Manning River",Bathing,James Brown,M,17,FATAL,Y,Evening,,"G.P. Whitley, p.259",1863.01.10-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.01.10-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.01.10-Brown.pdf,1863.01.10,1863.01.10,300,, +1863.00.00.R,Reported 1863,1863,Unprovoked,GREECE,Corfu,,Swimming,male,M,,FATAL,Y,,,C. Moore,1863.00.00.R-Corfu,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.00.00.R-Corfu,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1863.00.00.R-Corfu,1863.00.00.R,1863.00.00.R,299,, +1862.12.22,22-Dec-1862,1862,Unprovoked,NEW ZEALAND,North Island,"Soldier's Point, Brick Bay, Auckland",Swimming,Thomas Cooke,M,28,Right thigh and left foot severely bitten,N,06h00 -- 07h00,,"V.M. Coppleson (1962), p.247",1862.12.22-Cooke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.22-Cooke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.22-Cooke.pdf,1862.12.22,1862.12.22,298,, +1862.12.19.R,Reported 19-Dec-1862,1862,Unprovoked,AUSTRALIA,Queensland,Brisbane River,Trying to catch a wounded bird,male,M,,FATAL,Y,,,"Courier, 12/19/1862",1862.12.19.R-Boy-Brisbane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.19.R-Boy-Brisbane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.19.R-Boy-Brisbane.pdf,1862.12.19.R,1862.12.19.R,297,, +1862.12.04,04-Dec-1862,1862,Invalid,NEW ZEALAND,South Island,Lyttleton?,,,,,,UNKNOWN,,,"Bendigo Advertiser, 1/3/1863",1862.12.04-Lyttleton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.04-Lyttleton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.04-Lyttleton.pdf,1862.12.04,1862.12.04,296,, +1862.08.15.R,Reported 15-Aug-1862,1862,Unprovoked,SPAIN,,A Spanish port,Bathing,The widowed Marchioness of Lendinez,F,,Survived,N,,,C. Moore,1862.08.15.R-Lendinez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.08.15.R-Lendinez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.08.15.R-Lendinez.pdf,1862.08.15.R,1862.08.15.R,295,, +1862.08.02.R,Reported 02-Aug-1862,1862,Invalid,SPAIN,Malaga,Fuengirola,,male,M,,Possible drowning and scavenging,,,,C. Moore,1862.08.02.R-Fuengirola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.08.02.R-Fuengirola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.08.02.R-Fuengirola.pdf,1862.08.02.R,1862.08.02.R,294,, +1862.07.25,25-Jul-1862,1862,Unprovoked,SPAIN,Malaga,San Andres Beach,Swimming,Joaquin Rosales Martinez,M,18,FATAL,Y,,,C. Moore,1862.07.25-Martinez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.25-Martinez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.25-Martinez.pdf,1862.07.25,1862.07.25,293,, +1862.07.14,14-Jul-1862,1862,Unprovoked,SPAIN,C�diz,Off Algeciras,,male,M,18,FATAL,Y,,16' shark,C. Moore,1862.07.14-Algeciras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.14-Algeciras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.14-Algeciras.pdf,1862.07.14,1862.07.14,292,, +1862.07.13,13-Jul-1862,1862,Unprovoked,SPAIN,C�diz,Off Algeciras,Swimming alongside the SS Kearsarge,Tibbetts,M,,FATAL,Y,18h30,16' shark,C. Moore; W.H. Bedlam,1862.07.13-Tibbetts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.13-Tibbetts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.13-Tibbetts.pdf,1862.07.13,1862.07.13,291,, +1862.06.03,03-Jun-1862,1862,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban Harbor,,male,M,,"""Very severe wounds""",N,,,"Cape Argus, 6/10/1862; M. Levine, GSAF",1862.06.03-male_Durban_Harbour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.06.03-male_Durban_Harbour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.06.03-male_Durban_Harbour.pdf,1862.06.03,1862.06.03,290,, +1862.05.05,05-May-1862,1862,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban,Bathing,Mr. Cummings,M,,Lacerations,N,,,"M. Levine, GSAF",1862.05.05-Cummings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.05.05-Cummings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.05.05-Cummings.pdf,1862.05.05,1862.05.05,289,, +1862.00.00.b,Circa 1862,1862,Unprovoked,USA,Hawaii,Puna,,A chiefess,F,,Ankle bitten,N,,,Captain W. Young,1862.00.00.b-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.00.00.b-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.00.00.b-Hawaii.pdf,1862.00.00.b,1862.00.00.b,288,, +1862.00.00.a,1862,1862,Unprovoked,JAPAN,Bonin Islands,,Boat of a Hawaiian brig was stove in by whale,boat crew,M,,FATAL,Y,,,"Otago Witness, 10/28/1897",1862.00.00.a-BoninIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.00.00.a-BoninIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.00.00.a-BoninIslands.pdf,1862.00.00.a,1862.00.00.a,287,, +1861.11.10,10-Nov-1861,1861,Unprovoked,SINGAPORE,,,Bathing alongside the American ship Thomas W. Sears,crew,M,,FATAL,Y,10h30,,"The Argus, 11/15/1861",1861.11.10-Singapore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.11.10-Singapore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.11.10-Singapore.pdf,1861.11.10,1861.11.10,286,, +1861.09.25.R,Reported 25-Sep-1861,1861,Unprovoked,CUBA,,60 miles off Trinidad de Cuba,Deserting the bark Nazarene,Caughlin (A.K.A. James Dilano),M,,Lacerations,N,,,"New York Times, 10/5/1861",1861.09.25.R-deserter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.09.25.R-deserter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.09.25.R-deserter.pdf,1861.09.25.R,1861.09.25.R,285,, +1861.03.00,Mar-1861,1861,Unprovoked,NEW ZEALAND,North Island,"Wynyard Wharf, Auckland Harbor",Bathing,a soldier,M,,"""Severely bitten but recovered""",N,,,P. Tichener,1861.03.00-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.03.00-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.03.00-soldier.pdf,1861.03.00,1861.03.00,284,, +1861.02.12.R,Reported 12-Feb-1861,1861,Unprovoked,EQUATORIAL GUINEA / CAMEROON,Fernando Po Island,,Swimming,William Looney,M,,FATAL,Y,,,"Daily Southern Cross, 2/12/1861",1861.02.12.R-Looney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.02.12.R-Looney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.02.12.R-Looney.pdf,1861.02.12.R,1861.02.12.R,283,, +1861.01.15.R,Reported 15-Jan-1861,1861,Unprovoked,AUSTRALIA,Queensland,Cleveland,Bathing,Dr. Lucas,M,,Lacerations to fingers,N,,,"Moreton Bay Courier, 1/15/1861",1861.01.15.R-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.01.15.R-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.01.15.R-Lucas.pdf,1861.01.15.R,1861.01.15.R,282,, +1860.12.26,26-Dec-1860,1860,Unprovoked,AUSTRALIA,New South Wales,"The Domain, Sydney",Bathing,,M,,Lacerations to leg,N,,,"The Argus, 12/31/1860",1860.12.26-TheDomain-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.12.26-TheDomain-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.12.26-TheDomain-Sydney.pdf,1860.12.26,1860.12.26,281,, +1860.08.01,01-Aug-1860,1860,Unprovoked,USA,New York,Brooklyn,Swimming,Jerry Duke,M,,Toe severed,N,Evening,,"New York Times, 8/3/1860; Brooklyn News, 8/3/1860, p.8",1860.08.01-JerryDuke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.08.01-JerryDuke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.08.01-JerryDuke.pdf,1860.08.01,1860.08.01,280,, +1860.04.00.b,Apr-1860,1860,Unprovoked,NEW ZEALAND,North Island,"Princes Wharf, Auckland Harbor",Swimming,H. Cook,M,,"Leg bitten, surgically amputated",N,,,P.Tichener,1860.04.00.b-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.04.00.b-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.04.00.b-Cook.pdf,1860.04.00.b,1860.04.00.b,279,, +1860.04.00.a,Apr-1860,1860,Unprovoked,NEW ZEALAND,North Island,"St. George's Bay, Auckland Harbor",Bathing,H. Bradley,M,,FATAL Foot & leg bitten,Y,,"4' ""ground shark""",P. Tichener,1860.04.00.a-Bradley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.04.00.a-Bradley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.04.00.a-Bradley.pdf,1860.04.00.a,1860.04.00.a,278,, +1860.03.27,27-Mar-1860,1860,Sea Disaster,COOK ISLANDS,Mangaia Island,,43-ton schooner Irene capsized & sank,a Cook's Islander,M,,Probable drowning ,Y,,,"Brisbane Courier, 8/1/1866",1860.03.27-Clark'sIslander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.03.27-Clark'sIslander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.03.27-Clark'sIslander.pdf,1860.03.27,1860.03.27,277,, +1860.03.11,11-Mar-1860,1860,Unprovoked,BAHAMAS,New Providence Island,Nassau,"In boat being towed by ship, Karnak",a pilot,M,,FATAL,Y,,Remains recovered from shark caught days later,"New York Times, 3/26/1860",1860.03.11-KarnakPilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.03.11-KarnakPilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.03.11-KarnakPilot.pdf,1860.03.11,1860.03.11,276,, +1859.03.16,16-Mar-1859,1859,Unprovoked,USA,Hawaii,Off Kawaihae,Fell overboard,J.G. Luther,M,21,FATAL,,,,"Pacific Commercial Advertiser, 3/24/1850",1859.03.16-Luther.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1859.03.16-Luther.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1859.03.16-Luther.pdf,1859.03.16,1859.03.16,275,, +1858.08.31,31-Aug-1858,1858,Invalid,USA,New York ,"Staten Island, Richmond County",Swimming,male,M,,Thought to have been taken by a shark/s. Body not recovered,Y,,,"Weekly Hawk Eye And Telegraph, 9/7/1858",1858.08.31-StatenIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.08.31-StatenIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.08.31-StatenIsland.pdf,1858.08.31,1858.08.31,274,, +1858.08.29,29-Aug-1858,1858,Invalid,USA,New York ,"Staten Island, Richmond County",Swimming,3 males,M,,Thought to have been taken by a shark/s. Bodies not recovered,Y,,,"Weekly Hawk Eye And Telegraph, 9/7/1858",1858.08.29-StatenIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.08.29-StatenIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.08.29-StatenIsland.pdf,1858.08.29,1858.08.29,273,, +1858.03.14,14-Mar-1858,1858,Unprovoked,AUSTRALIA,Victoria,Hobson Bay,Bathing,Adolphe Bollander,M,22,FATAL,Y,15h00,,"Moreton Bay Courier, 3/31/1858",1858.03.14-Bollander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.03.14-Bollander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.03.14-Bollander.pdf,1858.03.14,1858.03.14,272,, +1858.01.09.R,Reported 09-Jan-1858,1858,Unprovoked,TONGA,Vava'u,,Jumped overboard while intoxicated,crewman from the Shepherdess,M,,FATAL,Y,,,"Sydney Morning Herald, 1/9/1858",1858.01.09.R-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.01.09.R-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.01.09.R-Tonga.pdf,1858.01.09.R,1858.01.09.R,271,, +1856.11.30,30-Nov-1856,1856,Unprovoked,,,,,Cornelius Conhlren,M,22,FATAL,Y,,,"Hartford Daily Courant, 1/29/1857",1856.11.30-Conhlren.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.11.30-Conhlren.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.11.30-Conhlren.pdf,1856.11.30,1856.11.30,270,, +1856.11.25.R,Reported 25-Nov-1856,1856,Unprovoked,FIJI,,,Swimming,a seaman,M,,FATAL,Y,,,"The Argus, 11/25/1856",1856.11.25.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.11.25.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.11.25.R-Fiji.pdf,1856.11.25.R,1856.11.25.R,269,, +1856.06.21.R,Reported 21-Jun-1856,1856,Unprovoked,ENGLAND,Isle of Wight,Colwell Bay,Swimming,male,M,,Survived,Y,,,"C. Moore, GSAF",1856.06.21.R-Isle-of-Wight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.06.21.R-Isle-of-Wight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.06.21.R-Isle-of-Wight.pdf,1856.06.21.R,1856.06.21.R,268,, +1856.02.06,06-Feb-1856,1856,Unprovoked,AUSTRALIA,Victoria,Point Henry,Swimming,a seaman from the John and Lucy,M,17,Severe bite to thigh. Not known if he survived,UNKNOWN,,,"The Argus, 2/8/1856",1856.02.06-Point-Henry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.02.06-Point-Henry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.02.06-Point-Henry.pdf,1856.02.06,1856.02.06,267,, +1855.11.11,11-Nov-1855,1855,Unprovoked,AUSTRALIA,Victoria,Melbourne,Swimming,a seaman from the whaling brig Curlew,M,,FATAL,Y,,,"Maitland Mercury, 11/14/1855",1855.11.11-Curlew-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.11.11-Curlew-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.11.11-Curlew-seaman.pdf,1855.11.11,1855.11.11,266,, +1855.09.30,30-Sep-1855,1855,Sea Disaster,USA,North Carolina,Cape Hatteras,ship William Penn grounded & broke apart,sailor,M,,Foot bitten,N,,,"NY Times, 10/12/1855",1855.09.30-WilliamPenn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.09.30-WilliamPenn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.09.30-WilliamPenn.pdf,1855.09.30,1855.09.30,265,, +1855.07.28,28-Jul-1855,1855,Unprovoked,,,,Bathing,"a young boy, one of the crew of the Post Boy",M,,FATAL,Y,,,"Maitland Mercury, 8/25/1855",1855.07.28-PostBoy-sailors.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.07.28-PostBoy-sailors.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.07.28-PostBoy-sailors.pdf,1855.07.28,1855.07.28,264,, +1855.04.09.R,Reported 09-Apr-1855,1855,Unprovoked,AUSTRALIA,South Australia,Port Wakefield,Fell overboard from the Malacca,child,F,2�,FATAL,Y,,,"The Argus, 4/9/1855",1855.04.09.R-Malacca-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.04.09.R-Malacca-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.04.09.R-Malacca-child.pdf,1855.04.09.R,1855.04.09.R,263,, +1855.03.28,28-Mar-1855,1855,Unprovoked,AUSTRALIA,South Australia,Port Wakefield,Fell overboard from the Sobella,Master Coleman,M,,FATAL,Y,,,"The Register, 4/20/1926",1855.03.28-Coleman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.03.28-Coleman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.03.28-Coleman.pdf,1855.03.28,1855.03.28,262,, +1855.02.12.R,Reported 12-Feb-1855,1855,Unprovoked,SOLOMON ISLANDS,Makira-Ulawa Province,Makira Island (Formerly San Cristobal),Swimming ,male,M,,FATAL,Y,,,"The Hobarton Mercury, 2/12/1855",1855.02.12.R-Native.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.02.12.R-Native.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.02.12.R-Native.pdf,1855.02.12.R,1855.02.12.R,261,, +1855.00.00,Circa 1855,1855,Invalid,AUSTRALIA,New South Wales,Sydney Harbor,Swimming ,C.T. Clark,M,,"No injury & although reported as an attack, it was simply an encounter",N,,,"Brighton Southern Cross, 2/13/1915",1855.00.00-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.00.00-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.00.00-Clark.pdf,1855.00.00,1855.00.00,260,, +1854.04.08.R,Reported 08-Apr-1854,1854,Unprovoked,GREECE,Corfu ,,Swimming,Hanson,M,,Leg severed at knee,N,,234-lb shark,"South Australian Register, 5/8/1854",1854.04.08.R-Hanson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1854.04.08.R-Hanson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1854.04.08.R-Hanson.pdf,1854.04.08.R,1854.04.08.R,259,, +1853.11.08,08-Nov-1853,1853,Unprovoked,AUSTRALIA,New South Wales,,Swimming,John Peters,M,,Leg bitten,N,,,"Maitland Mercury, 11/19/1853",1853.11.08-Peters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.11.08-Peters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.11.08-Peters.pdf,1853.11.08,1853.11.08,258,, +1853.09.28,28-Sept-1853,1853,Unprovoked,USA,North Carolina,"Morehead, Carteret County",Commercial Salvage Diving,Alfetto,M,,No injury. Copper breastplate & harness bitten,N,,White shark,"C. Creswell, GSAF; Washington Post, 10/7/1883, p.2",1853.09.28-Alfetto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.09.28-Alfetto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.09.28-Alfetto.pdf,1853.09.28,1853.09.28,257,, +1853.07.13.R,Reported 13-Jul-1853,1853,Unprovoked,USA,South Carolina,"Charleston Harbor, Charleston County",Swimming,male,M,,FATAL,Y,,Tiger shark (pregnant),Democratic Banner 8/5/1853,1853.07.13.R-Charleston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.07.13.R-Charleston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.07.13.R-Charleston.pdf,1853.07.13.R,1853.07.13.R,256,, +1853.00.00.d,1853,1853,Unprovoked,AUSTRALIA,Queensland,Moreton Bay,Fell into the water,"James Hexton, pilot",M,,FATAL,Y,,,"Brisbane Courier, 1/28/1909",1853.00.00.d-Hexton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.d-Hexton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.d-Hexton.pdf,1853.00.00.d,1853.00.00.d,255,, +1853.00.00.c,Sep or Oct-1853,1853,Unprovoked,USA,North Carolina,"Morehead, Carteret County",Hard hat diving,Mark Dare,M,,"No injury, copper breastplate punctured",N,,White shark,"Fort Wayne Gazette, 1/24/1897",1853.00.00.c-MarkDare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.c-MarkDare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.c-MarkDare.pdf,1853.00.00.c,1853.00.00.c,254,, +1853.00.00.b,1853,1853,Invalid,USA,South Carolina,Off the Battery,He was fighting a shark when his boat capsized & he disappeared,a young man,M,, His gold watch was later found in a shark but death may have been due to drowning,Y,,,"W. H. Gregg, p.21 ",1853.00.00.b-battery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.b-battery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.b-battery.pdf,1853.00.00.b,1853.00.00.b,253,, +1853.00.00.a,1853 or 1854,1853,Unprovoked,USA,Florida,"Near Fernandina Bar, Nassau County ",Knocked overboard,Captain George Jacob Hanscheldt,M,,FATAL,Y,,,"W. H. Gregg, p.22 ",1853.00.00.a-Hanscheldt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.a-Hanscheldt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.a-Hanscheldt.pdf,1853.00.00.a,1853.00.00.a,252,, +1852.12.19,19-Dec-1852,1852,Invalid,AUSTRALIA,New South Wales,"Clark's Island, Sydney Harbor",Swimming,Edward Graham,M,,Shark involvement prior to death was not confirmed,Y,,,"Maitland Mercury & Hunter River General Advertiser, 12/25/1952",1852.12.19-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.12.19-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.12.19-Graham.pdf,1852.12.19,1852.12.19,251,, +1852.10.23.R,Reported 23-Oct-1852,1852,Provoked,PACIFIC OCEAN,Between Australia & USA,,Fishing,William Stannard,M,,Foot bitten by hooked shark PROVOKED INCIDENT,N,,,"Maitland Mercury, 10/23/1852",1852.10.23.R-Stannard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.10.23.R-Stannard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.10.23.R-Stannard.pdf,1852.10.23.R,1852.10.23.R,250,, +1852.10.09.R,Reported 09-Oct-1852,1852,Unprovoked,AUSTRALIA,New South Wales,Coalcliff,Fell overboard,James Rogers,M,,FATAL,Y,,,"Maitland Mercury, 10/09/1852",1852.10.09.R-Rogers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.10.09.R-Rogers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.10.09.R-Rogers.pdf,1852.10.09.R,1852.10.09.R,249,, +1852.08.07,07-Aug-1852,1852,Unprovoked,TONGA,Tongatapu,,Fell overboard,Charles Weymouth,M,,FATAL,Y,,,"Courier, 1/3/1853",1852.08.07-Weymouth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.08.07-Weymouth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.08.07-Weymouth.pdf,1852.08.07,1852.08.07,248,, +1852.08.00,Aug-1852,1852,Unprovoked,USA,Virginia,Norfolk,Swimming,a deserter from the U.S. Pennsylvania,M,,FATAL,Y,,,"Dixon Telegraph, 8/14/1852",1852.08.00-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.08.00-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.08.00-Sailor.pdf,1852.08.00,1852.08.00,247,, +1852.07.28,28-Jul-52,1852,Invalid,ATLANTIC OCEAN,,,,Karen Bredesen Str�te ,F,1,Death preceded shark involvement,,,,Norway Heritage,1852.07.28-Karen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.07.28-Karen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.07.28-Karen.pdf,1852.07.28,1852.07.28,246,, +1852.05.24,24-May-1852,1852,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban Bay,Swimming from capsized boat,Mr. Messum's servant,M,,FATAL,Y,,,"M. Levine, GSAF; Natal Times, 6/4/1852",1852.05.24-Messum-servant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.05.24-Messum-servant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.05.24-Messum-servant.pdf,1852.05.24,1852.05.24,245,, +1852.02.26,26-Feb-1852,1852,Sea Disaster,SOUTH AFRICA,Western Cape Province,Danger Point,Wreck of the steamship Birkenhead,,M,,"FATAL. All of the women & children on board survived, but many of the 445 men that perished were taken by sharks",Y,01h50,White sharks,"D. Davies, pp.182-184; M. Levine, GSAF",1852.02.26-Birkenhead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.02.26-Birkenhead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.02.26-Birkenhead.pdf,1852.02.26,1852.02.26,244,, +1852.01.22,"""Anniversary Day"" 22-Jan-1850 or 1852",1852,Unprovoked,NEW ZEALAND,North Island,Wellington Harbor,Swimming,"Johnny Balmer, a soldier from the 65th Regiment",M,,"FATAL, posterior thigh bared to femur, kneecap lacerated ",Y,,Said to involved a 6 m to 7.3 m [20' to 24'] shark,"Ref: H. Blake, Sixty Years in New Zealand, pp. 112-116 V. M. Coppleson (1962], page 247 ",1852.01.22-Balmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.01.22-Balmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.01.22-Balmer.pdf,1852.01.22,1852.01.22,243,, +1852.00.00,1852,1852,Unprovoked,USA,South Carolina,"Mount Pleasant, Charleston County","Vessel capsized, wading ashore carrying an oar",Charles Chambers,M,,"FATAL, body was not recovered",Y,,,"W. H. Gregg, p. 21",1852.00.00-Chambers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.00.00-Chambers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.00.00-Chambers.pdf,1852.00.00,1852.00.00,242,, +1851.06.19.R,Reported 19-Jun-1851,1851,Unprovoked,MEXICO,Oaxaca,,Bathing,John Gray & another member of the Tehuantepec surveying party,M,,FATAL,Y,,,"Burlington Hawk-Eye, 6/19/1851",1851.06.19.R-JohnGray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.06.19.R-JohnGray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.06.19.R-JohnGray.pdf,1851.06.19.R,1851.06.19.R,241,, +1851.03.08.R,Mar-1851,1851,Unprovoked,USA,Hawaii,Honolulu Harbor,Swimming,James Kinney,M,,FATAL,Y,,,"The Friend (Honolulu), 3/8/1851",1851.03.08.R-Kinney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.03.08.R-Kinney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.03.08.R-Kinney.pdf,1851.03.08.R,1851.03.08.R,240,, +1851.00.00,1851,1851,Unprovoked,USA,California,"San Francisco Bay (or San Leandro Bay), near cannery, Alameda County",Hard hat diving,William Cortigan,M,,3 toes severed,N,,18' shark,"The Perry Chief, 10/16/1875",1851.00.00-Cortigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.00.00-Cortigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.00.00-Cortigan.pdf,1851.00.00,1851.00.00,239,, +1850.00.00,1850,1850,Unprovoked,NICARAGUA,Lake Nicaragua (fresh water),"Granada, Granada Department",Bathing,,M,,FATAL,Y,,,"E. Squier, 1852, vol. 1",1850.00.00-LakeNicaragua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1850.00.00-LakeNicaragua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1850.00.00-LakeNicaragua.pdf,1850.00.00,1850.00.00,238,, +1849.12.09,09-Dec-1849,1849,Unprovoked,AUSTRALIA,New South Wales,Sydney Harbor,,male,M,,FATAL,Y,,,"T.H. Huxley's Diary, 1935, pp.285-286; G.P. Whitley, p.259",1849.12.09-SydneyHarbour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.12.09-SydneyHarbour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.12.09-SydneyHarbour.pdf,1849.12.09,1849.12.09,237,, +1849.12.01,01-Dec-1849,1849,Unprovoked,AUSTRALIA,New South Wales,"Woolloomooloo, Sydney Harbor (Estuary)",Bathing,a sailor from the steamship Eagle,M,,FATAL,Y,Afternoon,,"Moreton Bay Courier, 12/15/1849",1849.12.01-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.12.01-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.12.01-Sailor.pdf,1849.12.01,1849.12.01,236,, +1849.09.19,19-Sep-1849,1849,Unprovoked,AUSTRALIA,Victoria,Warrnambool,Swimming,a sailor from the schooner Brother,M,,FATAL,Y,,,"Maitland Mercury & Hunter River General Advertiser, 10/10/1849",1849.09.19-Brother-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.09.19-Brother-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.09.19-Brother-seaman.pdf,1849.09.19,1849.09.19,235,, +1849.06.08.b,08-Jun-1849,1849,Unprovoked,USA,Florida,"Pensacola, Escambia County",Attempting to rescue woman seized by shark,Mr. Mansfield,M,,FATAL,Y,,,"Adams Sentinel, 8/6/1849",1849.06.08.b-Mansfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.06.08.b-Mansfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.06.08.b-Mansfield.pdf,1849.06.08.b,1849.06.08.b,234,, +1849.06.08.a,08-Jun-1849,1849,Unprovoked,USA,Florida,"Pensacola, Escambia County",Bathing,Mrs. Cracton,F,,FATAL,Y,,,"Adams Sentinel, 8/6/1849",1849.06.08.a-Cracton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.06.08.a-Cracton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.06.08.a-Cracton.pdf,1849.06.08.a,1849.06.08.a,233,, +1849.01.27,27-Jan-1849,1849,Invalid,AUSTRALIA,New South Wales,Sydney,boat capsized,William Henry Elliott,M,,Torso bitten but may have been postmorem,Y,,,"Maitland Mercury, 2/3/1849",1849.01.27-Elliot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.01.27-Elliot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.01.27-Elliot.pdf,1849.01.27,1849.01.27,232,, +1848.08.31,31-Aug-1848,1848,Unprovoked,USA,Maryland,Patapsco River,Swimming,male,M,15,Left leg severely bitten,N,,,"Adams Sentinel, 9/4/1848",1848.08.31-PatapscoRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1848.08.31-PatapscoRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1848.08.31-PatapscoRiver.pdf,1848.08.31,1848.08.31,231,, +1848.07.00,Jul-1848,1848,Unprovoked,ENGLAND,Norfolk,Hunstanton,Standing,male,M,,Shark struck him with its tail,N,,,"C. Moore, citing R. Peirce",1848.07.00-Hunstanton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1848.07.00-Hunstanton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1848.07.00-Hunstanton.pdf,1848.07.00,1848.07.00,230,, +1847.11.30,30-Nov-1847,1847,Unprovoked,AUSTRALIA,Queensland,Brisbane River,Swimming,James Stewart,M,,Thigh & calf bitten,N,,,"Moreton Bay Courier, 12.4/1847",1847.11.30-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.11.30-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.11.30-Stewart.pdf,1847.11.30,1847.11.30,229,, +1847.07.19,19-Jul-1847,1847,Unprovoked,GREECE,Corfu,Off the harbor wall at Mandrakina,Swimming,"William Mills, a British solider, 36th Regiment",M,19,FATAL,Y,,,I. Fergusson; A. Buttigieg; M. Bardanis,1847.07.19-Mills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.07.19-Mills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.07.19-Mills.pdf,1847.07.19,1847.07.19,228,, +1847.03.11,11-Mar-1847,1847,Sea Disaster,AUSTRALIA,Queensland,Moreton Bay,Wreck of the Sovereign,Spicer,M,,Foot severed,N,,,,1847.03.11-Spicer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.03.11-Spicer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.03.11-Spicer.pdf,1847.03.11,1847.03.11,227,, +1847.00.00.c,Reported in 1847,1847,Unprovoked,AUSTRALIA,Queensland,Moreton Bay,,a native,,,Foot severed at ankle joint,N,,,Narrative of the Voyage of HMS Rattlesnake 1846-1850,1847.00.00.c-HMS-Rattlesnake.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.00.00.c-HMS-Rattlesnake.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.00.00.c-HMS-Rattlesnake.pdf,1847.00.00.c,1847.00.00.c,226,, +1847.00.00.b,1847,1847,Invalid,USA,South Carolina,"Charleston Harbor, Charleston County",Swimming,a young sailor,M,,"Disappeared, thought to have been taken by a shark",Y,,,"W.H. Gregg, pp. 21-22",1847.00.00.b-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.00.00.b-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.00.00.b-sailor.pdf,1847.00.00.b,1847.00.00.b,225,, +1847.00.00.a,Ca. 1847,1847,Unprovoked,USA,South Carolina,,Boating,adult,M,,Hand severed,N,,,"W.H. Greg, p.21",1847.00.00.a-SouthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.00.00.a-SouthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.00.00.a-SouthCarolina.pdf,1847.00.00.a,1847.00.00.a,224,, +1846.12.08,08-Dec-1846,1846,Sea Disaster,MEXICO,Veracruz,Vera Cruz,Wreck of the USS Somers,,M,,"FATAL, some were taken by sharks",Y,,,"Report of the loss of the Somers, J.H.W.",1846.12.08-Somers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1846.12.08-Somers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1846.12.08-Somers.pdf,1846.12.08,1846.12.08,223,, +1845.12.26,26-Dec-1845,1845,Unprovoked,AUSTRALIA,New South Wales,Newcastle ,Fishing,John Williams,M,,FATAL,Y,,,The Maitland Mercury & Hunter River General Advertiser 11/18/1893,1845.12.26-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.12.26-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.12.26-Williams.pdf,1845.12.26,1845.12.26,222,, +1845.09.16.R,Reported 16-Sep-1845,1845,Unprovoked,ENGLAND,,,,a school teacher,M,,Leg severed,N,,,C. Moore,1845.09.16.R-England.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.09.16.R-England.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.09.16.R-England.pdf,1845.09.16.R,1845.09.16.R,221,, +1845.09.10.R,Reported 10-Sep-1845,1845,Unprovoked,USA,Florida,"Pensacola Bay, Escambia County",Seine netting,Nickerson,M,,FATAL,Y,,,"Tioga Eagle, 9/10/1845",1845.09.10.R-Nickerson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.09.10.R-Nickerson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.09.10.R-Nickerson.pdf,1845.09.10.R,1845.09.10.R,220,, +1845.00.00.R,Reported 1845,1845,Unprovoked,SIERRA LEONE,,,,"""The Queen's Chaplain""",M,,FATAL,Y,,,Journal of an African Cruiser,1845.00.00.R-SierraLeone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.00.00.R-SierraLeone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.00.00.R-SierraLeone.pdf,1845.00.00.R,1845.00.00.R,219,, +1844.07.20.,20-Jul-1844,1844,Unprovoked,NAMIBIA,,,Boat capsized,a seaman from HMS Isis,M,,FATAL,Y,,,"Colonial Times, 5/24/1845",1844.07.20-Isis-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.07.20-Isis-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.07.20-Isis-seaman.pdf,1844.07.20.,1844.07.20.,218,, +1844.07.16.R,1844.07.16.R,1844,Unprovoked,ALGERIA,,Cape Matifou,Swimming,male,M,,FATAL,Y,,,"C. Moore, GSAF",1844.07.16.R-Algeria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.07.16.R-Algeria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.07.16.R-Algeria.pdf,1844.07.16.R,1844.07.16.R,217,, +1844.05.24,24-May-1844,1844,Unprovoked,Coast of AFRICA,Island of St. Thomas,,Fell overboard,"Martin, coxswain of the USS Saratoga",M,,"FATAL, taken immediately by a shark ",Y,,,"Tioga Eagle, 7/31/1844 ",1844.05.24-Saratoga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.05.24-Saratoga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.05.24-Saratoga.pdf,1844.05.24,1844.05.24,216,, +1844.00.00,1844,1844,Unprovoked,MADAGASCAR,,,"Portuguese seaman fell overboard. Boat lowered to pick up with 1st mate & 4 crew, but done hurriedly & all were thrown into the water. As a second boat was lowered, a shark went after the 1st mate but he was rescued. Then the shark went after Mr. Andrews ",Mr. Andrews,M,,FATAL,Y,,,GSAF,1844.00.00-Andrews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.00.00-Andrews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.00.00-Andrews.pdf,1844.00.00,1844.00.00,215,, +1842.07.06,06-Jul-1842,1842,Provoked,USA,New Jersey,"Absecon, Atlantic County",Harassing a shark,male,,,Lacerations to leg PROVOKED INCIDENT,n,,,"New York Evening Post, 7/11/1842",1842.07.06-Absecon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.07.06-Absecon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.07.06-Absecon.pdf,1842.07.06,1842.07.06,214,, +1842.00.00.b,1842,1842,Unprovoked,INDIA,Tamil Nadu, Chennai (formerly Madras),Washed off catamaran in the surf,male,M,7 or 8,FATAL,Y,,,"Tioga Eagle, 10/26/1842",1842.00.00.b-Hindoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.00.00.b-Hindoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.00.00.b-Hindoo.pdf,1842.00.00.b,1842.00.00.b,213,, +1842.00.00.a,1842,1842,Unprovoked,AUSTRALIA,New South Wales,Sydney Harbor,"Unknown, but it was said to be the ""First known attack in Sydney Harbour""",male,M,,Recovered,N,,,"V.M. Coppleson (1933), p.450",1842.00.00.a-1st-SydneyHarbour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.00.00.a-1st-SydneyHarbour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.00.00.a-1st-SydneyHarbour.pdf,1842.00.00.a,1842.00.00.a,212,, +1841.03.27,27-Mar-1841,1841,Unprovoked,AUSTRALIA,New South Wales,"Cockatoo Island, Sydney",Bathing,Andrew Goggin,M,,FATAL,Y,14h00,,"Sydney Gazette, 4/27/1841",1841.03.27-Goggin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1841.03.27-Goggin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1841.03.27-Goggin.pdf,1841.03.27,1841.03.27,211,, +1840.12.00,Dec-1840,1840,Unprovoked,AUSTRALIA,New South Wales,"Off Domain, Sydney Harbor",Swimming,male,M,,FATAL,Y,,,"G.P. Whitley, p.259; L. Schultz & M. Malin, p.523",1840.12.00 - Domain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.12.00 - Domain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.12.00 - Domain.pdf,1840.12.00,1840.12.00,210,, +1840.09.18.R,Reported 18-Sep-1840,1840,Unprovoked,FIJI,Viti Levu Island,Rewa ,,male,M,,Arms & legs severed,N,,,"Hobart Town Courier, 9/18/1840",1840.09.18.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.09.18.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.09.18.R-Fiji.pdf,1840.09.18.R,1840.09.18.R,209,, +1840.02.00,Feb-1840,1840,Boat,AUSTRALIA,Tasmania,George Town Cove,Sailing,A dinghy,,,"No injury to occupant, shark seized stern post",N,,,"C. Black, GSAF",1840.02.00-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.02.00-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.02.00-dinghy.pdf,1840.02.00,1840.02.00,208,, +1840.00.00.a,Ca. 1840,1840,Unprovoked,USA,South Carolina,"Charleston Harbor, Charleston County",Accidentally thrown overboard & treading water while awaiting rescue,crew member of a pilot boat,M,,"FATAL, body was not recovered",Y,,Said to be a 7.6 m [25'] shark,"C. Creswell, GSAF",1840.00.00.a-pilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.00.00.a-pilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.00.00.a-pilot.pdf,1840.00.00.a,1840.00.00.a,207,, +1839.11.17,17-Nov-1839,1839,Invalid,AUSTRALIA,New South Wales,,,Mr.Johnson (male),M,,"""Drowned, 2 days later his head was bitten off by a shark""",Y,,,"H.D. Baldridge, p.146",1839.11.17-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.11.17-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.11.17-Johnson.pdf,1839.11.17,1839.11.17,206,, +1839.04.14,14-Apr-1839,1839,Unprovoked,CUBA,Matanzas Province (north coast),Matanzas,Sitting on gunwale of boat,sailor,M,,FATAL,Y,,"""a large shark""","Daily Courant, 5/31/1839",1839.04.14-Matanzas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.04.14-Matanzas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.04.14-Matanzas.pdf,1839.04.14,1839.04.14,205,, +1839.00.00.b,1839/1840,1839,Unprovoked,AUSTRALIA,South Australia,"Horn Point, Lady's Bay",Attempting to rescue crew after whale upset their boat,Captain Wishart of the whaler Wallaby,M,,FATAL,Y,,,"G. Dunderdale, The Book of the Bush",1839.00.00.b-Wishart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.00.00.b-Wishart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.00.00.b-Wishart.pdf,1839.00.00.b,1839.00.00.b,204,, +1839.00.00.a,Ca. 1839,1839,Unprovoked,FIJI,Viti Levu Island,Rewa ,,"Joeli Bulu, missionary",M,29,Survived,N,,,J. Garrett; T. Kanailagi,1839.00.00.a-Pulu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.00.00.a-Pulu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.00.00.a-Pulu.pdf,1839.00.00.a,1839.00.00.a,203,, +1837.09.03,09-Sep-1837,1837,Unprovoked,USA,South Carolina,"Magwoods Wharf, Charleston Harbor, Charleston County",Bathing,a young boy from the Plymouth,M,,Right foot bittten,N,,,"C. Creswell, GSAF; J. Hair, pp.65-66",1837.09.03-Plymouth-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.09.03-Plymouth-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.09.03-Plymouth-boy.pdf,1837.09.03,1837.09.03,202,, +1837.01.17,17-Jan-1837,1837,Unprovoked,AUSTRALIA,New South Wales,Macleay River,Washing his feet,Alfred Australia Howe,M,12,"FATAL Injured by shark, died of tetanus",Y,Evening,,"Gazette (Sydney) 1/31/1837; Proc. Royal Aust. Hist. Scty, I, Part 2, 1924; G.P. Whitley, p.14; Sharpe, p. 87",1837.01.17-Howe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.01.17-Howe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.01.17-Howe.pdf,1837.01.17,1837.01.17,201,, +1837.00.00.a,Ca. 1837,1837,Invalid,USA,South Carolina,�Southern Wharf�,,"adult male, a sailor",M,,Shark caught contained human remains,,,Said to be a 7.6 m [25'] shark,W. H. Gregg,1837.00.00.a-remains.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.00.00.a-remains.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.00.00.a-remains.pdf,1837.00.00.a,1837.00.00.a,200,, +1836.07.26.R,1836.07.26.R,1836,Invalid,SPAIN,,,,,,,"Shark caught, contained human remains",,,,"C. Moore, GSAF",1836.07.26.R-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1836.07.26.R-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1836.07.26.R-Spain.pdf,1836.07.26.R,1836.07.26.R,199,, +1836.00.00.a,1836.00.,1836,Unprovoked,AUSTRALIA,South Australia,,,,,,"No details, it was the year the first settlers came ashore in Holdfast Bay, Port Pirie",UNKNOWN,,,"A. Sharpe, p.119",1836.00.00.a-HoldfastBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1836.00.00.a-HoldfastBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1836.00.00.a-HoldfastBay.pdf,1836.00.00.a,1836.00.00.a,198,, +1835.02.21.R,Reported 21-Feb-1835,1835,Unprovoked,VANUATU,Sanma Province,"Bay of Yago, Espiritu Santo Island",Bathing,John McKeig,M,,FATAL,Y,,,"Sydney Gazette, 2/21/1835",1835.02.21.R-McKeig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1835.02.21.R-McKeig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1835.02.21.R-McKeig.pdf,1835.02.21.R,1835.02.21.R,197,, +1835.01.06,06-Jan-1835,1835,Unprovoked,TASMAN SEA,35�39 : 165�8',Alongside the whaler Marianne,Hooking into a whale,male,M,,"""Savagely bitten"" but apparently survived",N,,,"G.P. Whitley, p. 259",1835.01.06-Whaler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1835.01.06-Whaler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1835.01.06-Whaler.pdf,1835.01.06,1835.01.06,196,, +1834.07.15.R,Reported 15-Jul-1834,1834,Unprovoked,FRENCH POLYNESIA,Society Islands,Tahiti,Swimming,Kaugatava Orurutm,F,,FATAL,Y,,Reported to involve a hammerhead shark,"Republican Banner, 7/15/1834",1834.07.15.R-Tahiti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1834.07.15.R-Tahiti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1834.07.15.R-Tahiti.pdf,1834.07.15.R,1834.07.15.R,195,, +1832.06.04,04-Jun-1832,1832,Unprovoked,AUSTRALIA,New South Wales,"South Head, Sydney",Fishing,Aboriginal female,F,,Leg severed,N,,,"Sydney Herald, 6/11/1832",1832.06.04-AboriginalWoman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1832.06.04-AboriginalWoman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1832.06.04-AboriginalWoman.pdf,1832.06.04,1832.06.04,194,, +1832.01.23.R,Reported 23-Jan-1832,1832,Unprovoked,AUSTRALIA,New South Wales,Sydney,Bathing,male,M,,Laceration to leg,N,,,"Sydney Herald, 1/23/1832",1832.01.23.R-Wilshire-slaughter-house.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1832.01.23.R-Wilshire-slaughter-house.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1832.01.23.R-Wilshire-slaughter-house.pdf,1832.01.23.R,1832.01.23.R,193,, +1831.01.22.R,Reported 22- Jan-1831,1831,Invalid,AUSTRALIA,Tasmania,Hobart,"Boat capsized, clinging to line",Robert Dudlow,M,,"Drowned, no shark involvement",Y,,,"C. Black, GSAF; Sydney Gazette, 1/22/1831",1831.01.22.R-Dudlow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1831.01.22.R-Dudlow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1831.01.22.R-Dudlow.pdf,1831.01.22.R,1831.01.22.R,192,, +1830.07.26,26-Jul-1830,1830,Unprovoked,USA,Massachusetts,"Swampscott, Essex County","Fishing from dory, shark upset boat & he fell into the water",Joseph Blaney,M,52,FATAL,Y,,,"Huron Sun, 8/3/1830",1830.07.26-JosephBlaney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.07.26-JosephBlaney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.07.26-JosephBlaney.pdf,1830.07.26,1830.07.26,191,, +1830.07.02.R,Reported 02-Jul-1830,1830,Unprovoked,INDIA,Tamil Nadu,Madras,Washing a dog,male,M,,FATAL,Y,Evening,,"Madras Courier, 7/2/1830",1830.07.02.R-Madras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.07.02.R-Madras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.07.02.R-Madras.pdf,1830.07.02.R,1830.07.02.R,190,, +1830.04.30,30-Apr-1830,1830,Unprovoked,INDIA,Tamil Nadu,St. Thom�,Bathing,Ensign Bromwick,M,,FATAL,Y,17h00-18h00,,"Madras Gazette, 5/1/1830",1830.04.30-Bromwick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.04.30-Bromwick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.04.30-Bromwick.pdf,1830.04.30,1830.04.30,189,, +1829.07.03.R,Reported 03-Jul-1829,1829,Unprovoked,SIERRA LEONE,Western Area,,,Thomas Cargill,M,,Both hands severed,N,,,"Hagerstown Mail, 7/3/1829",1829.07.03.R-Cargill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1829.07.03.R-Cargill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1829.07.03.R-Cargill.pdf,1829.07.03.R,1829.07.03.R,188,, +1829.00.00,1829,1829,Sea Disaster,CARIBBEAN SEA,,Between St. Bart's and Saba,Wreck of the schooner Driver,Ned & Pawn,M,,FATAL x 2,Y,,,"The Times, 12/14/1829",1829.00.00-Ned-Pawn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1829.00.00-Ned-Pawn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1829.00.00-Ned-Pawn.pdf,1829.00.00,1829.00.00,187,, +1828.09.28,28-Sep-1828,1828,Unprovoked,SIERRA LEONE,Western Area,"River Sierra Leone, 35 miles upriver from Freetown","British ship, Britannia, was loading lumber. He was bathing","Thomas Corrigle, an apprentice from the ship",M,17,"Left arm severed 2.5"" from elbow, groin, abdomen, right forearm & hand lacerated, flesh removed from thigh, baring femur. Both arms surgically amputated: left arm above elbow, right arm above wrist. Survived",N,,,Account by J. Boyle,1828.09.28-Corrigle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1828.09.28-Corrigle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1828.09.28-Corrigle.pdf,1828.09.28,1828.09.28,186,, +1828.00.00,1828,1828,Unprovoked,USA,Hawaii,"Uo, Lahaina, Maui",Surfing,Male,M,,FATAL,Y,,,"J. Borg, p.68; L. Taylor (1993), pp.94-95",1828.00.00-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1828.00.00-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1828.00.00-male.pdf,1828.00.00,1828.00.00,185,, +1827.06.00.b,Jun-1827,1827,Unprovoked,SIERRA LEONE,Western Area ,Tombo Island in the Sierra Leone River,Swimming,"A boy, one of the crew of the ship Thomas Gelston",M,,The boy's foot was bitten,N,,,Edinburgh Advertiser. 9/12/1828,1827.06.00.b-boy-crew-Gelston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.06.00.b-boy-crew-Gelston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.06.00.b-boy-crew-Gelston.pdf,1827.06.00.b,1827.06.00.b,184,, +1827.06.00.a,Jun-1827,1827,Unprovoked,SIERRA LEONE,Western Area ,Tombo Island in the Sierra Leone River,Swimming,"William Davis, of the ship Thomas Gelston",M,,Davis' leg was severed,N,,,Edinburgh Advertiser. 9/12/1828,1827.06.00.a-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.06.00.a-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.06.00.a-Davis.pdf,1827.06.00.a,1827.06.00.a,183,, +1827.01.11.R,Reported 11-Jan-1827,1827,Unprovoked,JAMAICA,,,Jumped overboard,Thomas Laurington,M,,FATAL,Y,19h00-20h00,,"Sydney Gazette, 1/11/1827",1827.01.11.R-Laurington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.01.11.R-Laurington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.01.11.R-Laurington.pdf,1827.01.11.R,1827.01.11.R,182,, +1827.00.00,1827,1827,Unprovoked,EGYPT,,Alexandria,,Two men,M,,Remains of the men were recovered from a +17-foot shark,Y,,,"C. Moore, GSAF",1827.00.00-Alexandria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.00.00-Alexandria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.00.00-Alexandria.pdf,1827.00.00,1827.00.00,181,, +1826.12.00,Dec-1826,1826,Unprovoked,BRAZIL,Paraiba,Paraiba,,a seaman from the ship Beverly,M,,Leg severed,N,,,Book of the Ocean,1826.12.00-seaman-Beverly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.12.00-seaman-Beverly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.12.00-seaman-Beverly.pdf,1826.12.00,1826.12.00,180,, +1826.11.00,Ca. Nov-1826,1826,Unprovoked,GHANA,Cape Coast,,Bathing,a seaman from HM Redwing,M,,FATAL,Y,,,"Sydney Gazette and New South Wales Advertiser, 7/25/1827 ",1826.11.00-seaman-Redwing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.11.00-seaman-Redwing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.11.00-seaman-Redwing.pdf,1826.11.00,1826.11.00,179,, +1826.08.28,28-Aug-1826,1826,Sea Disaster,CUBA,,,HBM Magpie foundered in a squall,Lieutenant Edward Smith,M,,FATAL ,Y,,,Edinburgh Advertiser. 10/20/1826,1826.08.28-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.08.28-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.08.28-Smith.pdf,1826.08.28,1826.08.28,178,, +1825.00.00.b,1820s,1825,Unprovoked,AUSTRALIA,Tasmania,"Sweet Water Point, Pitt Water",Swimming,"""Amphibious Jack"" male",M,,FATAL,Y,,,"C. Black, GSAF, G.T. Lloyd, pp.79-81; C. Black pp. 142-147",1825.00.00.b-AmphibiousJack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1825.00.00.b-AmphibiousJack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1825.00.00.b-AmphibiousJack.pdf,1825.00.00.b,1825.00.00.b,177,, +1825.00.00,Ca . 1825,1825,Invalid,AUSTRALIA,Western Australia,South Bruny Island,,Nelson,M,,"Arms severed, but he survived",N,,,"C. Black, GSAF",1825.00.00.a-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1825.00.00.a-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1825.00.00.a-Nelson.pdf,1825.00.00,1825.00.00,176,, +1822.04.15,15-Apr-1822,1822,Unprovoked,NIGERIA,Rivers State,Bonny River,,slaves,,,FATAL,Y,,,"Times of London, 8/5/1822, p. 2",1822.04.15-Slaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1822.04.15-Slaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1822.04.15-Slaver.pdf,1822.04.15,1822.04.15,175,, +1819.07.08.R,Reported 08-Jul-1819,1819,Invalid,SPAIN,,Cadiz,,male,M,,No injury / No attack,N,,,"C. Moore, GSAF",1819.07.08.R-Cadiz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1819.07.08.R-Cadiz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1819.07.08-Cadiz.pdf,1819.07.08.R,1819.07.08.R,174,, +1818.05.22.R,Reported 22-May-1818,1818,Invalid,NORWAY,,Her�y,,male,M,,Probable drowning ,,,,"C. Moore, GSAF",1818.05.22.R-Norway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1818.05.22.R-Norway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1818.05.22.R-Norway.pdf,1818.05.22.R,1818.05.22.R,173,, +1817.06.24,24-Jun-1817,1817,Unprovoked,USA,South Carolina,"Charleston Harbor, Charleston County",Swimming,Jemmy,M,,FATAL,Y,,,"The Times, 6/25/1817",1817.06.24-Jemmy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.06.24-Jemmy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.06.24-Jemmy.pdf,1817.06.24,1817.06.24,172,, +1817.06.15,15-Jun-1817,1817,Unprovoked,INDIA,Maharashtra,Bombay (now Mumbai),Swimming,Charles Anderson,M,,FATAL,Y,Evening,,Edinburgh Advertiser. 2/3/1818,1817.06.15-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.06.15-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.06.15-Anderson.pdf,1817.06.15,1817.06.15,171,, +1817.05.11,11-May-1817,1817,Unprovoked,SRI LANKA,Western Province,Colombo,Swimming,William May,M,22,FATAL,Y,Evening,,Edinburgh Advertiser. 11/4/1817; R. DeSilva,1817.05.11-May.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.05.11-May.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.05.11-May.pdf,1817.05.11,1817.05.11,170,, +1817.02.22,22-Feb-1817,1817,Unprovoked,SRI LANKA,,Gulf of Mannar,Conch diver,male,M,,Abdomen bitten,N,13h00,,J. Kennedy,1817.02.22-Mannar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.02.22-Mannar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.02.22-Mannar.pdf,1817.02.22,1817.02.22,169,, +1816.09.03.R,Reported 03-Sept-1816,1816,Unprovoked,USA,Rhode Island,Bristol Harbor,Swimming,male,,,FATAL,Y,,,"Connecticut Courant, 9/3/1816",1816.09.03.R-Rhode-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1816.09.03.R-Rhode-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1816.09.03.R-Rhode-Island.pdf,1816.09.03.R,1816.09.03.R,168,, +1812.07.00,May 1812,1812,Unprovoked,ENGLAND,Devon,Mill Bay,Swimming,soldier from the Lancashire militia,M,,Both legs injured,N,,Thought to involve a porbeagle or mako shark,"C. Moore, GSAF",1812.07.00-Mill-Bay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1812.07.00-Mill-Bay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1812.07.00-Mill-Bay.pdf,1812.07.00,1812.07.00,167,, +1811.03.01,01-Mar-1811,1811,Unprovoked,,,,Fell overboard,John Walker,M,,FATAL,Y,,,Journal of Captain Marryat,1811.03.01-John-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1811.03.01-John-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1811.03.01-John-Walker.pdf,1811.03.01,1811.03.01,166,, +1807.01.12,12-Jan-1807,1807,Unprovoked,AUSTRALIA,New South Wales,"Cockle Bay, Sydney Harbour",,male,M,,Survived,N,,,"J. Green, p.31",1807.01.12-Cockle-Bay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1807.01.12-Cockle-Bay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1807.01.12-Cockle-Bay.pdf,1807.01.12,1807.01.12,165,, +1805.09.00,Sep-1805,1805,Invalid,USA,New York,"Sag Harbor, Suffolk County",,,M,, human remains (male) found in shark�s gut,Y,,,S.L. Mitchill (1814),1805.09.00-NY.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1805.09.00-NY.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1805.09.00-NY.pdf,1805.09.00,1805.09.00,164,, +1804.02.26.R,Reported 26-Feb-1804,1804,Boat,AUSTRALIA,New South Wales,"Georges Head, off Port Jackson",,boat,,,No injury to occupants,N,,," Sydney Gazette, 2/26/1804 ",1804.02.26-boat-GeorgesHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1804.02.26-boat-GeorgesHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1804.02.26-boat-GeorgesHead.pdf,1804.02.26.R,1804.02.26.R,163,, +1803.03.00,Mar-1803,1803,Unprovoked,AUSTRALIA,Western Australia,"Hamelin Harbour, at Faure Island",,M. Lefevre & a sailor (rescuer),M,,Shark knocked him down & tore clothing of the rescuer,N,,,"F. Peron ref in G.P. Whitley (Fishes of Australia), p.13 ",1803.03.00-Lefevre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1803.03.00-Lefevre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1803.03.00-Lefevre.pdf,1803.03.00,1803.03.00,162,, +1800.00.00,1800,1800,Unprovoked,SEYCHELLES,St. Anne,,a corsair's boat was overturned,,F,,"FATAL, all onboard were killed by sharks",Y,,,V. C. Harvey-Brain,1800.00.00-Corsair-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1800.00.00-Corsair-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1800.00.00-Corsair-boat.pdf,1800.00.00,1800.00.00,161,, +1791.00.00,1791,1791,Unprovoked,AUSTRALIA,New South Wales,Port Jackson,,"female, an Australian aboriginal",F,,"FATAL, ""bitten in two""",Y,,,"G.P. Whitley; D. Baldridge, p.162",1791.00.00-aboriginal woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1791.00.00-aboriginal woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1791.00.00-aboriginal woman.pdf,1791.00.00,1791.00.00,160,, +1788.05.10,10-May-1788,1788,Boat,AUSTRALIA,New South Wales,Sydney Harbor,Fishing,boat,,,"No injury to occupants, shark bit oar and rudder",N,,,"G.P. Whitley citing J. Cobley, Sydney Cove, p. 138",1788.05.10-Sydney,http://sharkattackfile.net/spreadsheets/pdf_directory/1788.05.10-Sydney,http://sharkattackfile.net/spreadsheets/pdf_directory/1788.05.10-Sydney,1788.05.10,1788.05.10,159,, +1787.07.05,05-Jul-1787,1787,Unprovoked,St Helena,,Landing Place,Swimming,Private Isaac Hicksled,M,,FATAL,Y,,,"H.R. Janisch (1885), Extracts from the St. Helena Archives",1787.07.05-Hicksled.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1787.07.05-Hicksled.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1787.07.05-Hicksled.pdf,1787.07.05,1787.07.05,158,, +1785.09.26.R,Reported 26-Sep-1785,1785,Unprovoked,ENGLAND,Sussex,Brighton,,,M,,Human remains recovered from shark,Y,,Tiger shark?,"C. Moore, GSAF",1785.09.26.R-Brighton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1785.09.26.R-Brighton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1785.09.26.R-Brighton.pdf,1785.09.26.R,1785.09.26.R,157,, +1779.00.00,1779,1779,Unprovoked,USA,Hawaii,"Maliu, Hawai'i",Surfing,Nu'u-anu-pa'a hu,M,young,"FATAL, buttock lacerated ",Y,,,"G.H. Balazs; J. Borg, p.68; L. Taylor (1993), pp.94-95",1779.00.00-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1779.00.00-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1779.00.00-Hawaii.pdf,1779.00.00,1779.00.00,156,, +1776.00.00.R,Reported 1776,1776,Unprovoked,GUINEA,,,Murder,African slave,M,,FATAL,Y,,,T. Pennant,1776.00.00.R-Slave.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1776.00.00.R-Slave.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1776.00.00.R-Slave.pdf,1776.00.00.R,1776.00.00.R,155,, +1776.00.00.b,1776,1776,Boat,GREENLAND,,,,Occupants of skin boats,,,FATAL,Y,,White sharks,T. Pennant,1776.00.00-Greenland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1776.00.00-Greenland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1776.00.00-Greenland.pdf,1776.00.00.b,1776.00.00.b,154,, +1771.07.12.R,Reported 12-Jul-1771,1771,Unprovoked,USA,,Damiscotte,Fishing,male,M,,FATAL,Y,,,"C. Moore, GSAF",1771.07.12.R-Damiscotte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1771.07.12.R-Damiscotte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1771.07.12.R-Damiscotte.pdf,1771.07.12.R,1771.07.12.R,153,, +1767.00.00,1767,1767,Invalid,FRANCE,C�te d'Azur ,St. Tropez,Bathing,Samuel Matthews,M,,Lacerations to arm & leg,N,,Description of shark does not ring true,,1767.00.00-Matthews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1767.00.00-Matthews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1767.00.00-Matthews.pdf,1767.00.00,1767.00.00,152,, +1764.00.00,1764,1764,Unprovoked,SPAIN,,Guadalquivir River,Swimming,male,M,,FATAL,Y,,,"C. Moore, GSAF",1764.00.00-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1764.00.00-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1764.00.00-Spain.pdf,1764.00.00,1764.00.00,151,, +1758.00.00,1758,1758,Unprovoked,MEDITERRANEAN SEA,,,"Fell overboard from a frigate & was swallowed by a shark. The captain fired a gun at the shark, and ""the creature cast the man out of his throat.""",sailor,M,,"""He was taken up alive and but little injured."" ",N,,"""The fish was harpooned, dried, and presented to the sailor, who went round Europe exhibiting it It was said to be 20 feet long.",A.M. Hodgkin,1758.00.00-Mediterranean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1758.00.00-Mediterranean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1758.00.00-Mediterranean.pdf,1758.00.00,1758.00.00,150,, +1749.00.00,1749,1749,Unprovoked,CUBA,Havana Province,Havana Harbor,Swimming,Brook Watson,M,14,"Right leg severed at knee. In 1796 he became Lord Mayor of London. In 1778 he commissioned American artist, John Singleton Copley, to paint the incident: Watson and the Shark",N,,,GSAF,1749.00.00-Watson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1749.00.00-Watson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1749.00.00-Watson.pdf,1749.00.00,1749.00.00,149,, +1755.00.00,1755,1755,Unprovoked,SWEDEN,Skagerrak arm of the North Sea,Bohusl�n,,Fishermen,M,,,UNKNOWN,,,"C. Moore, GSAF",1755.00.00-Sweden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1755.00.00-Sweden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1755.00.00-Sweden.pdf,1755.00.00,1755.00.00,148,, +1748.00.00,1748,1748,Unprovoked,PANAMA,Las Perlas archipelago,Taboga & Isla del Rey,Pearl diving,African slaves,M,,FATAL,Y,,,"J. Castro, et al",1748.00.00.R-LasPerlas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1748.00.00.R-LasPerlas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1748.00.00.R-LasPerlas.pdf,1748.00.00,1748.00.00,147,, +1742.12.17,17-Dec-1742,1742,Unprovoked,,,Carlisle Bay,Swimming,2 impressed seamen,M,,FATAL,Y,,,"C. Moore, GSAF",1742.12.17-AdviceSeamen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1742.12.17-AdviceSeamen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1742.12.17-AdviceSeamen.pdf,1742.12.17,1742.12.17,146,, +1738.04.06.R,Reported 06-Apr-1738,1738,Unprovoked,ITALY,Sicily,Strait of Messina,Swimming,male,M,,FATAL,Y,,,"C. Moore, GSAF",1738.04.06.R-Messina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1738.04.06.R-Messina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1738.04.06.R-Messina.pdf,1738.04.06.R,1738.04.06.R,145,, +1733.00.00,1733,1733,Invalid,ICELAND,Bardestrand,Talkknefiord,,,,,"Partial hominid remains recovered from shark, probable drowning and scavenging",,,,E. Olafsen,1733.00.00-Iceland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1733.00.00-Iceland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1733.00.00-Iceland.pdf,1733.00.00,1733.00.00,144,, +1721.06.00,June 1721,1721,Unprovoked,ITALY,Sardinia,"Ponte della Maddelena,",Swimming,male,M,,"FATAL, partial remains recovered from shark�s gut",Y,,"White shark, 1600-lb female ",F. Ricciardi; A. De Maddalena. ,1721.06.00-Maddalena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1721.06.00-Maddalena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1721.06.00-Maddalena.pdf,1721.06.00,1721.06.00,143,, +1703.03.26,26-Mar-1703,1703,Unprovoked,BARBADOS,Southwest coast,Carlisle Bay,Swimming,"Samuel Jennings, a deserter from the British frigate Milford",M,19,"Hand and foot severely bitten, surgically amputated",N,Night,,"W.R.Cutter, Vol.1, p.252",1703.03.26-Jennings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1703.03.26-Jennings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1703.03.26-Jennings.pdf,1703.03.26,1703.03.26,142,, +1700.00.00.c,1700s,1700,Unprovoked,FRANCE,,Nice,,child,M,,FATAL,Y,,,"A. De Maddalena, citing Cazeils (1998)",1700.00.00.c-Nice.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.c-Nice.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.c-Nice.pdf,1700.00.00.c,1700.00.00.c,141,, +1700.00.00.b,1700s,1700,Unprovoked,FRANCE,C�te d'Azur ,Antibes,Bathing,seaman,M,,Leg severed,N,,White shark,"A. De Maddalena, citing Cazeils (1998)",1700.00.00.b-Antibes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.b-Antibes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.b-Antibes.pdf,1700.00.00.b,1700.00.00.b,140,, +1700.00.00.a,1700s,1700,Unprovoked,BARBADOS,,,Bathing,seaman from the York,M,,FATAL,Y,,,"Tioga Eagle, 10.26/ 1842",1700.00.00.a-Barbados.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.a-Barbados.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.a-Barbados.pdf,1700.00.00.a,1700.00.00.a,139,, +1642.00.00.b,Late 1600s Reported 1728,1642,Invalid,GUINEA,,,Went overboard,crew member of the Nieuwstadt,M,,FATAL,Y,,,"History of the Pyrates, by D. Defoe, Vol. 2, p.28",1642.00.00.b-Nieuwstadt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1642.00.00.b-Nieuwstadt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1642.00.00.b-Nieuwstadt.pdf,1642.00.00.b,1642.00.00.b,138,, +1638.00.00.R,Reported 1638,1638,Unprovoked,,,,,sailors,M,,,UNKNOWN,,,Sir Thomas Herbert,1638.00.00.R-Herbert,http://sharkattackfile.net/spreadsheets/pdf_directory/1638.00.00.R-Herbert,http://sharkattackfile.net/spreadsheets/pdf_directory/1638.00.00.R-Herbert,1638.00.00.R,1638.00.00.R,137,, +1637.00.00.R,Reported 1637,1637,Unprovoked,INDIA,West Bengal,Hooghly River mouth,Wading,Hindu pilgrims,,,,UNKNOWN,,,"H. Edwards, p.31, citing Sebastian Manrique",1637.00.00.R-Manrique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1637.00.00.R-Manrique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1637.00.00-Manrique.pdf,1637.00.00.R,1637.00.00.R,136,, +1617.00.00.R,Reported 1617,1617,Unprovoked,INDIA,West Bengal,Ganges Delta,,Indian people,,,,UNKNOWN,,,"H. Edwards, p.31, citing Samuel Purchas",1617.00.00-Purchas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1617.00.00-Purchas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1617.00.00-Purchas.pdf,1617.00.00.R,1617.00.00.R,135,, +1642.00.00,1642,1642,Unprovoked,USA,New York ,Between Manhattan and The Bronx,Swimming ,Antony Van Corlear,M,,FATAL,Y,,,"Knickerbocker's History of New York, by Washington Irving",1642.00.00-Corlear.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1642.00.00-Corlear.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1642.00.00-Corlear.pdf,1642.00.00,1642.00.00,134,, +1595.00.00,1595,1595,Unprovoked,INDIA,Kerala,River Cochin,Ship lay at anchor & man was working on its rudder,male,M,,"Leg severed mid-thigh, hand severed, arm above elbow and part of buttocks. Not known if he survived",UNKNOWN,,,The Voyage of John Huyghen van Linschoten,1595.00.00-Cochin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1595.00.00-Cochin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1595.00.00-Cochin.pdf,1595.00.00,1595.00.00,133,, +1580.01.10.R,Letter dated 10-Jan-1580,1580,Unprovoked,Between PORTUGAL & INDIA,,,Man fell overboard from ship. Those on board threw a rope to him with a wooden block & were pulling him to the ship,male,M,,"FATAL. ""Shark tore him to pieces.",Y,,,"G.P. Whitley, p. 10",1580.01.10.R-Portugal-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1580.01.10.R-Portugal-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1580.01.10.R-Portugal-India.pdf,1580.01.10.R,1580.01.10.R,132,, +1555.00.00,1555,1555,Unprovoked,,,,Swimming,male,M,,,UNKNOWN,,,Olaus Magnus,1555.00.00 - Olaus Magnus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1555.00.00 - Olaus Magnus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1555.00.00 - Olaus Magnus.pdf,1555.00.00,1555.00.00,131,, +1554.00.00,Ca. 1554,1554,Unprovoked,FRANCE,Nice & Marseilles,,,males (wearing armor),M,,,UNKNOWN,,Possibly white sharks,G. Rondelet ,1554.00.00-Rondelet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1554.00.00-Rondelet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1554.00.00-Rondelet.pdf,1554.00.00,1554.00.00,130,, +1543.00.00,Ca. 1543,1543,Unprovoked,VENEZUELA,Magarita or Cubagua Islands,,Pearl diving,Indian slave,M,,FATAL,Y,,,J. Castro,1543.00.00.R-LasCasas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1543.00.00.R-LasCasas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1543.00.00.R-LasCasas.pdf,1543.00.00,1543.00.00,129,, +0500.00.00,Circa 500 A.D.,500,Unprovoked,MEXICO,,,,male,,,Foot severed,N,,,J. Castro,500AD-Mexico.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/500AD-Mexico.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/500AD-Mexico.pdf,0500.00.00,0500.00.00,128,, +0077.00.00,77 A.D.,77,Unprovoked,,Ionian Sea,,Sponge diving,males,M,,FATAL,Y,,,Perils mentioned by Pliny the Elder (23 A.D. to 76 A.D.),77AD-Pliny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/77AD-Pliny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/77AD-Pliny.pdf,0077.00.00,0077.00.00,127,, +0005.00.00,Ca. 5 A.D.,5,Unprovoked,AUSTRALIA,New South Wales,Bondi,,male,M,,Aboriginal rock carving depicts man being attacked by a shark,N,,,Waverly Library,0005.00.00-AustralianAboriginal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/0005.00.00-AustralianAboriginal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/0005.00.00-AustralianAboriginal.pdf,0005.00.00,0005.00.00,126,, +0.0214,Ca. 214 B.C.,0,Unprovoked,,Ionian Sea,,Ascending from a dive,"Tharsys, a sponge diver",M,,"FATAL, shark/s bit him in two",Y,,,"Reported by Greek poet, Leonidas of Tarentum (228 B.C to 174 B.C.); V.M. Coppleson (1958), pp.4 &5",214BC-Tharsys.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/214BC-Tharsys.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/214BC-Tharsys.pdf,0.0214,0.0214,125,, +0.0336,Ca. 336.B.C..,0,Unprovoked,GREECE,Piraeus,In the haven of Cantharus,Washing his pig in preparation for a religious ceremony,A candidate for initiation,M,,"FATAL, shark ""bit off all lower parts of him up to the belly""",Y,,,Plutarch (45 - 125 A.D.) in Life of Phoecion (Phoecion 28),336-BC-Carnathus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/336-BC-Carnathus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/336-BC-Carnathus.pdf,0.0336,0.0336,124,, +0.0493,493 B.C.,0,Sea Disaster,GREECE,Off Thessaly,,Shipwrecked Persian Fleet,,M,,Herodotus tells of sharks attacking men in the water,N,,,Herodotus (485 - 425 B.C.),493BC-PersianFleet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/493BC-PersianFleet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/493BC-PersianFleet.pdf,0.0493,0.0493,123,, +0.0725,Ca. 725 B.C.,0,Sea Disaster,ITALY,Tyrrhenian Sea,"Vase found during excavations at Lacco Ameno, Ischia",,,,,"Vase depicts shipwrecked sailors, one of whom is being attacked by a shark",N,,,V.M. Coppleson (1958),725BC-vase.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/725BC-vase.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/725BC-vase.pdf,0.0725,0.0725,122,, +ND-0153,1990 or 1991,0,Unprovoked,KENYA,Mombasa,Kilindini,Diving,Conway Plough & Dr. Jonathan Higgs,M,,Conway's leg was bitten Higgs injury was FATAL,N,,,A.J. Venter,ND-0153-Plough-Higgs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0153-Plough-Higgs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0153-Plough-Higgs.pdf,ND-0153,ND-0153,121,, +ND-0152,Before 2016,0,Unprovoked,KENYA,Mombasa,Kilindini,Diving,Hamisi Njenga,M,,FATAL,Y,,,eadestination,ND-0152-Kenya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0152-Kenya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0152-Kenya.pdf,ND-0152,ND-0152,120,, +ND-0151,Before Oct-2009,0,Unprovoked,PANAMA,Bocas del Toro Province,Red Frog Beach,Swimming/,male,M,20,FATAL,Y,,,C. Mendieta & A. Duarte,ND-0151-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0151-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0151-Panama.pdf,ND-0151,ND-0151,119,, +ND-0150,Before 1934,0,Unprovoked,URUGUAY,Rocha,"Isla Chica, La Paloma",Swimming,,,,Foot bitten,N,,,"Di Candia, 2004",ND-0150-Uruguay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0150-Uruguay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0150-Uruguay.pdf,ND-0150,ND-0150,118,, +ND-0149,Before 1934,0,Unprovoked,URUGUAY,Rocha ,"Playa del Barco, La Pedrera",Swimming,Maciello,M,,FATAL,Y,,,"Di Candia, 2004",ND-0149-Maciello.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0149-Maciello.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0149-Maciello.pdf,ND-0149,ND-0149,117,, +ND-0148,2009?,0,Unprovoked,USA,South Carolina,Charleston,Swimming,Rick Donnis,M,,Minor injury,N,,,WBTV-News3,ND-0148-Donnis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0148-Donnis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0148-Donnis.pdf,ND-0148,ND-0148,116,, +ND-1940,Before 1930,0,Unprovoked,PAPUA NEW GUINEA,Morobe Province,Simbang,Swimming to canoe,male,M,,FATAL,Y,,,"The Advertiser (Adelaide), 6/2/1933",ND-0140-NewGuinea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0140-NewGuinea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0140-NewGuinea.pdf,ND-1940,ND-1940,115,, +ND-0139,1880-1899,0,Unprovoked,AUSTRALIA,Queensland,Boonooroo,,Lassie,F,15,Foot severed,N,,,"Courier Mail, 6/30/1951",ND-0139-Lassie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0139-Lassie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0139-Lassie.pdf,ND-0139,ND-0139,114,, +ND-0138,Before 1909,0,Unprovoked,AUSTRALIA,Queensland,Moreton Bay,Fell into the water,Lieutenant Hexton,M,,FATAL,Y,,,"Brisbane Courier, 1/28/1909",ND-0138-Hexton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0138-Hexton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0138-Hexton.pdf,ND-0138,ND-0138,113,, +ND-0136,Before 2012,0,Unprovoked,USA,Hawaii,Oahu,Diving,Ken O'Keefe,M,,Minor laceration to hand,N,," Galapagos shark, 6'",K. O'keefe,ND-0136-Keefe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0136-Keefe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0136-Keefe.pdf,ND-0136,ND-0136,112,, +ND-0135,Before 1916,0,Unprovoked,BERMUDA,,,,male,M,,FATAL,Y,,,"New York Times, 7/22/1916",ND-0135-Bermuda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0135-Bermuda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0135-Bermuda.pdf,ND-0135,ND-0135,111,, +ND-0134,Between 1951-1963,0,Unprovoked,GREECE,,,Swimming,Martha Hatagouei,F,,FATAL,Y,,,"C. Moore, GSAF",ND-0134-Greece-Hatagouei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0134-Greece-Hatagouei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0134-Greece-Hatagouei.pdf,ND-0134,ND-0134,110,, +ND-0133,Before 1908,0,Unprovoked,USA,California,"Monterey, Montery County",Fishing for basking sharks,males,M,,FATAL PROVOKED INCIDENTS,Y,,Basking shark,C.F. Holder,ND-0133-BaskingShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0133-BaskingShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0133-BaskingShark.pdf,ND-0133,ND-0133,109,, +ND-0132,Before 1900,0,Provoked,INDIA,,,,male,M,,Cut to arm while roping shark PROVOKED INCIDENT,N,,,Naval Journal (undated),ND-0132-India-fight-with-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0132-India-fight-with-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0132-India-fight-with-shark.pdf,ND-0132,ND-0132,108,, +ND-0130,Before 1876,0,Unprovoked,LEBANON,,,Collecting fish ,Kahlifeh,M,,Posterior thigh bitten,N,,,"C. Moore, GSAF",ND-0130-Lebanon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0130-Lebanon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0130-Lebanon.pdf,ND-0130,ND-0130,107,, +ND-0129,Before 2012,0,Unprovoked,SPAIN,Canary Islands,Tenerife,Skin diving,,,,Injury required 16 stitches,N,,,"C. Moore, GSAF",ND-0129-Tenerife.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0129-Tenerife.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0129-Tenerife.pdf,ND-0129,ND-0129,106,, +ND-0127,Before 2011,0,Unprovoked,SUDAN,Red Sea State,,Snorkeling,female,F,,Leg severely bitten,N,,,"E. Ritter, GSAF",ND-0127-Sudan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0127-Sudan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0127-Sudan.pdf,ND-0127,ND-0127,105,, +ND-0124,Before 2011,0,Provoked,,,,,Phillip Peters,M,,Bitten by captive sharks PROVOKED INCIDENTS,N,,,"Watertown Daily Times, 7/8/2011",ND-0124-Peters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0124-Peters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0124-Peters.pdf,ND-0124,ND-0124,104,, +ND-0123,Before 2009,0,Unprovoked,USA,Florida,,Shark tagging,Danniell Washington,F,21,Severe abrasion to forearm from captive shark PROVOKED INICIDENT,N,18h00,"Blacktip shark, 5'",Daniell Washington,ND-0123-Daniell-Washington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0123-Daniell-Washington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0123-Daniell-Washington.pdf,ND-0123,ND-0123,103,, +ND-0122,Beforer 1994,0,Unprovoked,USA,Florida,"Lost Tree Village, Palm Beach County",Surfing,C.M,M,,Legs bitten,N,,,M. Vorenberg,ND-0122-CM.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0122-CM.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0122-CM.pdf,ND-0122,ND-0122,102,, +ND-0119,Before 1963,0,Unprovoked,DJIBOUTI,Gulf of Tadjoura,,A dhow capsized,Passenger & crew,,,FATAL,Y,,,A. C. Doyle,ND-0119-Gulf-of-Tadjoura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0119-Gulf-of-Tadjoura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0119-Gulf-of-Tadjoura.pdf,ND-0119,ND-0119,101,, +ND-0118,1896-1913,0,Unprovoked,LIBYA,Cyrenaica,Kirinaiki,Sponge diving,a diver from Kalymnos,M,,FATAL,Y,,,M. Bardanis,ND-0118-Stathis-partner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0118-Stathis-partner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0118-Stathis-partner.pdf,ND-0118,ND-0118,100,, +ND-0116,Before 1936,0,Unprovoked,AUSTRALIA,,,Net-fishing,August Eichmann,M,,Calf bitten,N,,,"Courier-Mail, 1/11/1936",ND-0116-Eichmann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0116-Eichmann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0116-Eichmann.pdf,ND-0116,ND-0116,99,, +ND-0115,Before 08-Jun-1912,0,Unprovoked,NEW ZEALAND,North Island,"Point Halsey, Wellington",,Kai-tawaro,M,,FATAL,Y,,,"Evening Post, 6/8/1912",ND-0115-Wellington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0115-Wellington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0115-Wellington.pdf,ND-0115,ND-0115,98,, +nd-0114,Before 2012,0,Unprovoked,,,In a river feeding into the Bay of Bengal,Netting shrimp,Sametra Mestri,F,,Hand severed,N,,,National Georgraphic Television,ND-0114-BayOfBengal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0114-BayOfBengal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0114-BayOfBengal.pdf,nd-0114,nd-0114,97,, +ND-0113,Before 1911,0,Unprovoked,VIETNAM,,,Bathing,male,M,,Foot bitten,N,,,"Daily Kennebec Journal, 3/27/ 1911",ND-0113-Vietnam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0113-Vietnam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0113-Vietnam.pdf,ND-0113,ND-0113,96,, +ND-0111,Before 1901,0,Unprovoked,SRI LANKA,Northern Province,Mannar,Fishing?,male,M,,Foot bitten,N,,,Gould & Pyle,ND-0111-SriLanka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0111-SriLanka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0111-SriLanka.pdf,ND-0111,ND-0111,95,, +ND.0110,"No date, late 1960s",0,Unprovoked,VENEZUELA,Los Roques Islands,,Spearfishing ,4 French divers,M,,"FATAL (x3), one survived with minor injuries",Y,,said to involve 2.5 m hammerhead sharks,http://waterco.com.br/ataque_tubarao.htm,ND-0110-FrenchDivers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0110-FrenchDivers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0110-FrenchDivers.pdf,ND.0110,ND.0110,94,, +ND-0109,Before 2006,0,Unprovoked,USA,Florida,"Tampa Bay, Hillsborough County",Wade-fishing,Ed Snyder,M,,"No injury, shark rammed his back",N,,,Fishingworld.com,ND-0109-Ed-Snyder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0109-Ed-Snyder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0109-Ed-Snyder.pdf,ND-0109,ND-0109,93,, +ND-0108,Before 2003,0,Unprovoked,GREECE,Dodecanese Islands,Near Symi Island,Free diving for sponges,male,M,,FATAL,Y,,,M. Kalafatas,ND-0108-SpongeDiver-Symi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0108-SpongeDiver-Symi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0108-SpongeDiver-Symi.pdf,ND-0108,ND-0108,92,, +ND-0107,Before 2004,0,Boat,MOZAMBIQUE,Inhambane Province,Off Inhambane,Fishing,"4.8-metre skiboat, Occupants: Rod Salm & 4 friends",,,"No injury to occupants, shark bumped boat",N,,Whale shark,South African Shark Attack File,ND-0107-Inhambane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0107-Inhambane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0107-Inhambane.pdf,ND-0107,ND-0107,91,, +ND-0106,Before 1962,0,Unprovoked,SOUTH AFRICA,Western Cape Province,"Murray Bay, Robben Island",Swimming,"male, a mental patient",M,,"FATAL, body not recovered",Y,,,"L.Green, A Decent Fellow doesn't Work, p.225",ND-0106-MentalPatient.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0106-MentalPatient.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0106-MentalPatient.pdf,ND-0106,ND-0106,90,, +ND.0104,1950s,0,Unprovoked,AUSTRALIA,Torres Strait,,Helmet diving,male,M,,"No injury, helmet bitten",N,,Tiger shark,"A. Seekee & R. Callinan, Courier-Mail, 7/7/1995, p.7",ND-0104-HelmetDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0104-HelmetDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0104-HelmetDiver.pdf,ND.0104,ND.0104,89,, +ND.0102,"No date, Before 1963",0,Unprovoked,BAHREIN,,,Pearl diving,male,M,,FATAL,Y,,Tiger shark,A.C. Doyle,ND-0102-Bahrein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0102-Bahrein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0102-Bahrein.pdf,ND.0102,ND.0102,88,, +ND.0100,2003?,0,Unprovoked,BAHAMAS,Andros Islands,Great Guana Cay,Spearfishing ,C.D. Dollar,M,,Swim fin bitten,N,,1.8 m [6'] shark,"R.D. Weeks, GSAF",ND-0100-CDDollar.pdf,Q93http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0100-CDDollar.pdf,Q93http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0100-CDDollar.pdf,ND.0100,ND.0100,87,, +ND.0097,No date,0,Unprovoked,USA,Florida,"Key West, Monroe County",Kitesurfing,Paul Menta,M,,Hand bitten,N,,,Internet,ND-0097-PaulMenta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0097-PaulMenta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0097-PaulMenta.pdf,ND.0097,ND.0097,86,, +ND.0096,No date,0,Unprovoked,REUNION,Grand'Anse,Petite-�le,yachtsman in a zodiac,,M,,Survived,N,,,G. Van Grevelynghe,ND-0096-Zodiac-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0096-Zodiac-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0096-Zodiac-Reunion.pdf,ND.0096,ND.0096,85,, +ND.0095,Before Feb-1998,0,Unprovoked,SOLOMON ISLANDS,Malaita Province,Waibana Passage,Diving,Albert Raiti,,,Lacerations to hands and knee,N,,,"Islands Magazine, 2/1998, p.76",ND-0095-AlbertRaiti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0095-AlbertRaiti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0095-AlbertRaiti.pdf,ND.0095,ND.0095,84,, +ND.0094,"No date, Before May-1996",0,Unprovoked,KOREA,South Korea,Cheju Island,Diving,"female, a Hae Nyeo",F,,"FATAL, injured while diving, then shark bit her ",Y,,,"K. Amsler, Divernet.com",ND-0094-HaeNyeo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0094-HaeNyeo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0094-HaeNyeo.pdf,ND.0094,ND.0094,83,, +ND.0093,"No date, Before Mar-1995",0,Unprovoked,FRENCH POLYNESIA,Tuamotus,Rangiroa,Fishing,male,M,,"Speared a shark, fell overboard and another shark severed his arm ",N,,,J. Windh,ND-0093-Rangiroa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0093-Rangiroa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0093-Rangiroa.pdf,ND.0093,ND.0093,82,, +ND.0091,Before 1996,0,Unprovoked,SUDAN,Red Sea State,Sha'ab Rumi,Diving,Erik Bjurstrom,M,,"No injury, BC ripped",N,,Silvertip shark,"E. Bjurstrom,",ND-0091-Bjurstrom-RedSea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0091-Bjurstrom-RedSea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0091-Bjurstrom-RedSea.pdf,ND.0091,ND.0091,81,, +ND.0090,"No date, Before Aug-1989",0,Unprovoked,VANUATU,Malampa Province,Malakula,,female,F,,FATAL,Y,,,S. Combs,ND-0090-Vanuatu-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0090-Vanuatu-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0090-Vanuatu-female.pdf,ND.0090,ND.0090,80,, +ND.0089,"No date, Before Aug-1987",0,Provoked,VANUATU,Malampa Province,"Hokai, Malakula",Attempting to drive shark from area,a chief,M,,Speared shark broke outrigger of canoe throwing man into the water & shark bit his buttock PROVOKED INCIDENT,N,,A large hammerhead shark,S. Combs,ND-0089-VanuatuChief.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0089-VanuatuChief.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0089-VanuatuChief.pdf,ND.0089,ND.0089,79,, +ND.0088,"No date, Before 1987",0,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",,Mr. Jabar-Kaaby,M,,Foot severed,N,,Bull shark,B. Coad & F. Papahn,ND-0088-Jabar-Kaaby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0088-Jabar-Kaaby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0088-Jabar-Kaaby.pdf,ND.0088,ND.0088,78,, +ND.0087,"No date, Before 1975",0,Provoked,USA,Florida,"Riviera Beach, Palm Beach County",Skin diving. Grabbed shark's tail; shark turned & grabbed diver's ankle & began towing him to deep water,Carl Bruster,M,19,"Ankle punctured & lacerated, hands abraded PROVOKED INCIDENT",N,,"Nurse shark, 2.1 m [7'] ","R. Skocik, p.176",ND-0087-Carl-Bruster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0087-Carl-Bruster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0087-Carl-Bruster.pdf,ND.0087,ND.0087,77,, +ND.0086,"No date, Before 1975",0,Invalid,PAPUA NEW GUINEA,Milne Bay Province," D'Entrecasteaux islands, 20 miles off the coast",Scuba diving,Dan Hogan,M,,Said to be fatal but incident highly questionable,Y,,"Tiger shark, 4.6 m to 6 m [15' to 20'] ","F. Dennis, pp.15-16",ND-0086-DanHogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0086-DanHogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0086-DanHogan.pdf,ND.0086,ND.0086,76,, +ND.0085,"No date, Before 1969",0,Unprovoked,RED SEA?,,,Free diving,Jill Reed,F,,"Shoulder scratched, swim fin bitten",N,Morning,,"Captain T. Falcon-Barker, pp. 91-93",ND-0085-JillReed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0085-JillReed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0085-JillReed.pdf,ND.0085,ND.0085,75,, +ND.0084,"No date, Before 3-Jan-1967",0,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Keiskamma River mouth,Crossing river on a raft,Sinsa,M,,"FATAL, leg severed",Y,,,"Whitaker, The Sun, 1/3/1967",ND-0084-Sinsa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0084-Sinsa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0084-Sinsa.pdf,ND.0084,ND.0084,74,, +ND.0083,"No date, Before 1963",0,Unprovoked,USA,California,"LaJolla, San Diego County","Free diving, collecting sand dollars",Charles Fleming,M,,Calf bitten,N,,"Shovelnose guitarfish, adult male ","C. Limbaugh in Sharks & Survival, pp.77-78",ND-0083-Fleming.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0083-Fleming.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0083-Fleming.pdf,ND.0083,ND.0083,73,, +ND.0082,"No date, Before 8-May-1965",0,Unprovoked,GREECE,Island of Volos,Eastern shore,Swimming,woman,F,,FATAL,Y,,,"Sydney Morning Herald, 5/8/1965 ",ND-0082-Volos-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0082-Volos-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0082-Volos-Greece.pdf,ND.0082,ND.0082,72,, +ND.0081,"No date, Before 1963",0,Invalid,USA,Hawaii,"Portlock, Oahu",Diving,Val Valentine,M,,"A 4.3 m [14'] shark made threat display. No injury, no attack",N,,,B. Sojka & D. Lloyd,ND-0081-Valentine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0081-Valentine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0081-Valentine.pdf,ND.0081,ND.0081,71,, +ND.0078,"No date, Before 1902",0,Unprovoked,USA,Florida,"Mosquito Inlet (Ponce Inlet), Volusia County",Canoeing,male,M,,FATAL,Y,,,"W.H. Gregg, p.19; L. Schultz & M. Malin, p.533",ND-0078-canoeist-mail-carrier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0078-canoeist-mail-carrier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0078-canoeist-mail-carrier.pdf,ND.0078,ND.0078,70,, +ND.0076,"No date, Before 1902",0,Unprovoked,MEDITERRANEAN SEA,,,,"male, a ship carpenter",M,,FATAL,Y,,,"W.H. Gregg, p.22; L. Schultz & M. Malin, p.529",ND-0076-Mediterranean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0076-Mediterranean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0076-Mediterranean.pdf,ND.0076,ND.0076,69,, +ND.0075,"No date, Before 1963",0,Unprovoked,AUSTRALIA,Torres Strait,,Diving for trochus,male,M,,Calf removed,N,,0.9 m [3'] shark,"G.P. Whitley (1952), p.192, cites A. Marshall",ND-0075-TorresStrait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0075-TorresStrait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0075-TorresStrait.pdf,ND.0075,ND.0075,68,, +ND.0074,"No date, After August 1926 and before 1936",0,Unprovoked,AUSTRALIA,Western Australia,Cossack Creek,Pearl diving,Ted Luck,M,,Leg bitten,N,,,"N. Caldwell; T. Peake, GSAF",ND-0074-Ted-Luck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0074-Ted-Luck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0074-Ted-Luck.pdf,ND.0074,ND.0074,67,, +ND.0073,"No date, Before 1963",0,Unprovoked,SINGAPORE,,"Keppel Harbor, 2 miles from Singapore city center",Swimming,,,,Recovered,N,,,"V.M. Coppleson (1958), p.266",ND-0073-KeppelHarbourSingapore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0073-KeppelHarbourSingapore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0073-KeppelHarbourSingapore.pdf,ND.0073,ND.0073,66,, +ND.0069,Before 1962,0,Unprovoked,FIJI,,,Spearfishing ,Dalton Baldwin,M,27,"No injury, bumped by shark which took speared fish",N,,1.8 m [6'] shark,"V. M. Coppleson (1962), p.253",ND-0069-Dalton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0069-Dalton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0069-Dalton.pdf,ND.0069,ND.0069,65,, +ND.0068,Before 1962,0,Unprovoked,MOZAMBIQUE,Maputo Province,Santa Maria Peninsula,Skindiving,Les Bishop,M,36,Bumped by sharks,N,,"""A pack of sharks""",L. Bishop; V.M. Coppleson (1962),ND-0068-LesBishop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0068-LesBishop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0068-LesBishop.pdf,ND.0068,ND.0068,64,, +ND.0066,Before 1961,0,Unprovoked,SEYCHELLES,Amirante Islands,Marie Louise Island,Swimming from capsized pirogue,Aristede,M,,FATAL,Y,,Tiger shark,"Travis, pp. 326-327",ND-0066-Aristede.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0066-Aristede.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0066-Aristede.pdf,ND.0066,ND.0066,63,, +ND.0065,1960s,0,Unprovoked,IRAQ,Basrah,Shatt-al-Arab River,Fishing from a small boat & put his hand in the water while holding a dead fish,male,M,25,Right hand severed,N,Afternoon,,B.W. Coad & L.A.J. Al-Hassan,ND-0065-deadfish.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0065-deadfish.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0065-deadfish.pdf,ND.0065,ND.0065,62,, +ND.0064,1960s,0,Unprovoked,IRAQ,Basrah,Shatt-al-Arab River ,Swimming naked near a date palm where many dates fell into the water,male,M,6,Arm severed,N,Afternoon,Bull shark,B.W. Coad & L.A.J. Al-Hassan,ND-0064-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0064-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0064-Shatt-al-Arab.pdf,ND.0064,ND.0064,61,, +ND.0063,1960s,0,Unprovoked,IRAQ,Basrah,Shatt-al-Arab River near Abu al Khasib,Swimming in section of river used for washing clothes & cooking utensils,male,M,16,Right leg lacerated & surgically amputated,N,Afternoon,Bull shark,B.W. Coad & L.A.J. Al-Hassan,ND-0063-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0063-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0063-Shatt-al-Arab.pdf,ND.0063,ND.0063,60,, +ND.0062,Before 1960,0,Unprovoked,BAHAMAS,Andros Islands,,,"male, a sponge Diver",M,,Lower leg and forearm severed,N,,"White shark, 7' to 8'","Star-Ledger (Newark, NJ), 8/22/1960",ND-0062-Spongediver-Andros.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0062-Spongediver-Andros.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0062-Spongediver-Andros.pdf,ND.0062,ND.0062,59,, +ND.0060,Before 19-Jun-1959,0,Unprovoked,USA,California,"Capistrano, Orange County",,girl,F,,Leg injured,N,,"White shark, 1,900-lb ","B. Walton, Sun (San Bernardino), 6/19/1959 ",ND-0060-Capistrano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0060-Capistrano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0060-Capistrano.pdf,ND.0060,ND.0060,58,, +ND.0059,Before 24 Apr-1959,0,Unprovoked,BERMUDA,Paget,Paget Parish,Spearfishing ,Ross Doe,M,,Shoulder abraded by skin of shark,N,,,"Mentioned in letter from L. S. Mowbray dated 4/24/1959; L. Schultz & M. Malin, p.516",ND-0059-RossDoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0059-RossDoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0059-RossDoe.pdf,ND.0059,ND.0059,57,, +ND.0058,Before 1958,0,Unprovoked,FIJI,Kadavu Island Group,"18.8S, 178.25E",Swimming with fish attached to belt,Fijian girl,F,,"""Severely injured when fish were seized by shark""",N,,,"V.M. Coppleson (1958), p.259",ND-0058-Fiji-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0058-Fiji-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0058-Fiji-girl.pdf,ND.0058,ND.0058,56,, +ND.0057,Before 1958,0,Unprovoked,MADAGASCAR,Toamasina Province,Tamatave,Bathing,male,M,,FATAL,Y,,,"V.M. Coppleson (1958), p.259",ND-0057-Tamatave-Madagascar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0057-Tamatave-Madagascar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0057-Tamatave-Madagascar.pdf,ND.0057,ND.0057,55,, +ND.0056,Before 1958,0,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Standing,Horton Chase,M,,Abrasions & bruises hip to ankle,N,,,"V.M. Coppleson (1956), p.255; R.F. Hutton",ND-0056-HortonChase.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0056-HortonChase.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0056-HortonChase.pdf,ND.0056,ND.0056,54,, +ND.0055,Before 1958,0,Provoked,BAHAMAS,Andros Islands,Middle Bight,Testing movie camera in full diving dress,John Fenton,M,,Shark bit diver's sleeve after he patted it on the head PROVOKED INCIDENT,N,,"Nurse shark, 2.1 m [7']","V.M. Coppleson (1958), p.97",ND-0055-JohnFenton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0055-JohnFenton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0055-JohnFenton.pdf,ND.0055,ND.0055,53,, +ND.0054,Before 1958,0,Unprovoked,INDONESIA,Riau Province,"Natuna Islands, between Sumatra & Kalimantan in the South China Sea",Swimming near anchored ship, a ship's engineer,M,,"FATAL, leg severed ",Y,,,"C.H. Townsend, p. 172; V.M. Coppleson, p.258",ND-0054-NatunaIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0054-NatunaIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0054-NatunaIslands.pdf,ND.0054,ND.0054,52,, +ND.0053,Before 1958,0,Unprovoked,INDIA,Maharashtra,"Malwan, near Ratnagiri",,male,M,,FATAL,Y,,,"V.M. Coppleson (1958), p.261",ND-0053-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0053-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0053-India.pdf,ND.0053,ND.0053,51,, +ND.0052,Before 1957,0,Unprovoked,NICARAGUA,Lake Nicaragua (fresh water),A village north of San Carlos,Lashing logs together when he fell into the water,an Indian,M,,"FATAL, leg severed ",Y,,"Bull shark caught, leg recovered & buried beside the man's body","F. Poli, pp.150-153",ND-0052-NicaraguanIndian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0052-NicaraguanIndian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0052-NicaraguanIndian.pdf,ND.0052,ND.0052,50,, +ND.0051,Before 1957,0,Provoked,CUBA,Havana Province,Cojimar,"Shark fishing, knocked overboard",Sandrillio,M,50,"FATAL, hip bitten PROVOKED INCIDENT",Y,,,"F. Poli, pp.75, 81-83",ND-0051-Sandrillio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0051-Sandrillio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0051-Sandrillio.pdf,ND.0051,ND.0051,49,, +ND.0049,Before 1956,0,Unprovoked,MARSHALL ISLANDS,Bikini Atoll,,Swimming,male,M,,Buttocks bitten,N,,,J.E. Lasch,ND-0049-BikiniAtoll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0049-BikiniAtoll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0049-BikiniAtoll.pdf,ND.0049,ND.0049,48,, +ND.0048,Before 1956,0,Unprovoked,KIRIBATI,Phoenix Islands,Canton Island,Diving,Dusty Rhodes,M,,No injury,N,,,"J. Oetzel, Skin Diver Magazine, March 1956, p.19 ",ND-0048-DustyRhodes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0048-DustyRhodes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0048-DustyRhodes.pdf,ND.0048,ND.0048,47,, +ND.0047,Before Mar-1956,0,Unprovoked,NORTH PACIFIC OCEAN,,Wake Island,"Fishing, wading with string of fish",male,M,,Survived,N,,,"J. Oetzel, Skin Diver Magazine, March 1956, p.19 ",ND-0047-WakeIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0047-WakeIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0047-WakeIsland.pdf,ND.0047,ND.0047,46,, +ND.0046,Before 1952,0,Unprovoked,KIRIBATI,Gilbert Islands,Nonouti,,Gilbertese fisherman,M,,FATAL,Y,,,"Grimble, pp. 142-143",ND-0046-GilberteseFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0046-GilberteseFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0046-GilberteseFisherman.pdf,ND.0046,ND.0046,45,, +ND.0044,1941-1945,0,Sea Disaster,,,,A group of survivors on a raft for 17-days,C.,,,"FATAL, shark leapt into raft and bit the man who died 4 hours later",Y,Late afternoon,1.2 m [4'] shark,"G.A. Llano in Airmen Against the Sea, p.69",ND-0044-C.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0044-C.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0044-C.pdf,ND.0044,ND.0044,44,, +ND.0043,"""During the war"" 1943-1945",0,Unprovoked,SOLOMON ISLANDS,New Georgia,"Munda Island, Roviana Lagoon",Floating on his back,American male,M,,Buttock bitten,N,,,"W. Chapman (1949) Fishing in Troubled Waters, p.182",ND-0043-American-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0043-American-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0043-American-male.pdf,ND.0043,ND.0043,43,, +ND.0042,"""Before the war""",0,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island?,Free diving,Mortakee,M,,Head bitten,N,,,Press clipping dated 6/28/1950,ND-0042-Mortakee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0042-Mortakee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0042-Mortakee.pdf,ND.0042,ND.0042,42,, +ND.0041,"Said to be 1941-1945, more likely 1945",0,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",Fishing in ankle-deep water,an old fisherman,M,,"FATAL, foot lacerated & crushed ",Y,,,"Lt. Col. R.S. Hunt, pp. 80-81",ND-0041-OldFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0041-OldFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0041-OldFisherman.pdf,ND.0041,ND.0041,41,, +ND.0040,1941-1945,0,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",,a local dignitary,M,,"FATAL, femoral artery severed, died 12 days later ",Y,,,Lt. Col. R.S. Hunt of the Royal Army Medical Corp,ND-0040-Local dignitary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0040-Local dignitary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0040-Local dignitary.pdf,ND.0040,ND.0040,40,, +ND.0039,1941-1945,0,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River","Standing, washing rear wheels of his ambulance in ankle-deep water",I.A.S. C. driver ,M,,"FATAL, fell into water when shark seized his right ankle, right leg bitten, left forearm & hand lacerated, all tissue stripped from right arm ",Y,,,"Lt.Col. R.S. Hunt, p.79",ND-0039-AmbulanceDriver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0039-AmbulanceDriver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0039-AmbulanceDriver.pdf,ND.0039,ND.0039,39,, +ND.0038,1941-1942,0,Unprovoked,IRAQ,Basrah,Shatt-el Arab River near a small boat stand,Swimming,male,M,13 or 14,"FATAL, left leg bitten with severe blood loss",Y,Afternoon,Bull shark,B.W. Coad & L.A.J. Al-Hassan,ND-0038-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0038-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0038-Shatt-al-Arab.pdf,ND.0038,ND.0038,38,, +ND.0037,1940 - 1950,0,Unprovoked,SAUDI ARABIA,Eastern Province,East of the Ras Tanura-Jubail area ,Diving,a pearl diver,M,,"FATAL, died of sepsis",Y,,"""a black-tipped shark""",G.F. Mead,ND-0037-PearlDiver-sepsis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0037-PearlDiver-sepsis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0037-PearlDiver-sepsis.pdf,ND.0037,ND.0037,37,, +ND.0036,1940 - 1950,0,Unprovoked,SAUDI ARABIA,Eastern Province,East of the Ras Tanura-Jubail area ,Diving,a fisherman / diver,M,,Buttocks bitten,N,,6' shark,G.F. Mead,ND-0036-Fisherman-SaudiArabia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0036-Fisherman-SaudiArabia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0036-Fisherman-SaudiArabia.pdf,ND.0036,ND.0036,36,, +ND.0035,1940 - 1950,0,Unprovoked,SAUDI ARABIA,Eastern Province,East of the Ras Tanura-Jubail area ,Diving,a pearl diver,M,,"Foot lacerated, surgically amputated",N,,,G.F. Mead,ND-0035-PearlDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0035-PearlDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0035-PearlDiver.pdf,ND.0035,ND.0035,35,, +ND.0034,1940-1946,0,Sea Disaster,PACIFIC OCEAN,,,,"8 US airmen in the water, 1 was bitten by a shark",M,,FATAL,Y,,,G. Llano,ND-0034-8-men-on-raft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0034-8-men-on-raft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0034-8-men-on-raft.pdf,ND.0034,ND.0034,34,, +ND.0033,Before 1905,0,Provoked,BURMA,,,Carrying a supposedly dead shark by its mouth,boy,M,,4 finger severed by 'dead' shark. PROVOKED ACCIDENT,N,,,"Massillon Independent, 3/1905",ND-0033-Burma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0033-Burma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0033-Burma.pdf,ND.0033,ND.0033,33,, +ND.0032,World War II,0,Sea Disaster,PAPUA NEW GUINEA,Between New Ireland & New Britain,St. George�s Channel,Spent 8 days in dinghy,pilot,M,,"No injury, but shark removed the heel & part of his left shoe",N,,,"G.A. Llano in Airmen Against the Sea, p.69; V.M. Coppleson (1962), p.257",ND-0032-RabaulPilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0032-RabaulPilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0032-RabaulPilot.pdf,ND.0032,ND.0032,32,, +ND.0031,World War II,0,Sea Disaster,PAPUA NEW GUINEA,Madang Province,Off Lae,"Aircraft ditched in the sea, swimming ashore",male,M,,Shark bumped him,N,,,"V.M. Coppleson (1962), p.257",ND-0031-Ditched-Aircrat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0031-Ditched-Aircrat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0031-Ditched-Aircrat.pdf,ND.0031,ND.0031,31,, +ND.0030,Before 1905,0,Unprovoked,BURMA,,,Bathing,male,M,,Fatal x 2,Y,,,"Massillon Independent, 3/1905",ND-0030-Burma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0030-Burma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0030-Burma.pdf,ND.0030,ND.0030,30,, +ND.0028,A few years before 1938,0,Boat,ITALY,Adriatic Sea,,Wooden fishing boat,Occupant: Mr. Maciotta,M,,No injury to occupant; shark capsized boat,N,,White shark,A. De Maddalena; Anon. (1938),ND-0028-Maciotta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0028-Maciotta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0028-Maciotta.pdf,ND.0028,ND.0028,29,, +ND.0027,No date,0,Unprovoked,GREECE,Dodecanese Islands,Symi Island,Sponge diving,Psarofa-gomenes,M,,Head bitten,N,,,M. N. Kalafatas ,ND-0027-Psarofagomenos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0027-Psarofagomenos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0027-Psarofagomenos.pdf,ND.0027,ND.0027,28,, +ND.0026,Early 1930s,0,Unprovoked,BELIZE,,,Standing,a servant,M,16,FATAL,Y,,12' tiger shark,Mitchell-Hedges,ND-0026-Belize.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0026-Belize.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0026-Belize.pdf,ND.0026,ND.0026,27,, +ND.0025,Before 1927,0,Unprovoked,AUSTRALIA,New South Wales,"Spectacle Island, Port Jackson",,"male, the Sergeant of Marines",M,,,UNKNOWN,,,H. Capper,ND-0025-Sgt-SpectacleIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0025-Sgt-SpectacleIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0025-Sgt-SpectacleIsland.pdf,ND.0025,ND.0025,26,, +ND.0024,Between 1918 & 1939,0,Unprovoked,REUNION,Saint-Denis,Barachois,Swimming,,,,FATAL,Y,,,G. Van Grevelynghe,ND-0024-Barachois-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0024-Barachois-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0024-Barachois-Reunion.pdf,ND.0024,ND.0024,25,, +ND.0023,No date,0,Unprovoked,SOUTH AFRICA,Western Cape Province,Arniston,Wading,Madelaine Dalton,F,,Ankle bitten,N,,,"L. Green in Tavern of the Seas, p.182",ND-0023-Dalton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0023-Dalton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0023-Dalton.pdf,ND.0023,ND.0023,24,, +ND.0022,No date,0,Unprovoked,AUSTRALIA,,,Pearl diving,Jaringoorli,M,,Lacerations to thigh,N,,,"Adelaide Advertiser, 1/11/1940",ND-0022-Jaringoorli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0022-Jaringoorli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0022-Jaringoorli.pdf,ND.0022,ND.0022,23,, +ND.0021,No date,0,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban ,Swimming in pool formed by construction of a wharf,Indian boy,M,,"FATAL, leg severed ",Y,,,"L. Green in South African Beachcomber, p.97",ND-0021-DurbanIndianBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0021-DurbanIndianBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0021-DurbanIndianBoy.pdf,ND.0021,ND.0021,22,, +ND.0020,1920 -1923,0,Unprovoked,AUSTRALIA,Queensland,Great Barrier Reef,,3 Japanese divers,M,,FATAL,Y,,,"V.M. Coppleson (1958), p.241",ND-0020-3JapaneseDivers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0020-3JapaneseDivers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0020-3JapaneseDivers.pdf,ND.0020,ND.0020,21,, +ND.0019,Before 1921,0,Unprovoked,USA,Florida,"Gadsden Point, Tampa Bay",Fishing,James Kelley,M,,2-inch lacerations,N,,,"T. Helm, p.219",ND-0019-Kelley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0019-Kelley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0019-Kelley.pdf,ND.0019,ND.0019,20,, +ND.0018,Before 1911,0,Unprovoked,VIETNAM,Ba Ria-Vung Tau Province,V?ng T�u,Swimming around anchored ship,crewman,M,,Foot bitten,N,,,"Daily Kennebec Journal, 3/27/1911",ND-0018-Vietnam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0018-Vietnam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0018-Vietnam.pdf,ND.0018,ND.0018,19,, +ND.0017,Before 1921,0,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban ,Crew swimming alongside their anchored ship,male,M,,FATAL,Y,,,"Captain A. Anderson, Natal Mercury, 12/31/1921; M. Levine, GSAF",ND-0017-alongside-ship.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0017-alongside-ship.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0017-alongside-ship.pdf,ND.0017,ND.0017,18,, +ND.0016,Before 1921,0,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban,4 men were bathing,male,M,,FATAL,Y,,,"Captain A. Anderson, Natal Mercury, 12/31/1921; M. Levine, GSAF",ND-0016- Durban-PostOffice.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0016- Durban-PostOffice.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0016- Durban-PostOffice.pdf,ND.0016,ND.0016,17,, +ND.0015,Before 1917,0,Unprovoked,FIJI,Moala Island,,Wreck of large double sailing canoe,20 Fijians,,,"FATAL, 18 people were killed by sharks, 2 survived",Y,,,"Fijian Society papers presented April 17, 1918; W.E., p.191",ND-0015-FijianCanoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0015-FijianCanoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0015-FijianCanoe.pdf,ND.0015,ND.0015,16,, +ND.0014,Before 17-Jul-1916,0,Unprovoked,USA,North Carolina ,Somewhere between Hatteras and Beaufort,Swimming,"""youthful male""",M,,"""Lost leg""",N,,,"C. Creswell, GSAF; Wilmington Star, 7/17/1916 ",ND-0014-pre1916-NorthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0014-pre1916-NorthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0014-pre1916-NorthCarolina.pdf,ND.0014,ND.0014,15,, +ND.0013,No date (3 days after preceding incident) & prior to 19-Jul-1913,0,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban,Fishing,a native fisherman,M,,"FATAL, body not recovered but shark was caught with the man's loincloth in its gut shortly afterwards.",Y,,,"Rural New Yorker, 7/19/1913 ",ND-0013-Durban-native-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0013-Durban-native-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0013-Durban-native-fisherman.pdf,ND.0013,ND.0013,14,, +ND.0012,Before 19-Jul-1913,0,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban,Wading,a young Scotsman,M,,"FATAL, leg stripped of flesh ",Y,,,"Rural New Yorker, 7/19/1913",ND-0012-Durban-Scotsman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0012-Durban-Scotsman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0012-Durban-Scotsman.pdf,ND.0012,ND.0012,13,, +ND.0011,Before 1911,0,Unprovoked,ASIA?,,,Swimming,Mr. Masury,M,,Foot severed,N,,,"Ref. J. T. Dubois in N.Y. Sun, 3/19/1911 ",ND-0011-Masury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0011-Masury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0011-Masury.pdf,ND.0011,ND.0011,12,, +ND.0010,Circa 1862,0,Unprovoked,USA,Hawaii,Puna,,A chiefess,F,,Ankle bitten,N,,,Captain W. Young,ND-0010-Puna Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0010-Puna Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0010-Puna Hawaii.pdf,ND.0010,ND.0010,11,, +ND.0009,Before 1906,0,Unprovoked,AUSTRALIA,,,Fishing,boy,M,,"FATAL, knocked overboard by tail of shark & carried off by shark ",Y,,Blue pointer,"NY Sun, 9/9/1906, referring to account by Louis Becke",ND-0009-boy-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0009-boy-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0009-boy-Australia.pdf,ND.0009,ND.0009,10,, +ND.0008,Before 1906,0,Unprovoked,AUSTRALIA,,,Fishing,fisherman,M,,FATAL,Y,,Blue pointer,"NY Sun, 9/9/1906, referring to account by Louis Becke",ND-0008-Fisherman2-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0008-Fisherman2-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0008-Fisherman2-Australia.pdf,ND.0008,ND.0008,9,, +ND.0007,Before 1906,0,Unprovoked,AUSTRALIA,,,Fishing,fisherman,M,,FATAL,Y,,Blue pointers,"NY Sun, 9/9/1906, referring to account by Louis Becke",ND-0007 - Fisherman-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0007 - Fisherman-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0007 - Fisherman-Australia.pdf,ND.0007,ND.0007,8,, +ND.0006,Before 1906,0,Unprovoked,AUSTRALIA,New South Wales, ,Swimming,Arab boy,M,,FATAL,Y,,Said to involve a grey nurse shark that leapt out of the water and seized the boy but species identification is questionable,"L. Becke in New York Sun, 9/9/1906; L. Schultz & M. Malin, p.523",ND-0006-ArabBoy-Prymount.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0006-ArabBoy-Prymount.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0006-ArabBoy-Prymount.pdf,ND.0006,ND.0006,7,, +ND.0005,Before 1903,0,Unprovoked,AUSTRALIA,Western Australia,Roebuck Bay,Diving,male,M,,FATAL,Y,,,"H. Taunton; N. Bartlett, p. 234",ND-0005-RoebuckBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0005-RoebuckBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0005-RoebuckBay.pdf,ND.0005,ND.0005,6,, +ND.0004,Before 1903,0,Unprovoked,AUSTRALIA,Western Australia,,Pearl diving,Ahmun,M,,FATAL,Y,,,"H. Taunton; N. Bartlett, pp. 233-234",ND-0004-Ahmun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0004-Ahmun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0004-Ahmun.pdf,ND.0004,ND.0004,5,, +ND.0003,1900-1905,0,Unprovoked,USA,North Carolina,Ocracoke Inlet,Swimming,Coast Guard personnel,M,,FATAL,Y,,,"F. Schwartz, p.23; C. Creswell, GSAF",ND-0003-Ocracoke_1900-1905.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0003-Ocracoke_1900-1905.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0003-Ocracoke_1900-1905.pdf,ND.0003,ND.0003,4,, +ND.0002,1883-1889,0,Unprovoked,PANAMA,,"Panama Bay 8�N, 79�W",,Jules Patterson,M,,FATAL,Y,,,"The Sun, 10/20/1938",ND-0002-JulesPatterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0002-JulesPatterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0002-JulesPatterson.pdf,ND.0002,ND.0002,3,, +ND.0001,1845-1853,0,Unprovoked,CEYLON (SRI LANKA),Eastern Province,"Below the English fort, Trincomalee",Swimming,male,M,15,"FATAL. ""Shark bit him in half, carrying away the lower extremities"" ",Y,,,S.W. Baker,ND-0001-Ceylon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directoryND-0001-Ceylon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directoryND-0001-Ceylon.pdf,ND.0001,ND.0001,2,, diff --git a/module-1_projects/pandas-project/your-code/cleaning_up_the_sharks.txt b/module-1_projects/pandas-project/your-code/cleaning_up_the_sharks.txt new file mode 100644 index 0000000..ea07193 --- /dev/null +++ b/module-1_projects/pandas-project/your-code/cleaning_up_the_sharks.txt @@ -0,0 +1 @@ +clean up the shark attack data frame diff --git a/module-1_projects/pandas-project/your-code/shaq attack.ipynb b/module-1_projects/pandas-project/your-code/shaq attack.ipynb new file mode 100644 index 0000000..4f0ce6f --- /dev/null +++ b/module-1_projects/pandas-project/your-code/shaq attack.ipynb @@ -0,0 +1,11009 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import re" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/bin/sh: -c: line 0: syntax error near unexpected token `https://media.giphy.com/media/fkrV5Oacwjduw/giphy.gif,'\r\n", + "/bin/sh: -c: line 0: `[ChessUrl](https://media.giphy.com/media/fkrV5Oacwjduw/giphy.gif, \"shaq\")'\r\n" + ] + } + ], + "source": [ + "![ChessUrl](https://media.giphy.com/media/fkrV5Oacwjduw/giphy.gif, \"shaq\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 1. opening the file and decoding it into a pandas data frame. " + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv(\"GSAF5.csv\", encoding = \"latin1\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 2. inspecting the data frame. " + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "pd.set_option('display.max_columns', 6000)\n", + "# \"The maximum width in characters of a column\"\n", + "pd.set_option('display.max_colwidth', 500)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "Case Number 5992\n", + "Date 5992\n", + "Year 5992\n", + "Type 5992\n", + "Country 5949\n", + "Area 5590\n", + "Location 5496\n", + "Activity 5465\n", + "Name 5792\n", + "Sex 5425\n", + "Age 3311\n", + "Injury 5965\n", + "Fatal (Y/N) 5973\n", + "Time 2779\n", + "Species 3058\n", + "Investigator or Source 5977\n", + "pdf 5992\n", + "href formula 5991\n", + "href 5989\n", + "Case Number.1 5992\n", + "Case Number.2 5992\n", + "original order 5992\n", + "Unnamed: 22 1\n", + "Unnamed: 23 2\n", + "dtype: int64" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.count()" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
    \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
    Case NumberDateYearTypeCountryAreaLocationActivityNameSexAgeInjuryFatal (Y/N)TimeSpeciesInvestigator or Sourcepdfhref formulahrefCase Number.1Case Number.2original orderUnnamed: 22Unnamed: 23
    02016.09.18.c18-Sep-162016UnprovokedUSAFloridaNew Smyrna Beach, Volusia CountySurfingmaleM16Minor injury to thighN13h00NaNOrlando Sentinel, 9/19/20162016.09.18.c-NSB.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.c-NSB.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.c-NSB.pdf2016.09.18.c2016.09.18.c5993NaNNaN
    12016.09.18.b18-Sep-162016UnprovokedUSAFloridaNew Smyrna Beach, Volusia CountySurfingChucky LucianoM36Lacerations to handsN11h00NaNOrlando Sentinel, 9/19/20162016.09.18.b-Luciano.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.b-Luciano.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.b-Luciano.pdf2016.09.18.b2016.09.18.b5992NaNNaN
    22016.09.18.a18-Sep-162016UnprovokedUSAFloridaNew Smyrna Beach, Volusia CountySurfingmaleM43Lacerations to lower legN10h43NaNOrlando Sentinel, 9/19/20162016.09.18.a-NSB.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.a-NSB.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.a-NSB.pdf2016.09.18.a2016.09.18.a5991NaNNaN
    32016.09.1717-Sep-162016UnprovokedAUSTRALIAVictoriaThirteenth BeachSurfingRory AngiolellaMNaNStruck by fin on chest & legNNaNNaNThe Age, 9/18/20162016.09.17-Angiolella.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17-Angiolella.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17-Angiolella.pdf2016.09.172016.09.175990NaNNaN
    42016.09.1516-Sep-162016UnprovokedAUSTRALIAVictoriaBells BeachSurfingmaleMNaNNo injury: Knocked off board by sharkNNaN2 m sharkThe Age, 9/16/20162016.09.16-BellsBeach.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.16-BellsBeach.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.16-BellsBeach.pdf2016.09.162016.09.155989NaNNaN
    \n", + "
    " + ], + "text/plain": [ + " Case Number Date Year Type Country Area \\\n", + "0 2016.09.18.c 18-Sep-16 2016 Unprovoked USA Florida \n", + "1 2016.09.18.b 18-Sep-16 2016 Unprovoked USA Florida \n", + "2 2016.09.18.a 18-Sep-16 2016 Unprovoked USA Florida \n", + "3 2016.09.17 17-Sep-16 2016 Unprovoked AUSTRALIA Victoria \n", + "4 2016.09.15 16-Sep-16 2016 Unprovoked AUSTRALIA Victoria \n", + "\n", + " Location Activity Name Sex Age \\\n", + "0 New Smyrna Beach, Volusia County Surfing male M 16 \n", + "1 New Smyrna Beach, Volusia County Surfing Chucky Luciano M 36 \n", + "2 New Smyrna Beach, Volusia County Surfing male M 43 \n", + "3 Thirteenth Beach Surfing Rory Angiolella M NaN \n", + "4 Bells Beach Surfing male M NaN \n", + "\n", + " Injury Fatal (Y/N) Time Species \\\n", + "0 Minor injury to thigh N 13h00 NaN \n", + "1 Lacerations to hands N 11h00 NaN \n", + "2 Lacerations to lower leg N 10h43 NaN \n", + "3 Struck by fin on chest & leg N NaN NaN \n", + "4 No injury: Knocked off board by shark N NaN 2 m shark \n", + "\n", + " Investigator or Source pdf \\\n", + "0 Orlando Sentinel, 9/19/2016 2016.09.18.c-NSB.pdf \n", + "1 Orlando Sentinel, 9/19/2016 2016.09.18.b-Luciano.pdf \n", + "2 Orlando Sentinel, 9/19/2016 2016.09.18.a-NSB.pdf \n", + "3 The Age, 9/18/2016 2016.09.17-Angiolella.pdf \n", + "4 The Age, 9/16/2016 2016.09.16-BellsBeach.pdf \n", + "\n", + " href formula \\\n", + "0 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.c-NSB.pdf \n", + "1 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.b-Luciano.pdf \n", + "2 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.a-NSB.pdf \n", + "3 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17-Angiolella.pdf \n", + "4 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.16-BellsBeach.pdf \n", + "\n", + " href \\\n", + "0 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.c-NSB.pdf \n", + "1 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.b-Luciano.pdf \n", + "2 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.a-NSB.pdf \n", + "3 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17-Angiolella.pdf \n", + "4 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.16-BellsBeach.pdf \n", + "\n", + " Case Number.1 Case Number.2 original order Unnamed: 22 Unnamed: 23 \n", + "0 2016.09.18.c 2016.09.18.c 5993 NaN NaN \n", + "1 2016.09.18.b 2016.09.18.b 5992 NaN NaN \n", + "2 2016.09.18.a 2016.09.18.a 5991 NaN NaN \n", + "3 2016.09.17 2016.09.17 5990 NaN NaN \n", + "4 2016.09.16 2016.09.15 5989 NaN NaN " + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 3. droping the last two cloums:(unnamed: 22 and unamed 23) " + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "stopped here 1\n", + "Name: Unnamed: 22, dtype: int64" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[\"Unnamed: 22\"].value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "change filename 1\n", + "Teramo 1\n", + "Name: Unnamed: 23, dtype: int64" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[\"Unnamed: 23\"].value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
    \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
    Case NumberDateYearTypeCountryAreaLocationActivityNameSexAgeInjuryFatal (Y/N)TimeSpeciesInvestigator or Sourcepdfhref formulahrefCase Number.1Case Number.2original orderUnnamed: 22Unnamed: 23
    41821952.07.1313-Jul-521952ProvokedUSACaliforniaSan Diego, San Diego CountyFishingGerald Howard, on board sportsfishing boat Teresa AM34Part of hand removed by shark he had caught PROVOKED INCIDENTNNaNNaNL.A. Times, 7/14/19521952.07.13-Howard.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.13-Howard.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.13-Howard.pdf1952.07.131952.07.131811NaNTeramo
    \n", + "
    " + ], + "text/plain": [ + " Case Number Date Year Type Country Area \\\n", + "4182 1952.07.13 13-Jul-52 1952 Provoked USA California \n", + "\n", + " Location Activity \\\n", + "4182 San Diego, San Diego County Fishing \n", + "\n", + " Name Sex Age \\\n", + "4182 Gerald Howard, on board sportsfishing boat Teresa A M 34 \n", + "\n", + " Injury \\\n", + "4182 Part of hand removed by shark he had caught PROVOKED INCIDENT \n", + "\n", + " Fatal (Y/N) Time Species Investigator or Source pdf \\\n", + "4182 N NaN NaN L.A. Times, 7/14/1952 1952.07.13-Howard.pdf \n", + "\n", + " href formula \\\n", + "4182 http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.13-Howard.pdf \n", + "\n", + " href \\\n", + "4182 http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.13-Howard.pdf \n", + "\n", + " Case Number.1 Case Number.2 original order Unnamed: 22 Unnamed: 23 \n", + "4182 1952.07.13 1952.07.13 1811 NaN Teramo " + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.loc[df['Unnamed: 23'] == \"Teramo\"]\n" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
    \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
    Case NumberDateYearTypeCountryAreaLocationActivityNameSexAgeInjuryFatal (Y/N)TimeSpeciesInvestigator or Sourcepdfhref formulahrefCase Number.1Case Number.2original orderUnnamed: 22Unnamed: 23
    12472006.06.1818-Jun-062006UnprovokedBRAZILPernambucoPunta Del Chifre Beach, OlindaBody boardingHumberto Pessoa BatistaM27Left thigh bitten FATALY09h00NaNglobalsurfnews.com2006.06.18-Batista.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.18-Batista.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.18-Batista.pdf2006.06.182006.06.184746stopped hereNaN
    \n", + "
    " + ], + "text/plain": [ + " Case Number Date Year Type Country Area \\\n", + "1247 2006.06.18 18-Jun-06 2006 Unprovoked BRAZIL Pernambuco \n", + "\n", + " Location Activity Name \\\n", + "1247 Punta Del Chifre Beach, Olinda Body boarding Humberto Pessoa Batista \n", + "\n", + " Sex Age Injury Fatal (Y/N) Time Species \\\n", + "1247 M 27 Left thigh bitten FATAL Y 09h00 NaN \n", + "\n", + " Investigator or Source pdf \\\n", + "1247 globalsurfnews.com 2006.06.18-Batista.pdf \n", + "\n", + " href formula \\\n", + "1247 http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.18-Batista.pdf \n", + "\n", + " href \\\n", + "1247 http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.18-Batista.pdf \n", + "\n", + " Case Number.1 Case Number.2 original order Unnamed: 22 Unnamed: 23 \n", + "1247 2006.06.18 2006.06.18 4746 stopped here NaN " + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.loc[df['Case Number'] == \"2006.06.18\"]\n" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "df = df.drop( labels = [\"Unnamed: 23\", \"Unnamed: 22\"], axis = 1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 4. reinnxing and rewriting original order columns" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "df =df[::-1]" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
    \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
    Case NumberDateYearTypeCountryAreaLocationActivityNameSexAgeInjuryFatal (Y/N)TimeSpeciesInvestigator or Sourcepdfhref formulahrefCase Number.1Case Number.2original order
    5991ND.00011845-18530UnprovokedCEYLON (SRI LANKA)Eastern ProvinceBelow the English fort, TrincomaleeSwimmingmaleM15FATAL. \"Shark bit him in half, carrying away the lower extremities\"YNaNNaNS.W. BakerND-0001-Ceylon.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directoryND-0001-Ceylon.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directoryND-0001-Ceylon.pdfND.0001ND.00012
    5990ND.00021883-18890UnprovokedPANAMANaNPanama Bay 8ºN, 79ºWNaNJules PattersonMNaNFATALYNaNNaNThe Sun, 10/20/1938ND-0002-JulesPatterson.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/ND-0002-JulesPatterson.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/ND-0002-JulesPatterson.pdfND.0002ND.00023
    5989ND.00031900-19050UnprovokedUSANorth CarolinaOcracoke InletSwimmingCoast Guard personnelMNaNFATALYNaNNaNF. Schwartz, p.23; C. Creswell, GSAFND-0003-Ocracoke_1900-1905.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/ND-0003-Ocracoke_1900-1905.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/ND-0003-Ocracoke_1900-1905.pdfND.0003ND.00034
    5988ND.0004Before 19030UnprovokedAUSTRALIAWestern AustraliaNaNPearl divingAhmunMNaNFATALYNaNNaNH. Taunton; N. Bartlett, pp. 233-234ND-0004-Ahmun.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/ND-0004-Ahmun.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/ND-0004-Ahmun.pdfND.0004ND.00045
    5987ND.0005Before 19030UnprovokedAUSTRALIAWestern AustraliaRoebuck BayDivingmaleMNaNFATALYNaNNaNH. Taunton; N. Bartlett, p. 234ND-0005-RoebuckBay.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/ND-0005-RoebuckBay.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/ND-0005-RoebuckBay.pdfND.0005ND.00056
    .....................................................................
    42016.09.1516-Sep-162016UnprovokedAUSTRALIAVictoriaBells BeachSurfingmaleMNaNNo injury: Knocked off board by sharkNNaN2 m sharkThe Age, 9/16/20162016.09.16-BellsBeach.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.16-BellsBeach.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.16-BellsBeach.pdf2016.09.162016.09.155989
    32016.09.1717-Sep-162016UnprovokedAUSTRALIAVictoriaThirteenth BeachSurfingRory AngiolellaMNaNStruck by fin on chest & legNNaNNaNThe Age, 9/18/20162016.09.17-Angiolella.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17-Angiolella.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17-Angiolella.pdf2016.09.172016.09.175990
    22016.09.18.a18-Sep-162016UnprovokedUSAFloridaNew Smyrna Beach, Volusia CountySurfingmaleM43Lacerations to lower legN10h43NaNOrlando Sentinel, 9/19/20162016.09.18.a-NSB.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.a-NSB.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.a-NSB.pdf2016.09.18.a2016.09.18.a5991
    12016.09.18.b18-Sep-162016UnprovokedUSAFloridaNew Smyrna Beach, Volusia CountySurfingChucky LucianoM36Lacerations to handsN11h00NaNOrlando Sentinel, 9/19/20162016.09.18.b-Luciano.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.b-Luciano.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.b-Luciano.pdf2016.09.18.b2016.09.18.b5992
    02016.09.18.c18-Sep-162016UnprovokedUSAFloridaNew Smyrna Beach, Volusia CountySurfingmaleM16Minor injury to thighN13h00NaNOrlando Sentinel, 9/19/20162016.09.18.c-NSB.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.c-NSB.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.c-NSB.pdf2016.09.18.c2016.09.18.c5993
    \n", + "

    5992 rows × 22 columns

    \n", + "
    " + ], + "text/plain": [ + " Case Number Date Year Type Country \\\n", + "5991 ND.0001 1845-1853 0 Unprovoked CEYLON (SRI LANKA) \n", + "5990 ND.0002 1883-1889 0 Unprovoked PANAMA \n", + "5989 ND.0003 1900-1905 0 Unprovoked USA \n", + "5988 ND.0004 Before 1903 0 Unprovoked AUSTRALIA \n", + "5987 ND.0005 Before 1903 0 Unprovoked AUSTRALIA \n", + "... ... ... ... ... ... \n", + "4 2016.09.15 16-Sep-16 2016 Unprovoked AUSTRALIA \n", + "3 2016.09.17 17-Sep-16 2016 Unprovoked AUSTRALIA \n", + "2 2016.09.18.a 18-Sep-16 2016 Unprovoked USA \n", + "1 2016.09.18.b 18-Sep-16 2016 Unprovoked USA \n", + "0 2016.09.18.c 18-Sep-16 2016 Unprovoked USA \n", + "\n", + " Area Location Activity \\\n", + "5991 Eastern Province Below the English fort, Trincomalee Swimming \n", + "5990 NaN Panama Bay 8ºN, 79ºW NaN \n", + "5989 North Carolina Ocracoke Inlet Swimming \n", + "5988 Western Australia NaN Pearl diving \n", + "5987 Western Australia Roebuck Bay Diving \n", + "... ... ... ... \n", + "4 Victoria Bells Beach Surfing \n", + "3 Victoria Thirteenth Beach Surfing \n", + "2 Florida New Smyrna Beach, Volusia County Surfing \n", + "1 Florida New Smyrna Beach, Volusia County Surfing \n", + "0 Florida New Smyrna Beach, Volusia County Surfing \n", + "\n", + " Name Sex Age \\\n", + "5991 male M 15 \n", + "5990 Jules Patterson M NaN \n", + "5989 Coast Guard personnel M NaN \n", + "5988 Ahmun M NaN \n", + "5987 male M NaN \n", + "... ... ... ... \n", + "4 male M NaN \n", + "3 Rory Angiolella M NaN \n", + "2 male M 43 \n", + "1 Chucky Luciano M 36 \n", + "0 male M 16 \n", + "\n", + " Injury \\\n", + "5991 FATAL. \"Shark bit him in half, carrying away the lower extremities\" \n", + "5990 FATAL \n", + "5989 FATAL \n", + "5988 FATAL \n", + "5987 FATAL \n", + "... ... \n", + "4 No injury: Knocked off board by shark \n", + "3 Struck by fin on chest & leg \n", + "2 Lacerations to lower leg \n", + "1 Lacerations to hands \n", + "0 Minor injury to thigh \n", + "\n", + " Fatal (Y/N) Time Species Investigator or Source \\\n", + "5991 Y NaN NaN S.W. Baker \n", + "5990 Y NaN NaN The Sun, 10/20/1938 \n", + "5989 Y NaN NaN F. Schwartz, p.23; C. Creswell, GSAF \n", + "5988 Y NaN NaN H. Taunton; N. Bartlett, pp. 233-234 \n", + "5987 Y NaN NaN H. Taunton; N. Bartlett, p. 234 \n", + "... ... ... ... ... \n", + "4 N NaN 2 m shark The Age, 9/16/2016 \n", + "3 N NaN NaN The Age, 9/18/2016 \n", + "2 N 10h43 NaN Orlando Sentinel, 9/19/2016 \n", + "1 N 11h00 NaN Orlando Sentinel, 9/19/2016 \n", + "0 N 13h00 NaN Orlando Sentinel, 9/19/2016 \n", + "\n", + " pdf \\\n", + "5991 ND-0001-Ceylon.pdf \n", + "5990 ND-0002-JulesPatterson.pdf \n", + "5989 ND-0003-Ocracoke_1900-1905.pdf \n", + "5988 ND-0004-Ahmun.pdf \n", + "5987 ND-0005-RoebuckBay.pdf \n", + "... ... \n", + "4 2016.09.16-BellsBeach.pdf \n", + "3 2016.09.17-Angiolella.pdf \n", + "2 2016.09.18.a-NSB.pdf \n", + "1 2016.09.18.b-Luciano.pdf \n", + "0 2016.09.18.c-NSB.pdf \n", + "\n", + " href formula \\\n", + "5991 http://sharkattackfile.net/spreadsheets/pdf_directoryND-0001-Ceylon.pdf \n", + "5990 http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0002-JulesPatterson.pdf \n", + "5989 http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0003-Ocracoke_1900-1905.pdf \n", + "5988 http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0004-Ahmun.pdf \n", + "5987 http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0005-RoebuckBay.pdf \n", + "... ... \n", + "4 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.16-BellsBeach.pdf \n", + "3 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17-Angiolella.pdf \n", + "2 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.a-NSB.pdf \n", + "1 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.b-Luciano.pdf \n", + "0 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.c-NSB.pdf \n", + "\n", + " href \\\n", + "5991 http://sharkattackfile.net/spreadsheets/pdf_directoryND-0001-Ceylon.pdf \n", + "5990 http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0002-JulesPatterson.pdf \n", + "5989 http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0003-Ocracoke_1900-1905.pdf \n", + "5988 http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0004-Ahmun.pdf \n", + "5987 http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0005-RoebuckBay.pdf \n", + "... ... \n", + "4 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.16-BellsBeach.pdf \n", + "3 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17-Angiolella.pdf \n", + "2 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.a-NSB.pdf \n", + "1 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.b-Luciano.pdf \n", + "0 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.c-NSB.pdf \n", + "\n", + " Case Number.1 Case Number.2 original order \n", + "5991 ND.0001 ND.0001 2 \n", + "5990 ND.0002 ND.0002 3 \n", + "5989 ND.0003 ND.0003 4 \n", + "5988 ND.0004 ND.0004 5 \n", + "5987 ND.0005 ND.0005 6 \n", + "... ... ... ... \n", + "4 2016.09.16 2016.09.15 5989 \n", + "3 2016.09.17 2016.09.17 5990 \n", + "2 2016.09.18.a 2016.09.18.a 5991 \n", + "1 2016.09.18.b 2016.09.18.b 5992 \n", + "0 2016.09.18.c 2016.09.18.c 5993 \n", + "\n", + "[5992 rows x 22 columns]" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "df = df.reset_index(drop = True).drop(labels = \"original order\", axis = 1)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "df.index = df.index +1 \n", + "df.index.name = \"Orginal_Order\"" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
    \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
    Case NumberDateYearTypeCountryAreaLocationActivityNameSexAgeInjuryFatal (Y/N)TimeSpeciesInvestigator or Sourcepdfhref formulahrefCase Number.1Case Number.2
    Orginal_Order
    1ND.00011845-18530UnprovokedCEYLON (SRI LANKA)Eastern ProvinceBelow the English fort, TrincomaleeSwimmingmaleM15FATAL. \"Shark bit him in half, carrying away the lower extremities\"YNaNNaNS.W. BakerND-0001-Ceylon.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directoryND-0001-Ceylon.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directoryND-0001-Ceylon.pdfND.0001ND.0001
    2ND.00021883-18890UnprovokedPANAMANaNPanama Bay 8ºN, 79ºWNaNJules PattersonMNaNFATALYNaNNaNThe Sun, 10/20/1938ND-0002-JulesPatterson.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/ND-0002-JulesPatterson.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/ND-0002-JulesPatterson.pdfND.0002ND.0002
    3ND.00031900-19050UnprovokedUSANorth CarolinaOcracoke InletSwimmingCoast Guard personnelMNaNFATALYNaNNaNF. Schwartz, p.23; C. Creswell, GSAFND-0003-Ocracoke_1900-1905.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/ND-0003-Ocracoke_1900-1905.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/ND-0003-Ocracoke_1900-1905.pdfND.0003ND.0003
    4ND.0004Before 19030UnprovokedAUSTRALIAWestern AustraliaNaNPearl divingAhmunMNaNFATALYNaNNaNH. Taunton; N. Bartlett, pp. 233-234ND-0004-Ahmun.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/ND-0004-Ahmun.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/ND-0004-Ahmun.pdfND.0004ND.0004
    5ND.0005Before 19030UnprovokedAUSTRALIAWestern AustraliaRoebuck BayDivingmaleMNaNFATALYNaNNaNH. Taunton; N. Bartlett, p. 234ND-0005-RoebuckBay.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/ND-0005-RoebuckBay.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/ND-0005-RoebuckBay.pdfND.0005ND.0005
    ..................................................................
    59882016.09.1516-Sep-162016UnprovokedAUSTRALIAVictoriaBells BeachSurfingmaleMNaNNo injury: Knocked off board by sharkNNaN2 m sharkThe Age, 9/16/20162016.09.16-BellsBeach.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.16-BellsBeach.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.16-BellsBeach.pdf2016.09.162016.09.15
    59892016.09.1717-Sep-162016UnprovokedAUSTRALIAVictoriaThirteenth BeachSurfingRory AngiolellaMNaNStruck by fin on chest & legNNaNNaNThe Age, 9/18/20162016.09.17-Angiolella.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17-Angiolella.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17-Angiolella.pdf2016.09.172016.09.17
    59902016.09.18.a18-Sep-162016UnprovokedUSAFloridaNew Smyrna Beach, Volusia CountySurfingmaleM43Lacerations to lower legN10h43NaNOrlando Sentinel, 9/19/20162016.09.18.a-NSB.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.a-NSB.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.a-NSB.pdf2016.09.18.a2016.09.18.a
    59912016.09.18.b18-Sep-162016UnprovokedUSAFloridaNew Smyrna Beach, Volusia CountySurfingChucky LucianoM36Lacerations to handsN11h00NaNOrlando Sentinel, 9/19/20162016.09.18.b-Luciano.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.b-Luciano.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.b-Luciano.pdf2016.09.18.b2016.09.18.b
    59922016.09.18.c18-Sep-162016UnprovokedUSAFloridaNew Smyrna Beach, Volusia CountySurfingmaleM16Minor injury to thighN13h00NaNOrlando Sentinel, 9/19/20162016.09.18.c-NSB.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.c-NSB.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.c-NSB.pdf2016.09.18.c2016.09.18.c
    \n", + "

    5992 rows × 21 columns

    \n", + "
    " + ], + "text/plain": [ + " Case Number Date Year Type \\\n", + "Orginal_Order \n", + "1 ND.0001 1845-1853 0 Unprovoked \n", + "2 ND.0002 1883-1889 0 Unprovoked \n", + "3 ND.0003 1900-1905 0 Unprovoked \n", + "4 ND.0004 Before 1903 0 Unprovoked \n", + "5 ND.0005 Before 1903 0 Unprovoked \n", + "... ... ... ... ... \n", + "5988 2016.09.15 16-Sep-16 2016 Unprovoked \n", + "5989 2016.09.17 17-Sep-16 2016 Unprovoked \n", + "5990 2016.09.18.a 18-Sep-16 2016 Unprovoked \n", + "5991 2016.09.18.b 18-Sep-16 2016 Unprovoked \n", + "5992 2016.09.18.c 18-Sep-16 2016 Unprovoked \n", + "\n", + " Country Area \\\n", + "Orginal_Order \n", + "1 CEYLON (SRI LANKA) Eastern Province \n", + "2 PANAMA NaN \n", + "3 USA North Carolina \n", + "4 AUSTRALIA Western Australia \n", + "5 AUSTRALIA Western Australia \n", + "... ... ... \n", + "5988 AUSTRALIA Victoria \n", + "5989 AUSTRALIA Victoria \n", + "5990 USA Florida \n", + "5991 USA Florida \n", + "5992 USA Florida \n", + "\n", + " Location Activity \\\n", + "Orginal_Order \n", + "1 Below the English fort, Trincomalee Swimming \n", + "2 Panama Bay 8ºN, 79ºW NaN \n", + "3 Ocracoke Inlet Swimming \n", + "4 NaN Pearl diving \n", + "5 Roebuck Bay Diving \n", + "... ... ... \n", + "5988 Bells Beach Surfing \n", + "5989 Thirteenth Beach Surfing \n", + "5990 New Smyrna Beach, Volusia County Surfing \n", + "5991 New Smyrna Beach, Volusia County Surfing \n", + "5992 New Smyrna Beach, Volusia County Surfing \n", + "\n", + " Name Sex Age \\\n", + "Orginal_Order \n", + "1 male M 15 \n", + "2 Jules Patterson M NaN \n", + "3 Coast Guard personnel M NaN \n", + "4 Ahmun M NaN \n", + "5 male M NaN \n", + "... ... ... ... \n", + "5988 male M NaN \n", + "5989 Rory Angiolella M NaN \n", + "5990 male M 43 \n", + "5991 Chucky Luciano M 36 \n", + "5992 male M 16 \n", + "\n", + " Injury \\\n", + "Orginal_Order \n", + "1 FATAL. \"Shark bit him in half, carrying away the lower extremities\" \n", + "2 FATAL \n", + "3 FATAL \n", + "4 FATAL \n", + "5 FATAL \n", + "... ... \n", + "5988 No injury: Knocked off board by shark \n", + "5989 Struck by fin on chest & leg \n", + "5990 Lacerations to lower leg \n", + "5991 Lacerations to hands \n", + "5992 Minor injury to thigh \n", + "\n", + " Fatal (Y/N) Time Species \\\n", + "Orginal_Order \n", + "1 Y NaN NaN \n", + "2 Y NaN NaN \n", + "3 Y NaN NaN \n", + "4 Y NaN NaN \n", + "5 Y NaN NaN \n", + "... ... ... ... \n", + "5988 N NaN 2 m shark \n", + "5989 N NaN NaN \n", + "5990 N 10h43 NaN \n", + "5991 N 11h00 NaN \n", + "5992 N 13h00 NaN \n", + "\n", + " Investigator or Source \\\n", + "Orginal_Order \n", + "1 S.W. Baker \n", + "2 The Sun, 10/20/1938 \n", + "3 F. Schwartz, p.23; C. Creswell, GSAF \n", + "4 H. Taunton; N. Bartlett, pp. 233-234 \n", + "5 H. Taunton; N. Bartlett, p. 234 \n", + "... ... \n", + "5988 The Age, 9/16/2016 \n", + "5989 The Age, 9/18/2016 \n", + "5990 Orlando Sentinel, 9/19/2016 \n", + "5991 Orlando Sentinel, 9/19/2016 \n", + "5992 Orlando Sentinel, 9/19/2016 \n", + "\n", + " pdf \\\n", + "Orginal_Order \n", + "1 ND-0001-Ceylon.pdf \n", + "2 ND-0002-JulesPatterson.pdf \n", + "3 ND-0003-Ocracoke_1900-1905.pdf \n", + "4 ND-0004-Ahmun.pdf \n", + "5 ND-0005-RoebuckBay.pdf \n", + "... ... \n", + "5988 2016.09.16-BellsBeach.pdf \n", + "5989 2016.09.17-Angiolella.pdf \n", + "5990 2016.09.18.a-NSB.pdf \n", + "5991 2016.09.18.b-Luciano.pdf \n", + "5992 2016.09.18.c-NSB.pdf \n", + "\n", + " href formula \\\n", + "Orginal_Order \n", + "1 http://sharkattackfile.net/spreadsheets/pdf_directoryND-0001-Ceylon.pdf \n", + "2 http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0002-JulesPatterson.pdf \n", + "3 http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0003-Ocracoke_1900-1905.pdf \n", + "4 http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0004-Ahmun.pdf \n", + "5 http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0005-RoebuckBay.pdf \n", + "... ... \n", + "5988 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.16-BellsBeach.pdf \n", + "5989 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17-Angiolella.pdf \n", + "5990 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.a-NSB.pdf \n", + "5991 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.b-Luciano.pdf \n", + "5992 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.c-NSB.pdf \n", + "\n", + " href \\\n", + "Orginal_Order \n", + "1 http://sharkattackfile.net/spreadsheets/pdf_directoryND-0001-Ceylon.pdf \n", + "2 http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0002-JulesPatterson.pdf \n", + "3 http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0003-Ocracoke_1900-1905.pdf \n", + "4 http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0004-Ahmun.pdf \n", + "5 http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0005-RoebuckBay.pdf \n", + "... ... \n", + "5988 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.16-BellsBeach.pdf \n", + "5989 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17-Angiolella.pdf \n", + "5990 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.a-NSB.pdf \n", + "5991 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.b-Luciano.pdf \n", + "5992 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.c-NSB.pdf \n", + "\n", + " Case Number.1 Case Number.2 \n", + "Orginal_Order \n", + "1 ND.0001 ND.0001 \n", + "2 ND.0002 ND.0002 \n", + "3 ND.0003 ND.0003 \n", + "4 ND.0004 ND.0004 \n", + "5 ND.0005 ND.0005 \n", + "... ... ... \n", + "5988 2016.09.16 2016.09.15 \n", + "5989 2016.09.17 2016.09.17 \n", + "5990 2016.09.18.a 2016.09.18.a \n", + "5991 2016.09.18.b 2016.09.18.b \n", + "5992 2016.09.18.c 2016.09.18.c \n", + "\n", + "[5992 rows x 21 columns]" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 5. eliminating duplicates (in cases columns)\n", + "only 11 cases had diffrent values no need to keep 3 columns, best to elimante 2 columns " + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Case Number 5992\n", + "Date 5992\n", + "Year 5992\n", + "Type 5992\n", + "Country 5949\n", + "Area 5590\n", + "Location 5496\n", + "Activity 5465\n", + "Name 5792\n", + "Sex 5425\n", + "Age 3311\n", + "Injury 5965\n", + "Fatal (Y/N) 5973\n", + "Time 2779\n", + "Species 3058\n", + "Investigator or Source 5977\n", + "pdf 5992\n", + "href formula 5991\n", + "href 5989\n", + "Case Number.1 5992\n", + "Case Number.2 5992\n", + "dtype: int64" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.count()" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [], + "source": [ + "df = df.drop( labels = [\"Case Number.1\", \"Case Number.2\"], axis = 1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 6. Source column: href formula, herf pdf.\n", + "keeping on the herf" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Case Number 5992\n", + "Date 5992\n", + "Year 5992\n", + "Type 5992\n", + "Country 5949\n", + "Area 5590\n", + "Location 5496\n", + "Activity 5465\n", + "Name 5792\n", + "Sex 5425\n", + "Age 3311\n", + "Injury 5965\n", + "Fatal (Y/N) 5973\n", + "Time 2779\n", + "Species 3058\n", + "Investigator or Source 5977\n", + "pdf 5992\n", + "href formula 5991\n", + "href 5989\n", + "dtype: int64" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.count()" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/html": [ + "
    \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
    Case NumberDateYearTypeCountryAreaLocationActivityNameSexAgeInjuryFatal (Y/N)TimeSpeciesInvestigator or Sourcepdfhref formulahref
    Orginal_Order
    1ND.00011845-18530UnprovokedCEYLON (SRI LANKA)Eastern ProvinceBelow the English fort, TrincomaleeSwimmingmaleM15FATAL. \"Shark bit him in half, carrying away the lower extremities\"YNaNNaNS.W. BakerND-0001-Ceylon.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directoryND-0001-Ceylon.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directoryND-0001-Ceylon.pdf
    2ND.00021883-18890UnprovokedPANAMANaNPanama Bay 8ºN, 79ºWNaNJules PattersonMNaNFATALYNaNNaNThe Sun, 10/20/1938ND-0002-JulesPatterson.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/ND-0002-JulesPatterson.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/ND-0002-JulesPatterson.pdf
    3ND.00031900-19050UnprovokedUSANorth CarolinaOcracoke InletSwimmingCoast Guard personnelMNaNFATALYNaNNaNF. Schwartz, p.23; C. Creswell, GSAFND-0003-Ocracoke_1900-1905.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/ND-0003-Ocracoke_1900-1905.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/ND-0003-Ocracoke_1900-1905.pdf
    4ND.0004Before 19030UnprovokedAUSTRALIAWestern AustraliaNaNPearl divingAhmunMNaNFATALYNaNNaNH. Taunton; N. Bartlett, pp. 233-234ND-0004-Ahmun.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/ND-0004-Ahmun.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/ND-0004-Ahmun.pdf
    5ND.0005Before 19030UnprovokedAUSTRALIAWestern AustraliaRoebuck BayDivingmaleMNaNFATALYNaNNaNH. Taunton; N. Bartlett, p. 234ND-0005-RoebuckBay.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/ND-0005-RoebuckBay.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/ND-0005-RoebuckBay.pdf
    ............................................................
    59882016.09.1516-Sep-162016UnprovokedAUSTRALIAVictoriaBells BeachSurfingmaleMNaNNo injury: Knocked off board by sharkNNaN2 m sharkThe Age, 9/16/20162016.09.16-BellsBeach.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.16-BellsBeach.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.16-BellsBeach.pdf
    59892016.09.1717-Sep-162016UnprovokedAUSTRALIAVictoriaThirteenth BeachSurfingRory AngiolellaMNaNStruck by fin on chest & legNNaNNaNThe Age, 9/18/20162016.09.17-Angiolella.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17-Angiolella.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17-Angiolella.pdf
    59902016.09.18.a18-Sep-162016UnprovokedUSAFloridaNew Smyrna Beach, Volusia CountySurfingmaleM43Lacerations to lower legN10h43NaNOrlando Sentinel, 9/19/20162016.09.18.a-NSB.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.a-NSB.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.a-NSB.pdf
    59912016.09.18.b18-Sep-162016UnprovokedUSAFloridaNew Smyrna Beach, Volusia CountySurfingChucky LucianoM36Lacerations to handsN11h00NaNOrlando Sentinel, 9/19/20162016.09.18.b-Luciano.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.b-Luciano.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.b-Luciano.pdf
    59922016.09.18.c18-Sep-162016UnprovokedUSAFloridaNew Smyrna Beach, Volusia CountySurfingmaleM16Minor injury to thighN13h00NaNOrlando Sentinel, 9/19/20162016.09.18.c-NSB.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.c-NSB.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.c-NSB.pdf
    \n", + "

    5992 rows × 19 columns

    \n", + "
    " + ], + "text/plain": [ + " Case Number Date Year Type \\\n", + "Orginal_Order \n", + "1 ND.0001 1845-1853 0 Unprovoked \n", + "2 ND.0002 1883-1889 0 Unprovoked \n", + "3 ND.0003 1900-1905 0 Unprovoked \n", + "4 ND.0004 Before 1903 0 Unprovoked \n", + "5 ND.0005 Before 1903 0 Unprovoked \n", + "... ... ... ... ... \n", + "5988 2016.09.15 16-Sep-16 2016 Unprovoked \n", + "5989 2016.09.17 17-Sep-16 2016 Unprovoked \n", + "5990 2016.09.18.a 18-Sep-16 2016 Unprovoked \n", + "5991 2016.09.18.b 18-Sep-16 2016 Unprovoked \n", + "5992 2016.09.18.c 18-Sep-16 2016 Unprovoked \n", + "\n", + " Country Area \\\n", + "Orginal_Order \n", + "1 CEYLON (SRI LANKA) Eastern Province \n", + "2 PANAMA NaN \n", + "3 USA North Carolina \n", + "4 AUSTRALIA Western Australia \n", + "5 AUSTRALIA Western Australia \n", + "... ... ... \n", + "5988 AUSTRALIA Victoria \n", + "5989 AUSTRALIA Victoria \n", + "5990 USA Florida \n", + "5991 USA Florida \n", + "5992 USA Florida \n", + "\n", + " Location Activity \\\n", + "Orginal_Order \n", + "1 Below the English fort, Trincomalee Swimming \n", + "2 Panama Bay 8ºN, 79ºW NaN \n", + "3 Ocracoke Inlet Swimming \n", + "4 NaN Pearl diving \n", + "5 Roebuck Bay Diving \n", + "... ... ... \n", + "5988 Bells Beach Surfing \n", + "5989 Thirteenth Beach Surfing \n", + "5990 New Smyrna Beach, Volusia County Surfing \n", + "5991 New Smyrna Beach, Volusia County Surfing \n", + "5992 New Smyrna Beach, Volusia County Surfing \n", + "\n", + " Name Sex Age \\\n", + "Orginal_Order \n", + "1 male M 15 \n", + "2 Jules Patterson M NaN \n", + "3 Coast Guard personnel M NaN \n", + "4 Ahmun M NaN \n", + "5 male M NaN \n", + "... ... ... ... \n", + "5988 male M NaN \n", + "5989 Rory Angiolella M NaN \n", + "5990 male M 43 \n", + "5991 Chucky Luciano M 36 \n", + "5992 male M 16 \n", + "\n", + " Injury \\\n", + "Orginal_Order \n", + "1 FATAL. \"Shark bit him in half, carrying away the lower extremities\" \n", + "2 FATAL \n", + "3 FATAL \n", + "4 FATAL \n", + "5 FATAL \n", + "... ... \n", + "5988 No injury: Knocked off board by shark \n", + "5989 Struck by fin on chest & leg \n", + "5990 Lacerations to lower leg \n", + "5991 Lacerations to hands \n", + "5992 Minor injury to thigh \n", + "\n", + " Fatal (Y/N) Time Species \\\n", + "Orginal_Order \n", + "1 Y NaN NaN \n", + "2 Y NaN NaN \n", + "3 Y NaN NaN \n", + "4 Y NaN NaN \n", + "5 Y NaN NaN \n", + "... ... ... ... \n", + "5988 N NaN 2 m shark \n", + "5989 N NaN NaN \n", + "5990 N 10h43 NaN \n", + "5991 N 11h00 NaN \n", + "5992 N 13h00 NaN \n", + "\n", + " Investigator or Source \\\n", + "Orginal_Order \n", + "1 S.W. Baker \n", + "2 The Sun, 10/20/1938 \n", + "3 F. Schwartz, p.23; C. Creswell, GSAF \n", + "4 H. Taunton; N. Bartlett, pp. 233-234 \n", + "5 H. Taunton; N. Bartlett, p. 234 \n", + "... ... \n", + "5988 The Age, 9/16/2016 \n", + "5989 The Age, 9/18/2016 \n", + "5990 Orlando Sentinel, 9/19/2016 \n", + "5991 Orlando Sentinel, 9/19/2016 \n", + "5992 Orlando Sentinel, 9/19/2016 \n", + "\n", + " pdf \\\n", + "Orginal_Order \n", + "1 ND-0001-Ceylon.pdf \n", + "2 ND-0002-JulesPatterson.pdf \n", + "3 ND-0003-Ocracoke_1900-1905.pdf \n", + "4 ND-0004-Ahmun.pdf \n", + "5 ND-0005-RoebuckBay.pdf \n", + "... ... \n", + "5988 2016.09.16-BellsBeach.pdf \n", + "5989 2016.09.17-Angiolella.pdf \n", + "5990 2016.09.18.a-NSB.pdf \n", + "5991 2016.09.18.b-Luciano.pdf \n", + "5992 2016.09.18.c-NSB.pdf \n", + "\n", + " href formula \\\n", + "Orginal_Order \n", + "1 http://sharkattackfile.net/spreadsheets/pdf_directoryND-0001-Ceylon.pdf \n", + "2 http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0002-JulesPatterson.pdf \n", + "3 http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0003-Ocracoke_1900-1905.pdf \n", + "4 http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0004-Ahmun.pdf \n", + "5 http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0005-RoebuckBay.pdf \n", + "... ... \n", + "5988 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.16-BellsBeach.pdf \n", + "5989 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17-Angiolella.pdf \n", + "5990 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.a-NSB.pdf \n", + "5991 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.b-Luciano.pdf \n", + "5992 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.c-NSB.pdf \n", + "\n", + " href \n", + "Orginal_Order \n", + "1 http://sharkattackfile.net/spreadsheets/pdf_directoryND-0001-Ceylon.pdf \n", + "2 http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0002-JulesPatterson.pdf \n", + "3 http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0003-Ocracoke_1900-1905.pdf \n", + "4 http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0004-Ahmun.pdf \n", + "5 http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0005-RoebuckBay.pdf \n", + "... ... \n", + "5988 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.16-BellsBeach.pdf \n", + "5989 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17-Angiolella.pdf \n", + "5990 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.a-NSB.pdf \n", + "5991 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.b-Luciano.pdf \n", + "5992 http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.c-NSB.pdf \n", + "\n", + "[5992 rows x 19 columns]" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "\n", + " df\n", + "# filtering data \n", + "#test1 = df.where(df[\"Source\"]!=np.nan, inplace = True) " + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [], + "source": [ + "test1 = df.loc\n" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/html": [ + "
    \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
    Case NumberDateYearTypeCountryAreaLocationActivityNameSexAgeInjuryFatal (Y/N)TimeSpeciesInvestigator or Sourcepdfhref formulahref
    Orginal_Order
    29731975.01.1919-Jan-751975UnprovokedAUSTRALIASouth AustraliaCoffin BaySurfingDavid BarrowmanM17FATAL, body not recoveredYNaNNaNJ. West; Adelaide Advertiser, 1/20/1975; P. Kemp, GSAF1975.01.19-Barrowman.pdfNaNhttp://sharkattackfile.net/spreadsheets/pdf_directory/1975.01.19-Barrowman.pdf
    \n", + "
    " + ], + "text/plain": [ + " Case Number Date Year Type Country \\\n", + "Orginal_Order \n", + "2973 1975.01.19 19-Jan-75 1975 Unprovoked AUSTRALIA \n", + "\n", + " Area Location Activity Name Sex Age \\\n", + "Orginal_Order \n", + "2973 South Australia Coffin Bay Surfing David Barrowman M 17 \n", + "\n", + " Injury Fatal (Y/N) Time Species \\\n", + "Orginal_Order \n", + "2973 FATAL, body not recovered Y NaN NaN \n", + "\n", + " Investigator or Source \\\n", + "Orginal_Order \n", + "2973 J. West; Adelaide Advertiser, 1/20/1975; P. Kemp, GSAF \n", + "\n", + " pdf href formula \\\n", + "Orginal_Order \n", + "2973 1975.01.19-Barrowman.pdf NaN \n", + "\n", + " href \n", + "Orginal_Order \n", + "2973 http://sharkattackfile.net/spreadsheets/pdf_directory/1975.01.19-Barrowman.pdf " + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[df[\"href formula\"].isnull()]" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
    \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
    Case NumberDateYearTypeCountryAreaLocationActivityNameSexAgeInjuryFatal (Y/N)TimeSpeciesInvestigator or Sourcepdfhref formulahref
    Orginal_Order
    3061864.01.0202-Jan-18641864UnprovokedNEW ZEALANDNorth IslandBrickfield Bay, Auckland HarbourStanding / BathingMr. KelsallMNaNMinor injury to hipNNaNNaNWellington Independent, 1/21/18641864.01.01-Kelsall.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.01-Kelsall.pdfNaN
    37181993.04.00Apr-931993InvalidAUSTRALIATasmaniaBarren Joey IslandSpearfishingTony SzolomiakM32No inujuryNNaNNaNC. Black & T. Peake, GSAF1993.04.00-Szolomiak.pdfhttp://sharkattackfile.net/spreadsheets/pdf_directory/1993.04.00-Szolomiak.pdfNaN
    57992015.06.1313-Jun-152015UnprovokedUSACaliforniaOff San DiegoNaNElke SpeckerFNaNSevere laceration to legNNaNMako sharkCourthouse News Service, 11/18/2015Court Case pendinghttp://sharkattackfile.net/spreadsheets/pdf_directory/Court Case pendingNaN
    \n", + "
    " + ], + "text/plain": [ + " Case Number Date Year Type Country \\\n", + "Orginal_Order \n", + "306 1864.01.02 02-Jan-1864 1864 Unprovoked NEW ZEALAND \n", + "3718 1993.04.00 Apr-93 1993 Invalid AUSTRALIA \n", + "5799 2015.06.13 13-Jun-15 2015 Unprovoked USA \n", + "\n", + " Area Location \\\n", + "Orginal_Order \n", + "306 North Island Brickfield Bay, Auckland Harbour \n", + "3718 Tasmania Barren Joey Island \n", + "5799 California Off San Diego \n", + "\n", + " Activity Name Sex Age \\\n", + "Orginal_Order \n", + "306 Standing / Bathing Mr. Kelsall M NaN \n", + "3718 Spearfishing Tony Szolomiak M 32 \n", + "5799 NaN Elke Specker F NaN \n", + "\n", + " Injury Fatal (Y/N) Time Species \\\n", + "Orginal_Order \n", + "306 Minor injury to hip N NaN NaN \n", + "3718 No inujury N NaN NaN \n", + "5799 Severe laceration to leg N NaN Mako shark \n", + "\n", + " Investigator or Source pdf \\\n", + "Orginal_Order \n", + "306 Wellington Independent, 1/21/1864 1864.01.01-Kelsall.pdf \n", + "3718 C. Black & T. Peake, GSAF 1993.04.00-Szolomiak.pdf \n", + "5799 Courthouse News Service, 11/18/2015 Court Case pending \n", + "\n", + " href formula \\\n", + "Orginal_Order \n", + "306 http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.01-Kelsall.pdf \n", + "3718 http://sharkattackfile.net/spreadsheets/pdf_directory/1993.04.00-Szolomiak.pdf \n", + "5799 http://sharkattackfile.net/spreadsheets/pdf_directory/Court Case pending \n", + "\n", + " href \n", + "Orginal_Order \n", + "306 NaN \n", + "3718 NaN \n", + "5799 NaN " + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[df[\"href\"].isnull()]" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [], + "source": [ + "df = df.drop(labels = [\"href formula\", \"href\"], axis = 1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 7.Table head names clean and rename" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Case Number',\n", + " 'Date',\n", + " 'Year',\n", + " 'Type',\n", + " 'Country',\n", + " 'Area',\n", + " 'Location',\n", + " 'Activity',\n", + " 'Name',\n", + " 'Sex ',\n", + " 'Age',\n", + " 'Injury',\n", + " 'Fatal (Y/N)',\n", + " 'Time',\n", + " 'Species ',\n", + " 'Investigator or Source',\n", + " 'pdf']" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "heads = list(df.columns)\n", + "heads" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [], + "source": [ + "df.rename(columns={'Sex ':'Sex',\n", + " 'Fatal (Y/N)':'Fatal',\n", + " 'Species ':'Species',\n", + " \"Investigator or Source\" : \"Investigator_or_Source\",\n", + " \"Case Number\" : \"Case_Number\",\n", + " \"pdf\" : \"Source\"}, \n", + " inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['Case_Number', 'Date', 'Year', 'Type', 'Country', 'Area', 'Location',\n", + " 'Activity', 'Name', 'Sex', 'Age', 'Injury', 'Fatal', 'Time', 'Species',\n", + " 'Investigator_or_Source', 'Source'],\n", + " dtype='object')" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.columns" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 8. alimentating ambiguities in dataframe (Type, Fatal, Country)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# I Type " + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/html": [ + "
    \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
    Case_NumberDateYearTypeCountryAreaLocationActivityNameSexAgeInjuryFatalTimeSpeciesInvestigator_or_SourceSource
    Orginal_Order
    16831948.09.2222-Sep-481948UnprovokedGREECEAtticaKeratsiniSwimmingDimitris ParassakisM17FATALY16h00Said to be 6.4 m [21'] sharkC. Moore, GSAF1948.09.22-Parasakis.pdf
    17821951.08.17.a17-Aug-511951UnprovokedGREECECorfu IslandOff Royal ResidenceSwimmingVanda PierriF16FATAL, body not recovered Another man was also injured by the shark at same time (see below)YNaNWhite sharkA De Maddalena1951.08.17.a-Perri.pdf
    19511956.00.00.f19561956UnprovokedGREECECorfu IslandKérkiraSwimming off yachtMargoulisF15FATALYNaNWhite sharkMEDSAF1956.00.00.f-Margoulis.pdf
    24701963.06.01.b01-Jun-631963UnprovokedGREECEThessalynear Trikerion IslandSwimmingHelga PoglF42FATALY16h30White shark, 3 mA. De Maddalena1963.06.01.b-Pogl.pdf
    \n", + "
    " + ], + "text/plain": [ + " Case_Number Date Year Type Country \\\n", + "Orginal_Order \n", + "1683 1948.09.22 22-Sep-48 1948 Unprovoked GREECE \n", + "1782 1951.08.17.a 17-Aug-51 1951 Unprovoked GREECE \n", + "1951 1956.00.00.f 1956 1956 Unprovoked GREECE \n", + "2470 1963.06.01.b 01-Jun-63 1963 Unprovoked GREECE \n", + "\n", + " Area Location Activity \\\n", + "Orginal_Order \n", + "1683 Attica Keratsini Swimming \n", + "1782 Corfu Island Off Royal Residence Swimming \n", + "1951 Corfu Island Kérkira Swimming off yacht \n", + "2470 Thessaly near Trikerion Island Swimming \n", + "\n", + " Name Sex Age \\\n", + "Orginal_Order \n", + "1683 Dimitris Parassakis M 17 \n", + "1782 Vanda Pierri F 16 \n", + "1951 Margoulis F 15 \n", + "2470 Helga Pogl F 42 \n", + "\n", + " Injury \\\n", + "Orginal_Order \n", + "1683 FATAL \n", + "1782 FATAL, body not recovered Another man was also injured by the shark at same time (see below) \n", + "1951 FATAL \n", + "2470 FATAL \n", + "\n", + " Fatal Time Species \\\n", + "Orginal_Order \n", + "1683 Y 16h00 Said to be 6.4 m [21'] shark \n", + "1782 Y NaN White shark \n", + "1951 Y NaN White shark \n", + "2470 Y 16h30 White shark, 3 m \n", + "\n", + " Investigator_or_Source Source \n", + "Orginal_Order \n", + "1683 C. Moore, GSAF 1948.09.22-Parasakis.pdf \n", + "1782 A De Maddalena 1951.08.17.a-Perri.pdf \n", + "1951 MEDSAF 1956.00.00.f-Margoulis.pdf \n", + "2470 A. De Maddalena 1963.06.01.b-Pogl.pdf " + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[(df[\"Country\"] == \"GREECE\") & (df[\"Fatal\"] == \"Y\") & (df[\"Species\"])]" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "1957 11\n", + "1942 9\n", + "1956 8\n", + "1941 7\n", + "1950 7\n", + " ..\n", + "04-May-11 1\n", + "13-Apr-1898 1\n", + "13-Jan-80 1\n", + "27-Jun-05 1\n", + "07-Jan-46 1\n", + "Name: Date, Length: 5128, dtype: int64" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['Date'].value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "Case_Number object\n", + "Date object\n", + "Year int64\n", + "Type object\n", + "Country object\n", + "Area object\n", + "Location object\n", + "Activity object\n", + "Name object\n", + "Sex object\n", + "Age object\n", + "Injury object\n", + "Fatal object\n", + "Time object\n", + "Species object\n", + "Investigator_or_Source object\n", + "Source object\n", + "dtype: object" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.dtypes" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
    \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
    Case_NumberDateYearTypeCountryAreaLocationActivityNameSexAgeInjuryFatalTimeSpeciesInvestigator_or_SourceSource
    Orginal_Order
    1ND.00011845-18530UnprovokedCEYLON (SRI LANKA)Eastern ProvinceBelow the English fort, TrincomaleeSwimmingmaleM15FATAL. \"Shark bit him in half, carrying away the lower extremities\"YNaNNaNS.W. BakerND-0001-Ceylon.pdf
    2ND.00021883-18890UnprovokedPANAMANaNPanama Bay 8ºN, 79ºWNaNJules PattersonMNaNFATALYNaNNaNThe Sun, 10/20/1938ND-0002-JulesPatterson.pdf
    3ND.00031900-19050UnprovokedUSANorth CarolinaOcracoke InletSwimmingCoast Guard personnelMNaNFATALYNaNNaNF. Schwartz, p.23; C. Creswell, GSAFND-0003-Ocracoke_1900-1905.pdf
    4ND.0004Before 19030UnprovokedAUSTRALIAWestern AustraliaNaNPearl divingAhmunMNaNFATALYNaNNaNH. Taunton; N. Bartlett, pp. 233-234ND-0004-Ahmun.pdf
    5ND.0005Before 19030UnprovokedAUSTRALIAWestern AustraliaRoebuck BayDivingmaleMNaNFATALYNaNNaNH. Taunton; N. Bartlett, p. 234ND-0005-RoebuckBay.pdf
    \n", + "
    " + ], + "text/plain": [ + " Case_Number Date Year Type Country \\\n", + "Orginal_Order \n", + "1 ND.0001 1845-1853 0 Unprovoked CEYLON (SRI LANKA) \n", + "2 ND.0002 1883-1889 0 Unprovoked PANAMA \n", + "3 ND.0003 1900-1905 0 Unprovoked USA \n", + "4 ND.0004 Before 1903 0 Unprovoked AUSTRALIA \n", + "5 ND.0005 Before 1903 0 Unprovoked AUSTRALIA \n", + "\n", + " Area Location \\\n", + "Orginal_Order \n", + "1 Eastern Province Below the English fort, Trincomalee \n", + "2 NaN Panama Bay 8ºN, 79ºW \n", + "3 North Carolina Ocracoke Inlet \n", + "4 Western Australia NaN \n", + "5 Western Australia Roebuck Bay \n", + "\n", + " Activity Name Sex Age \\\n", + "Orginal_Order \n", + "1 Swimming male M 15 \n", + "2 NaN Jules Patterson M NaN \n", + "3 Swimming Coast Guard personnel M NaN \n", + "4 Pearl diving Ahmun M NaN \n", + "5 Diving male M NaN \n", + "\n", + " Injury \\\n", + "Orginal_Order \n", + "1 FATAL. \"Shark bit him in half, carrying away the lower extremities\" \n", + "2 FATAL \n", + "3 FATAL \n", + "4 FATAL \n", + "5 FATAL \n", + "\n", + " Fatal Time Species Investigator_or_Source \\\n", + "Orginal_Order \n", + "1 Y NaN NaN S.W. Baker \n", + "2 Y NaN NaN The Sun, 10/20/1938 \n", + "3 Y NaN NaN F. Schwartz, p.23; C. Creswell, GSAF \n", + "4 Y NaN NaN H. Taunton; N. Bartlett, pp. 233-234 \n", + "5 Y NaN NaN H. Taunton; N. Bartlett, p. 234 \n", + "\n", + " Source \n", + "Orginal_Order \n", + "1 ND-0001-Ceylon.pdf \n", + "2 ND-0002-JulesPatterson.pdf \n", + "3 ND-0003-Ocracoke_1900-1905.pdf \n", + "4 ND-0004-Ahmun.pdf \n", + "5 ND-0005-RoebuckBay.pdf " + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()\n" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Unprovoked 4386\n", + "Provoked 557\n", + "Invalid 519\n", + "Sea Disaster 220\n", + "Boat 200\n", + "Boating 110\n", + "Name: Type, dtype: int64" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[\"Type\"].value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [], + "source": [ + "test = df[\"Type\"].replace([\"Boating\"], [\"Boat\"]) " + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Unprovoked 4386\n", + "Provoked 557\n", + "Invalid 519\n", + "Boat 310\n", + "Sea Disaster 220\n", + "Name: Type, dtype: int64" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test.value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [], + "source": [ + "df[\"Type\"] = test" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "Unprovoked 4386\n", + "Provoked 557\n", + "Invalid 519\n", + "Boat 310\n", + "Sea Disaster 220\n", + "Name: Type, dtype: int64" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[\"Type\"].value_counts()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## II Fatal" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "N 4315\n", + "Y 1552\n", + "UNKNOWN 94\n", + " N 8\n", + "N 1\n", + "F 1\n", + "n 1\n", + "#VALUE! 1\n", + "Name: Fatal, dtype: int64" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[\"Fatal\"].value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": {}, + "outputs": [], + "source": [ + "test = df[\"Fatal\"].replace([\" N\", 'F', 'N ', 'n', \"#VALUE!\"], \n", + " [\"N\", 'Y', 'N', 'N', 'UNKNOWN']) " + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "N 4325\n", + "Y 1553\n", + "UNKNOWN 95\n", + "Name: Fatal, dtype: int64" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test.value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": {}, + "outputs": [], + "source": [ + "df[\"Fatal\"] = test" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "N 4325\n", + "Y 1553\n", + "UNKNOWN 95\n", + "Name: Fatal, dtype: int64" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[\"Fatal\"].value_counts()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## III Country" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": {}, + "outputs": [], + "source": [ + "test = df[\"Country\"].replace([\" TONGA\", \"EGYPT \", \" PHILIPPINES\", \"CEYLON (SRI LANKA)\", \"EGYPT / ISRAEL\", \"UNITED ARAB EMIRATES (UAE)\"],\n", + " ['TONGA', \"EGYPT\", \"PHILIPPINES\", \"SRI LANKA\", \"EGYPT\", \"UNITED ARAB EMIRATES\" ]).str.upper()" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "USA 2116\n", + "AUSTRALIA 1279\n", + "SOUTH AFRICA 565\n", + "PAPUA NEW GUINEA 133\n", + "NEW ZEALAND 125\n", + "BRAZIL 102\n", + "BAHAMAS 98\n", + "MEXICO 81\n", + "ITALY 71\n", + "FIJI 65\n", + "PHILIPPINES 60\n", + "REUNION 57\n", + "NEW CALEDONIA 51\n", + "MOZAMBIQUE 44\n", + "CUBA 42\n", + "SPAIN 40\n", + "EGYPT 39\n", + "INDIA 37\n", + "CROATIA 34\n", + "JAPAN 32\n", + "PANAMA 32\n", + "IRAN 29\n", + "SOLOMON ISLANDS 29\n", + "GREECE 25\n", + "HONG KONG 24\n", + "JAMAICA 23\n", + "FRENCH POLYNESIA 22\n", + "INDONESIA 20\n", + "ENGLAND 19\n", + "TONGA 18\n", + "PACIFIC OCEAN 17\n", + "BERMUDA 16\n", + "ATLANTIC OCEAN 16\n", + "SRI LANKA 14\n", + "VANUATU 14\n", + "VIETNAM 14\n", + "FRANCE 13\n", + "MARSHALL ISLANDS 13\n", + "COSTA RICA 12\n", + "SOUTH ATLANTIC OCEAN 12\n", + "IRAQ 12\n", + "TURKEY 12\n", + "SENEGAL 11\n", + "VENEZUELA 11\n", + "KENYA 10\n", + "CANADA 10\n", + "NEW GUINEA 10\n", + "UNITED KINGDOM 10\n", + "TAIWAN 9\n", + "COLUMBIA 9\n", + "SIERRA LEONE 9\n", + "TANZANIA 8\n", + "SCOTLAND 8\n", + "SEYCHELLES 8\n", + "CHILE 8\n", + "ECUADOR 8\n", + "CARIBBEAN SEA 8\n", + "SOUTH KOREA 8\n", + "MAURITIUS 7\n", + "DOMINICAN REPUBLIC 7\n", + "NORTH PACIFIC OCEAN 7\n", + "INDIAN OCEAN 7\n", + "MADAGASCAR 7\n", + "ISRAEL 7\n", + "YEMEN 7\n", + "SAMOA 7\n", + "OKINAWA 6\n", + "CHINA 6\n", + "SOMALIA 6\n", + "NEW BRITAIN 6\n", + "SINGAPORE 6\n", + "NICARAGUA 6\n", + "THAILAND 6\n", + "KIRIBATI 6\n", + "TURKS & CAICOS 5\n", + "SAUDI ARABIA 5\n", + "MALTA 5\n", + "MID ATLANTIC OCEAN 5\n", + "BARBADOS 5\n", + "LIBYA 5\n", + "PALAU 5\n", + "AZORES 5\n", + "EL SALVADOR 4\n", + "RUSSIA 4\n", + "BURMA 4\n", + "MALAYSIA 4\n", + "GUAM 4\n", + "NIGERIA 4\n", + "PERSIAN GULF 4\n", + "NORTH ATLANTIC OCEAN 4\n", + "GRENADA 4\n", + "SUDAN 4\n", + "HAITI 3\n", + "UNITED ARAB EMIRATES 3\n", + "BELIZE 3\n", + "CAPE VERDE 3\n", + "PORTUGAL 3\n", + "HONDURAS 3\n", + "AMERICAN SAMOA 3\n", + "LEBANON 3\n", + "MICRONESIA 3\n", + "LIBERIA 3\n", + "TUNISIA 3\n", + "MONTENEGRO 3\n", + "GUINEA 3\n", + "URUGUAY 3\n", + "TRINIDAD & TOBAGO 3\n", + "YEMEN 2\n", + "PACIFIC OCEAN 2\n", + "CRETE 2\n", + "JOHNSTON ISLAND 2\n", + "SOUTHWEST PACIFIC OCEAN 2\n", + "NAMIBIA 2\n", + "NORWAY 2\n", + "MEDITERRANEAN SEA 2\n", + "CAYMAN ISLANDS 2\n", + "SOUTH PACIFIC OCEAN 2\n", + "CENTRAL PACIFIC 2\n", + "SLOVENIA 1\n", + "ICELAND 1\n", + "BAHREIN 1\n", + "NICARAGUA 1\n", + "GHANA 1\n", + "WESTERN SAMOA 1\n", + "RED SEA / INDIAN OCEAN 1\n", + "COAST OF AFRICA 1\n", + "SOUTH CHINA SEA 1\n", + "SYRIA 1\n", + "DJIBOUTI 1\n", + "GREENLAND 1\n", + "THE BALKANS 1\n", + "ITALY / CROATIA 1\n", + "ASIA? 1\n", + "MEDITERRANEAN SEA? 1\n", + "ST HELENA 1\n", + "MEXICO 1\n", + "ALGERIA 1\n", + "BRITISH WEST INDIES 1\n", + "IRAN / IRAQ 1\n", + "EQUATORIAL GUINEA / CAMEROON 1\n", + "MONACO 1\n", + "RED SEA? 1\n", + "BRITISH VIRGIN ISLANDS 1\n", + "ST. MAARTIN 1\n", + "ADMIRALTY ISLANDS 1\n", + "TASMAN SEA 1\n", + "GRAND CAYMAN 1\n", + "SWEDEN 1\n", + "NORTH ATLANTIC OCEAN 1\n", + "PALESTINIAN TERRITORIES 1\n", + "KOREA 1\n", + "ANDAMAN / NICOBAR ISLANDAS 1\n", + "ST. MARTIN 1\n", + "GUYANA 1\n", + "MARTINIQUE 1\n", + "BRITISH ISLES 1\n", + "DIEGO GARCIA 1\n", + "MAYOTTE 1\n", + "ANGOLA 1\n", + "FALKLAND ISLANDS 1\n", + "CYPRUS 1\n", + "NORTHERN MARIANA ISLANDS 1\n", + "PARAGUAY 1\n", + "NEVIS 1\n", + "MALDIVE ISLANDS 1\n", + "MID-PACIFC OCEAN 1\n", + "NORTHERN ARABIAN SEA 1\n", + "PUERTO RICO 1\n", + "ANTIGUA 1\n", + "ARUBA 1\n", + "INDIAN OCEAN? 1\n", + "TUVALU 1\n", + "BANGLADESH 1\n", + "COOK ISLANDS 1\n", + "OCEAN 1\n", + "SUDAN? 1\n", + "BRITISH NEW GUINEA 1\n", + "RED SEA 1\n", + "KUWAIT 1\n", + "FEDERATED STATES OF MICRONESIA 1\n", + "NETHERLANDS ANTILLES 1\n", + "CURACAO 1\n", + "GEORGIA 1\n", + "ARGENTINA 1\n", + "BAY OF BENGAL 1\n", + "JAVA 1\n", + "GABON 1\n", + "SAN DOMINGO 1\n", + "GUATEMALA 1\n", + "SOLOMON ISLANDS / VANUATU 1\n", + "IRELAND 1\n", + "NORTH SEA 1\n", + "BETWEEN PORTUGAL & INDIA 1\n", + "GULF OF ADEN 1\n", + "Name: Country, dtype: int64" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.set_option('display.max_rows', 5400)\n", + "test.value_counts()\n" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "43" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test.isnull().sum()" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "metadata": {}, + "outputs": [], + "source": [ + "df[\"Country\"] = test" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "USA 2116\n", + "AUSTRALIA 1279\n", + "SOUTH AFRICA 565\n", + "PAPUA NEW GUINEA 133\n", + "NEW ZEALAND 125\n", + "BRAZIL 102\n", + "BAHAMAS 98\n", + "MEXICO 81\n", + "ITALY 71\n", + "FIJI 65\n", + "PHILIPPINES 60\n", + "REUNION 57\n", + "NEW CALEDONIA 51\n", + "MOZAMBIQUE 44\n", + "CUBA 42\n", + "SPAIN 40\n", + "EGYPT 39\n", + "INDIA 37\n", + "CROATIA 34\n", + "JAPAN 32\n", + "PANAMA 32\n", + "IRAN 29\n", + "SOLOMON ISLANDS 29\n", + "GREECE 25\n", + "HONG KONG 24\n", + "JAMAICA 23\n", + "FRENCH POLYNESIA 22\n", + "INDONESIA 20\n", + "ENGLAND 19\n", + "TONGA 18\n", + "PACIFIC OCEAN 17\n", + "BERMUDA 16\n", + "ATLANTIC OCEAN 16\n", + "SRI LANKA 14\n", + "VANUATU 14\n", + "VIETNAM 14\n", + "FRANCE 13\n", + "MARSHALL ISLANDS 13\n", + "COSTA RICA 12\n", + "SOUTH ATLANTIC OCEAN 12\n", + "IRAQ 12\n", + "TURKEY 12\n", + "SENEGAL 11\n", + "VENEZUELA 11\n", + "KENYA 10\n", + "CANADA 10\n", + "NEW GUINEA 10\n", + "UNITED KINGDOM 10\n", + "TAIWAN 9\n", + "COLUMBIA 9\n", + "SIERRA LEONE 9\n", + "TANZANIA 8\n", + "SCOTLAND 8\n", + "SEYCHELLES 8\n", + "CHILE 8\n", + "ECUADOR 8\n", + "CARIBBEAN SEA 8\n", + "SOUTH KOREA 8\n", + "MAURITIUS 7\n", + "DOMINICAN REPUBLIC 7\n", + "NORTH PACIFIC OCEAN 7\n", + "INDIAN OCEAN 7\n", + "MADAGASCAR 7\n", + "ISRAEL 7\n", + "YEMEN 7\n", + "SAMOA 7\n", + "OKINAWA 6\n", + "CHINA 6\n", + "SOMALIA 6\n", + "NEW BRITAIN 6\n", + "SINGAPORE 6\n", + "NICARAGUA 6\n", + "THAILAND 6\n", + "KIRIBATI 6\n", + "TURKS & CAICOS 5\n", + "SAUDI ARABIA 5\n", + "MALTA 5\n", + "MID ATLANTIC OCEAN 5\n", + "BARBADOS 5\n", + "LIBYA 5\n", + "PALAU 5\n", + "AZORES 5\n", + "EL SALVADOR 4\n", + "RUSSIA 4\n", + "BURMA 4\n", + "MALAYSIA 4\n", + "GUAM 4\n", + "NIGERIA 4\n", + "PERSIAN GULF 4\n", + "NORTH ATLANTIC OCEAN 4\n", + "GRENADA 4\n", + "SUDAN 4\n", + "HAITI 3\n", + "UNITED ARAB EMIRATES 3\n", + "BELIZE 3\n", + "CAPE VERDE 3\n", + "PORTUGAL 3\n", + "HONDURAS 3\n", + "AMERICAN SAMOA 3\n", + "LEBANON 3\n", + "MICRONESIA 3\n", + "LIBERIA 3\n", + "TUNISIA 3\n", + "MONTENEGRO 3\n", + "GUINEA 3\n", + "URUGUAY 3\n", + "TRINIDAD & TOBAGO 3\n", + "YEMEN 2\n", + "PACIFIC OCEAN 2\n", + "CRETE 2\n", + "JOHNSTON ISLAND 2\n", + "SOUTHWEST PACIFIC OCEAN 2\n", + "NAMIBIA 2\n", + "NORWAY 2\n", + "MEDITERRANEAN SEA 2\n", + "CAYMAN ISLANDS 2\n", + "SOUTH PACIFIC OCEAN 2\n", + "CENTRAL PACIFIC 2\n", + "SLOVENIA 1\n", + "ICELAND 1\n", + "BAHREIN 1\n", + "NICARAGUA 1\n", + "GHANA 1\n", + "WESTERN SAMOA 1\n", + "RED SEA / INDIAN OCEAN 1\n", + "COAST OF AFRICA 1\n", + "SOUTH CHINA SEA 1\n", + "SYRIA 1\n", + "DJIBOUTI 1\n", + "GREENLAND 1\n", + "THE BALKANS 1\n", + "ITALY / CROATIA 1\n", + "ASIA? 1\n", + "MEDITERRANEAN SEA? 1\n", + "ST HELENA 1\n", + "MEXICO 1\n", + "ALGERIA 1\n", + "BRITISH WEST INDIES 1\n", + "IRAN / IRAQ 1\n", + "EQUATORIAL GUINEA / CAMEROON 1\n", + "MONACO 1\n", + "RED SEA? 1\n", + "BRITISH VIRGIN ISLANDS 1\n", + "ST. MAARTIN 1\n", + "ADMIRALTY ISLANDS 1\n", + "TASMAN SEA 1\n", + "GRAND CAYMAN 1\n", + "SWEDEN 1\n", + "NORTH ATLANTIC OCEAN 1\n", + "PALESTINIAN TERRITORIES 1\n", + "KOREA 1\n", + "ANDAMAN / NICOBAR ISLANDAS 1\n", + "ST. MARTIN 1\n", + "GUYANA 1\n", + "MARTINIQUE 1\n", + "BRITISH ISLES 1\n", + "DIEGO GARCIA 1\n", + "MAYOTTE 1\n", + "ANGOLA 1\n", + "FALKLAND ISLANDS 1\n", + "CYPRUS 1\n", + "NORTHERN MARIANA ISLANDS 1\n", + "PARAGUAY 1\n", + "NEVIS 1\n", + "MALDIVE ISLANDS 1\n", + "MID-PACIFC OCEAN 1\n", + "NORTHERN ARABIAN SEA 1\n", + "PUERTO RICO 1\n", + "ANTIGUA 1\n", + "ARUBA 1\n", + "INDIAN OCEAN? 1\n", + "TUVALU 1\n", + "BANGLADESH 1\n", + "COOK ISLANDS 1\n", + "OCEAN 1\n", + "SUDAN? 1\n", + "BRITISH NEW GUINEA 1\n", + "RED SEA 1\n", + "KUWAIT 1\n", + "FEDERATED STATES OF MICRONESIA 1\n", + "NETHERLANDS ANTILLES 1\n", + "CURACAO 1\n", + "GEORGIA 1\n", + "ARGENTINA 1\n", + "BAY OF BENGAL 1\n", + "JAVA 1\n", + "GABON 1\n", + "SAN DOMINGO 1\n", + "GUATEMALA 1\n", + "SOLOMON ISLANDS / VANUATU 1\n", + "IRELAND 1\n", + "NORTH SEA 1\n", + "BETWEEN PORTUGAL & INDIA 1\n", + "GULF OF ADEN 1\n", + "Name: Country, dtype: int64" + ] + }, + "execution_count": 46, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[\"Country\"].value_counts() " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## IV Year" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "metadata": {}, + "outputs": [], + "source": [ + "test = df[\"Year\"]" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": {}, + "outputs": [], + "source": [ + "test = df[\"Year\"].replace(0, \"NA\")" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "2015 139\n", + "2011 128\n", + "2014 125\n", + "NA 124\n", + "2013 122\n", + "2008 121\n", + "2009 120\n", + "2012 117\n", + "2007 112\n", + "2016 103\n", + "2006 103\n", + "2005 103\n", + "2010 101\n", + "2000 97\n", + "1959 93\n", + "1960 93\n", + "2003 92\n", + "2004 92\n", + "2001 92\n", + "2002 88\n", + "1962 86\n", + "1961 78\n", + "1995 76\n", + "1964 66\n", + "1999 65\n", + "1998 65\n", + "1996 61\n", + "1963 61\n", + "1966 58\n", + "1997 57\n", + "1992 56\n", + "1994 56\n", + "1993 56\n", + "1988 55\n", + "1958 54\n", + "1989 53\n", + "1956 51\n", + "1965 51\n", + "1983 50\n", + "1975 49\n", + "1981 49\n", + "1967 48\n", + "1968 46\n", + "1955 43\n", + "1950 43\n", + "1970 42\n", + "1954 42\n", + "1942 41\n", + "1957 41\n", + "1984 41\n", + "1982 40\n", + "1976 39\n", + "1986 39\n", + "1990 38\n", + "1991 38\n", + "1974 38\n", + "1929 37\n", + "1985 37\n", + "1953 36\n", + "1980 35\n", + "1987 35\n", + "1972 35\n", + "1935 32\n", + "1951 31\n", + "1949 31\n", + "1944 31\n", + "1936 30\n", + "1937 30\n", + "1947 30\n", + "1969 30\n", + "1948 29\n", + "1952 29\n", + "1931 29\n", + "1943 28\n", + "1971 28\n", + "1932 27\n", + "1941 27\n", + "1973 27\n", + "1934 27\n", + "1946 26\n", + "1928 26\n", + "1930 26\n", + "1977 26\n", + "1916 25\n", + "1978 25\n", + "1979 25\n", + "1938 24\n", + "1939 24\n", + "1940 24\n", + "1907 23\n", + "1922 22\n", + "1933 22\n", + "1926 21\n", + "1906 21\n", + "1923 21\n", + "1895 20\n", + "1924 19\n", + "1927 19\n", + "1898 19\n", + "1899 19\n", + "1909 18\n", + "1914 17\n", + "1945 16\n", + "1905 16\n", + "1890 16\n", + "1911 16\n", + "1913 16\n", + "1888 15\n", + "1886 15\n", + "1894 15\n", + "1902 15\n", + "1920 15\n", + "1880 15\n", + "1910 14\n", + "1877 14\n", + "1919 14\n", + "1925 14\n", + "1893 13\n", + "1900 13\n", + "1904 13\n", + "1908 13\n", + "1912 13\n", + "1862 12\n", + "1887 12\n", + "1915 12\n", + "1878 12\n", + "1897 11\n", + "1882 11\n", + "1921 11\n", + "1892 11\n", + "1917 11\n", + "1896 11\n", + "1874 10\n", + "1852 10\n", + "1883 10\n", + "1903 10\n", + "1881 9\n", + "1885 9\n", + "1889 9\n", + "1901 9\n", + "1879 8\n", + "1876 8\n", + "1891 8\n", + "1871 8\n", + "1870 8\n", + "1864 8\n", + "1855 7\n", + "1863 7\n", + "1853 7\n", + "1872 7\n", + "1868 6\n", + "1860 6\n", + "1847 6\n", + "1884 6\n", + "1849 6\n", + "1918 5\n", + "1861 5\n", + "1875 5\n", + "1827 4\n", + "1840 4\n", + "1817 4\n", + "1844 4\n", + "1845 4\n", + "1839 4\n", + "1867 4\n", + "1865 4\n", + "1856 4\n", + "1873 4\n", + "1858 4\n", + "1700 3\n", + "1826 3\n", + "1830 3\n", + "1837 3\n", + "1851 3\n", + "1842 3\n", + "1848 3\n", + "1776 2\n", + "1829 2\n", + "1642 2\n", + "1869 2\n", + "1825 2\n", + "1828 2\n", + "1832 2\n", + "1835 2\n", + "1836 2\n", + "1755 1\n", + "1758 1\n", + "1703 1\n", + "1749 1\n", + "1764 1\n", + "1748 1\n", + "1742 1\n", + "1738 1\n", + "1733 1\n", + "1721 1\n", + "1543 1\n", + "77 1\n", + "1638 1\n", + "1554 1\n", + "1617 1\n", + "1595 1\n", + "1767 1\n", + "500 1\n", + "1580 1\n", + "1555 1\n", + "1637 1\n", + "1803 1\n", + "1771 1\n", + "1816 1\n", + "1854 1\n", + "1846 1\n", + "1859 1\n", + "1841 1\n", + "1866 1\n", + "1834 1\n", + "1831 1\n", + "1822 1\n", + "1819 1\n", + "1818 1\n", + "1812 1\n", + "1779 1\n", + "1811 1\n", + "1807 1\n", + "1805 1\n", + "1804 1\n", + "1850 1\n", + "1800 1\n", + "1791 1\n", + "1788 1\n", + "1787 1\n", + "1785 1\n", + "5 1\n", + "Name: Year, dtype: int64" + ] + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test.value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "False 5992\n", + "Name: Year, dtype: int64" + ] + }, + "execution_count": 50, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test.isnull().value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "2015 139\n", + "2011 128\n", + "2014 125\n", + "NA 124\n", + "2013 122\n", + "2008 121\n", + "2009 120\n", + "2012 117\n", + "2007 112\n", + "2016 103\n", + "2006 103\n", + "2005 103\n", + "2010 101\n", + "2000 97\n", + "1959 93\n", + "1960 93\n", + "2003 92\n", + "2004 92\n", + "2001 92\n", + "2002 88\n", + "1962 86\n", + "1961 78\n", + "1995 76\n", + "1964 66\n", + "1999 65\n", + "1998 65\n", + "1996 61\n", + "1963 61\n", + "1966 58\n", + "1997 57\n", + "1992 56\n", + "1994 56\n", + "1993 56\n", + "1988 55\n", + "1958 54\n", + "1989 53\n", + "1956 51\n", + "1965 51\n", + "1983 50\n", + "1975 49\n", + "1981 49\n", + "1967 48\n", + "1968 46\n", + "1955 43\n", + "1950 43\n", + "1970 42\n", + "1954 42\n", + "1942 41\n", + "1957 41\n", + "1984 41\n", + "1982 40\n", + "1976 39\n", + "1986 39\n", + "1990 38\n", + "1991 38\n", + "1974 38\n", + "1929 37\n", + "1985 37\n", + "1953 36\n", + "1980 35\n", + "1987 35\n", + "1972 35\n", + "1935 32\n", + "1951 31\n", + "1949 31\n", + "1944 31\n", + "1936 30\n", + "1937 30\n", + "1947 30\n", + "1969 30\n", + "1948 29\n", + "1952 29\n", + "1931 29\n", + "1943 28\n", + "1971 28\n", + "1932 27\n", + "1941 27\n", + "1973 27\n", + "1934 27\n", + "1946 26\n", + "1928 26\n", + "1930 26\n", + "1977 26\n", + "1916 25\n", + "1978 25\n", + "1979 25\n", + "1938 24\n", + "1939 24\n", + "1940 24\n", + "1907 23\n", + "1922 22\n", + "1933 22\n", + "1926 21\n", + "1906 21\n", + "1923 21\n", + "1895 20\n", + "1924 19\n", + "1927 19\n", + "1898 19\n", + "1899 19\n", + "1909 18\n", + "1914 17\n", + "1945 16\n", + "1905 16\n", + "1890 16\n", + "1911 16\n", + "1913 16\n", + "1888 15\n", + "1886 15\n", + "1894 15\n", + "1902 15\n", + "1920 15\n", + "1880 15\n", + "1910 14\n", + "1877 14\n", + "1919 14\n", + "1925 14\n", + "1893 13\n", + "1900 13\n", + "1904 13\n", + "1908 13\n", + "1912 13\n", + "1862 12\n", + "1887 12\n", + "1915 12\n", + "1878 12\n", + "1897 11\n", + "1882 11\n", + "1921 11\n", + "1892 11\n", + "1917 11\n", + "1896 11\n", + "1874 10\n", + "1852 10\n", + "1883 10\n", + "1903 10\n", + "1881 9\n", + "1885 9\n", + "1889 9\n", + "1901 9\n", + "1879 8\n", + "1876 8\n", + "1891 8\n", + "1871 8\n", + "1870 8\n", + "1864 8\n", + "1855 7\n", + "1863 7\n", + "1853 7\n", + "1872 7\n", + "1868 6\n", + "1860 6\n", + "1847 6\n", + "1884 6\n", + "1849 6\n", + "1918 5\n", + "1861 5\n", + "1875 5\n", + "1827 4\n", + "1840 4\n", + "1817 4\n", + "1844 4\n", + "1845 4\n", + "1839 4\n", + "1867 4\n", + "1865 4\n", + "1856 4\n", + "1873 4\n", + "1858 4\n", + "1700 3\n", + "1826 3\n", + "1830 3\n", + "1837 3\n", + "1851 3\n", + "1842 3\n", + "1848 3\n", + "1776 2\n", + "1829 2\n", + "1642 2\n", + "1869 2\n", + "1825 2\n", + "1828 2\n", + "1832 2\n", + "1835 2\n", + "1836 2\n", + "1755 1\n", + "1758 1\n", + "1703 1\n", + "1749 1\n", + "1764 1\n", + "1748 1\n", + "1742 1\n", + "1738 1\n", + "1733 1\n", + "1721 1\n", + "1543 1\n", + "77 1\n", + "1638 1\n", + "1554 1\n", + "1617 1\n", + "1595 1\n", + "1767 1\n", + "500 1\n", + "1580 1\n", + "1555 1\n", + "1637 1\n", + "1803 1\n", + "1771 1\n", + "1816 1\n", + "1854 1\n", + "1846 1\n", + "1859 1\n", + "1841 1\n", + "1866 1\n", + "1834 1\n", + "1831 1\n", + "1822 1\n", + "1819 1\n", + "1818 1\n", + "1812 1\n", + "1779 1\n", + "1811 1\n", + "1807 1\n", + "1805 1\n", + "1804 1\n", + "1850 1\n", + "1800 1\n", + "1791 1\n", + "1788 1\n", + "1787 1\n", + "1785 1\n", + "5 1\n", + "Name: Year, dtype: int64" + ] + }, + "execution_count": 51, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test.value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0" + ] + }, + "execution_count": 52, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test.isnull().sum()" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": {}, + "outputs": [], + "source": [ + "test = test.astype('object')" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "pandas.core.series.Series" + ] + }, + "execution_count": 54, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "type(test)" + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "2015 139\n", + "2011 128\n", + "2014 125\n", + "NA 124\n", + "2013 122\n", + "2008 121\n", + "2009 120\n", + "2012 117\n", + "2007 112\n", + "2016 103\n", + "2006 103\n", + "2005 103\n", + "2010 101\n", + "2000 97\n", + "1959 93\n", + "1960 93\n", + "2003 92\n", + "2004 92\n", + "2001 92\n", + "2002 88\n", + "1962 86\n", + "1961 78\n", + "1995 76\n", + "1964 66\n", + "1999 65\n", + "1998 65\n", + "1996 61\n", + "1963 61\n", + "1966 58\n", + "1997 57\n", + "1992 56\n", + "1994 56\n", + "1993 56\n", + "1988 55\n", + "1958 54\n", + "1989 53\n", + "1956 51\n", + "1965 51\n", + "1983 50\n", + "1975 49\n", + "1981 49\n", + "1967 48\n", + "1968 46\n", + "1955 43\n", + "1950 43\n", + "1970 42\n", + "1954 42\n", + "1942 41\n", + "1957 41\n", + "1984 41\n", + "1982 40\n", + "1976 39\n", + "1986 39\n", + "1990 38\n", + "1991 38\n", + "1974 38\n", + "1929 37\n", + "1985 37\n", + "1953 36\n", + "1980 35\n", + "1987 35\n", + "1972 35\n", + "1935 32\n", + "1951 31\n", + "1949 31\n", + "1944 31\n", + "1936 30\n", + "1937 30\n", + "1947 30\n", + "1969 30\n", + "1948 29\n", + "1952 29\n", + "1931 29\n", + "1943 28\n", + "1971 28\n", + "1932 27\n", + "1941 27\n", + "1973 27\n", + "1934 27\n", + "1946 26\n", + "1928 26\n", + "1930 26\n", + "1977 26\n", + "1916 25\n", + "1978 25\n", + "1979 25\n", + "1938 24\n", + "1939 24\n", + "1940 24\n", + "1907 23\n", + "1922 22\n", + "1933 22\n", + "1926 21\n", + "1906 21\n", + "1923 21\n", + "1895 20\n", + "1924 19\n", + "1927 19\n", + "1898 19\n", + "1899 19\n", + "1909 18\n", + "1914 17\n", + "1945 16\n", + "1905 16\n", + "1890 16\n", + "1911 16\n", + "1913 16\n", + "1888 15\n", + "1886 15\n", + "1894 15\n", + "1902 15\n", + "1920 15\n", + "1880 15\n", + "1910 14\n", + "1877 14\n", + "1919 14\n", + "1925 14\n", + "1893 13\n", + "1900 13\n", + "1904 13\n", + "1908 13\n", + "1912 13\n", + "1862 12\n", + "1887 12\n", + "1915 12\n", + "1878 12\n", + "1897 11\n", + "1882 11\n", + "1921 11\n", + "1892 11\n", + "1917 11\n", + "1896 11\n", + "1874 10\n", + "1852 10\n", + "1883 10\n", + "1903 10\n", + "1881 9\n", + "1885 9\n", + "1889 9\n", + "1901 9\n", + "1879 8\n", + "1876 8\n", + "1891 8\n", + "1871 8\n", + "1870 8\n", + "1864 8\n", + "1855 7\n", + "1863 7\n", + "1853 7\n", + "1872 7\n", + "1868 6\n", + "1860 6\n", + "1847 6\n", + "1884 6\n", + "1849 6\n", + "1918 5\n", + "1861 5\n", + "1875 5\n", + "1827 4\n", + "1840 4\n", + "1817 4\n", + "1844 4\n", + "1845 4\n", + "1839 4\n", + "1867 4\n", + "1865 4\n", + "1856 4\n", + "1873 4\n", + "1858 4\n", + "1700 3\n", + "1826 3\n", + "1830 3\n", + "1837 3\n", + "1851 3\n", + "1842 3\n", + "1848 3\n", + "1776 2\n", + "1829 2\n", + "1642 2\n", + "1869 2\n", + "1825 2\n", + "1828 2\n", + "1832 2\n", + "1835 2\n", + "1836 2\n", + "1755 1\n", + "1758 1\n", + "1703 1\n", + "1749 1\n", + "1764 1\n", + "1748 1\n", + "1742 1\n", + "1738 1\n", + "1733 1\n", + "1721 1\n", + "1543 1\n", + "77 1\n", + "1638 1\n", + "1554 1\n", + "1617 1\n", + "1595 1\n", + "1767 1\n", + "500 1\n", + "1580 1\n", + "1555 1\n", + "1637 1\n", + "1803 1\n", + "1771 1\n", + "1816 1\n", + "1854 1\n", + "1846 1\n", + "1859 1\n", + "1841 1\n", + "1866 1\n", + "1834 1\n", + "1831 1\n", + "1822 1\n", + "1819 1\n", + "1818 1\n", + "1812 1\n", + "1779 1\n", + "1811 1\n", + "1807 1\n", + "1805 1\n", + "1804 1\n", + "1850 1\n", + "1800 1\n", + "1791 1\n", + "1788 1\n", + "1787 1\n", + "1785 1\n", + "5 1\n", + "Name: Year, dtype: int64" + ] + }, + "execution_count": 55, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test.value_counts()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## V Sex" + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "metadata": {}, + "outputs": [], + "source": [ + "no = df[\"Sex\"]" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Orginal_Order\n", + "1 M\n", + "2 M\n", + "3 M\n", + "4 M\n", + "5 M\n", + " ..\n", + "5988 M\n", + "5989 M\n", + "5990 M\n", + "5991 M\n", + "5992 M\n", + "Name: Sex, Length: 5992, dtype: object" + ] + }, + "execution_count": 57, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "no" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "567" + ] + }, + "execution_count": 58, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "no.isnull().sum()" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "M 4835\n", + "F 585\n", + "M 2\n", + "N 1\n", + ". 1\n", + "lli 1\n", + "Name: Sex, dtype: int64" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "no.value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "metadata": {}, + "outputs": [], + "source": [ + "no = no.replace( [np.nan, \"M \", \".\", \"N\", \"lli\" ],\n", + " [\"NA\", \"M\", \"NA\", \"NA\" , \"NA\" ])" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "M 4837\n", + "F 585\n", + "NA 570\n", + "Name: Sex, dtype: int64" + ] + }, + "execution_count": 61, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "no.value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 62, + "metadata": {}, + "outputs": [], + "source": [ + "test = df[\"Date\"]" + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "1957 11\n", + "1942 9\n", + "1956 8\n", + "1941 7\n", + "1950 7\n", + "1958 7\n", + "No date 6\n", + "1949 6\n", + "Oct-60 5\n", + "28-Jul-95 5\n", + "1954 5\n", + "1955 5\n", + "No date, Before 1963 5\n", + "12-Apr-01 5\n", + "05-Oct-03 5\n", + "Aug-56 5\n", + "1959 5\n", + "1970s 5\n", + "1940 5\n", + "23-Jan-70 4\n", + "20-Sep-15 4\n", + "1876 4\n", + "14-Jun-12 4\n", + "Before 1958 4\n", + "09-Jul-94 4\n", + "Before 1906 4\n", + "1945 4\n", + "1898 4\n", + "1995 4\n", + "1960s 4\n", + "1890 4\n", + "1952 4\n", + "28-Dec-14 4\n", + "1938 4\n", + "27-Jul-52 4\n", + "Reported 10-Oct-1906 4\n", + "1960 4\n", + "27-Dec-08 4\n", + "09-Jan-10 4\n", + "1961 4\n", + "18-May-10 3\n", + "31-Oct-03 3\n", + "1930 3\n", + "Mar-53 3\n", + "1982 3\n", + "1941-1945 3\n", + "07-Jul-12 3\n", + "26-Jun-08 3\n", + "1929 3\n", + "24-Jun-03 3\n", + "08-Sep-00 3\n", + "26-Jul-1885 3\n", + "1700s 3\n", + "25-Jun-13 3\n", + "28-Dec-61 3\n", + "16-Aug-74 3\n", + "Jul-03 3\n", + "11-Aug-97 3\n", + "18-Aug-01 3\n", + "30-Sep-07 3\n", + "14-Sep-03 3\n", + "01-Apr-34 3\n", + "Before 1921 3\n", + "1971 3\n", + "19-Aug-01 3\n", + "08-Mar-92 3\n", + " 01-Sep-2013 3\n", + "1904 3\n", + "1998 3\n", + "1926 3\n", + "17-Oct-15 3\n", + "30-Aug-08 3\n", + "11-Jun-62 3\n", + "07-Jul-16 3\n", + "Before 1962 3\n", + "Before 1911 3\n", + "1940 - 1950 3\n", + "1913 3\n", + "28-Mar-08 3\n", + "1923 3\n", + "26-Jun-12 3\n", + "17-Aug-11 3\n", + "1948 3\n", + "31-Dec-99 3\n", + "01-Jun-14 3\n", + "1953 3\n", + "1883 3\n", + "1968 3\n", + "31-May-97 3\n", + "27-Aug-14 3\n", + "27-Jul-04 3\n", + "20-May-66 3\n", + "19-Aug-07 3\n", + "13-Mar-77 3\n", + "20-Aug-06 3\n", + "1939 3\n", + "06-Apr-05 3\n", + "27-Sep-02 3\n", + "Apr-60 3\n", + "1946 3\n", + "Jul-06 3\n", + "28-Jun-08 3\n", + "14-May-14 3\n", + "20-Apr-03 3\n", + "09-Feb-96 3\n", + "18-Sep-16 3\n", + "1973 3\n", + "Before 2012 3\n", + "12-Jul-16 3\n", + "16-May-98 3\n", + "28-Jul-13 3\n", + "11-Apr-01 3\n", + "02-Sep-12 3\n", + "1943 3\n", + "24-Jun-15 3\n", + "29-Aug-82 3\n", + "06-Mar-09 3\n", + "11-Jan-62 3\n", + "25-Nov-05 3\n", + "08-Aug-1899 3\n", + "07-Jan-74 3\n", + "22-May-04 3\n", + "14-Jan-62 3\n", + "06-Jan-61 3\n", + "24-Jan-09 3\n", + "24-Jul-09 3\n", + "26-Jun-15 3\n", + "May-Jun-1965 3\n", + "09-Jun-14 3\n", + "18-Mar-14 3\n", + "Nov-60 3\n", + "15-Jun-83 2\n", + "13-Apr-04 2\n", + "17-Jan-59 2\n", + "02-Jun-16 2\n", + "16-Aug-11 2\n", + "24-Aug-05 2\n", + "16-Apr-32 2\n", + "Reported 15-Jun-1894 2\n", + "20-Dec-63 2\n", + "23-Oct-26 2\n", + "18-Jul-46 2\n", + "31-Aug-13 2\n", + "Mar-55 2\n", + "Jun-65 2\n", + "Jul-64 2\n", + "07-Jan-62 2\n", + "29-May-98 2\n", + "28-Apr-08 2\n", + "Oct-61 2\n", + "08-Jul-06 2\n", + "Reported 26-Jun-1972 2\n", + "26-Jul-15 2\n", + "Dec-96 2\n", + "18-Jul-07 2\n", + "18-Jan-12 2\n", + "21-Jun-78 2\n", + "01-Jan-64 2\n", + "16-Mar-13 2\n", + "22-Jan-54 2\n", + "26-Dec-63 2\n", + "15-Aug-59 2\n", + "05-Oct-14 2\n", + "13-Feb-74 2\n", + "16-Apr-91 2\n", + "08-Apr-79 2\n", + "14-Nov-47 2\n", + "29-Jan-92 2\n", + "23-Apr-03 2\n", + "Reported 15-Mar-1897 2\n", + "10-Feb-46 2\n", + "25-Mar-05 2\n", + "28-Oct-97 2\n", + "15-Jun-16 2\n", + "02-Jul-04 2\n", + "23-May-13 2\n", + "1944 2\n", + "05-Jul-03 2\n", + "26-Apr-08 2\n", + "10-Jul-02 2\n", + "20-Jan-89 2\n", + "06-Mar-12 2\n", + "14-Mar-12 2\n", + "23-May-04 2\n", + "01-Jun-08 2\n", + "26-Nov-91 2\n", + "07-Jul-11 2\n", + "02-Apr-83 2\n", + "05-Apr-71 2\n", + "23-Mar-94 2\n", + "22-Jul-09 2\n", + "23-Jun-75 2\n", + "18-Oct-12 2\n", + "19-Nov-75 2\n", + "01-Mar-09 2\n", + "05-Jul-14 2\n", + "11-Jan-09 2\n", + "13-May-11 2\n", + "30-Nov-10 2\n", + "Reported 06-Jul-1915 2\n", + "16-Apr-05 2\n", + "16-Jul-16 2\n", + "24-Jul-08 2\n", + "26-Jul-16 2\n", + "24-Sep-11 2\n", + "25-Jun-10 2\n", + "12-Mar-76 2\n", + "27-Nov-21 2\n", + "19-Dec-59 2\n", + "08-Sep-12 2\n", + "05-Oct-15 2\n", + "Nov-99 2\n", + "19-Sep-48 2\n", + "Ca. 1950 2\n", + "Mid-Aug-1886 2\n", + "14-Apr-88 2\n", + "Jul-43 2\n", + "04-Jul-00 2\n", + "14-Aug-97 2\n", + "02-Sep-05 2\n", + "30-Jul-75 2\n", + "21-Aug-00 2\n", + "04-Jul-15 2\n", + "Reported 27-Aug-1913 2\n", + "18-Jun-14 2\n", + "30-Sep-82 2\n", + "22-Aug-88 2\n", + "17-Jul-05 2\n", + "1950s 2\n", + "30-Aug-55 2\n", + "1853 2\n", + "02-Sep-06 2\n", + "05-Sep-16 2\n", + "04-Apr-65 2\n", + "02-Oct-54 2\n", + "09-Apr-06 2\n", + "30-Mar-87 2\n", + "14-Oct-72 2\n", + "30-Sep-84 2\n", + "10-Sep-00 2\n", + "13-Sep-03 2\n", + "Fall 1943 2\n", + "12-Nov-03 2\n", + "09-Aug-14 2\n", + "Sep-56 2\n", + "09-Apr-59 2\n", + "Apr-53 2\n", + "10-Aug-10 2\n", + "1989 2\n", + "03-Apr-60 2\n", + "07-Feb-82 2\n", + "03-Jan-61 2\n", + "01-Aug-98 2\n", + "30-Oct-90 2\n", + "10-Nov-15 2\n", + "31-Aug-95 2\n", + "Aug-67 2\n", + "Before 1903 2\n", + "19-Jun-11 2\n", + "Jun-35 2\n", + "25-Apr-96 2\n", + " 25-Aug-2013 2\n", + "24-Aug-81 2\n", + "09-Oct-15 2\n", + "10-May-08 2\n", + "Ca. 1880 2\n", + "1937 2\n", + "02-Sep-96 2\n", + "26-Jan-89 2\n", + "10-May-90 2\n", + "25-Jul-85 2\n", + "06-Oct-00 2\n", + "23-Sep-55 2\n", + "04-Jul-88 2\n", + "26-Aug-95 2\n", + "Before 1871 2\n", + "13-Jul-16 2\n", + "Reported 13-Jun-2002 2\n", + "12-Aug-54 2\n", + "World War II 2\n", + "Sep-86 2\n", + "20-Dec-09 2\n", + "28-Sep-11 2\n", + "07-Aug-10 2\n", + "16-Nov-09 2\n", + "03-Sep-81 2\n", + "18-Mar-99 2\n", + "1897 2\n", + "01-Nov-15 2\n", + "26-Aug-13 2\n", + "24-Aug-11 2\n", + "Jul-61 2\n", + "1931 2\n", + "25-Jul-59 2\n", + "06-Dec-86 2\n", + "21-Apr-03 2\n", + "Reported 24-Jan-1920 2\n", + "29-Jul-06 2\n", + " 29-Jul-2013 2\n", + "29-May-16 2\n", + "Jun-1827 2\n", + "28-Mar-64 2\n", + "Before 2011 2\n", + "02-Aug-97 2\n", + "Ca. 1960 2\n", + "29-May-15 2\n", + "07-Apr-57 2\n", + "03-Feb-07 2\n", + "08-Jul-64 2\n", + "30-Oct-04 2\n", + "28-Oct-96 2\n", + "22-Aug-95 2\n", + "02-Aug-14 2\n", + "30-Jan-02 2\n", + "07-May-00 2\n", + "21-Oct-84 2\n", + "01-Apr-72 2\n", + "30-Nov-03 2\n", + "06-Apr-09 2\n", + "08-Jul-94 2\n", + "26-Sep-59 2\n", + "06-Sep-08 2\n", + "22-Mar-14 2\n", + "11-Nov-04 2\n", + "22-Aug-89 2\n", + "13-Aug-83 2\n", + "05-Aug-99 2\n", + "Dec-49 2\n", + "13-Sep-88 2\n", + "08-Nov-14 2\n", + "02-Apr-78 2\n", + "15-Nov-15 2\n", + "18-Aug-15 2\n", + "02-Jul-10 2\n", + "15-Jul-01 2\n", + "23-Jul-16 2\n", + "13-Jun-70 2\n", + "Before 1958 2\n", + "27-Jan-23 2\n", + "15-Jul-00 2\n", + "1910 2\n", + "14-Dec-48 2\n", + "07-Dec-11 2\n", + "Summer 1950 2\n", + "06-Jul-98 2\n", + "27-Jun-15 2\n", + "22-Aug-15 2\n", + "23-Jul-15 2\n", + "10-Mar-13 2\n", + "Reported 27-Sep-1906 2\n", + "24-Aug-08 2\n", + "02-Nov-98 2\n", + "04-Jul-96 2\n", + "01-Jun-63 2\n", + "13-Apr-13 2\n", + "11-Jul-09 2\n", + "03-Jan-04 2\n", + "13-Jul-11 2\n", + "28-Nov-02 2\n", + "Circa 1862 2\n", + "25-Dec-97 2\n", + "26-Jun-82 2\n", + "Feb-28 2\n", + "25-Jan-98 2\n", + "15-Aug-56 2\n", + "17-Feb-61 2\n", + "07-Feb-14 2\n", + "04-Aug-60 2\n", + "Reported 19-Sep-1898 2\n", + "28-Mar-16 2\n", + "1920 2\n", + "04-Nov-12 2\n", + "23-Jun-16 2\n", + "30-Jun-15 2\n", + "28-Aug-07 2\n", + "24-Jul-82 2\n", + "20-Sep-11 2\n", + "26-Dec-66 2\n", + "27-Aug-66 2\n", + "1980s 2\n", + "31-May-94 2\n", + "13-Dec-81 2\n", + "16-Jul-10 2\n", + "31-Jan-94 2\n", + "09-Sep-89 2\n", + "12-Sep-76 2\n", + "May-79 2\n", + "08-Dec-16 2\n", + "16-Jun-88 2\n", + "16-Sep-02 2\n", + "16-Sep-00 2\n", + "1842 2\n", + "21-Jan-04 2\n", + "02-May-1880 2\n", + "20-Apr-07 2\n", + "15-Aug-93 2\n", + "09-Sep-14 2\n", + "05-Dec-09 2\n", + "06-Dec-06 2\n", + "17-Jul-07 2\n", + "24-Oct-37 2\n", + "31-Mar-04 2\n", + "31-Jul-12 2\n", + "02-Nov-05 2\n", + "21-Dec-11 2\n", + "02-Aug-10 2\n", + "03-Sep-01 2\n", + "17-May-43 2\n", + "1985 2\n", + "30-Aug-32 2\n", + "04-Jul-58 2\n", + "28-Jul-04 2\n", + "27-Jun-60 2\n", + "03-Jun-84 2\n", + "21-Sep-31 2\n", + "Jan-85 2\n", + "Jul-58 2\n", + "Aug-04 2\n", + "28-Aug-49 2\n", + "30-Sep-01 2\n", + "13-Dec-03 2\n", + "08-Nov-47 2\n", + "Reported 12-Aug-1907 2\n", + "30-Nov-63 2\n", + "22-Aug-06 2\n", + "06-Jun-11 2\n", + "31-Dec-34 2\n", + "1999 2\n", + "09-Aug-07 2\n", + "03-Sep-07 2\n", + " 07-Sep-2013 2\n", + "26-Oct-13 2\n", + "31-May-02 2\n", + "23-Aug-66 2\n", + "Nov-25 2\n", + "1978 2\n", + " 29-Oct-2011 2\n", + "19-Apr-12 2\n", + "12-Sep-42 2\n", + "22-May-02 2\n", + "22-Sep-07 2\n", + "18-Dec-61 2\n", + "16-Apr-61 2\n", + "01-Sep-96 2\n", + "29-Mar-15 2\n", + "Reported 12-Oct-1899 2\n", + "17-Jul-10 2\n", + "30-Oct-99 2\n", + "07-Nov-13 2\n", + "24-Jan-35 2\n", + "06-Jun-13 2\n", + "1983 2\n", + "21-Dec-07 2\n", + "23-Jul-12 2\n", + "15-Feb-03 2\n", + "04-Sep-11 2\n", + "1896 2\n", + "15-Apr-88 2\n", + "28-Aug-11 2\n", + "16-Oct-65 2\n", + "10-Jun-04 2\n", + "27-Feb-60 2\n", + "10-Aug-81 2\n", + "Apr-1860 2\n", + "1927 2\n", + "29-Sep-13 2\n", + "27-Nov-41 2\n", + "1993 2\n", + "11-Jun-93 2\n", + "06-Jul-16 2\n", + "23-Jan-04 2\n", + "03-Sep-10 2\n", + "14-Aug-59 2\n", + "27-Oct-37 2\n", + "03-Oct-14 2\n", + "27-Dec-60 2\n", + "08-Sep-85 2\n", + "20-Jun-02 2\n", + "Reported 16-Oct-1907 2\n", + "17-Jul-66 2\n", + "30-Nov-67 2\n", + "1954 (same day as 1954.00.00.f) 2\n", + "14-Feb-64 2\n", + "24-Jan-46 2\n", + "08-Jul-92 2\n", + "21-May-11 2\n", + "22-Sep-84 2\n", + "19-Jan-15 2\n", + "08-Jul-16 2\n", + "23-Jul-59 2\n", + "18-Dec-09 2\n", + "01-Feb-61 2\n", + "17-Aug-51 2\n", + "03-Sep-95 2\n", + "02-Jun-09 2\n", + "28-Aug-33 2\n", + "19-Mar-09 2\n", + "04-Sep-99 2\n", + "May-65 2\n", + "19-Aug-90 2\n", + "Jul-07 2\n", + "23-Oct-10 2\n", + "02-Oct-10 2\n", + "27-Jul-35 2\n", + "20-Aug-83 2\n", + "Feb-64 2\n", + "28-Nov-51 2\n", + "29-Dec-14 2\n", + "22-Jan-10 2\n", + "06-Feb-10 2\n", + "1965 2\n", + "1996 2\n", + "27-Sep-07 2\n", + "07-Sep-67 2\n", + "1882 2\n", + "25-Jul-83 2\n", + "16-May-09 2\n", + "15-Mar-02 2\n", + "21-Oct-72 2\n", + "01-Dec-10 2\n", + "06-Nov-03 2\n", + "31-Mar-07 2\n", + "31-Jul-06 2\n", + "02-Jun-12 2\n", + "25-Nov-95 2\n", + "Oct-58 2\n", + "04-Mar-29 2\n", + "26-Jun-04 2\n", + "16-Jul-00 2\n", + "01-Jan-15 2\n", + "21-Mar-11 2\n", + "1987 2\n", + "21-Feb-13 2\n", + "21-Sep-02 2\n", + "22-Jun-12 2\n", + "08-Apr-01 2\n", + "01-Jan-02 2\n", + "28-Sep-08 2\n", + "30-Jul-12 2\n", + "20-Apr-08 2\n", + "1907 2\n", + "1972 2\n", + "15-Sep-00 2\n", + "27-Dec-66 2\n", + "Sep-70 2\n", + "23-Jul-96 2\n", + "02-Sep-1878 2\n", + "Reported 28-Apr-1894 2\n", + "02-Jul-00 2\n", + "07-Apr-16 2\n", + "01-Feb-06 2\n", + "29-Aug-14 2\n", + "19-Oct-81 2\n", + "14-Mar-99 2\n", + "05-Oct-02 2\n", + "08-Jun-1849 2\n", + "25-Mar-62 2\n", + "12-Feb-06 2\n", + "06-Jul-01 2\n", + "13-Nov-42 2\n", + "19-Dec-77 2\n", + "27-Jul-58 2\n", + "02-Sep-74 2\n", + "16-Sep-93 2\n", + "10-Aug-95 2\n", + "25-Jul-08 2\n", + "07-May-08 2\n", + "14-Jun-59 2\n", + "Nov-18 2\n", + "Reported 15-Jun-1874 2\n", + "07-Jun-91 2\n", + "1975 2\n", + "26-Oct-44 2\n", + "26-Jul-08 2\n", + "01-Jul-91 2\n", + "17-Sep-11 2\n", + "29-Aug-15 2\n", + "09-Dec-94 2\n", + "03-Sep-06 2\n", + "28-Jun-92 2\n", + "05-Feb-64 2\n", + "09-Apr-50 2\n", + "26-Mar-44 2\n", + "01-Oct-98 2\n", + "15-Sep-01 2\n", + "28-Dec-97 2\n", + "21-Dec-15 2\n", + "27-May-13 2\n", + "Jan-09 2\n", + "07-May-07 2\n", + "22-Dec-63 2\n", + "09-Jun-00 2\n", + "17-Jun-95 2\n", + "25-Mar-02 2\n", + "No date, Before 1902 2\n", + "1984 2\n", + "Before 1934 2\n", + "24-Jan-16 2\n", + "07-Feb-09 2\n", + "25-Oct-44 2\n", + "Aug-55 2\n", + "27-Mar-04 2\n", + "09-Jun-02 2\n", + "12-Jul-87 2\n", + "28-Feb-97 2\n", + "06-Nov-00 2\n", + "30-Jun-07 2\n", + "14-Jun-15 2\n", + "Aug-93 2\n", + "Oct-06 2\n", + "09-Nov-08 2\n", + "17-Oct-14 2\n", + "25-Jan-07 2\n", + "29-Aug-16 2\n", + "21-Nov-65 2\n", + "09-Apr-95 2\n", + "21-Jun-16 2\n", + "Apr-70 2\n", + "Before 1905 2\n", + "11-Sep-11 2\n", + "16-Sep-07 2\n", + "13-Jul-40 2\n", + "07-Sep-01 2\n", + "Before 1956 2\n", + "06-Sep-96 2\n", + "10-Jun-62 2\n", + "04-Apr-14 2\n", + "12-Nov-1882 2\n", + "05-Jun-16 2\n", + "29-Aug-06 2\n", + "28-Jul-16 2\n", + "02-May-05 2\n", + "08-May-13 2\n", + "Nov-42 2\n", + "24-Jul-84 2\n", + "24-May-08 2\n", + "30-Sep-95 2\n", + " 21-Sep-2013 2\n", + "21-May-16 2\n", + "10-Dec-64 2\n", + "01-Jan-71 2\n", + "03-Oct-96 2\n", + "06-Sep-12 2\n", + "09-Oct-04 2\n", + "02-Oct-14 2\n", + "Before 1957 2\n", + "30-Aug-62 2\n", + "14-Feb-82 2\n", + "24-Sep-61 2\n", + "16-May-66 2\n", + "02-Aug-69 2\n", + "03-Nov-65 2\n", + "13-Apr-01 2\n", + "28-Jun-64 1\n", + "02-Sep-60 1\n", + "10-Feb-60 1\n", + "15-Aug-67 1\n", + "10-Oct-65 1\n", + "28-Nov-42 1\n", + "1880-1899 1\n", + "Jun-02 1\n", + "Ca. 1939 1\n", + "11-Jul-63 1\n", + "26-Nov-31 1\n", + "06-Apr-28 1\n", + "14-Jan-63 1\n", + "12-Apr-14 1\n", + "1862 1\n", + "03-Feb-60 1\n", + "27-Jan-85 1\n", + "Nov-76 1\n", + "26-Feb-1852 1\n", + "23-Oct-71 1\n", + "09-Nov-39 1\n", + "29-Sep-00 1\n", + "06-Nov-99 1\n", + "20-Aug-87 1\n", + "June 1721 1\n", + "21-Jul-76 1\n", + "06-Jul-42 1\n", + "02-May-16 1\n", + "28-Jul-59 1\n", + "02-Jun-64 1\n", + " 30-Jul-2013 1\n", + "27-Sep-31 1\n", + "Reported 13-Sep-1863 1\n", + "06-Sep-16 1\n", + "26-Jul-65 1\n", + "13-Mar-22 1\n", + "Reported 23-Oct-1944 1\n", + "20-Jan-06 1\n", + "04-Aug-12 1\n", + "30-Aug-31 1\n", + "17-Sep-1897 1\n", + "10-Jul-04 1\n", + "05-Mar-86 1\n", + "07-Nov-88 1\n", + "05-Aug-52 1\n", + "24-Feb-34 1\n", + "Mar-10 1\n", + "Apr-54 1\n", + "31-Aug-11 1\n", + "12-Feb-94 1\n", + "27-May-05 1\n", + "77 A.D. 1\n", + "23-Jan-06 1\n", + "26-Feb-1872 1\n", + "26-Mar-16 1\n", + "16-Sep-12 1\n", + "Jun-75 1\n", + "09-Apr-03 1\n", + "Reported 10-Sep-1959 1\n", + "Aug-50 1\n", + "08-Mar-01 1\n", + "20-Jul-1844 1\n", + "06-Sep-58 1\n", + "19-Dec-15 1\n", + "Jul- to Sep-1959 1\n", + "08-May-07 1\n", + "11-Nov-84 1\n", + "19-Jul-2007.b 1\n", + "22-Apr-69 1\n", + "Oct-56 1\n", + "Reported 1898 1\n", + "14-Jun-04 1\n", + "Mid Aug-1966 1\n", + "17-Nov-00 1\n", + "24-Jun-16 1\n", + "11-Nov-60 1\n", + "18-May-68 1\n", + "Dec-00 1\n", + "07-Sep-05 1\n", + "16-Feb-81 1\n", + "Mar-00 1\n", + "17-Aug-13 1\n", + "25-Oct-87 1\n", + "Reported 06-Oct-1894 1\n", + "Reported 29-Aug-1929 1\n", + "12-Dec-00 1\n", + "Before 1936 1\n", + "14-May-43 1\n", + "02-Mar-1892 1\n", + "Reported 21-Jan-1935 1\n", + "15-Feb-08 1\n", + "02-Jun-00 1\n", + "05-Sep-71 1\n", + "17-Oct-81 1\n", + "08-Nov-07 1\n", + "23-Jul-08 1\n", + "30-Aug-09 1\n", + "04-May-04 1\n", + "27-Feb-1895 1\n", + "10-Mar-83 1\n", + "03-Aug-79 1\n", + "14-Jul-96 1\n", + "05-Jul-07 1\n", + "07-May-96 1\n", + "16-Aug-01 1\n", + "04-Nov-07 1\n", + "15-Sep-16 1\n", + "21-Apr-13 1\n", + "Before 1952 1\n", + "18-Oct-09 1\n", + "Reported 11-Jun-1942 1\n", + "Reported 19-Dec-1940 1\n", + "18-Jun-09 1\n", + "25-Mar-81 1\n", + "25-Jul-36 1\n", + "23-Jul-1874 1\n", + "14-Dec-99 1\n", + "02-Jan-71 1\n", + "03-Oct-86 1\n", + "19-Feb-89 1\n", + "09-Feb-13 1\n", + "17-May-09 1\n", + "19-Aug-67 1\n", + "25-Jul-1880 1\n", + "Mar-96 1\n", + "27-Jul-08 1\n", + "10-Feb-31 1\n", + "23-Aug-74 1\n", + "06-May-12 1\n", + "08-Mar-50 1\n", + "19-Jun-99 1\n", + "04-Aug-01 1\n", + "17-Dec-10 1\n", + "29-Feb-04 1\n", + "19-Jul-62 1\n", + "14-May-1880 1\n", + "25-Jun-96 1\n", + "26-Dec-56 1\n", + "\"During the war\" 1943-1945 1\n", + "11-Jul-87 1\n", + "08-Apr-08 1\n", + "07-Jul-62 1\n", + "25-Nov-76 1\n", + "31-Aug-14 1\n", + "07-Apr-53 1\n", + "Late Jul-1928 1\n", + "19-Oct-13 1\n", + "16-Dec-02 1\n", + "06-Dec-75 1\n", + "26-Mar-51 1\n", + "19-Jun-65 1\n", + "22-Aug-60 1\n", + "14-May-03 1\n", + "Apr-89 1\n", + "12-Nov-89 1\n", + "09-Jul-2006. 1\n", + "22-Jun-70 1\n", + "22-Oct-92 1\n", + "03-Jul-66 1\n", + "06-Jul-00 1\n", + "Reported 25-Oct-1933 1\n", + "20-Jun-56 1\n", + "Reported 12-Feb-1855 1\n", + "16-Feb-04 1\n", + "31-Aug-37 1\n", + "10-Dec-07 1\n", + "20-Nov-46 1\n", + "Reported 27-Jan-2009 1\n", + "13-Jun-67 1\n", + "Reported 11-Dec-1871 1\n", + "16-Mar-88 1\n", + "06-Mar-45 1\n", + "10-Dec-06 1\n", + "23-Nov-78 1\n", + "06-Aug-50 1\n", + "24-Mar-12 1\n", + "04-Jul-16 1\n", + "28-Apr-96 1\n", + "Jul-01 1\n", + "03-Apr-09 1\n", + "24-Oct-57 1\n", + "Ca. 1983 1\n", + "Reported 14-Jul-2016 1\n", + "Reported 15-May-1915 1\n", + "10-Aug-00 1\n", + "20-May-12 1\n", + "30-Dec-94 1\n", + "1950.07.19 1\n", + "02-Dec-06 1\n", + "17-Jun-64 1\n", + "01-May-04 1\n", + "1963 1\n", + "19-Mar-16 1\n", + "29-Aug-10 1\n", + "15-Jun-41 1\n", + "09-Feb-29 1\n", + "13-Apr-10 1\n", + "09-Nov-59 1\n", + "Ca. 1554 1\n", + "13-Nov-99 1\n", + "13-Sep-00 1\n", + "16-Jul-76 1\n", + "12-Oct-85 1\n", + "02-Jan-62 1\n", + "13-Jul-1862 1\n", + "Ca. 5 A.D. 1\n", + "08-Sep-34 1\n", + "16-Oct-06 1\n", + "May-57 1\n", + "No date, Before Aug-1987 1\n", + "19-Jul-2007.a 1\n", + "25-Nov-42 1\n", + "Reported 28-Aug-1908 1\n", + "May-82 1\n", + "Reported 18-Oct-1907 1\n", + "14-Aug-77 1\n", + "Between 1951-1963 1\n", + "02-Sep-31 1\n", + "18-Dec-98 1\n", + "21-Aug-64 1\n", + "Reported 06-Jan-1964 1\n", + "20-Dec-60 1\n", + "29-Mar-80 1\n", + "12-Mar-1887 1\n", + "11-Mar-1860 1\n", + "1923-1924 1\n", + "26-Apr-07 1\n", + "15-Jan-61 1\n", + "28-Nov-63 1\n", + "16-Sep-01 1\n", + "20-Jan-44 1\n", + "25-Sep-82 1\n", + "Reported 06-Jun-2011 1\n", + "17-Jan-09 1\n", + "19-Jul-78 1\n", + "15-Jul-54 1\n", + "24-Aug-36 1\n", + "18-Mar-12 1\n", + "14-Jan-29 1\n", + "05-Nov-98 1\n", + "16-Aug-37 1\n", + "12-Apr-60 1\n", + "31-May-84 1\n", + "29-Aug-13 1\n", + "11-Apr-1886 1\n", + "1974 1\n", + "Reported 03-Jul-1829 1\n", + "Reported 05-Oct-1897 1\n", + "02-Mar-35 1\n", + "13-Apr-95 1\n", + "05-Jun-60 1\n", + "Reported 29-Mar-2011 1\n", + "17-Jun-58 1\n", + "07-Jul-55 1\n", + "12-Aug-05 1\n", + "28-Mar-05 1\n", + "17-Aug-92 1\n", + "30-Jul-11 1\n", + "11-Jun-02 1\n", + "27-Nov-79 1\n", + "30-Jun-13 1\n", + "19-Oct-11 1\n", + "10-Oct-12 1\n", + "07-Nov-15 1\n", + "19-Dec-36 1\n", + "11-Dec-54 1\n", + "10-Jan-83 1\n", + "14-Jul-24 1\n", + "Reported 28-Oct-2010 1\n", + "23-Jan-52 1\n", + "06-Sep-97 1\n", + "15-Dec-07 1\n", + "13-Jun-33 1\n", + "05-Jul-72 1\n", + "12-Oct-42 1\n", + "14-Apr-13 1\n", + "1940-1946 1\n", + "15-Oct-63 1\n", + "15-Mar-80 1\n", + "07-May-81 1\n", + "20-Jul-16 1\n", + "04-Dec-43 1\n", + "21-Dec-28 1\n", + "23-Decp1896 1\n", + "13-Aug-59 1\n", + "14-Jan-66 1\n", + "1988 1\n", + "22-Dec-1862 1\n", + "21-Dec-83 1\n", + "15-Oct-07 1\n", + "22-May-05 1\n", + "08-Jul-15 1\n", + "29-Aug-92 1\n", + "18-Apr-08 1\n", + "09-Mar-67 1\n", + "Reported 26-Sep-1914 1\n", + "14-Aug-10 1\n", + "07-Feb-04 1\n", + "11-Nov-92 1\n", + "28-Apr-13 1\n", + "28-Dec-40 1\n", + "19-Mar-67 1\n", + "23-Jul-10 1\n", + "21-Feb-97 1\n", + "17-Jan-98 1\n", + "08-Jul-90 1\n", + "27-Jul-16 1\n", + "03-Apr-16 1\n", + "25-Apr-15 1\n", + "13-Jan-74 1\n", + "27-Dec-00 1\n", + "12-Jan-90 1\n", + "14-Nov-92 1\n", + "05-Sep-94 1\n", + "Reported 06-Dec-2005 1\n", + "31-May-44 1\n", + "21-Jul-99 1\n", + "30-May-37 1\n", + "Late Apr-1971 1\n", + "Late 1600s Reported 1728 1\n", + "28-Jul-52 1\n", + "25-Dec-15 1\n", + "31-Dec-50 1\n", + "09-Dec-1849 1\n", + "Reported 12-Sep-2014 1\n", + "01-Dec-02 1\n", + "24-Oct-60 1\n", + "06-Jan-88 1\n", + "24-Jun-1817 1\n", + "Reported 16-Aug-1881 1\n", + "22-Jul-90 1\n", + "09-Jan-07 1\n", + "20-Dec-87 1\n", + "16-May-12 1\n", + "12-Oct-07 1\n", + "27-Nov-36 1\n", + "06-Aug-30 1\n", + "Reported 08-Apr-1854 1\n", + "28-Jul-63 1\n", + "18-Jul-38 1\n", + "03-Oct-05 1\n", + "31-May-12 1\n", + "13-May-90 1\n", + "02-Sep-70 1\n", + "29-Jan-08 1\n", + "15-Jul-55 1\n", + "21-Aug-93 1\n", + "24-Oct-85 1\n", + "06-Feb-08 1\n", + "10-Jan-96 1\n", + "19-Aug-15 1\n", + "29-Mar-59 1\n", + "21-Jan-1883 1\n", + "08-Aug-55 1\n", + "01-Jul-81 1\n", + "22-Jan-36 1\n", + "18-Aug-92 1\n", + "25-May-98 1\n", + "Reported 07-Jul-1933 1\n", + "14-Apr-06 1\n", + "Feb-74 1\n", + "Reported 11-Sep-1899 1\n", + "08-Oct-13 1\n", + "Nov-70 1\n", + "01-Feb-41 1\n", + "22-Feb-16 1\n", + "22-Jun-05 1\n", + "Reported 19-Jan-1902 1\n", + "26-Nov-04 1\n", + "02-Jan-16 1\n", + "29-Jan-24 1\n", + "04-Aug-52 1\n", + "24-May-22 1\n", + "08-Apr-54 1\n", + "27-Jun-47 1\n", + "Reported 04-Dec-1914 1\n", + "Mar-1803 1\n", + "Reported 23-May-1893 1\n", + "12-Feb-61 1\n", + "15-Jul-16 1\n", + "Feb-81 1\n", + "18-Nov-19 1\n", + "26-Jul-02 1\n", + "Nov-02 1\n", + "03-Sep-14 1\n", + "26-May-08 1\n", + "14-Jul-1898 1\n", + "15-Oct-1897 1\n", + "03-Apr-94 1\n", + "14-Nov-1909 to 19-Nov-1909 1\n", + "10-Feb-05 1\n", + "11-Jul-53 1\n", + "22-Nov-1889 1\n", + "05-Aug-29 1\n", + "09-Sep-17 1\n", + "Nov-87 1\n", + "26-Aug-67 1\n", + "09-Nov-06 1\n", + "02-Jun-02 1\n", + "27-May-79 1\n", + "26-Feb-77 1\n", + "Late Aug-1962 1\n", + "21-Mar-72 1\n", + "20-Oct-13 1\n", + "15-May-38 1\n", + "16-Nov-06 1\n", + "02-Oct-59 1\n", + "Before 1900 1\n", + "03-Jul-14 1\n", + "Reported 08-Jun-1942 1\n", + "28-Mar-1885 1\n", + "12-Mar-34 1\n", + "15-Aug-07 1\n", + "Reported 10-Sep-1973 1\n", + "Ca. 1839 1\n", + "11-Mar-35 1\n", + "Reported 19-Dec-1862 1\n", + "19-Jul-89 1\n", + "14-Aug-93 1\n", + "10-Apr-01 1\n", + "Reported 29-Nov-2005 1\n", + "10-Apr-33 1\n", + "14-Sep-73 1\n", + "Dec-73 1\n", + "04-Jan-33 1\n", + "03-Jan-99 1\n", + "31-Mar-88 1\n", + "20-Jan-53 1\n", + "29-Dec-02 1\n", + "04-Apr-29 1\n", + "16-Dec-50 1\n", + "19-Dec-65 1\n", + "29-Jun-20 1\n", + "24-Jul-01 1\n", + "18-Nov-28 1\n", + "Reported 16-Sep-1845 1\n", + "17-Aug-02 1\n", + "1990 1\n", + "12-Aug-91 1\n", + "Aug-53 1\n", + "12-Nov-77 1\n", + "24-Dec-60 1\n", + "30-Jun-95 1\n", + "25-Jan-14 1\n", + "18-Feb-29 1\n", + "06-Feb-67 1\n", + "03-Mar-02 1\n", + "27-Feb-06 1\n", + "01-Jun-1870 1\n", + "02-Dec-23 1\n", + "16-Jul-61 1\n", + "11-Jun-16 1\n", + "14-Mar-04 1\n", + "10-Jan-70 1\n", + "Reported 25-Apr-1974 1\n", + "17-Nov-1839 1\n", + "02-Jan-1864 1\n", + "17-Jan-15 1\n", + "12-Jul-76 1\n", + "Reported 16-Mar-2009 1\n", + "Reported 29-Aug-1902 1\n", + "19-May-06 1\n", + "Mar-34 1\n", + "01-Feb-55 1\n", + "15-Feb-15 1\n", + "15-Jun-97 1\n", + "14-Apr-28 1\n", + "18-May-04 1\n", + "Reported 15-Aug-1956 1\n", + "06-Mar-31 1\n", + "12-Apr-83 1\n", + "Sep-40 1\n", + "24-May-69 1\n", + "21-Jun-33 1\n", + "17-Jan-1868 1\n", + "28-Dec-58 1\n", + "27-Aug-34 1\n", + "19-Feb-78 1\n", + " 08-Jul-1958 1\n", + "Ca. 1847 1\n", + "Reported 27-Dec-1890 1\n", + "Nov-62 1\n", + "24-Apr-91 1\n", + "04-Jun-66 1\n", + "02-Mar-43 1\n", + "11-Sep-06 1\n", + "Reported 02-Jul-1923 1\n", + "21-Jul-87 1\n", + "12-Oct-75 1\n", + "08-Sep-90 1\n", + "02-Jun-05 1\n", + "29-Sep-05 1\n", + "13-Mar-75 1\n", + "25-Jan-16 1\n", + "08-Feb-63 1\n", + "19-Mar-1879 1\n", + "15-Jul-47 1\n", + "30-Aug-60 1\n", + "11-Feb-03 1\n", + "26-Dec-29 1\n", + "Reported 27-Sep-1933 1\n", + "10-Jul-03 1\n", + "03-Sep-55 1\n", + "15-Sep-54 1\n", + "Winter 1969 1\n", + "12-Feb-33 1\n", + "21-Dec-63 1\n", + "08-Aug-72 1\n", + "12-Jan-1887 1\n", + "30-Apr-60 1\n", + "28-Aug-21 1\n", + "30-Nov-99 1\n", + "14-Jan-23 1\n", + "18-Apr-87 1\n", + "13-Jul-06 1\n", + "23-Jan-07 1\n", + "Mar-74 1\n", + "05-Jun-93 1\n", + "27-Sep-53 1\n", + "16-Oct-12 1\n", + "05-Oct-06 1\n", + "1920s 1\n", + "22-Mar-12 1\n", + "15-Aug-1899 1\n", + "09-May-00 1\n", + "Reported 06-Aug-1931 1\n", + "01-Sep-09 1\n", + "17-Jul-56 1\n", + "Reported 11-May-1930 1\n", + "Nov-04 1\n", + "23-Mar-70 1\n", + "14-Jan-47 1\n", + "02-Jul-58 1\n", + "20-Jun-12 1\n", + "03-May-03 1\n", + "02-Oct-09 1\n", + "03-Feb-85 1\n", + "14-Sep-98 1\n", + "09-Mar-47 1\n", + "Summer of 1981 1\n", + " 07-Apr-1877 1\n", + "1883-1889 1\n", + "16-Mar-72 1\n", + "31-Aug-58 1\n", + "29-Jul-09 1\n", + "20-Feb-28 1\n", + "30-Sep-62 1\n", + "13-Jul-14 1\n", + "Reported 11-Jan-1827 1\n", + "07-Jul-89 1\n", + "04-Aug-80 1\n", + "24-Dec-02 1\n", + "Reported 05-Nov-1963 1\n", + "20-Nov-15 1\n", + "Reported 08-Feb-1887 1\n", + "30-Dec-1890 1\n", + "05-Jun-07 1\n", + "13-Feb-88 1\n", + "11-Nov-62 1\n", + "13-Aug-95 1\n", + "Reported 24-Oct-1888, but took place around 1868 1\n", + "10-Apr-60 1\n", + "31-Jul-09 1\n", + "10-Oct-68 1\n", + "1990 or 1991 1\n", + "06-Jun-10 1\n", + "31-Mar-12 1\n", + "Reported 21-Sep-1922 1\n", + "28-Jun-98 1\n", + "28-Nov-90 1\n", + "20-Feb-83 1\n", + "Reported 04-Jul-1907 1\n", + "Dec-1840 1\n", + "19-Jun-1870 1\n", + "15-Jan-12 1\n", + "20-Apr-47 1\n", + "22-Nov-03 1\n", + "23-Apr-89 1\n", + "Mar-64 1\n", + "20-Apr-62 1\n", + "03-Feb-37 1\n", + "13-Jun-00 1\n", + "10-Oct-13 1\n", + "Reported 10-Mar-2010 1\n", + "01-May-08 1\n", + "11-Feb-02 1\n", + "15-Jun-84 1\n", + "27-Mar-93 1\n", + "29-Jan-16 1\n", + "24-May-06 1\n", + "06-May-87 1\n", + "Reported 18-Sep-1840 1\n", + "15-Jul-63 1\n", + "Reported 06-Apr-1738 1\n", + "25-Dec-73 1\n", + " 24-Mar-1990 1\n", + "24-Nov-80 1\n", + "16-Mar-85 1\n", + "Reported 18-Sep-1864 1\n", + "13-Feb-24 1\n", + "06-Jan-67 1\n", + "25-Apr-80 1\n", + "13-Dec-94 1\n", + "15-Apr-03 1\n", + "01-Dec-01 1\n", + "12-Aug-03 1\n", + "23-May-12 1\n", + "Reported 14-Mar-1914 1\n", + "14-Sep-74 1\n", + "04-Jan-02 1\n", + "02-Aug-70 1\n", + "29-Sep-02 1\n", + "30-Mar-36 1\n", + "12-Oct-14 1\n", + "11-Apr-15 1\n", + "1893 1\n", + "25-Jan-80 1\n", + "Reported 02-Jun-1975 1\n", + "14-Jul-97 1\n", + "12-Aug-93 1\n", + "20-Dec-57 1\n", + "20-Feb-14 1\n", + "Reported 06-Jul-1920 1\n", + "28-Sep-88 1\n", + "08-Sep-13 1\n", + "Jun-92 1\n", + "Reported 21-Nov-1895 1\n", + "Sep-28 1\n", + "18-Jun-05 1\n", + "14-Aug-60 1\n", + "11-Mar-56 1\n", + "10-May-03 1\n", + "04-Dec-91 1\n", + "17-Aug-1885 1\n", + "10-Sep-66 1\n", + "23-Sep-43 1\n", + "24-May-1844 1\n", + "25-Jul-1896 1\n", + "08-May-87 1\n", + "12-Jun-69 1\n", + " 10-Jan-2009 1\n", + "28-Feb-78 1\n", + "07-Feb-75 1\n", + "19-Feb-58 1\n", + "Sep-1895 1\n", + "Reported 25-Nov-1856 1\n", + "Aug-69 1\n", + "04-Feb-63 1\n", + "05-Mar-90 1\n", + "03-Aug-52 1\n", + "20-May-75 1\n", + "08-Jun-03 1\n", + "26-Dec-04 1\n", + "18-Oct-98 1\n", + "16-Jun-23 1\n", + "04-May-88 1\n", + "30-Oct-15 1\n", + "21-Aug-99 1\n", + "17-Feb-82 1\n", + "Reported 1863 1\n", + "25-Nov-62 1\n", + "27-Jun-13 1\n", + "02-Jul-59 1\n", + "03-Jan-03 1\n", + "27-Feb-03 1\n", + "26-Aug-55 1\n", + "Ca. mid-1870s 1\n", + "13-Dec-53 1\n", + "Sep or Oct-1853 1\n", + "29-Nov-51 1\n", + "19-Feb-12 1\n", + "19-Jan-05 1\n", + "12-Jul-83 1\n", + "21-Feb-79 1\n", + "21-Oct-08 1\n", + "03-Dec-70 1\n", + "12-Jul-56 1\n", + "26-Mar-73 1\n", + "22-Apr-99 1\n", + "05-Aug-78 1\n", + "13-Feb-94 1\n", + "11-Nov-02 1\n", + "01-Nov-42 1\n", + "08-Nov-44 1\n", + "23-Jul-68 1\n", + "Reported 24-Jun-1928 1\n", + "11-Sep-92 1\n", + "01-Mar-84 1\n", + "11-Nov-98 1\n", + "13-Feb-11 1\n", + "1941-1942 1\n", + "02-Jan-12 1\n", + "01-Apr-60 1\n", + "21-Dec-51 1\n", + "1895 1\n", + "\"Before the war\" 1\n", + "13-Oct-83 1\n", + "Reported 20-Apr-1874 1\n", + "Mar-48 1\n", + "Reported 24-Jun-1916 1\n", + "02-Sep-01 1\n", + "Reported 03-Mar-2016 1\n", + "Reported 16-Jul-1911 1\n", + "29-Jul-07 1\n", + "13-Aug-98 1\n", + "24-Mar-79 1\n", + "21-Jul-07 1\n", + "06-Oct-13 1\n", + "27-Feb-44 1\n", + "18-Aug-10 1\n", + "10-Jan-08 1\n", + " 21-Sep-1908 1\n", + "11-Mar-48 1\n", + "04-Apr-1877 1\n", + "07-Apr-62 1\n", + "24-Nov-10 1\n", + "Reported 17-Feb-1969 1\n", + "19-Aug-69 1\n", + "14-Oct-46 1\n", + "24-Sep-12 1\n", + "04-Jul-10 1\n", + "03-Dec-59 1\n", + "08-Feb-09 1\n", + "Reported 28-Mar-1924 1\n", + "13-May-1868 1\n", + "04-Dec-54 1\n", + "24-Jan-83 1\n", + "28-Jun-11 1\n", + "03-Jul-1893 1\n", + "16-Nov-55 1\n", + "16-Oct-23 1\n", + "16-Aug-08 1\n", + "23-Feb-06 1\n", + "15-Sep-48 1\n", + "Reported 09-Feb-1914 1\n", + "1952-1954 1\n", + "03-Aug-86 1\n", + "13-Feb-1886 1\n", + "18-Nov-80 1\n", + "08-Feb-54 1\n", + "03-Apr-15 1\n", + "30-May-11 1\n", + "24-May-15 1\n", + "04-Jan-64 1\n", + "28-Nov-1894 1\n", + "20-Apr-24 1\n", + "18-Jul-91 1\n", + "04-Jun-30 1\n", + "07-Jun-97 1\n", + "02-Oct-01 1\n", + "20-Mar-12 1\n", + "14-Mar-00 1\n", + "Reported 21-Jan-2013 1\n", + "Reported 29-Nov-1889 1\n", + "20-Jul-02 1\n", + "01-Oct-60 1\n", + "Reported 22-Aug-1867 1\n", + "08-Jan-92 1\n", + "03-Dec-84 1\n", + "Before 08-Jun-1912 1\n", + "10-Jun-93 1\n", + "14-Jan-44 1\n", + "13-Aug-06 1\n", + "21-Jan-51 1\n", + "05-Feb-45 1\n", + "26-Feb-96 1\n", + "09-Sep-02 1\n", + "29-Mar-75 1\n", + "28-Dec-12 1\n", + "16-Aug-30 1\n", + "22-Oct-05 1\n", + "13-Sep-89 1\n", + "Reported 24-Dec-1946 1\n", + "06-Jan-12 1\n", + "15-Jul-83 1\n", + "02-Apr-94 1\n", + "23-Jan-64 1\n", + "22-Jan-96 1\n", + "21-Nov-24 1\n", + "05-Jul-1883 1\n", + "Reported 20-Jun-1892 1\n", + "03-Nov-73 1\n", + "12-Jun-07 1\n", + "19-Aug-62 1\n", + "Reported 11-Oct-2012 1\n", + "05-Feb-55 1\n", + "11-Jun-08 1\n", + "08-Jan-05 1\n", + "Reported 14-Sep-1891 1\n", + "17-Feb-90 1\n", + "13-Sep-92 1\n", + "22-Jan-67 1\n", + "15-Nov-04 1\n", + "05-Sep-85 1\n", + "09-Mar-01 1\n", + "21-Oct-15 1\n", + "09-Apr-16 1\n", + "06-Sep-45 1\n", + "30-Oct-02 1\n", + "04-Jun-1832 1\n", + "05-Jan-19 1\n", + "13-Jan-15 1\n", + "Reported 28-Feb-2011 1\n", + "20-Jul-69 1\n", + "21-Dec-01 1\n", + "04-Sep-54 1\n", + "16-Jan-65 1\n", + "08-Jul-26 1\n", + "Reported 01-Sep-1894 1\n", + "11-Dec-13 1\n", + "26-May-07 1\n", + "08-May-45 1\n", + "Reported 02-May-1938 1\n", + "07-May-56 1\n", + "08-Nov-88 1\n", + "Reported 02-Apr-2013 1\n", + "18-May-16 1\n", + "21-Jun-09 1\n", + "15-Sep-1877 1\n", + "Oct-65 1\n", + "Reported 17-Sep-1848 1\n", + "Reported 09-May-1951 1\n", + "24-Jun-97 1\n", + "01-Apr-07 1\n", + "19-Feb-95 1\n", + "Ca. 1911 1\n", + "03-Jan-97 1\n", + "11-Aug-88 1\n", + "30-Nov-12 1\n", + "2-Aug-1895 1\n", + "22-Aug-05 1\n", + "Apr-1978` 1\n", + "Reported 20-Jul-1888 1\n", + "Dec-93 1\n", + "Ca. 725 B.C. 1\n", + "15-Aug-00 1\n", + "28-Apr-76 1\n", + "18-Dec-07 1\n", + "10-Apr-48 1\n", + "May-03 1\n", + "30-Jul-09 1\n", + "09-Aug-91 1\n", + "25-Jul-1864 1\n", + "22-Oct-51 1\n", + "29-Jun-89 1\n", + "06-Jan-32 1\n", + "06-Dec-11 1\n", + "1892 1\n", + "Circa 1872 1\n", + "18-Oct-00 1\n", + "07-Feb-60 1\n", + "02-Sep-53 1\n", + "Reported 20-Mar-1903 1\n", + "Summer 1901 1\n", + "22-Dec-85 1\n", + "23-Jan-65 1\n", + "01-Feb-58 1\n", + "Reported 05-Nov-1997 1\n", + "14-Jul-1862 1\n", + "Before 1878 1\n", + "22-Aug-64 1\n", + " 27-Mar-2010 1\n", + "Before 1930 1\n", + "23-Apr-57 1\n", + "15-Jul-03 1\n", + "03-Jul-26 1\n", + "13-Feb-82 1\n", + "Reported 07-May-1880 1\n", + "09-Apr-00 1\n", + "Reported 02-Jan-1961 1\n", + "31-Jul-53 1\n", + "20-Jun-06 1\n", + "Reported 19-Jul-1951 1\n", + "12-Mar-13 1\n", + "14-Aug-66 1\n", + "18-Dec-57 1\n", + "04-Jul-07 1\n", + "26-Apr-15 1\n", + "25-Jan-66 1\n", + "10-Jan-62 1\n", + "12-Dec-36 1\n", + "30-Jun-00 1\n", + "21-Nov-93 1\n", + "Summer 1965 1\n", + "23-Nov-58 1\n", + "26-Dec-1845 1\n", + "21-Mar-09 1\n", + "06-Sep-14 1\n", + "15-Jan-83 1\n", + "Reported 15-Aug-1862 1\n", + "12-Apr-55 1\n", + "Reported 26-Aug-1934 1\n", + "18-Sep-53 1\n", + "28-Sep-03 1\n", + "Reported 17-Feb-2014 1\n", + "27-Feb-63 1\n", + "17-Oct-86 1\n", + "05-Dec-10 1\n", + "01-Jan-06 1\n", + "04-Aug-61 1\n", + "07-Dec-19 1\n", + "25-Oct-64 1\n", + "02-Feb-57 1\n", + "11-Apr-03 1\n", + "22-Nov-13 1\n", + "08-Aug-42 1\n", + "Reported 21-Aug-1941 1\n", + "Reported 01-Aug-1978 1\n", + "05-Aug-10 1\n", + "23-Apr-1895 1\n", + "Fall 2008 1\n", + "25-Dec-83 1\n", + "07-Apr-68 1\n", + "21-Mar-15 1\n", + "19-Apr-83 1\n", + "13-Sep-87 1\n", + "29-Jan-40 1\n", + "Reported 26-Jun-2008 1\n", + "05-Oct-59 1\n", + "1879 1\n", + "27-Jan-32 1\n", + "12-Jun-12 1\n", + "08-Dec-72 1\n", + "12-Aug-1864 1\n", + "16-Nov-15 1\n", + "16-Aug-49 1\n", + "Reported 25-Jul-1905 1\n", + "29-Dec-05 1\n", + "13-Dec-15 1\n", + "18-Mar-86 1\n", + "Reported 11-Oct-1904 1\n", + "05-Jun-15 1\n", + "493 B.C. 1\n", + "04-Oct-21 1\n", + "27-May-52 1\n", + "21-Dec-52 1\n", + "1844.07.16.R 1\n", + "16-Oct-63 1\n", + "19-Jul-75 1\n", + "18-Sep-1895 1\n", + "Reported 08-Jun-1933 1\n", + "11-May-01 1\n", + "Sep-44 1\n", + "22-Apr-36 1\n", + "18-Nov-96 1\n", + "22-Sep-76 1\n", + "22-Jan-66 1\n", + "26-Aug-64 1\n", + "2000 1\n", + "Reported 27-Jan-1864 1\n", + "27-Aug-06 1\n", + "16-Nov-14 1\n", + "29-Jun-83 1\n", + "24-Sep-15 1\n", + "17-Apr-63 1\n", + "05-Feb-90 1\n", + "02-Jan-93 1\n", + "03-Dec-1882 1\n", + "20-Nov-00 1\n", + "09-Sep-93 1\n", + "24-Jan-31 1\n", + "11-Nov-95 1\n", + "03-Oct-02 1\n", + "26-Jan-10 1\n", + "01-Oct-11 1\n", + "17-Nov-95 1\n", + "25-Jan-48 1\n", + "Reported 26-Jun-1909 1\n", + "09-Mar-76 1\n", + "30-Dec-12 1\n", + " 13-Sep-2010 1\n", + "21-Nov-13 1\n", + "1932 1\n", + "13-Oct-05 1\n", + "24-Jun-58 1\n", + "23-Nov-92 1\n", + "15-Jan-62 1\n", + "01-Aug-41 1\n", + "17-Mar-77 1\n", + "27-Mar-1860 1\n", + "12-Mar-93 1\n", + "Reported 30-Aug-1891 1\n", + "29-Oct-05 1\n", + "12-Nov-28 1\n", + "09-Apr-92 1\n", + "06-Aug-04 1\n", + "14-Oct-07 1\n", + "Apr-02 1\n", + "01-Oct-89 1\n", + "10-Jun-01 1\n", + "31-Mar-13 1\n", + "07-Jul-95 1\n", + "09-Dec-1888 1\n", + "15-Jul-57 1\n", + "1850 1\n", + "20-Dec-08 1\n", + "26-Sep-94 1\n", + "Circa 500 A.D. 1\n", + "28-Feb-87 1\n", + "23-May-33 1\n", + "23-Nov-99 1\n", + "07-May-61 1\n", + "20-May-15 1\n", + "24-Jun-07 1\n", + "01-May-11 1\n", + "06-Feb-1856 1\n", + "27-Jun-16 1\n", + "05-Nov-64 1\n", + "Reported 03-Jul-1962 1\n", + "31-Oct-06 1\n", + "05-Sep-15 1\n", + "14-Jan-07 1\n", + "31-Jan-59 1\n", + "11-Jan-06 1\n", + "08-Mar-81 1\n", + "27-Jan-62 1\n", + "17-May-97 1\n", + "22-Oct-85 1\n", + "Reported 23-Dec-2014 1\n", + "13-Sep-70 1\n", + "29-Nov-11 1\n", + "Reported 26-Aug-1933 1\n", + "Ca. 1881 1\n", + "21-May-02 1\n", + "Nov-91 1\n", + "16-Jan-56 1\n", + "Mar-83 1\n", + "30-May-59 1\n", + "25-Aug-31 1\n", + "23-Dec-57 1\n", + "14-Jun-16 1\n", + "06-Jul-15 1\n", + "Reported 11-Oct-1997 1\n", + "27-Jan-12 1\n", + "02-Aug-37 1\n", + " 05-Oct-1985 1\n", + "20-Mar-40 1\n", + "17-Jul-38 1\n", + "Feb-1888 1\n", + "16-Jul-53 1\n", + "12-Aug-08 1\n", + "17-Jan-55 1\n", + "1852 1\n", + "15-Aug-87 1\n", + "28-Oct-13 1\n", + "27-Jan-1849 1\n", + "11-Nov-69 1\n", + "10-Oct-06 1\n", + "13-Apr-06 1\n", + "04-Jul-02 1\n", + "06-Oct-04 1\n", + "12-Jan-10 1\n", + "13-Jan-60 1\n", + "29-Sep-51 1\n", + "28-Mar-1855 1\n", + "Reported 13-Apr-2007 1\n", + "18-Mar-61 1\n", + "Jan-36 1\n", + "Aug-95 1\n", + "30-Aug-91 1\n", + "27-Jul-05 1\n", + "12-Aug-62 1\n", + " 19-Jul-1889 1\n", + "24-Aug-26 1\n", + "04-Sep-04 1\n", + "31-Dec-12 1\n", + "Reported 26-Sep-1930 1\n", + "03-May-15 1\n", + "09-Jun-88 1\n", + "08-Aug-64 1\n", + "10-Aug-15 1\n", + "11-Jul-16 1\n", + "26-Jul-74 1\n", + "19-Oct-15 1\n", + "1800 1\n", + "Reported 1938 1\n", + "02-Sep-11 1\n", + "06-Mar-04 1\n", + "25-Mar-56 1\n", + "1896-1913 1\n", + "11-Jul-51 1\n", + "22-Sep-48 1\n", + "26-Jun-58 1\n", + "12-Oct-90 1\n", + "11-Oct-02 1\n", + ".Reported 22-Feb-1902 1\n", + "05-Feb-07 1\n", + "08-Feb-1887 1\n", + "01-Jun-93 1\n", + "08-Jun-38 1\n", + "09-Sep-72 1\n", + "18-May-95 1\n", + "24-Dec-98 1\n", + "13-Dec-61 1\n", + "Aug-14 1\n", + "Reported 15-Jun-1981 1\n", + "19-Aug-45 1\n", + "19-Jun-79 1\n", + "21-Nov-29 1\n", + "29-Nov-14 1\n", + "05-Oct-96 1\n", + "12-Dec-58 1\n", + "10-Mar-82 1\n", + "11-Oct-95 1\n", + "01-Apr-87 1\n", + "Reported 22- Jan-1831 1\n", + "21-Jan-60 1\n", + "12-Aug-00 1\n", + "22-Oct-79 1\n", + "01-Dec-72 1\n", + "12-May-12 1\n", + "Reported 12-Jul-1771 1\n", + "Apr-61 1\n", + "25-Apr-16 1\n", + "14-Nov-98 1\n", + "09-Apr-89 1\n", + "16-Jun-95 1\n", + "Ca. 1915 1\n", + "26-Dec-42 1\n", + "09-Mar-05 1\n", + "28-Apr-01 1\n", + "15-Mar-12 1\n", + "Reported 09-Apr-1909 1\n", + "09-Feb-92 1\n", + "04-Dec-1862 1\n", + "17-Apr-61 1\n", + "Reported 24-Oct-1878 1\n", + "25-Jul-01 1\n", + "Aug-66 1\n", + "10-Jan-80 1\n", + "07-Jul-91 1\n", + "09-Dec-54 1\n", + "05-Mar-78 1\n", + "19-Jun-03 1\n", + "29-Sep-03 1\n", + "Reported 03-Sep-1951 1\n", + "27-Jun-20 1\n", + "Reported 06-Jul-1912 1\n", + "22-Oct-34 1\n", + "08-Feb-03 1\n", + "25-Oct-15 1\n", + "17-Feb-1888 1\n", + "14-Jan-1884 1\n", + "09-Apr-61 1\n", + "18-Nov-89 1\n", + "11-Jan-32 1\n", + "11-Apr-99 1\n", + "16-Jun-13 1\n", + "09-Jul-00 1\n", + "12-Nov-49 1\n", + "Nov-11 1\n", + "26-Aug-76 1\n", + "07-Oct-01 1\n", + "Reported 20-Dec-1998 1\n", + "08-Nov-09 1\n", + "10-Jul-15 1\n", + "06-Apr-47 1\n", + "31-Mar-00 1\n", + "10-Nov-02 1\n", + "16-Jul-68 1\n", + "Summer of 1959 1\n", + "06-Oct-88 1\n", + "01-Aug-09 1\n", + "04-Oct-75 1\n", + "07-Feb-62 1\n", + "Summer of 1898 1\n", + "19-Dec-07 1\n", + "09-Mar-41 1\n", + "Reported 24-Jan-1877 1\n", + "07-Mar-61 1\n", + "23-Jun-95 1\n", + "22-Apr-57 1\n", + "28-Oct-1898 1\n", + "20-Mar-35 1\n", + "07-Nov-07 1\n", + "30-Jan-01 1\n", + "Reported 27-Nov-1875 1\n", + "06-Oct-62 1\n", + "01-Sep-01 1\n", + "Reported 21-Mar-1938 1\n", + "16-Apr-95 1\n", + "16-Mar-1859 1\n", + "Reported 14-Feb-1975 1\n", + "26-Sep-93 1\n", + "23-Nov-39 1\n", + "07-Aug-84 1\n", + "14-Mar-66 1\n", + "Reported 27-Jul-1947 1\n", + "11-Dec-1894 1\n", + "20-Oct-29 1\n", + "19-Nov-91 1\n", + "04-Feb-16 1\n", + "02-Jun-95 1\n", + "Jan-26 1\n", + "18-Jul-43 1\n", + "21-Sep-65 1\n", + "06-Oct-03 1\n", + "31-Mar-10 1\n", + "Reported 16-Jan-1956 1\n", + "Reported 05-Jan-1988 1\n", + "Summer of 1883 1\n", + "16-Jun-33 1\n", + "04-Aug-75 1\n", + "Reported 16-Aug-1951 1\n", + "06-Sep-1897 1\n", + "11-Nov-43 1\n", + "Reported 27-Mar-2005 1\n", + "Reported 29-Mar-1895 1\n", + "23-Dec-58 1\n", + "20-Jun-34 1\n", + "14-May-69 1\n", + "29-Nov-92 1\n", + "07-Jan-60 1\n", + "07-Aug-02 1\n", + "12-Dec-78 1\n", + "25-Aug-60 1\n", + "10-Jun-72 1\n", + "07-Mar-08 1\n", + "04-Oct-98 1\n", + "05-Sep-90 1\n", + "17-Feb-11 1\n", + "27-Oct-00 1\n", + "22-Jan-61 1\n", + "15-Feb-10 1\n", + "Nov- or Dec-1873 1\n", + "09-Dec-64 1\n", + "27-Mar-13 1\n", + "Reported 28-Oct-2011 1\n", + "19-Aug-48 1\n", + "03-Mar-91 1\n", + "02-Feb-1959 Reported 1\n", + "27-May-30 1\n", + "25-Nov-24 1\n", + "26-Feb-12 1\n", + "Reported 09-Jan-1958 1\n", + "02-Mar-00 1\n", + "26-Aug-35 1\n", + "Reported 12-May-1882 1\n", + "14-Jan-49 1\n", + "09-Jan-91 1\n", + "Early Jul-1995 1\n", + "21-Aug-34 1\n", + "26-Feb-04 1\n", + "21-Mar-08 1\n", + "25-Aug-01 1\n", + "08-Feb-29 1\n", + "12-Oct-21 1\n", + "Sep-06 1\n", + "1958-1959 1\n", + "Reported 13-Jul-1888 1\n", + "29-Aug-62 1\n", + "08-Jan-53 1\n", + "04-Feb-68 1\n", + "10-Feb-16 1\n", + "13-Feb-37 1\n", + "19-Aug-95 1\n", + "04-Apr-73 1\n", + "22-Apr-24 1\n", + "04-Aug-16 1\n", + "Reported 24-Aug-1902 1\n", + "18-Feb-11 1\n", + "31-Jul-11 1\n", + "Reported 21-Jun-1856 1\n", + "02-Nov-02 1\n", + "12-Oct-52 1\n", + "Sep-73 1\n", + "29-Dec-96 1\n", + "Reported 06-Feb-2010 1\n", + "08-Jul-1889 1\n", + "05-Mar-99 1\n", + "17-Sep-07 1\n", + "04-Nov-67 1\n", + "Reported 20-Jan-1875 1\n", + "01-Jul-41 1\n", + "10-Mar-00 1\n", + "16-Sep-95 1\n", + "Jan-63 1\n", + "05-Jan-84 1\n", + "09-Jun-65 1\n", + "31-Dec-03 1\n", + "23-Oct-88 1\n", + "10-Mar-11 1\n", + "13-Nov-94 1\n", + "03-Sep-15 1\n", + "08-Jan-83 1\n", + "Reported 24-Jul-1947 1\n", + "23-Jun-90 1\n", + "1881 1\n", + "02-May-31 1\n", + "23-Oct-12 1\n", + "19-Oct-09 1\n", + "Reported 30-Jul-2008 1\n", + "16-Dec-71 1\n", + "08-Apr-63 1\n", + "11-Mar-16 1\n", + "23-Mar-08 1\n", + "30-Mar-52 1\n", + "31-May-17 1\n", + "11-Mar-15 1\n", + "13-Jun-05 1\n", + "Reported 27-Jul-1950 1\n", + "29-Aug-96 1\n", + "30-Aug-65 1\n", + "06-Aug-52 1\n", + "10-Aug-09 1\n", + "12-Jul-14 1\n", + "Reported 17-May-2007 1\n", + "Reported 24-Jul-2009 1\n", + "23-Dec-34 1\n", + "24-Mar-41 1\n", + "04-Jul-03 1\n", + "Reported 09-Nov-1892 1\n", + "15-Jul-99 1\n", + "14-Nov-01 1\n", + "27-Jan-58 1\n", + "15-Nov-59 1\n", + "15-Jul-05 1\n", + "18-Feb-53 1\n", + "28-Aug-12 1\n", + "Reported 03-Sept-1816 1\n", + "Reported 18-Jul-1865 1\n", + "07-Mar-07 1\n", + "17-Nov-1878 1\n", + "20-Mar-09 1\n", + "24-Mar-24 1\n", + "19-Aug-05 1\n", + "26-Dec-57 1\n", + "12-Sep-00 1\n", + "09-Sep-97 1\n", + "30-Oct-10 1\n", + "07-Oct-07 1\n", + "15-Jun-75 1\n", + "02-Dec-99 1\n", + "May-54 1\n", + "18-Jun-12 1\n", + "Reported 19-Dec-1950 1\n", + "12-Jul-00 1\n", + "Sep-15 1\n", + "15-May-1880 1\n", + "05-Oct-91 1\n", + "09-Mar-75 1\n", + "Reported 04-Jun-1876 1\n", + "11-May-14 1\n", + "28-May-05 1\n", + "10-Aug-19 1\n", + "26-Feb-68 1\n", + "Reported 17-Jul-1929 1\n", + "23-Oct-34 1\n", + "14-Jul-89 1\n", + "26-Dec-72 1\n", + "05-Oct-11 1\n", + "12-Dec-74 1\n", + "23-Aug-62 1\n", + "Reported 10-Feb-1956 1\n", + "05-Jan-29 1\n", + "05-Dec-12 1\n", + "19-Aug-77 1\n", + "02-Feb-68 1\n", + "25-Nov-08 1\n", + "01-Aug-1894 1\n", + "Reported 16-Dec-1908 1\n", + "15-Jan-59 1\n", + "17-Mar-93 1\n", + "Reported 19-Jun-1851 1\n", + "31-Jul-66 1\n", + "13-Dec-1884 1\n", + "31-May-06 1\n", + "28-Nov-08 1\n", + "19-Feb-51 1\n", + "24-Dec-83 1\n", + "Dec-68 1\n", + "Reported 17-Feb-1964 1\n", + "28-Aug-66 1\n", + "Reported 21-Feb-1835 1\n", + "07-Oct-54 1\n", + "04-Sep-83 1\n", + "11-Apr-12 1\n", + "09-Mar-69 1\n", + "27-Jan-59 1\n", + "03-Jun-17 1\n", + "24-Sep-10 1\n", + "Mar-93 1\n", + "30-Nov-1856 1\n", + "Reported 23-Apr-2006 1\n", + "25-Dec-13 1\n", + "29-Oct-14 1\n", + "19-Jan-12 1\n", + "07-Jun-05 1\n", + "28-Aug-1826 1\n", + "05-Jul-52 1\n", + "05-Sep-00 1\n", + "1936 1\n", + "25-Apr-75 1\n", + "07-Mar-94 1\n", + "16-May-59 1\n", + "03-Jul-95 1\n", + "No date, Before 3-Jan-1967 1\n", + "03-Nov-90 1\n", + "03-Jan-51 1\n", + "17-Nov-80 1\n", + "08-Oct-34 1\n", + "16-Apr-72 1\n", + "12-Dec-23 1\n", + "01-Oct-92 1\n", + "10-Jul-00 1\n", + "26-Oct-11 1\n", + "30-Jun-03 1\n", + "15-Jul-64 1\n", + "15-Jul-04 1\n", + "1899 During the Seige of Ladysmith 1\n", + "05-Jan-49 1\n", + "Before 1963 1\n", + "19-Sep-66 1\n", + "30-Sep-02 1\n", + "09-Dec-56 1\n", + "11-Jun-1891 1\n", + "23-Aug-11 1\n", + "24-May-14 1\n", + "Jan-Jun-1962 1\n", + "08-Mar-98 1\n", + "Reported 16-Sep-1892 1\n", + "13-Jul-08 1\n", + "08-Nov-32 1\n", + "13-Sep-63 1\n", + "29-Jun-11 1\n", + "10-May-07 1\n", + "Late Aug-1905 1\n", + "Feb-57 1\n", + "06-Jun-96 1\n", + "11-Apr-06 1\n", + "04-Apr-13 1\n", + "03-Nov-27 1\n", + "14-Nov-66 1\n", + "18-Mar-09 1\n", + "02-Apr-13 1\n", + "Reported 25-Dec-1910 1\n", + "21-Sep-94 1\n", + "Oct-96 1\n", + "04-Sep-12 1\n", + "Aug-48 1\n", + "21-Dec-73 1\n", + "Apr-55 1\n", + "1868 (?) 1\n", + "12-Mar-29 1\n", + "27-May-43 1\n", + "24-Dec-72 1\n", + "12-Nov-50 1\n", + "Dec-47 1\n", + "Late Jul-2008 1\n", + "Aug-1886 1\n", + "1900-1905 1\n", + "24-Mar-81 1\n", + "10-Jan-09 1\n", + "Reported 13-Apr-1955 1\n", + "04-Nov-86 1\n", + "25-Feb-12 1\n", + "Feb-94 1\n", + "27-Nov-76 1\n", + "12-Apr-74 1\n", + "1827 1\n", + "02-Jan-28 1\n", + "28-Oct-09 1\n", + "15-Oct-90 1\n", + "18-Jan-64 1\n", + "06-Apr-90 1\n", + "23-Sep-56 1\n", + "10-Dec-85 1\n", + "12-Apr-09 1\n", + "09-Jun-97 1\n", + "Aug-05 1\n", + "Reported 23-Jan-1832 1\n", + "01-Jan-99 1\n", + " 31-Jul-2013 1\n", + "26-Dec-15 1\n", + "04-Sep-25 1\n", + "Reported 18-Mar-1999 1\n", + "15-Sep-08 1\n", + "1767 1\n", + "02-Jul-60 1\n", + "30-Jul-01 1\n", + "04-Sep-07 1\n", + "Ca. 1929 1\n", + "Feb-07 1\n", + "Before 19-Jul-1913 1\n", + "Before 1960 1\n", + "10-Aug-14 1\n", + "25-May-75 1\n", + "31-Jul-00 1\n", + "Reported 05-Jul-1906 1\n", + "25-Oct-90 1\n", + "02-Sep-57 1\n", + "08-Dec-15 1\n", + "05-Feb-16 1\n", + "10-Aug-32 1\n", + "04-Jun-42 1\n", + "21-Jun-03 1\n", + "10-Oct-98 1\n", + "Reported 15-Jan-1861 1\n", + "05-Apr-62 1\n", + "31-Mar-98 1\n", + "21-Nov-98 1\n", + "17-Sep-95 1\n", + "Reported 1617 1\n", + "29-Aug-89 1\n", + " 18-Nov-1948 1\n", + "05-Jan-13 1\n", + "17-Oct-80 1\n", + "05-Nov-92 1\n", + "Reported 14-Jun-1890 1\n", + "24-Sep-99 1\n", + "12-Aug-01 1\n", + "27-Jul-97 1\n", + "27-Apr-59 1\n", + "Reported 25-Jun-1910 1\n", + "09-May-12 1\n", + "15-Dec-1877 1\n", + "29-Nov-96 1\n", + "15-Dec-36 1\n", + "20-Oct-10 1\n", + "25-Jul-49 1\n", + "24-Jan-15 1\n", + "12-Jun-81 1\n", + "29-Mar-13 1\n", + "Reported 05-Mar-2007 1\n", + "01-Aug-56 1\n", + "Reported 13-Jan-2009 1\n", + "01-Aug-14 1\n", + "Reported 09-May-2007 1\n", + "22-Jul-69 1\n", + "29-Jul-61 1\n", + "24-Apr-92 1\n", + "Feb-69 1\n", + "13-Apr-57 1\n", + "24-Feb-08 1\n", + "Reported 15-Jul-2005 1\n", + "27-Nov-05 1\n", + "17-May-1893 1\n", + "Reported 28-Jul-1931 1\n", + "28-Sep-95 1\n", + "27-Jun-06 1\n", + "16-Feb-59 1\n", + "19-Jul-71 1\n", + "16-Nov-59 1\n", + "1758 1\n", + "October 1887 1\n", + "06-Feb-63 1\n", + "26-Feb-56 1\n", + "Reported 08-Jan-1891 1\n", + "26-Jun-06 1\n", + "29-Jun-60 1\n", + "26-Dec-68 1\n", + "Early 1870s 1\n", + "11-Oct-87 1\n", + "30-Jul-93 1\n", + "Reported 10-May-2014 1\n", + "22-Dec-98 1\n", + "05-May-06 1\n", + "21-Jan-64 1\n", + "22-Jun-66 1\n", + "11-Aug-00 1\n", + "Reported 16-Nov-1963 1\n", + "09-Apr-62 1\n", + "20-Jul-62 1\n", + "1878 1\n", + "Mid Oct-1901 1\n", + "04-Sep-55 1\n", + "06-May-22 1\n", + "25-Apr-08 1\n", + "25-Jan-59 1\n", + "Jan-42 1\n", + "Jun-67 1\n", + "Reported 27-Aug-2000 1\n", + "11-Jul-10 1\n", + "16-Sep-97 1\n", + "Reported 05-Jun-1935 1\n", + "19-Jan-75 1\n", + "27-Jun-69 1\n", + "Between 18 & 22-Dec 1944 1\n", + "03-Jul-54 1\n", + "25-May-87 1\n", + "Reported 26-Jul-1898 1\n", + "27-Mar-1841 1\n", + "11-Mar-07 1\n", + "04-Oct-97 1\n", + "24-Jun-61 1\n", + "Reported 29-Oct-1989 1\n", + "30-Aug-59 1\n", + "29-Jul-29 1\n", + "Reported 01-Jul-1954 1\n", + "07-Sep-16 1\n", + "01-Jul-82 1\n", + "Reported 14-Jun-2009 1\n", + "Reported 03-Jun-1895 1\n", + "Reported 16-Sep-1998 1\n", + "Mar-82 1\n", + "20-Aug-08 1\n", + " 08-Aug-1890 1\n", + "19-Jul-82 1\n", + "08-Mar-20 1\n", + "Reported 26-May-1956 1\n", + "15-Aug-95 1\n", + "16-Oct-55 1\n", + "08-Apr-30 1\n", + "06-Apr-52 1\n", + "22-Apr-11 1\n", + "04-Jan-44 1\n", + "21-Mar-14 1\n", + "Early 1930s 1\n", + "May-55 1\n", + "31-Mar-60 1\n", + "15-Feb-62 1\n", + "18-Jun-65 1\n", + "11-Feb-01 1\n", + "Reported 12-Nov-1959 1\n", + "17-Jun-89 1\n", + "07-Dec-59 1\n", + "Reported 14-Aug-1967 1\n", + "22-May-23 1\n", + "03-Apr-58 1\n", + "18-Dec-1899 1\n", + "12-Apr-89 1\n", + "25-Jul-04 1\n", + "Summer 1980 1\n", + "04-Feb-01 1\n", + "30-Dec-67 1\n", + "04-Jan-63 1\n", + "16-Mar-29 1\n", + "20-Aug-15 1\n", + "21-Dec-72 1\n", + "20-Dec-1896 1\n", + "02-Dec-44 1\n", + "03-Feb-12 1\n", + "24-May-83 1\n", + "11-Sep-37 1\n", + "26-Feb-01 1\n", + "01-Sep-60 1\n", + "09-Feb-15 1\n", + "Reported 10-Feb-2016 1\n", + "13-Apr-63 1\n", + "01-Jun-11 1\n", + "17-Jun-1886 1\n", + "Reported 14-Mar-2007 1\n", + "29-Jan-99 1\n", + "01-Aug-1860 1\n", + "Late Jul-1959 1\n", + "1928 1\n", + "Reported 28-Mar-2006 1\n", + "21-Oct-97 1\n", + "25-Jan-24 1\n", + "16-Jul-39 1\n", + "25-Jul-55 1\n", + "25-Nov-41 1\n", + "25-Mar-88 1\n", + "14-May-05 1\n", + "25-Jun-16 1\n", + " 16-Jan-1970 1\n", + "06-Nov-07 1\n", + "09-Jul-86 1\n", + "13-Jun-15 1\n", + "16-Jul-64 1\n", + "06-Nov-92 1\n", + "18-Nov-07 1\n", + "26-Jun-32 1\n", + "20-Jun-83 1\n", + "08-Oct-15 1\n", + "25-Jun-05 1\n", + "09-Jun-1897 1\n", + "25-Aug-56 1\n", + "04-Apr-1893 1\n", + "08-Dec-03 1\n", + "06-Jan-62 1\n", + "26-May-77 1\n", + "11-Dec-15 1\n", + "06-Jan-29 1\n", + "16-Aug--2011 1\n", + "02-Aug-61 1\n", + "Reported 25-Feb-1883 1\n", + "14-Jul-00 1\n", + "03-Jan-92 1\n", + "13-Jun-49 1\n", + "06-Jul-1842 1\n", + "Reported 18-Jul-1908 1\n", + "22-Sep-1887 1\n", + "27-Apr-08 1\n", + "04-Nov-28 1\n", + "26-Oct-43 1\n", + "21-Aug-04 1\n", + "04-Apr-70 1\n", + "14-Mar-61 1\n", + "13-Nov-14 1\n", + "15-Jan-19 1\n", + "08-Mar-99 1\n", + "Aug-64 1\n", + "Before 19-Jun-1959 1\n", + "28-Jan-1886 1\n", + "27-Aug-97 1\n", + "02-Jun-61 1\n", + "27-Feb-82 1\n", + "06-Jun-23 1\n", + "26-Aug-79 1\n", + "02-Apr-02 1\n", + "11-Aug--2011 1\n", + "Reported 10-Nov-1983 1\n", + "26-Mar-37 1\n", + "Jun-03 1\n", + "24-Aug-84 1\n", + "04-Mar-89 1\n", + "24-Mar-62 1\n", + "29-Nov-20 1\n", + "06-Dec-64 1\n", + " 02-Sep-2013 1\n", + "19-Nov-41 1\n", + "28-Aug-90 1\n", + "20-Mar-07 1\n", + "05-Jan-16 1\n", + "16-Jun-47 1\n", + "20-Jul-81 1\n", + "04-May-07 1\n", + "29-Jun-91 1\n", + "Reported 03-Jan-1999 1\n", + "24-Oct-70 1\n", + "25-Aug-07 1\n", + "28-May-65 1\n", + "13-Sep-67 1\n", + "Apr-1863 1\n", + "21-Aug-1894 1\n", + "09-Feb-07 1\n", + "01-Oct-86 1\n", + "Apr-80 1\n", + "21-Jan-88 1\n", + "29-Nov-59 1\n", + "08-May-01 1\n", + "14-Feb-04 1\n", + "09-Oct-96 1\n", + "21-Jan-38 1\n", + "01-Nov-59 1\n", + "18-Apr-16 1\n", + "08-Jun-14 1\n", + "07-Oct-56 1\n", + "21-Nov-42 1\n", + "02-May-15 1\n", + "Late 1960s 1\n", + "05-Nov-69 1\n", + "Reported 23-Aug-1899 1\n", + "12-Jan-76 1\n", + "11-Mar-27 1\n", + "16-Feb-02 1\n", + "Sep-03 1\n", + "26-May-97 1\n", + "04-Oct-15 1\n", + "25-Nov-63 1\n", + "17-Oct-09 1\n", + "Ca. Nov-1826 1\n", + "Reported 15-Dec-1877 1\n", + "23-Feb-98 1\n", + "31-Jul-15 1\n", + "03-May-79 1\n", + "06-Nov-1892 1\n", + "22-Jul-15 1\n", + "01-Dec-94 1\n", + "Jun-93 1\n", + "07-Aug-67 1\n", + "22-Aug-85 1\n", + "Oct-53 1\n", + "22-Nov-20 1\n", + "08-Mar-59 1\n", + "05-Jan-36 1\n", + "Reported 06-Sep-2010 1\n", + "Reported 28-Jan-1922 1\n", + "Dec-59 1\n", + "29-Jun-54 1\n", + "26-Aug-91 1\n", + "07-May-02 1\n", + "23-Sep-11 1\n", + "13-Feb-41 1\n", + "18-Aug-1884 1\n", + "25-Jul-15 1\n", + "22-Dec-09 1\n", + "11-Aug-36 1\n", + "15-Jun-25 1\n", + "21-Mar-43 1\n", + "27-Jan-10 1\n", + "24-Apr-14 1\n", + "08-Mar-10 1\n", + "10-Feb-13 1\n", + "01-Jul-48 1\n", + "Reported 06-Jun-1961 1\n", + "08-Aug-10 1\n", + "18-Oct-94 1\n", + "05-Jan-80 1\n", + "Ca. 1940 1\n", + "Jan-30 1\n", + "26-Jan-11 1\n", + "20-Feb-40 1\n", + "Early 1900s 1\n", + "07-Dec-41 1\n", + "Reported 02-Jun-1958 1\n", + "26-Jan-1886 1\n", + "Beforer 1994 1\n", + "15-Nov-16 1\n", + "Sep-98 1\n", + "Reported 14-Oct-2009 1\n", + "08-Feb-15 1\n", + "06-Jan-78 1\n", + "11-Apr-47 1\n", + "16-Jan-09 1\n", + "Reported 14-Sep-1878 1\n", + "28-Jul-54 1\n", + " 21-Jun-1934 1\n", + "Reported 28-Dec-1898 1\n", + "Sep-66 1\n", + "31-Aug-12 1\n", + "Reported 19-Sep-1907 1\n", + "13-May-00 1\n", + "21-Jul-1897 1\n", + "27-Sep-10 1\n", + "30-Mar-00 1\n", + "15-Jan-20 1\n", + "30-Jul-54 1\n", + "13-Dec-58 1\n", + "Jan-59 1\n", + "04-May-06 1\n", + "08-Jan-66 1\n", + "25-Apr-05 1\n", + "12-Feb-09 1\n", + "Reported 08-Jul-2016 1\n", + "04-May-03 1\n", + "Reported 19-May-1892 1\n", + "11-Oct-32 1\n", + "09-Jan-66 1\n", + "Ca. 336.B.C.. 1\n", + "1836.00. 1\n", + "26-Jan-43 1\n", + "09-Jan-94 1\n", + "Reported 04-Jun-1931 1\n", + "A few years before 1938 1\n", + "01-Mar-67 1\n", + "30-Mar-35 1\n", + "15-Aug-11 1\n", + "11-Aug-08 1\n", + "23-Dec-92 1\n", + "05-Feb-1863 1\n", + "05-Jan-47 1\n", + "30-Jun-16 1\n", + "23-Aug-31 1\n", + "Reported 12-Jan-1994 1\n", + "05-Sep-05 1\n", + "16-May-49 1\n", + "24-Jun-94 1\n", + "15-Jun-58 1\n", + "Reported 23-Oct-1888 1\n", + "17-Aug-72 1\n", + "23-Feb-36 1\n", + "Apr-98 1\n", + "04-Apr-10 1\n", + "05-Apr-42 1\n", + "23-Jan-49 1\n", + "12-Apr-15 1\n", + "Reported 13-Jan-1912 1\n", + "05-Jan-66 1\n", + "Reported 28-Mar-1928 1\n", + "Mid Jul-1985 or mid Jul-1986 1\n", + "02-Jul-15 1\n", + "07-Nov-75 1\n", + "12-Nov-93 1\n", + "26-Jul-80 1\n", + "29-May-11 1\n", + "06-26-1890 1\n", + "25-Jun-15 1\n", + "29-Dec-78 1\n", + "05-Jan-93 1\n", + "22-Mar-04 1\n", + "28-May-04 1\n", + "21-Apr-77 1\n", + "25-Mar-68 1\n", + "07-Aug-07 1\n", + "16-Sep-16 1\n", + "Jun-70 1\n", + "01-Sep-15 1\n", + "24-Sep-01 1\n", + "28-May-96 1\n", + "Reported 26-Dec-2011 1\n", + "14-Dec-07 1\n", + "20-May-01 1\n", + "Apr-67 1\n", + "12-Jan-63 1\n", + "12-Nov-13 1\n", + "26-May-95 1\n", + "15-May-94 1\n", + "06-Sep-76 1\n", + "26-Jul-1975.b 1\n", + "16-Jan-30 1\n", + "23-Sep-84 1\n", + "14-Mar-65 1\n", + "23-Feb-02 1\n", + "23-Sep-61 1\n", + "18-Sep-96 1\n", + "17-Mar-84 1\n", + "Reported 23-May-1923 1\n", + "Reported 23-Aug-1998 1\n", + "05-Jul-11 1\n", + "30-Jan-15 1\n", + "03-Jan-12 1\n", + "11-Jul-88 1\n", + "29-Nov-13 1\n", + "Reported 26-Nov-1909 1\n", + "01-Jul-35 1\n", + "07-Aug-1852 1\n", + "22-Aug-94 1\n", + "29-Aug-1858 1\n", + "1886 1\n", + "22-Oct-14 1\n", + "Reported 19-Feb-1996 1\n", + "30-Jul-59 1\n", + "02-Dec-12 1\n", + "21-Jul-96 1\n", + "18-Sep-15 1\n", + "01-Apr-90 1\n", + "Aug-62 1\n", + "16-Nov-42 1\n", + "16-Sep-78 1\n", + "1847 1\n", + "06-Oct-08 1\n", + "07-Sep-74 1\n", + "11-Sep-95 1\n", + "24-May-81 1\n", + "04-Jun-60 1\n", + "1828 1\n", + "22-Aug-21 1\n", + "26-Apr-04 1\n", + "29-Jun-00 1\n", + "19-Feb-93 1\n", + "06-Aug-14 1\n", + "03-May-33 1\n", + "Reported 16-Jul-1895 1\n", + "18-Jun-35 1\n", + "18-May-1870 1\n", + "14-Dec-1863 1\n", + "14-Feb-15 1\n", + "19-Feb-00 1\n", + "30-Aug-00 1\n", + "04-Oct-39 1\n", + "15-Mar-00 1\n", + "03-Jul-59 1\n", + "Reported 26-Feb-1804 1\n", + "17-Dec-70 1\n", + "26-Dec-48 1\n", + "01-Mar-50 1\n", + "02-Dec-11 1\n", + "08-Oct-08 1\n", + "23-Jul-92 1\n", + "07-Jun-1899 1\n", + "19-Dec-1883 1\n", + "24-May-07 1\n", + "31-May-92 1\n", + "Ca. 1900 1\n", + "16-Sep-11 1\n", + "1839/1840 1\n", + "11-Oct-16 1\n", + "21-Sep-14 1\n", + "13 or 30-May-1967 1\n", + "Ca. 1899 1\n", + "Early Jul-1980 1\n", + "04-Aug-06 1\n", + "24-Mar-51 1\n", + "1853 or 1854 1\n", + "04-Sep-82 1\n", + "29-Jan-66 1\n", + "16-Jun-09 1\n", + "Aug-63 1\n", + "13-Aug-00 1\n", + "17-Mar-09 1\n", + "11-Dec-11 1\n", + "14-Oct-00 1\n", + "28-Sept-1853 1\n", + "13-Aug-35 1\n", + "15-Jul-02 1\n", + "06-Sep-61 1\n", + "Between 10 and 12-Sep-1959 1\n", + "18-Dec-76 1\n", + "09-Jul-87 1\n", + "15-Jul-17 1\n", + "06-Feb-86 1\n", + "Reported 28-Jan-1998 1\n", + "26-Jun-91 1\n", + "21-Jul-01 1\n", + "31-Oct-14 1\n", + "04-Sep-15 1\n", + "12-Aug-75 1\n", + "04-Feb-77 1\n", + "12-Nov-63 1\n", + "24-May-60 1\n", + "06-Oct-54 1\n", + "27-Oct-80 1\n", + "Reported 01-Mar-1865 1\n", + "26-Aug-11 1\n", + "24-Jul-95 1\n", + "30-Apr-1830 1\n", + "19-Dec-81 1\n", + "23-Oct-13 1\n", + "14-Jul-39 1\n", + "Reported 15-Nov-1928 1\n", + "16-Jan-1884 1\n", + "19-Jul-08 1\n", + "13-Apr-05 1\n", + "Reported 15-Jul-1874 1\n", + "18-Apr-02 1\n", + "11-Jul-28 1\n", + "13-Feb-32 1\n", + "Reported 08-Jan-1927 1\n", + "20-Apr-68 1\n", + "12-May-95 1\n", + "Woirld War II 1\n", + "Reported 16-Apr-1885 1\n", + "04-Jul-1888 1\n", + "01-Jan-46 1\n", + "Reported 25-Dec-1888 1\n", + "24-Nov-73 1\n", + "01-Oct-04 1\n", + "01-Aug-62 1\n", + "Early Sep-2000 1\n", + "14-Nov-63 1\n", + "16-Jun-05 1\n", + "31-May-29 1\n", + "19-Jul-13 1\n", + "26-Dec-09 1\n", + "24-Jul-16 1\n", + "22-May-69 1\n", + "04-Nov-00 1\n", + "No date, Before 1975 1\n", + "26-May-91 1\n", + "17-Jun-06 1\n", + "05-Nov-58 1\n", + "18-Jan-09 1\n", + "09-Apr-02 1\n", + "25-Mar-69 1\n", + "28-Dec-92 1\n", + "10-Jul-07 1\n", + "12-May-35 1\n", + "Jul-59 1\n", + "28-Mar-92 1\n", + "Mar-56 1\n", + "Reported 27-Jan-1925 1\n", + "15-Jul-1898 1\n", + "13-Mar-35 1\n", + "Reported 08-Apr-2008 1\n", + "18-Jan-85 1\n", + "23-Oct-57 1\n", + "17-Jul-01 1\n", + "Aug-06 1\n", + "19-Jul-22 1\n", + "06-Feb-12 1\n", + "27-Jan-29 1\n", + "22-Jan-1880 1\n", + "1905 1\n", + "01-Sep-29 1\n", + "25-Apr-24 1\n", + "06-Jul-95 1\n", + "05-Jul-09 1\n", + "Jul-00 1\n", + "07-Jul-93 1\n", + "10-Apr-65 1\n", + "05-Oct-51 1\n", + "06-Nov-39 1\n", + "28-Dec-65 1\n", + "11-Sep-16 1\n", + "30-Nov-69 1\n", + "28-Jul-06 1\n", + "30-Jan-54 1\n", + "31-Aug-1848 1\n", + "22-Jun-1893 1\n", + "14-Oct-62 1\n", + "26-Mar-15 1\n", + "26-Dec-99 1\n", + "20-Feb-72 1\n", + "14-Sep-93 1\n", + "14-Jan-08 1\n", + "04-Feb-37 1\n", + "10-May-11 1\n", + "13-Sep-02 1\n", + "01-Jun-61 1\n", + "14-Oct-14 1\n", + "18-Mar-06 1\n", + "19-Apr-16 1\n", + "19-Oct-12 1\n", + "05-Aug-01 1\n", + "12-Jan-59 1\n", + "03-Aug-01 1\n", + "14-Dec-62 1\n", + "22-Jul-84 1\n", + " 18-Aug-2013 1\n", + "21-Mar-07 1\n", + "23-Feb-11 1\n", + "Summer of 1926 1\n", + "Reported 02-Jun-1976 1\n", + "11-Oct-13 1\n", + "08-May-64 1\n", + "26-Feb-33 1\n", + " 11-Jul-1982 1\n", + "27-Oct-03 1\n", + "Reported 03-Dec-2014 1\n", + "08-Sep-65 1\n", + "01-Sep-1868 1\n", + "20-Feb-30 1\n", + "2009? 1\n", + "Jun-68 1\n", + "12-Feb-88 1\n", + "28-Apr-10 1\n", + "12-Dec-43 1\n", + "Jan-69 1\n", + "09-Jun-68 1\n", + "25-Oct-10 1\n", + "15-Jun-13 1\n", + "20-Jul-56 1\n", + "11-Oct-88 1\n", + "Reported 01-Jul-1904 1\n", + "14-Aug-1888 1\n", + "31-Jul-82 1\n", + "27-Nov-13 1\n", + "30-Sep-93 1\n", + "19-Nov-86 1\n", + "01-Feb-64 1\n", + "04-Jul-75 1\n", + "21-Jul-14 1\n", + "12-Sep-19 1\n", + "01-Sep-74 1\n", + "16-Mar-75 1\n", + "20-Sep-64 1\n", + "1992 1\n", + "01-Dec-1849 1\n", + "May-92 1\n", + "18-Sep-60 1\n", + "16-Jan-60 1\n", + "15-May-05 1\n", + "17-Oct-94 1\n", + "04-May-13 1\n", + "31-Jul-04 1\n", + "06-Dec-99 1\n", + "04-Feb-10 1\n", + "07-Mar-1925 or 27-Mar-1925 1\n", + "20-Apr-09 1\n", + "Reported 06-Feb-1947 1\n", + "21-Nov-83 1\n", + "13-Mar-14 1\n", + "24-Oct-98 1\n", + "04-Oct-03 1\n", + "01-Mar-94 1\n", + "03-Mar-13 1\n", + "08-Oct-07 1\n", + "07-Jan-34 1\n", + "Reported 1638 1\n", + "18-Oct-76 1\n", + "Reported 31-Jul-1911 1\n", + "1962 1\n", + "Feb-53 1\n", + "27-Jan-69 1\n", + "Ca. 1837 1\n", + "23-Dec-35 1\n", + "04-Mar-16 1\n", + "Reported 16-May-1910 1\n", + "01-Jun-71 1\n", + "24-Jun-1888 1\n", + "17-Sep-89 1\n", + "05-Mar-73 1\n", + "28-Mar-80 1\n", + "18-Aug-38 1\n", + "21-Sep-10 1\n", + "21-Aug-05 1\n", + "Early Aug-2006 1\n", + "Reported 11-Sep-1994 1\n", + "10-May-88 1\n", + "Before 1927 1\n", + "Reported 20-Sep-1953 1\n", + "Reported 09-Dec-1932 1\n", + "26-Apr-98 1\n", + "05-Jul-35 1\n", + "1887 1\n", + "Reported 22-Dec-1891 1\n", + "29-Dec-63 1\n", + "11-Feb-37 1\n", + "11-Sep-07 1\n", + "23-Feb-62 1\n", + "03-Aug-64 1\n", + "08-Feb-06 1\n", + "22-Dec-53 1\n", + "01-Jan-12 1\n", + "18-Feb-68 1\n", + "09-Jul-53 1\n", + "Jul-67 1\n", + "03-Apr-61 1\n", + "Reported 08-Aug-2013 1\n", + "Reported 02-Aug-1862 1\n", + "Sep-1864 1\n", + "24-Apr-60 1\n", + "28-Oct-50 1\n", + "24-Apr-88 1\n", + "Reported 17-Jul-2013 1\n", + "13-Oct-07 1\n", + "11-Mar-79 1\n", + "26-Jul-96 1\n", + "13-Oct-15 1\n", + "05-Dec-48 1\n", + "25-Oct-62 1\n", + "03-Aug-15 1\n", + "Reported 29-Mar-1911 1\n", + "24-Mar-11 1\n", + "22-Sep-63 1\n", + "03-Jan-15 1\n", + "20-Aug-85 1\n", + "Reported 15-Dec-1947 1\n", + "18-Jun-13 1\n", + "09-Aug-97 1\n", + "07-Sep-09 1\n", + "Reported 09-Dec-1915 1\n", + "1925 1\n", + "13-May-49 1\n", + "10-Nov-13 1\n", + "14-Dec-22 1\n", + "22-Sep-05 1\n", + "17-Jun-62 1\n", + "01-Sep-08 1\n", + "22-Jun-98 1\n", + "25-Aug-67 1\n", + "25-Oct-27 1\n", + "24-Jun-11 1\n", + "31-Jan-10 1\n", + "19-Sep-84 1\n", + "14-Nov-1874 1\n", + "19-May-35 1\n", + "Reported 27-Jun-2014 1\n", + "22-May-92 1\n", + "21-Oct-78 1\n", + "22-Jan-30 1\n", + "12-Jul-13 1\n", + "19-Jan-91 1\n", + "15-Nov-10 1\n", + "30-Jun-40 1\n", + "04-Feb-65 1\n", + "28-Feb-82 1\n", + "17-Oct-61 1\n", + "1836.07.26.R 1\n", + "31-Oct-64 1\n", + "21-Jul-50 1\n", + "01-Apr-99 1\n", + "11-Oct-14 1\n", + "27-Nov-10 1\n", + "08-Jan-08 1\n", + "07-May-59 1\n", + "08-Sep-97 1\n", + "27-Feb-94 1\n", + "15-Sep-09 1\n", + "17-Jun-07 1\n", + "11-Oct-89 1\n", + "Jan-92 1\n", + "03-Jan-02 1\n", + "19-Nov-12 1\n", + "15-Aug-04 1\n", + "03-Feb-51 1\n", + "05-Apr-75 1\n", + "01-May-10 1\n", + "17-Feb-84 1\n", + "18-Feb-44 1\n", + "Before 1961 1\n", + "22-Aug-01 1\n", + "08-Sep-01 1\n", + "30-May-10 1\n", + "29-Aug-09 1\n", + "Reported 12-Jan-1950 1\n", + "20-Jul-96 1\n", + "Mar-81 1\n", + "31-Dec-05 1\n", + "31-Aug-1858 1\n", + "Late Jul-1900 1\n", + "10-Jun-10 1\n", + "04-Jan-11 1\n", + "Reported 28-Jun-1937 1\n", + "20-Feb-12 1\n", + "23-Jan-92 1\n", + "23-Mar-01 1\n", + "05-Apr-59 1\n", + "07-Feb-08 1\n", + "26-Jun-1867 1\n", + "Reported 03-Dec-1929 1\n", + "18-Feb-62 1\n", + "15-Aug-98 1\n", + "15-Oct-92 1\n", + "24-May-33 1\n", + "15-Jan-40 1\n", + "03-Feb-76 1\n", + "21-Apr-02 1\n", + "10-Sep-04 1\n", + "22-Feb-09 1\n", + "27-Jan-37 1\n", + "1865 1\n", + "11-Dec-86 1\n", + "23-May-01 1\n", + "24-Dec-00 1\n", + "26-May-38 1\n", + "12-Oct-58 1\n", + "18-Sep-92 1\n", + "01-Aug-11 1\n", + "01-Mar-79 1\n", + "25-Aug-59 1\n", + "23-Jun-64 1\n", + "14-Dec-67 1\n", + "10-Apr-1869 1\n", + "Reported 04-May-1899 1\n", + "Apr-44 1\n", + "04-May-44 1\n", + "07-Jul-37 1\n", + "29-Apr-1895 1\n", + "20-Dec-05 1\n", + "Jul-91 1\n", + "09-Aug-89 1\n", + "02-Dec-75 1\n", + "23-Nov-76 1\n", + "27-Jan-15 1\n", + "29-Nov-50 1\n", + "25-Aug-95 1\n", + "Reported 14-Sep-1883 (probably happened Ca. 1843/1844) 1\n", + "27-Aug-73 1\n", + "29-Sep-63 1\n", + "05-Jul-83 1\n", + "29-Apr-65 1\n", + "17-Oct-23 1\n", + "22-Nov-11 1\n", + "Reported 07-Aug-1872 1\n", + "25-Jun-1894 1\n", + "09-Oct-94 1\n", + "25-Aug-92 1\n", + "Reported 16-Jan-1864 1\n", + "08-Aug-03 1\n", + "25-Nov-1880 1\n", + "Apr-52 1\n", + "27-Aug-98 1\n", + "14-Feb-35 1\n", + "12-May-32 1\n", + "10-Jul-96 1\n", + "19-Aug-86 1\n", + "11-Nov-80 1\n", + "Mar-59 1\n", + "21-May-1895 1\n", + "21-Nov-43 1\n", + "19-Feb-94 1\n", + "24-Jan-95 1\n", + "31-Jan-11 1\n", + "28-Sep-74 1\n", + "26-Nov-76 1\n", + "27-May-06 1\n", + "03-Jun-62 1\n", + "12-Mar-03 1\n", + "11-Dec-05 1\n", + "25-Jul-06 1\n", + "10-Mar-16 1\n", + "22-Mar-07 1\n", + "25-Jun-51 1\n", + "07-Feb-86 1\n", + " 22-Jun-1956 1\n", + "07-Feb-81 1\n", + "28-Apr-57 1\n", + "10-Jan-1863 1\n", + "23-Apr-16 1\n", + "11-Oct-05 1\n", + "26-Apr-11 1\n", + "21-Jan-67 1\n", + " 25-Sep-2013 1\n", + "29-May-19 1\n", + "31-Aug-01 1\n", + "25-Jun-07 1\n", + "11-Feb-04 1\n", + "01-Jan-72 1\n", + "Summer of 1903 1\n", + "22-May-14 1\n", + "08-Apr-11 1\n", + "12-Feb-48 1\n", + "27-Jul-1870 1\n", + "02-Jan-59 1\n", + "14-Feb-27 1\n", + "04-Jan-42 1\n", + "1864 1\n", + "19955 1\n", + "14-Jan-88 1\n", + "23-Jan-40 1\n", + "Ca. 1965 1\n", + "05-Jun-98 1\n", + "17-Jul-06 1\n", + "27-Jan-64 1\n", + "03-May-59 1\n", + "10-Nov-1861 1\n", + "No date, Before 1987 1\n", + "15-Jun-70 1\n", + "Reported 02-Sep-1951 1\n", + "12-Feb-91 1\n", + "08-Apr-90 1\n", + "17-Jan-46 1\n", + "15-Apr-14 1\n", + "18-May-96 1\n", + "06-Apr-19 1\n", + "21-Oct-65 1\n", + "Jul-87 1\n", + "01-Feb-51 1\n", + "12-Nov-79 1\n", + "17-Oct-84 1\n", + "13-Dec-87 1\n", + "01-Aug-05 1\n", + "18-Jun-24 1\n", + "03-Jun-02 1\n", + "03-Jan-27 1\n", + "Sep-59 1\n", + "20-Jan-27 1\n", + "22-Feb-40 1\n", + " 05-Aug-2013 1\n", + "24-Aug-14 1\n", + "30-Dec-16 1\n", + "27-Jul-78 1\n", + "17-Feb-86 1\n", + "09-May-67 1\n", + "29-Dec-59 1\n", + "1874 1\n", + "15-Dec-14 1\n", + "02-Oct-29 1\n", + "20-Nov-33 1\n", + "23-Nov-23 1\n", + "13-Jan-13 1\n", + "11-Aug-1895 1\n", + "28-Nov-59 1\n", + "15-Jul-75 1\n", + "03-Feb-10 1\n", + "27-Mar-09 1\n", + "13-Aug-89 1\n", + "29-Oct-22 1\n", + "19-Jul-1847 1\n", + "19-Sep-11 1\n", + "Jul-63 1\n", + "Reported 25-Oct-1939 1\n", + " 05-Nov-1997 1\n", + "03-Jul-10 1\n", + "31-Mar-16 1\n", + "13-Sep-09 1\n", + "06-Aug-05 1\n", + "Reported 03-Mar-2000 1\n", + "26-Apr-22 1\n", + "31-May-95 1\n", + "Early summer 1960 1\n", + "16-Apr-06 1\n", + "24-Aug-97 1\n", + "04-May-01 1\n", + "30-Jan-63 1\n", + "29-May-99 1\n", + "15-Jan-66 1\n", + "05-Feb-70 1\n", + "Reported 15-Apr-1893 1\n", + "21-Jan-01 1\n", + "09-Jan-19 1\n", + "29-Oct-92 1\n", + "11-Dec-59 1\n", + "01-Jul-16 1\n", + "29-May-62 1\n", + "02-Jan-76 1\n", + "Reported 26-Sep-1922 1\n", + "13-May-08 1\n", + "18-Jan-62 1\n", + "13-Aug-96 1\n", + "01-Jun-88 1\n", + "1851 1\n", + "09-Oct-61 1\n", + "27-Aug-31 1\n", + "24-Jun-95 1\n", + "21-Sep-54 1\n", + "23-Jul-95 1\n", + "24-Mar-39 1\n", + "19-Jul-66 1\n", + "Oct-88 1\n", + "Before 24 Apr-1959 1\n", + "20-Aug-04 1\n", + "23-May-14 1\n", + "20-Jun-74 1\n", + "May-93 1\n", + "26-Nov-1885 1\n", + "12-May-62 1\n", + "16-May-81 1\n", + "1748 1\n", + "28-May-72 1\n", + "20-Sep-55 1\n", + "Reported 28-Aug-1877 1\n", + "25-Nov-92 1\n", + "27-Jul-68 1\n", + "24-Jun-01 1\n", + "Reported 02-Jul-1830 1\n", + "19-Jan-58 1\n", + "26-Aug-62 1\n", + "25-Dec-64 1\n", + "Reported 1637 1\n", + "02-Feb-11 1\n", + "Sep-14 1\n", + "22-Jan-1888 1\n", + "27-Dec-48 1\n", + "1749 1\n", + " 11-Jan-1896 1\n", + "Reported 25-Jan-1902 1\n", + "22-Oct-88 1\n", + "30-Jun-11 1\n", + "08-Aug-02 1\n", + "Before 1917 1\n", + "17-Jun-22 1\n", + "10-Oct-1880 1\n", + "Apr-93 1\n", + "24-Feb-63 1\n", + "25-Jan-61 1\n", + "Reported 17-Jun-2014 1\n", + "12-Jul-38 1\n", + "11-Aug-02 1\n", + "15-May-86 1\n", + "05-Nov-85 1\n", + "Reported 27-Apr-1909 1\n", + "01-Feb-10 1\n", + "19-Dec-61 1\n", + "11-Jan-64 1\n", + "19-Oct-66 1\n", + "27-Jul-54 1\n", + " 24-Aug-1916 1\n", + "18-Aug-08 1\n", + "04-Sep-16 1\n", + "03-Mar-01 1\n", + "18-Oct-14 1\n", + "Reported 29-Jun-1901 1\n", + "04-Feb-22 1\n", + "29-Dec-68 1\n", + "1871 1\n", + "09-Oct-10 1\n", + " 12-Sep-2013 1\n", + "Ca. 1903 1\n", + "01-Jul-53 1\n", + "13-Sep-07 1\n", + "09-Oct-11 1\n", + "Sep-74 1\n", + "Reported 28-Jan-2006 1\n", + "Reported 27-Apr-1906 1\n", + " 25-Jun-1982 1\n", + "01-Nov-03 1\n", + "22-Jul-07 1\n", + "18-Mar-75 1\n", + "09-Jan-73 1\n", + "05-Nov-09 1\n", + "06-Sep-67 1\n", + "Reported 16-Sep-1903 1\n", + "05-Jun-05 1\n", + "05-Jul-67 1\n", + "Reported 15-Jul-1834 1\n", + "04-Jan-85 1\n", + "Reported 06-Nov-1937 1\n", + "May-01 1\n", + "25-Sep-12 1\n", + "05-Oct-86 1\n", + "30-Nov-86 1\n", + "22-Apr-26 1\n", + "1912 1\n", + "02-Sep-09 1\n", + "Reported 01-Aug-1888 1\n", + "23-Feb-99 1\n", + "14-Apr-1893 1\n", + "09-Sep-1837 1\n", + "03-May-1895 1\n", + "11-Feb-50 1\n", + "07-May-03 1\n", + "1920 -1923 1\n", + "05-Dec-11 1\n", + "19-Apr-09 1\n", + "15-Nov-99 1\n", + "19-Nov-14 1\n", + "10-Mar-68 1\n", + "25-Sep-41 1\n", + "15-Jun-1817 1\n", + "07-Jun-60 1\n", + "25-Jan-04 1\n", + "26-Jul-53 1\n", + "20-Sep-04 1\n", + "22-Oct-11 1\n", + "05-Apr-58 1\n", + "11-Apr-59 1\n", + "06-Sep-69 1\n", + "19-Sep-76 1\n", + "01-Jun-09 1\n", + "Reported 06-Mar-1886 1\n", + "14-Aug-02 1\n", + "Before 2003 1\n", + "12-Mar-61 1\n", + "27-Jul-69 1\n", + "1820s 1\n", + "11-Feb-84 1\n", + "27-Nov-04 1\n", + "Jul-36 1\n", + "02-Jul-74 1\n", + "03-Nov-07 1\n", + "Reported 31-Jan-1889 1\n", + "10-Jun-00 1\n", + "02-Sep-48 1\n", + "27-Jul-80 1\n", + "11-Mar-1847 1\n", + "01-Jun-76 1\n", + "Reported 09-Apr-1855 1\n", + "Nov-17 1\n", + "24-May-96 1\n", + "14-May-1890 1\n", + "16-Jun-43 1\n", + "1595 1\n", + "14-Mar-84 1\n", + "17-Jan-19 1\n", + "15-Apr-68 1\n", + "26-Jan-12 1\n", + "02-Mar-76 1\n", + "26-Nov-78 1\n", + "Letter dated 10-Jan-1580 1\n", + "23-Dec-11 1\n", + "Reported 17-Nov-2014 1\n", + "Reported 12-Jan 2011 1\n", + "Jul-84 1\n", + "10-Oct-47 1\n", + "Aug-1852 1\n", + "20-Jan-11 1\n", + "17-Aug-85 1\n", + "Reported 18-Jun-1888 1\n", + "11-Apr-29 1\n", + "08-May-85 1\n", + "Jan-98 1\n", + "09-Nov-81 1\n", + "14-Oct-89 1\n", + "1764 1\n", + "01-Jan-61 1\n", + "May-25 1\n", + "19-May-91 1\n", + "07-May-15 1\n", + "23-Nov-47 1\n", + "15-May-37 1\n", + "20-Nov-05 1\n", + "14-Sep-08 1\n", + "Reported 10-Oct-1972 1\n", + "16-Mar-04 1\n", + "10-May-81 1\n", + "27-Aug-08 1\n", + "01-Feb-00 1\n", + "14-Nov-91 1\n", + "08-Oct-89 1\n", + "18-Feb-85 1\n", + "30-Dec-83 1\n", + "09-May-11 1\n", + "27-May-88 1\n", + "27-Sep-98 1\n", + "20-Oct-00 1\n", + "Reported 08-Feb-1934 1\n", + "22-Apr-16 1\n", + "07-Jan-40 1\n", + "16-Dec-09 1\n", + "15-Sep-84 1\n", + "27-Jun-10 1\n", + "09-Jun-01 1\n", + "10-Jun-14 1\n", + "Reported 08-Apr-1935 1\n", + "10-Jul-06 1\n", + "06-Jul-12 1\n", + "29-May-04 1\n", + "17-Jan-68 1\n", + "18-May-01 1\n", + "Reported 23-Dec-1910 1\n", + "Oct-27 1\n", + "26-Feb-05 1\n", + "18-Jul-39 1\n", + "20-Mar-66 1\n", + "27-May-28 1\n", + "17-Oct-67 1\n", + "05-Feb-96 1\n", + "07-Jan-07 1\n", + "15-Oct-05 1\n", + "05-Aug-41 1\n", + "28-Oct-62 1\n", + "05-Feb-57 1\n", + "21-Jul-85 1\n", + "Apr-66 1\n", + "Reported 21-Jun-1896 1\n", + "19-Dec-1852 1\n", + "11-Dec-94 1\n", + "03-Jul-60 1\n", + "01-Jan-05 1\n", + "09-Jan-65 1\n", + "Reported 23-Jan-1882 1\n", + "03-Apr-14 1\n", + "28-Dec-59 1\n", + "Reported 15-Dec-1956 1\n", + "Reported 08-Jun-1910 1\n", + "27-Aug-16 1\n", + "10-Mar-67 1\n", + "05-Oct-58 1\n", + "31-Oct-04 1\n", + "12-Feb-11 1\n", + "12-Jun-11 1\n", + "22-Apr-04 1\n", + "11-May-1870 1\n", + "09-Mar-61 1\n", + "Ca. 1962 1\n", + "22-Jul-05 1\n", + "25-Aug-09 1\n", + "03-May-39 1\n", + "25-Jun-62 1\n", + "20-Dec-40 1\n", + "27-Jul-60 1\n", + "29-Aug-1891 1\n", + " 14-Aug-2013 1\n", + "17-Jul-97 1\n", + "06-Nov-94 1\n", + "25-Dec-68 1\n", + "06-Jan-63 1\n", + "02-Jul-66 1\n", + "01-May-60 1\n", + "Reported 02-Sep-1978 1\n", + "09-Jan-1870 1\n", + "05-Mar-96 1\n", + "Summer of 1996 1\n", + "Reported 25-Mar-1935 1\n", + "28-Jul-56 1\n", + "08-Jul-83 1\n", + "30-Aug-97 1\n", + "03-Sep-89 1\n", + "18-Sep-01 1\n", + "26-Jul-83 1\n", + "04-Nov-84 1\n", + "Sep-21 1\n", + "08-Apr-16 1\n", + "Mar-1886 1\n", + "01-Aug-58 1\n", + "23-Mar-65 1\n", + "18-Oct-85 1\n", + "25-Dec-30 1\n", + "16-Jan-50 1\n", + "07-Apr-64 1\n", + "Reported 25-Nov-1971 1\n", + "03-Dec-00 1\n", + "Jan-77 1\n", + "13-Dec-29 1\n", + "15-Jun-06 1\n", + "14-Jan-05 1\n", + "Oct-93 1\n", + "18-Feb-84 1\n", + "16-Sep-06 1\n", + "28-Nov-11 1\n", + "30-Mar-61 1\n", + "27-Jul-14 1\n", + "10-Nov-14 1\n", + "20-Apr-86 1\n", + "Reported 09-May 1927 1\n", + "16-Jun-02 1\n", + "21-Feb-04 1\n", + "15-Apr-87 1\n", + "Reported 19-Aug-1993 1\n", + "02-Nov-89 1\n", + "22-Feb-34 1\n", + "19-Jan-07 1\n", + "Reported 07-Mar-1930 1\n", + "Jun-53 1\n", + "07-Jan-06 1\n", + "15-Jun-10 1\n", + "19-Feb-92 1\n", + "14-Dec-39 1\n", + "29-Mar-04 1\n", + "02-May-76 1\n", + "25-Jan-65 1\n", + "11-Nov-06 1\n", + "26-Oct-93 1\n", + "04-Oct-59 1\n", + "03-Dec-89 1\n", + "Reported 07-Nov-1958 1\n", + "15-Apr-34 1\n", + "03-Jan-11 1\n", + "Aug-1867 1\n", + " 10-Jan-1903 1\n", + "22-Jul-41 1\n", + "08-Jan-89 1\n", + "16-Oct-1881 1\n", + "16-Oct-1893 1\n", + "11-Jan-63 1\n", + "05-Aug-77 1\n", + "14-Oct-03 1\n", + "28-May-1899 1\n", + "10-Jul-50 1\n", + "14-Nov-10 1\n", + "07-Dec-07 1\n", + "1949-1950 1\n", + "Reported 14-Jun-2013 1\n", + "09-Nov-16 1\n", + "18-Apr-75 1\n", + "02-Feb-81 1\n", + "Dec-1826 1\n", + "Reported 09-Jun-1873 1\n", + "21-Mar-74 1\n", + "27-Jan-88 1\n", + "29-Oct-07 1\n", + "20-Oct-90 1\n", + "Dec-86 1\n", + "29-May-65 1\n", + "12-May-09 1\n", + "08-Feb-32 1\n", + "18-Sep-66 1\n", + "09-Jun-93 1\n", + "29-Dec-76 1\n", + "02-Aug-25 1\n", + "26-Dec-03 1\n", + "26-Sep-63 1\n", + "05-Jul-60 1\n", + "09-Dec-62 1\n", + "04-Nov-20 1\n", + "Jul-82 1\n", + "22-Feb-1817 1\n", + "13-Nov-09 1\n", + "2014 1\n", + "Reported 17-Apr-1929 1\n", + "05-Jan-61 1\n", + "05-Feb-15 1\n", + "18-Jul-17 1\n", + "19-Apr-03 1\n", + "Reported 30-Dec-1913 1\n", + "Reported 07-Feb-1882 1\n", + "Reported 10-Jul-1963 1\n", + "02-Mar-09 1\n", + "02-Jun-97 1\n", + "18-Sep-09 1\n", + "Nov-47 1\n", + "10-Oct-93 1\n", + "30-Aug-12 1\n", + "Circa 1958 1\n", + "01-Jul-84 1\n", + "07-Mar-15 1\n", + "01-Jul-05 1\n", + "12-Apr-39 1\n", + "07-Dec-52 1\n", + "24-Jan-01 1\n", + "26-Aug-34 1\n", + "17-Sep-03 1\n", + "24-May-94 1\n", + "19-Sep-03 1\n", + "Nov-03 1\n", + "1914 1\n", + "12-Aug-1881 1\n", + "190Feb-2010 1\n", + "29-Aug-38 1\n", + "Jan-91 1\n", + "04-Dec-1887 1\n", + "12-Jan-1807 1\n", + "30-May-64 1\n", + "04-Feb-93 1\n", + "Aug-00 1\n", + "06-May-90 1\n", + "Reported 02-Jun-1908 1\n", + "29-Mar-14 1\n", + "19-Jul-10 1\n", + "02-Jul-77 1\n", + "31-May-14 1\n", + "06-May-72 1\n", + "12-Jul-42 1\n", + " 13-Jan-1999 1\n", + "02-Feb-88 1\n", + "22-Aug-69 1\n", + "Dec-12 1\n", + "09-Jan-58 1\n", + "15-Jul-09 1\n", + "30-Sep-06 1\n", + "07-Jun-06 1\n", + "21-Dec-29 1\n", + "30-Aug-90 1\n", + "17-Jun-92 1\n", + "27-Sep-82 1\n", + "21-Oct-75 1\n", + "01-Jan-1886 1\n", + "11-Feb-10 1\n", + "20-Apr-63 1\n", + "15-Mar-86 1\n", + "20-Feb-97 1\n", + "15-Mar-98 1\n", + "28-Oct-15 1\n", + "31-Mar-15 1\n", + "17-Jun-13 1\n", + "21-Nov-1874 1\n", + "Winter 1942 1\n", + "Reported 31-Aug-1962 1\n", + "22-Nov-60 1\n", + "08-Ap-1936 1\n", + "13-Dec-13 1\n", + "12-Mar-05 1\n", + "20-Jul-14 1\n", + "Reported 18-Dec-1973 1\n", + "03-Aug-48 1\n", + "1555 1\n", + "05-Dec-79 1\n", + "24-Aug-46 1\n", + "18-Apr-49 1\n", + "16-Aug-14 1\n", + "26-May-85 1\n", + "22-Nov-25 1\n", + "18-Dec-73 1\n", + "11-Feb-64 1\n", + "13-Jun-73 1\n", + "13-Sep-56 1\n", + "26-Mar-00 1\n", + "20-Jul-74 1\n", + "29-Aug-03 1\n", + "25-Apr-03 1\n", + "13-Aug-68 1\n", + "29-Jun-1894 1\n", + "No date, late 1960s 1\n", + "No date, After August 1926 and before 1936 1\n", + "10-Aug-60 1\n", + "25-Dec-11 1\n", + "May-62 1\n", + "28-Jun-91 1\n", + "16-Feb-32 1\n", + "17-Dec-67 1\n", + "13-Feb-05 1\n", + "20-Nov-14 1\n", + "Between 1918 & 1939 1\n", + "22-Dec-86 1\n", + "Reported 13-Jun-1895 1\n", + "07-Aug-81 1\n", + "02-Jan-03 1\n", + "19-Sep-45 1\n", + "24-May-1852 1\n", + "24-Oct-09 1\n", + "Reported 16-Nov-2005 1\n", + "Reported 02-Nov-1939 1\n", + "Reported 11-Jan-2016 1\n", + "08-Sep-04 1\n", + "Reported 17-Mar-2009 1\n", + "Reported 17-Nov-1905 1\n", + "05-Jun-06 1\n", + "10-Nov-83 1\n", + "1918 1\n", + "27-Aug-01 1\n", + "28-Dec-39 1\n", + "08-Sep-08 1\n", + "Aug-86 1\n", + "30-Oct-93 1\n", + "10-Sep-89 1\n", + "29-Apr-15 1\n", + "14-Apr-00 1\n", + "Apr-86 1\n", + "04-Feb-55 1\n", + "10-Nov-62 1\n", + "26-Jan-63 1\n", + "18-Dec-95 1\n", + "20-Dec-02 1\n", + "05-Jan-56 1\n", + "28-Dec-46 1\n", + "21764 1\n", + "01-Feb-59 1\n", + "Reported 15-Jul-1914 1\n", + "27-Sep-64 1\n", + "Reported 26-Apr-1929 1\n", + "06-Aug-32 1\n", + "22-Mar-18 1\n", + "15-Dec-88 1\n", + "03-Jul-33 1\n", + "18-Jul-81 1\n", + "30-Dec-36 1\n", + "Reported 04-Aug-1936 1\n", + "04-Apr-04 1\n", + "03-Jan-89 1\n", + "19-May-81 1\n", + "30-Jul-08 1\n", + "16-Dec-04 1\n", + "14-Aug-05 1\n", + "30-Mar-83 1\n", + "09-Aug-1878 1\n", + "Summer 1974 1\n", + "13-Sep-95 1\n", + "24-Jun-60 1\n", + "14-May-63 1\n", + "26-Jun-03 1\n", + "1979 1\n", + "26-Mar-05 1\n", + "31-May-83 1\n", + "19-Jun-00 1\n", + "06-Apr-71 1\n", + "12-Dec-1877 1\n", + "14-Jun-95 1\n", + "26-Jul-86 1\n", + "04-Oct-64 1\n", + "04-Aug-47 1\n", + "09-Dec-1895 1\n", + "09-Feb-27 1\n", + "28-Apr-88 1\n", + "Late Jul-1980 1\n", + "22-Apr-63 1\n", + "06-May-1886 1\n", + "Reported 10-Dec-1994 1\n", + "01-Oct-99 1\n", + "06-Aug-09 1\n", + "07-Jun-78 1\n", + "Aug-43 1\n", + "29-May-12 1\n", + "08-Aug-68 1\n", + "24-Jun-08 1\n", + "Reported 22-Sep-1986 1\n", + "03-May-16 1\n", + "05-Oct-38 1\n", + "04-Jul-09 1\n", + "1642 1\n", + "23-Jun-29 1\n", + "12-Nov-05 1\n", + "04-Sep-72 1\n", + "26-Jul-01 1\n", + "18-Feb-09 1\n", + "11-Nov-11 1\n", + "08-Sep-91 1\n", + "07-Jun-15 1\n", + "Reported 21-Mar-2013 1\n", + "20-Jul-89 1\n", + "02-Jan-38 1\n", + "29-Jul-99 1\n", + "28-Dec-27 1\n", + "27-Jul-89 1\n", + "Reported 19-Jan-2008 1\n", + "Reported 20-Feb-1936 1\n", + "27-Oct-76 1\n", + "Reported 20-Apr-1960 1\n", + "30-Apr-58 1\n", + "07-Oct-15 1\n", + "07-Jan-52 1\n", + "May-59 1\n", + "27-Jan-67 1\n", + "25-Nov-73 1\n", + "21-Nov-00 1\n", + "21-Jul-12 1\n", + "20-Jan-1887 1\n", + "10-Sep-12 1\n", + "31-Dec-86 1\n", + "28-Jan-63 1\n", + "Reported 03-Apr-1872 1\n", + "15-Jan-80 1\n", + "15-Nov-67 1\n", + "Reported 24-Apr-1866 1\n", + "Feb-61 1\n", + "09-Apr-28 1\n", + "22-Oct-10 1\n", + "Reported 14-Jul-1907 1\n", + "18-Dec-94 1\n", + "02-Oct-11 1\n", + "Mar-75 1\n", + "Reported 06-Aug-2002 1\n", + "Reported 09-Apr-2008 1\n", + "14-Sep-06 1\n", + "14-Jan-96 1\n", + "May-32 1\n", + "14-Apr-61 1\n", + "Reported 1776 1\n", + "30-Nov-81 1\n", + "11-Jan-76 1\n", + "26-Sep-09 1\n", + "Mar-61 1\n", + "17-Jul-00 1\n", + "12-Nov-42 1\n", + "08-Dec-63 1\n", + "20-Jan-05 1\n", + "Reported 05-Sep-1906 1\n", + "12-Dec-09 1\n", + "21-Sep-17 1\n", + " 13-Aug-2013 1\n", + "15-May-61 1\n", + "31-Dec-77 1\n", + "14-Feb-00 1\n", + "04-Feb-40 1\n", + "Reported 02-Feb-1922 1\n", + "30-Mar-63 1\n", + "28-Jul-62 1\n", + "Early Feb-1974 1\n", + "31-Aug-31 1\n", + "08-Aug-14 1\n", + "06-Nov-68 1\n", + "04-Apr-28 1\n", + "29-Dec-75 1\n", + "15-Jun-11 1\n", + "28-Oct-10 1\n", + "May-64 1\n", + "25-Jan-09 1\n", + "03-Apr-91 1\n", + "15-Aug-83 1\n", + "07-Apr-96 1\n", + "1909 1\n", + "Mar-1851 1\n", + "14-Feb-65 1\n", + "29-Feb-60 1\n", + "25-Dec-12 1\n", + "27-Feb-73 1\n", + "07-Jul-61 1\n", + "28-Aug-79 1\n", + "1880 1\n", + "20-Nov-1899 1\n", + "Reported 20-Oct-1893 1\n", + "05-Jun-88 1\n", + "17-Jul-88 1\n", + "13-Sep-62 1\n", + "05-Oct-94 1\n", + "May-68 1\n", + "Oct-59 1\n", + "21-Jul-97 1\n", + "24-Oct-88 1\n", + "19-Jul-30 1\n", + "17-Dec-1742 1\n", + "18-Jan-38 1\n", + "Reported 07-Sep-1876 1\n", + "03-Jun-12 1\n", + "05-Sep-02 1\n", + "13-Apr-11 1\n", + "09-Mar-89 1\n", + "30-Oct-09 1\n", + "02-Oct-04 1\n", + "Reported 26-Sep-1932 1\n", + "28-Sep-70 1\n", + "18-Sep-87 1\n", + "17-Nov-26 1\n", + "02-May-06 1\n", + "05-Jun-89 1\n", + "31-Jul-24 1\n", + "25-Nov-50 1\n", + "26-Jan-60 1\n", + "05-Aug-14 1\n", + "28-Jun-56 1\n", + "Jan-13 1\n", + "31-Oct-32 1\n", + "13-Jun-31 1\n", + "10-Aug-86 1\n", + "27-Dec-38 1\n", + "14-Oct-02 1\n", + "14-Jul-66 1\n", + "23-Mar-11 1\n", + "28-Jun-46 1\n", + "09-Oct-09 1\n", + "Reported 04-Aug-1955 1\n", + "01-Feb-86 1\n", + "22-Jul-00 1\n", + "04-Oct-50 1\n", + "09-Sep-73 1\n", + "24-Nov-08 1\n", + "Reported 11-Apr-1968 1\n", + "Jun-42 1\n", + "16-Nov-1889 1\n", + "31-Dec-11 1\n", + "22-Mar-06 1\n", + "No date, Before Aug-1989 1\n", + "1779 1\n", + "12-Jan-09 1\n", + "15-Jul-11 1\n", + "13-Aug-66 1\n", + "06-May-14 1\n", + "07-Dec-70 1\n", + "10-Sep-63 1\n", + "10-Dec-65 1\n", + "12-Aug-07 1\n", + "06-Aug-16 1\n", + "Reported to have taken place in 1919 1\n", + "21-Apr-61 1\n", + "28-Apr-09 1\n", + "22-Aug-1898 1\n", + "02-Oct-71 1\n", + "22-Aug-07 1\n", + "Reported 26-Oct-1967 1\n", + "24-Aug-60 1\n", + "29-Jun-64 1\n", + "1829 1\n", + "Apr-13 1\n", + "19-Apr-06 1\n", + "12-Jul-26 1\n", + "08-May-55 1\n", + "30-Dec-62 1\n", + "May 1812 1\n", + "22-Mar-93 1\n", + "15-Sep-90 1\n", + "14-Jan-31 1\n", + "18-Oct-24 1\n", + "Feb-23 1\n", + "25-May-09 1\n", + "Reported 22-Jun-1893 1\n", + "03-Mar-1875 1\n", + "24-Dec-52 1\n", + "08-Jul-12 1\n", + "27-Oct-90 1\n", + "29-Nov-29 1\n", + "04-Jul-99 1\n", + "14-Sep-79 1\n", + "02-Jun-66 1\n", + "Mar-1861 1\n", + "May-07 1\n", + "29-Jun-82 1\n", + "10-Mar-25 1\n", + "12-Oct-08 1\n", + "13-Sep-58 1\n", + "Reported 21-Dec-1967 1\n", + "28-Nov-10 1\n", + "07-Jul-13 1\n", + "Feb-1840 1\n", + "09-Apr-05 1\n", + "23-May-94 1\n", + "17-Jun-99 1\n", + "Reported 13-Jul-1853 1\n", + "11-Apr-09 1\n", + "Dec-77 1\n", + "10-Jul-58 1\n", + "15-Oct-62 1\n", + "1880? 1\n", + "25-Apr-65 1\n", + "Reported 06-Aug-1989 1\n", + "15-Feb-53 1\n", + "06-Oct-07 1\n", + "Reported 16-Apr-1971 1\n", + "12-Oct-91 1\n", + "02-Ap-2001 1\n", + "18-Apr-03 1\n", + "22-Jan-64 1\n", + "15-Apr-1882 1\n", + " 19-Jul-2004 Reported to have happened \"on the weekend\" 1\n", + "10-Apr-13 1\n", + "17-Jul-16 1\n", + "11-Dec-00 1\n", + "19-Feb-81 1\n", + "Oct-86 1\n", + "21-Feb-00 1\n", + "12-Apr-63 1\n", + "11-Oct-11 1\n", + "Reported 05-May-1917 1\n", + "29-Nov-1896 1\n", + "13-Feb-48 1\n", + "10-Aug-59 1\n", + "17-Sep-76 1\n", + "Jul-1848 1\n", + "09-Mar-55 1\n", + "Sep-1882 1\n", + "Reported 15-Apr-1869 1\n", + "24-May-50 1\n", + "25-Jun-14 1\n", + "Reported 08-Aug-1907 1\n", + "Ca. 1970 1\n", + "Dec-53 1\n", + "04-Jan-84 1\n", + "Early 1965 1\n", + "09-Feb-75 1\n", + "20-Oct-99 1\n", + "Late May 1993 1\n", + "Reported 02-Jun-1890 1\n", + "Feb-47 1\n", + "Reported 22-May-1818 1\n", + "08-Nov-57 1\n", + "09-May-46 1\n", + "29-Sep-22 1\n", + "22-May-11 1\n", + "Reported 15-Nov-1921 1\n", + "13-Jun-14 1\n", + "08-Jan-76 1\n", + "07-Mar-82 1\n", + "09-Jan-01 1\n", + "24-May-95 1\n", + "09-Nov-97 1\n", + "10-Jun-76 1\n", + "Ca. 1890 1\n", + "Reported 12-Nov-2010 1\n", + "20-Jun-05 1\n", + "16-Dec-29 1\n", + "20-May-81 1\n", + "Dec-1888 1\n", + "1970 1\n", + "28-Sep-1828 1\n", + "Reportd 15-Jul-1894 1\n", + "13-Jun-87 1\n", + "11-May-1817 1\n", + "Reported 1929 1\n", + "1951 1\n", + "09-Aug-75 1\n", + "04-Feb-36 1\n", + "Reported 23-Nov-1951 1\n", + "27-Sep-59 1\n", + "10-Mar-03 1\n", + "08-Mar-42 1\n", + "16-May-60 1\n", + "Reported 01-May-1943 1\n", + "02-Nov-23 1\n", + "13-Jan-49 1\n", + "24-Sep-60 1\n", + "24-Mar-00 1\n", + "23-Jul-05 1\n", + "18-Mar-23 1\n", + "Jul-47 1\n", + "16-Nov-1895 1\n", + "04-Aug-97 1\n", + "15-May-14 1\n", + "Jun-69 1\n", + "25-Sep-00 1\n", + "12-Apr-02 1\n", + "01-Nov-74 1\n", + " 02-Jun-1899 1\n", + "Mar-01 1\n", + "23-Aug-77 1\n", + "25-Oct-11 1\n", + "01-Jan-07 1\n", + "28-Jan-11 1\n", + "Apr-46 1\n", + "27-Nov-03 1\n", + "Reported 23-Feb-1895 1\n", + "Reported 02-Jun-2008 1\n", + "21-May-61 1\n", + "Reported 31-Aug-1959 1\n", + "Oct-62 1\n", + "27-Aug-95 1\n", + "15-May-16 1\n", + "Reported 26-Nov-1885 1\n", + "25-May-03 1\n", + "25-Dec-63 1\n", + "31-Dec-57 1\n", + "23-Mar-06 1\n", + "08-Jan-25 1\n", + "30-Mar-71 1\n", + "05-Aug-02 1\n", + "10-Jun-78 1\n", + "Reported 25-Oct-1890 1\n", + "16-Mar-15 1\n", + "04-Dec-86 1\n", + "19-Apr-58 1\n", + "26-Aug-99 1\n", + "21-Aug-95 1\n", + "22-Jul-144 1\n", + "Reported 13-May-1947 1\n", + "19-Dec-89 1\n", + "01-Jul-15 1\n", + "15-Mar-08 1\n", + "1733 1\n", + "14-Feb-33 1\n", + "24-Jun-06 1\n", + "05-Mar-64 1\n", + "15-May-15 1\n", + "06-Nov-60 1\n", + "04-Jun-05 1\n", + "03-Dec-41 1\n", + "03-Sep-25 1\n", + "16-Feb-05 1\n", + "23-Aug-99 1\n", + "15-Jul-31 1\n", + "15-Mar-1895 1\n", + "Ca. 1955 1\n", + "Reported 26-Sep-t937 1\n", + "03-Feb-97 1\n", + "11-Jul-34 1\n", + "05-Dec-71 1\n", + "13-Nov-37 1\n", + "Reported 30-Aug-1879 1\n", + "22-Jun-83 1\n", + "26-Jan-26 1\n", + "21-Jul-1889 1\n", + "31-May-09 1\n", + "14-Jul-12 1\n", + "27-Dec-61 1\n", + "27-Jan-08 1\n", + "04-Feb-96 1\n", + "03-Aug-04 1\n", + "Reported 02-Jul-1965 1\n", + "Mar-68 1\n", + "24-Aug-76 1\n", + "10-Sep-99 1\n", + "20-Sep-07 1\n", + "Reported 03-Sep-1953 1\n", + "29-Sep-15 1\n", + "Sep-04 1\n", + "11-Jul-98 1\n", + "03-Jun-01 1\n", + "23-Nov-13 1\n", + "09-Jul-57 1\n", + "Reported 1845 1\n", + "17-May-61 1\n", + "21-Aug-92 1\n", + "08-Apr-61 1\n", + "07-Sep-10 1\n", + "13-Aug-09 1\n", + "30-Jul-04 1\n", + "01-Jan-40 1\n", + "07-Feb-02 1\n", + "28-Nov-93 1\n", + "21-Oct-95 1\n", + "16-Feb-46 1\n", + "01-Sep-37 1\n", + "28-Mar-04 1\n", + "05-Jan-46 1\n", + "Reported 29-Oct-2009 1\n", + "19-Jun-12 1\n", + "09-Jul-06 1\n", + "Aug-36 1\n", + "13-Jun-59 1\n", + "Jun-10 1\n", + "07-Jul-09 1\n", + " 19-Aug-1993 1\n", + "03-Jul-27 1\n", + " 14-Sep-2013 1\n", + "Late Aug-1982 1\n", + "06-Jan-15 1\n", + "21-Jan-28 1\n", + "10-May-48 1\n", + "Reported 30-Dec-1919 1\n", + "23-Jul-80 1\n", + "07-Jul-49 1\n", + "23-Jan-09 1\n", + "26-Jun-09 1\n", + "05-Jul-70 1\n", + "08-Nov-1853 1\n", + "Reported 24-May-1944 1\n", + "28-Jan-1872 1\n", + "24-Aug-35 1\n", + "20-Mar-67 1\n", + "12-Sep-37 1\n", + "18-Mar-15 1\n", + "01-Mar-1811 1\n", + "01-Nov-90 1\n", + "No date, Before 1969 1\n", + "11-Dec-21 1\n", + "28-Sep-07 1\n", + "05-Feb-62 1\n", + "Mar-79 1\n", + "01-Mar-12 1\n", + "15-Jan-11 1\n", + "1898-1899 1\n", + "Reported 04-Jan-1868 1\n", + "19-Sep-91 1\n", + "Before Mar-1956 1\n", + "Reported 18-Jan-1893 1\n", + "12-Jan-04 1\n", + "24-Jul-12 1\n", + "26-Feb-39 1\n", + "Reported 26-May-1954 1\n", + "24-Sep-00 1\n", + "Between May & Nov-1993 1\n", + "10-Feb-75 1\n", + "Between 01-Aug-1951 & 08-Aug-1951 1\n", + "26-Dec-10 1\n", + "10-Mar-15 1\n", + "Reported 26-Jan-2009 1\n", + "17-Jan-85 1\n", + "06-Apr-94 1\n", + "29-Sep-06 1\n", + "09-Mar-35 1\n", + "18-Feb-86 1\n", + "29-Aug-01 1\n", + "Reported 23-Sep-1901 1\n", + "Feb-62 1\n", + "03-Feb-99 1\n", + "06-Jun-77 1\n", + " 04-Sep-2010 1\n", + "15-Jun-45 1\n", + "14-Mar-88 1\n", + "23-Nov-01 1\n", + "13-Nov-64 1\n", + "16-Mar-11 1\n", + "06-Jul-99 1\n", + "10-Aug-97 1\n", + "02-Sep-10 1\n", + "31-Dec-08 1\n", + "06-Aug-45 1\n", + "03-Jan-1880 1\n", + "20-Jan-97 1\n", + "11-Aug-68 1\n", + "11-Aug-13 1\n", + "29-Dec-09 1\n", + "30-Nov-13 1\n", + "Reported 15-Jan-2004 1\n", + "14-Jan-38 1\n", + "04-Jul-24 1\n", + "Reported 23-Oct-1852 1\n", + "Reported 26-Jul-2003 1\n", + "16-Mar-31 1\n", + "07-Oct-14 1\n", + "01-Sep-16 1\n", + "21-Nov-87 1\n", + "27-Feb-66 1\n", + "12-Mar-07 1\n", + "14-Jul-20 1\n", + "13-May-02 1\n", + "24-Dec-05 1\n", + "03-May-01 1\n", + "14-Oct-71 1\n", + "16-Mar-1877 1\n", + "14-Oct-88 1\n", + "09-Jul-14 1\n", + "25-Mar-08 1\n", + "14-Apr-1839 1\n", + "12-Aug-98 1\n", + "Jun-54 1\n", + "25-Jul-1862 1\n", + "18-Jan-06 1\n", + "\"Anniversary Day\" 22-Jan-1850 or 1852 1\n", + "1898 (soon after the close of the Spanish-American War) 1\n", + "Said to be 1941-1945, more likely 1945 1\n", + "13-Apr-49 1\n", + "Early Jun-2000 1\n", + "02-Jan-95 1\n", + "03-Jun-89 1\n", + "02-Jul-32 1\n", + "23-Dec-71 1\n", + "1981 1\n", + "23-Jan-16 1\n", + "10-Nov-00 1\n", + "Reported 27-Nov-2010 1\n", + "14-Nov-00 1\n", + "08-Aug-12 1\n", + "05-May-81 1\n", + "13-Sep-66 1\n", + "Ca. 1840 1\n", + "10-Dec-96 1\n", + "04-Mar-42 1\n", + "Reported 07-May-2011 1\n", + "15-Apr-94 1\n", + "23-Jul-75 1\n", + "01-Aug-61 1\n", + "12-Jun-99 1\n", + "22-Sep-68 1\n", + "14-Jun-31 1\n", + "Reported 16-Jul-1937 1\n", + "Feb-27 1\n", + "Before Feb-1998 1\n", + "Sep-92 1\n", + "10-Mar-05 1\n", + "14-Mar-44 1\n", + "11-Jul-08 1\n", + "05-Jul-1787 1\n", + "17-Jan-1837 1\n", + "01-Jun-15 1\n", + "26-Jul-56 1\n", + "03-Mar-85 1\n", + "22-Feb-12 1\n", + "29-Jun-93 1\n", + "08-Sep-07 1\n", + "09-Jun-99 1\n", + "27-Jul-91 1\n", + "25-May-15 1\n", + "13-Dec-09 1\n", + "04-Jan-22 1\n", + "Before 1901 1\n", + "05-Mar-1863 1\n", + "10-Apr-09 1\n", + "Before 1909 1\n", + "26-Jun-36 1\n", + "22-Nov-12 1\n", + "Reported 25-Jun-2015 1\n", + "21-May-13 1\n", + "16-Dec-51 1\n", + "04-Feb-62 1\n", + "26-Jul-75 1\n", + "24-Jul-57 1\n", + "31-Mar-40 1\n", + "20-Apr-74 1\n", + "07-Nov-01 1\n", + "Reported 04-Feb-2011 1\n", + "02-Dec-68 1\n", + "Ca . 1825 1\n", + "2003? 1\n", + "Last incident of 1994 in Hong Kong 1\n", + "Early Nov-1966 1\n", + "22-Apr-80 1\n", + "30-May-98 1\n", + "04-Jan-14 1\n", + "22-Oct-89 1\n", + "18-May-26 1\n", + "09-Sep-08 1\n", + "02-Jun-04 1\n", + "15-Jan-54 1\n", + "Reported 26-Sep-1785 1\n", + "15-Jul-1874 1\n", + "15-Feb-30 1\n", + "25-May-05 1\n", + "Dec-08 1\n", + "19-Jul-88 1\n", + "01-Apr-98 1\n", + "Feb-77 1\n", + "29-Dec-54 1\n", + "06-Feb-1876 1\n", + "09-Oct-34 1\n", + "Reported 27-Apr-1931 1\n", + "06-Sep-15 1\n", + "20-Sep-67 1\n", + "17-Apr-13 1\n", + " 19-Feb-2016 1\n", + "28-Aug-14 1\n", + "10-Dec-48 1\n", + "29-Oct-00 1\n", + "15-Jul-13 1\n", + "05-Aug-79 1\n", + "27-Jan-34 1\n", + "18-Jun-06 1\n", + "18-Jan-42 1\n", + "08-Jan-15 1\n", + "28-Aug-02 1\n", + "Apr-58 1\n", + "13-Oct-82 1\n", + "17-Aug-10 1\n", + "26-Jan-13 1\n", + "1755 1\n", + "19-Sep-18 1\n", + "09-Dec-68 1\n", + "02-Mar-14 1\n", + "30-Jan-60 1\n", + "27-Feb-54 1\n", + "21-Sep-03 1\n", + "06-Jun-89 1\n", + "12-30-1980 1\n", + "14-May-1876 1\n", + "13-Nov-35 1\n", + "1867 1\n", + "Reported 02-Jul-1954 1\n", + "Reported 30-March-1878 1\n", + "10-Oct-04 1\n", + "03-Dec-52 1\n", + "02-Nov-75 1\n", + "Before 2009 1\n", + "31-Aug-30 1\n", + "29-Aug-81 1\n", + "1776 1\n", + "26-Dec-59 1\n", + "Sep-17 1\n", + "21-May-06 1\n", + "Sep-1805 1\n", + "21-Apr-09 1\n", + "Reported 10-Sep-1845 1\n", + "Reported 10-Aug-1949 1\n", + "18-Aug-31 1\n", + "08-Jan-62 1\n", + "01-Jan-60 1\n", + "Reported 19-Apr-2008 1\n", + "06-Oct-87 1\n", + "Reported 18-Feb-1950 1\n", + "22-May-16 1\n", + "01-May-14 1\n", + "18-Nov-33 1\n", + "18-Aug-11 1\n", + "04-Feb-05 1\n", + "26-Dec-80 1\n", + "02-Oct-12 1\n", + "10-Jul-68 1\n", + "24-Aug-99 1\n", + "21-Jan-73 1\n", + " 15-Feb-1988 1\n", + "14-Mar-1858 1\n", + "12-Nov-11 1\n", + "Reported in 1847 1\n", + "Reported 24-Jan-2001 1\n", + "No date, Before Mar-1995 1\n", + "16-Oct-81 1\n", + "28-May-94 1\n", + "03-Apr-06 1\n", + "20-Mar-46 1\n", + "22-Jan-63 1\n", + "07-Apr-04 1\n", + "Reported 16-Apr-1994 1\n", + "12-Jun-01 1\n", + "08-Nov-11 1\n", + "05-Aug-97 1\n", + "26-Aug-07 1\n", + "03-Nov-85 1\n", + "17-Aug-75 1\n", + "22-Nov-59 1\n", + "08-Nov-84 1\n", + "29-May-01 1\n", + "Feb-95 1\n", + "Reported 26-Jun-1959 1\n", + "Reported 14-Feb-1906 1\n", + "Jul-88 1\n", + "08-Aug-1880 1\n", + "07-Sep-61 1\n", + "15-Jan-22 1\n", + "24-Nov-2005- 1\n", + "Apr-47 1\n", + "31-Dec-66 1\n", + "28-Jun-32 1\n", + "30-Mar-16 1\n", + " 15-Jun-1937 1\n", + "Jul-86 1\n", + "04-Sep-05 1\n", + "27-Sep-78 1\n", + "23-Sep-45 1\n", + "24-Feb-57 1\n", + "25-Sep-71 1\n", + "04-Mar-81 1\n", + "09-Jan-24 1\n", + "26-Feb-99 1\n", + "05-Sep-70 1\n", + "11-Jun-15 1\n", + "05-Aug-34 1\n", + "25-Jan-06 1\n", + "19-Jun-92 1\n", + "Jun-51 1\n", + "26-Jul-1830 1\n", + "19-Feb-87 1\n", + "Jul-45 1\n", + "01-Sep-58 1\n", + "24-Feb-91 1\n", + "Jan-28 1\n", + "16-Mar-19 1\n", + "17-Oct-83 1\n", + "22-May-51 1\n", + "1976 1\n", + "01-Jan-81 1\n", + "Reported 06-Sep-1926 1\n", + "06-Jun-50 1\n", + "21-Apr-06 1\n", + "24-Sep-05 1\n", + "11-Nov-1855 1\n", + "17-Apr-49 1\n", + "03-Mar-12 1\n", + "20-Nov-49 1\n", + "02-Mar-22 1\n", + "14-Mar-43 1\n", + "04-May-12 1\n", + "21-Dec-02 1\n", + "19-Mar-05 1\n", + "14-May-1882 1\n", + "Reported 07-May-1957 1\n", + "11-Dec-55 1\n", + "Reported 04-Nov-1957 1\n", + "10-Jan-65 1\n", + "07-Jun-16 1\n", + "10-Nov-1879 1\n", + "13-Oct-68 1\n", + "20-Jun-08 1\n", + "11-Jul-30 1\n", + "27-Jul-64 1\n", + "1911 1\n", + "21-Aug-71 1\n", + "Reported 21-Apr-1892 1\n", + "30-Jan-81 1\n", + "07-Aug-95 1\n", + "30-Apr-02 1\n", + "23-Apr-11 1\n", + "11-Aug-12 1\n", + "05-Apr-43 1\n", + "Jun-41 1\n", + "Reported 03-Oct-1889 1\n", + "Dec-62 1\n", + "23-Jun-15 1\n", + "11-May-30 1\n", + "Reported 27-Sep-1939 1\n", + "13-Jan-12 1\n", + " 22-Jul-2013 1\n", + "20-Oct-23 1\n", + "21-Jan-62 1\n", + "1950 - 1951 1\n", + "09-Aug-32 1\n", + "20-Oct-14 1\n", + "02-Dec-30 1\n", + "1986 1\n", + "Reported 08-Dec-1884 1\n", + "16-Jul-14 1\n", + "11-Aug-96 1\n", + "21-Dec-05 1\n", + "15-Jun-37 1\n", + "02-Apr-01 1\n", + "Reported 31-Dec-1891 1\n", + "21-Nov-05 1\n", + "10-Jul-62 1\n", + "Nov-67 1\n", + "03-Mar-14 1\n", + "18-Dec-67 1\n", + "01-Aug-39 1\n", + "12-Mar-36 1\n", + "14-Nov-61 1\n", + "07-Sep-08 1\n", + "04-Jan-93 1\n", + "06-Jan-92 1\n", + "14-Apr-74 1\n", + "04-Nov-63 1\n", + "26-Jun-80 1\n", + "20-Aug-07 1\n", + "Reported 11-Jan-1921 1\n", + "Some time between Apr & Nov-1944 1\n", + "25-Jan-97 1\n", + "16-Feb-61 1\n", + "Reported 04-Sep-1909 1\n", + "28-Sep-81 1\n", + "24-Oct-13 1\n", + "14-Oct-84 1\n", + "25-Nov-06 1\n", + "17-Jan-03 1\n", + "23-Jun-55 1\n", + "25-Jul-98 1\n", + "30-Sep-59 1\n", + "10-Jun-02 1\n", + "17-Sep-15 1\n", + "15-Apr-08 1\n", + "Feb-68 1\n", + "10-Aug-74 1\n", + "Oct-67 1\n", + "07-Oct-06 1\n", + "Reported 29-Oct-1926 1\n", + "14-Oct-69 1\n", + "09-Apr-1885 1\n", + "1917 1\n", + "25-Jun-68 1\n", + "08-Aug-23 1\n", + "05-Sep-07 1\n", + "18-May-63 1\n", + "29-Nov-64 1\n", + "27-Dec-58 1\n", + "26-Sep-15 1\n", + "13-Mar-16 1\n", + "Reported 25-Aug-2014 1\n", + "Reported 25-Mar-1893 1\n", + "Reported 09-Jul-1914 1\n", + "16-Jan-62 1\n", + "05-Apr-01 1\n", + "02-Sep-62 1\n", + "Reported 12-Sep-1894 1\n", + "10-Apr-88 1\n", + "Reported 30-Nov-1872 1\n", + "05-Mar-05 1\n", + "19-Apr-87 1\n", + "08-Feb-14 1\n", + "07-Sep-71 1\n", + "16-Aug-99 1\n", + "Jan-1889 1\n", + "9-Aug-1890 1\n", + "02-Feb-89 1\n", + "17-Sep-16 1\n", + "02-Oct-00 1\n", + "21-Sep-35 1\n", + "Jun-83 1\n", + "29-Jul-05 1\n", + "28-May-06 1\n", + "Before 2004 1\n", + "13-Dec-70 1\n", + "25-Apr-61 1\n", + "24-Nov-24 1\n", + "Ca. 1543 1\n", + "11-Aug-59 1\n", + "May-52 1\n", + "14-Feb-88 1\n", + "05-May-79 1\n", + "13-Jun-95 1\n", + " Jul-1898 1\n", + "1994 1\n", + "10-May-1788 1\n", + "21-Jun-57 1\n", + "Reported 12-Apr-1935 1\n", + "Before 17-Jul-1916 1\n", + "05-Jan-00 1\n", + "07-Sep-64 1\n", + "13-Jan-76 1\n", + "14-Feb-92 1\n", + "29-Apr-68 1\n", + " 28-Jan-1900 1\n", + "04-Jun-96 1\n", + "29-Jan-41 1\n", + "16-Dec-13 1\n", + "10-Mar-92 1\n", + "Reported 26-Feb-1883 1\n", + "28-Sep-22 1\n", + "10-Nov-59 1\n", + "02-Sep-1865 1\n", + "05-Jul-75 1\n", + "Reported 08-Jul-1908 1\n", + "03-Sep-93 1\n", + "16-Aug-73 1\n", + "15-Jul-53 1\n", + "Dec-30 1\n", + "10-Oct-11 1\n", + "06-Aug-83 1\n", + "Mar-1949 or Apr-1949 1\n", + "26-Jun-77 1\n", + "11-Dec-04 1\n", + "19-Jul-11 1\n", + "Jan-41 1\n", + "Reported 08-Jul-1899 1\n", + "12-Jul-97 1\n", + "02-Nov-04 1\n", + "01-Aug-31 1\n", + "17-Mar-26 1\n", + "25-Aug-73 1\n", + "12-Aug-59 1\n", + "11-Sep-84 1\n", + "1888 1\n", + "28-Sep-85 1\n", + "26-Apr-1886 1\n", + "Reported 30-Jan-1893 1\n", + "30-Apr-61 1\n", + "06-Jan-1835 1\n", + "22-Mar-31 1\n", + "12-Mar-47 1\n", + "28-Feb-59 1\n", + "20-Sep-05 1\n", + "18-Dec-06 1\n", + "Sep-08 1\n", + "12-Mar-67 1\n", + "Oct-70 1\n", + "25-May-69 1\n", + "30-Oct-12 1\n", + "22-Jul-11 1\n", + "1960-1961 1\n", + "24-Oct-03 1\n", + "26-Jul-71 1\n", + "23-Sep-05 1\n", + "22-Sep-98 1\n", + "18-Aug-46 1\n", + "Before Oct-2009 1\n", + "14-Apr-60 1\n", + "25-Apr-35 1\n", + "04-Sep-36 1\n", + "07-Jul-14 1\n", + "Nov-93 1\n", + "30-Jul-64 1\n", + "07-Apr-90 1\n", + "29-Aug-04 1\n", + "15-Jan-06 1\n", + "17-Jun-15 1\n", + "19-Apr-10 1\n", + "01-Feb-13 1\n", + "Reported 06-Sep-1961 1\n", + "16-Apr-11 1\n", + "03-Jul-15 1\n", + "Reported 12-Apr-2014 1\n", + "30-Sep-1855 1\n", + "01-Oct-10 1\n", + "01-Dec-36 1\n", + "04-Feb-04 1\n", + "08-Aug-1878 1\n", + "Reported 12-Nov-1992 1\n", + "04-Jun-62 1\n", + "29-Jul-16 1\n", + "11-Oct-92 1\n", + "11-Jun-66 1\n", + "24-Feb-60 1\n", + "15-Dec-98 1\n", + "10-Mar-1891 1\n", + "22-Mar-83 1\n", + "28-Mar-60 1\n", + "10-Dec-40 1\n", + "01-May-50 1\n", + "19-Jul-12 1\n", + "25-Jan-13 1\n", + "31-Mar-70 1\n", + "20-Jun-32 1\n", + "Reported 15-Feb-1933 1\n", + "Fall 1993 1\n", + "Reported 14-Apr-1928 1\n", + "23-Jul-06 1\n", + "02-Sep-59 1\n", + "12-Oct-27 1\n", + "07-Oct-59 1\n", + "11-Sep-00 1\n", + "29-Nov-62 1\n", + "27-Nov-12 1\n", + "25-Sep-04 1\n", + "11-May-57 1\n", + "26-Aug-98 1\n", + "12-Mar-25 1\n", + "16-May-77 1\n", + "31-Aug-00 1\n", + "12-Feb-16 1\n", + "30-Aug-98 1\n", + "01-Feb-75 1\n", + "07-Aug-16 1\n", + "Reported 08-Jul-1819 1\n", + "02-Jul-13 1\n", + "01-Oct-95 1\n", + "24-Jul-94 1\n", + "31-May-16 1\n", + "10-Aug-80 1\n", + "21-Jun-62 1\n", + "20-Apr-27 1\n", + "06-Jan-09 1\n", + "17-Aug-49 1\n", + "Reported 26-Oct-1946 1\n", + "Some time between 08-Jan-1928 & 21-Jan-1928 1\n", + "07-Apr-05 1\n", + "Reported 09-Jan-1873 1\n", + "09-Mar-00 1\n", + "30-Dec-08 1\n", + "11-Mar-95 1\n", + "23-Feb-75 1\n", + "25-Aug-16 1\n", + "06-Jan-87 1\n", + "26-Mar-50 1\n", + "13-Feb-06 1\n", + "Reported 07-May-1952 1\n", + "08-Sep-15 1\n", + "22-Dec-15 1\n", + "Reported 08-Apr-1911 1\n", + "Reported 25-Apr-2009 1\n", + "15-Jul-50 1\n", + "03-Jun-1862 1\n", + "13-Nov-1881 1\n", + "31-Aug-77 1\n", + "02-May-13 1\n", + "13-Jul-05 1\n", + "Jun-89 1\n", + "11-Nov-85 1\n", + "30-Dec-57 1\n", + "08-Mar-38 1\n", + "18-Jun-08 1\n", + "27-Jan-28 1\n", + "24-Mar-02 1\n", + "30-Nov-1847 1\n", + "Sep-75 1\n", + "17-Nov-02 1\n", + "Reported 27-Sep-2005 1\n", + "25-Dec-72 1\n", + "22-Apr-60 1\n", + "22-Jun-03 1\n", + "11-Sep-1887 1\n", + "05-Dec-13 1\n", + "21-Mar-95 1\n", + "25-Oct-60 1\n", + "20-Apr-02 1\n", + " 01-Dec-1979 1\n", + "05-Dec-00 1\n", + "Aug-92 1\n", + "Reported 14-Jul-1932 1\n", + "04-Feb-07 1\n", + "19-Jun-15 1\n", + "03-Nov-15 1\n", + "02-Feb-62 1\n", + "05-Sep-99 1\n", + "17-Sep-84 1\n", + "08-Dec-1846 1\n", + "06-Oct-76 1\n", + "07-Jan-78 1\n", + "25-May-11 1\n", + "19-May-60 1\n", + "1919 1\n", + "20-Oct-56 1\n", + "11-Jan-66 1\n", + "04-Sep-06 1\n", + "Reported 06-Jun-1948 1\n", + "10-Aug-67 1\n", + "18-Jun-61 1\n", + "05-Dec-22 1\n", + "11-Apr-71 1\n", + "27-Oct-12 1\n", + "Reported 17-Dec-1896 1\n", + "19-Jan-02 1\n", + "20-Oct-11 1\n", + "27-Feb-13 1\n", + "21-Dec-79 1\n", + "15-Sep-81 1\n", + "03-Jul-01 1\n", + "03-Feb-20 1\n", + "15-Jun-12 1\n", + "24-Oct-44 1\n", + "07-Apr-26 1\n", + "09-Apr-29 1\n", + "05-Sep-08 1\n", + "22-Jun-1898 1\n", + "30-Jul-91 1\n", + "Reported 14-Sep-1895 1\n", + "Before 1908 1\n", + "Aug-57 1\n", + "Reported 17-Jul-2006 1\n", + "02-Jun-1886 1\n", + "30-Dec-53 1\n", + "28-Jul-07 1\n", + "11-Aug-09 1\n", + "19-Mar-02 1\n", + "01-Oct-81 1\n", + "01-Nov-1896 1\n", + "03-Sep-44 1\n", + "03-Apr-89 1\n", + "04-Jan-1877 1\n", + "24-Oct-97 1\n", + "16-Jan-96 1\n", + "21-Aug-01 1\n", + "21-Jun-11 1\n", + "Reported 22-Dec-1902 1\n", + "12-Sep-09 1\n", + "28-Jan-87 1\n", + "05-Apr-04 1\n", + "24-Jul-76 1\n", + "Reported 01-Nov-1902 1\n", + "11-Oct-08 1\n", + "11-Nov-09 1\n", + "13-Feb-10 1\n", + "21-Sep-13 1\n", + "Reported 22-Aug-1980 1\n", + "20-Aug-61 1\n", + "19-Dec-12 1\n", + "24-Apr-13 1\n", + "Reported 17-Jul-1938 1\n", + "24-Dec-1879 1\n", + "04-Jun-16 1\n", + "14-Nov-02 1\n", + "16-Jul-49 1\n", + "07-Dec-83 1\n", + "20-Mar-22 1\n", + "10-Mar-1879 1\n", + "21-Oct-04 1\n", + "Reported 01-May-1911 1\n", + "20-Aug-59 1\n", + "Reported 31-Dec-1955 1\n", + "18-Feb-93 1\n", + "07-Jul-00 1\n", + "09-Apr-90 1\n", + "30-Jun-93 1\n", + "Reported 22-Jan-2012 1\n", + "22-Oct-08 1\n", + "24-Aug-68 1\n", + "22-Dec-83 1\n", + "28-Jul-49 1\n", + "06-Feb-55 1\n", + "10-Nov-16 1\n", + "3-Jul-1879 1\n", + "16-Jan-15 1\n", + "09-Jul-02 1\n", + "18-May-86 1\n", + "24-Dec-56 1\n", + "23-Jan-93 1\n", + "05-Aug-59 1\n", + "01-Jan-62 1\n", + "08-Jun-98 1\n", + "31-Jan-80 1\n", + "Reported 03-Dec-2010 1\n", + "11-Feb-09 1\n", + "17-Apr-98 1\n", + "29-Sep-73 1\n", + "Reported 04-Sep-1935 1\n", + "27-Aug-67 1\n", + "Reported 11-Sep-1896 1\n", + "29-May-27 1\n", + "24-Jun-1892 1\n", + "10-Aug-1875 1\n", + "05-Jul-08 1\n", + "26-Dec-90 1\n", + "04-Apr-74 1\n", + "11-Jul-13 1\n", + "21-Jun-08 1\n", + "12-Sep-03 1\n", + "10-Dec-13 1\n", + "05-Aug-74 1\n", + "26-Aug-12 1\n", + "Nov-82 1\n", + "19-Aug-03 1\n", + "29-Sep-99 1\n", + "19-Sep-00 1\n", + "23-May-08 1\n", + "13-May-14 1\n", + "16-Jan-85 1\n", + "10-Jan-66 1\n", + "Jul-50 1\n", + "11-Dec-06 1\n", + "22-Sep-62 1\n", + "23-Jun-76 1\n", + "25-Jul-11 1\n", + "01-May-99 1\n", + "26-Jan-14 1\n", + "06-Jan-10 1\n", + "06-Jul-11 1\n", + "28-Jan-1899 1\n", + "02-Nov-68 1\n", + "04-Mar-56 1\n", + "11-Nov-37 1\n", + "01-Aug-95 1\n", + "Reported 18-Sep-2006 1\n", + "Before 2016 1\n", + "09-May-15 1\n", + "06-Jan-01 1\n", + "27-Feb-59 1\n", + "01-Jul-58 1\n", + "10-Jun-12 1\n", + "1980 1\n", + "Reported 19-Mar-1953 1\n", + "15-Feb-89 1\n", + "10-Feb-55 1\n", + "19-Feb-60 1\n", + "No date, Before 8-May-1965 1\n", + "21-Oct-05 1\n", + "09-Dec-07 1\n", + "22-Feb-05 1\n", + "26-Mar-07 1\n", + "12-Feb-84 1\n", + "19-Sep-1849 1\n", + "19-Sep-82 1\n", + "25-Jut-1881 1\n", + "28-Jan-06 1\n", + "09-Apr-07 1\n", + "26-Jul-99 1\n", + "12-Jan-39 1\n", + "03-Apr-12 1\n", + "Summer 1942 1\n", + "Jul-68 1\n", + "26-Jul-98 1\n", + "Circa 1855 1\n", + "19-Mar-36 1\n", + "10-Sep-92 1\n", + "15-Jan-55 1\n", + "25-Nov-94 1\n", + "01-Oct-05 1\n", + "Jan-64 1\n", + "04-Apr-53 1\n", + "07-Jan-04 1\n", + "Reported 25-Apr-1916 1\n", + "17-Apr-08 1\n", + "19-Nov-10 1\n", + "26-Apr-03 1\n", + "No date, Before May-1996 1\n", + "13-Apr-15 1\n", + "14-Mar-93 1\n", + "16-Aug-66 1\n", + "27-Jun-54 1\n", + "Summer 1943 1\n", + "22-Jul-14 1\n", + "May-56 1\n", + "11-Aug-07 1\n", + "07-Jan-31 1\n", + "17-Apr-09 1\n", + "27-Sep-66 1\n", + "05-May-1862 1\n", + "Before 1916 1\n", + "06-Feb-15 1\n", + "Summer-2008 1\n", + "Summer 1948 1\n", + "10-Feb-64 1\n", + "14-Jul-13 1\n", + "18-Jul-09 1\n", + "21-Aug-68 1\n", + "05-Jan-57 1\n", + "30-Sep-42 1\n", + "09-Jul-50 1\n", + "16-May-07 1\n", + "10-Oct-88 1\n", + "12-Jan-29 1\n", + "Reported 28-Jun-2012 1\n", + "17-Dec-87 1\n", + "30-Jun-71 1\n", + "03-Sep-13 1\n", + "26-Aug-01 1\n", + "Aug-1871 1\n", + "Nov-55 1\n", + "Reported 12-Feb-1861 1\n", + "15-Nov-05 1\n", + "28-Oct-47 1\n", + "1845-1853 1\n", + " 28-Jan-1877 1\n", + "19-Jul-15 1\n", + "18-Oct-1887 1\n", + "04-Jul-53 1\n", + "21-Apr-98 1\n", + "Before 1876 1\n", + "30-Oct-66 1\n", + "01-Nov-44 1\n", + "Reported 17-Feb-1877 1\n", + "01-Jan-97 1\n", + "Reported 03-Feb-1930 1\n", + "13-Oct-1878 1\n", + "13-Jul-52 1\n", + " Reported 31-Jul-1958 1\n", + "22-Sep-60 1\n", + "14-Dec-08 1\n", + "Reported 22-May-1871 1\n", + "21-May-83 1\n", + "02-Sep-14 1\n", + "23-Aug-64 1\n", + " 2-Jul-1997 1\n", + "22-Apr-14 1\n", + "10-May-96 1\n", + "05-Sep-1881 1\n", + "24-Mar-1871 1\n", + "10-Mar-84 1\n", + "14-Apr-90 1\n", + "12-Jan-96 1\n", + "30-Jan-94 1\n", + "04-Dec-63 1\n", + "Reported 31-Oct-1924 1\n", + "04-Jan-06 1\n", + "02-Feb-64 1\n", + "Late 1970s 1\n", + "25-Jul-00 1\n", + "Reported 15-Dec-1909 1\n", + "16-Feb-10 1\n", + "12-Jul-36 1\n", + "12-Sep-65 1\n", + "06-Jul-02 1\n", + "08-Apr-27 1\n", + "Reported 25-Sep-1861 1\n", + "15-Dec-17 1\n", + "23-Jan-96 1\n", + "Reported 21-Feb-2008 1\n", + "25-Feb-1890 1\n", + "Reported 22-Dec-1887 1\n", + "27-Oct-56 1\n", + "Reported 04-Dec-1897 1\n", + "Reported 24-Aug-1928 1\n", + "08-Feb-24 1\n", + "Ca. 214 B.C. 1\n", + "1791 1\n", + "20-Feb-68 1\n", + "10-Dec-08 1\n", + "07-Jun-08 1\n", + "23-Feb-47 1\n", + "02-Mar-16 1\n", + "19-Apr-46 1\n", + "Reported 04-Jul-1954 1\n", + "26-Mar-1703 1\n", + "08-Jun-08 1\n", + "2004 1\n", + "01-Dec-60 1\n", + "28-Jan-16 1\n", + "25-Jul-10 1\n", + "05-Mar-95 1\n", + "15-Aug-06 1\n", + "12-Feb-72 1\n", + "29-Aug-69 1\n", + "10-May-02 1\n", + "22-Apr-07 1\n", + "30-Oct-77 1\n", + "Jul-05 1\n", + "Late Jul-2003 1\n", + "12-May-07 1\n", + "24-Nov-09 1\n", + "16-Jan-13 1\n", + "26-Apr-77 1\n", + "06-Dec-51 1\n", + "Reported 09-Oct-1852 1\n", + "09-Sep-12 1\n", + "12-Mar-14 1\n", + "Reported 10-April 1906 1\n", + "29-Jan-82 1\n", + "25-Nov-09 1\n", + "28-Jul-1855 1\n", + "27-Sep-81 1\n", + "Reported 17-Jan-1914 1\n", + "23-Jul-88 1\n", + "Mar-73 1\n", + "30-Sep-11 1\n", + "22-Nov-89 1\n", + "15-May-80 1\n", + "21-Mar-13 1\n", + "17-Jan-35 1\n", + "05-Jan-10 1\n", + "Feb-55 1\n", + "Reported 21-May-2002 1\n", + "30-Nov-84 1\n", + "Reported 02-Dec-1926 1\n", + "Before 1996 1\n", + "29-Aug-60 1\n", + "24-Jun-64 1\n", + "Reported 28-Jan-2000 1\n", + "15-Apr-1822 1\n", + "24-Nov-1872 1\n", + "07-Jul-81 1\n", + "11-Nov-39 1\n", + "28-Aug-08 1\n", + "15-Dec-1892 1\n", + "03-May-05 1\n", + "Reported 14-Jun-2011 1\n", + "15-Sep-68 1\n", + "09-Mar-37 1\n", + "02-Mar-1943 to 07-Mar-1943 1\n", + "Reported 26-May-1870 1\n", + "09-Jan- 1874 1\n", + "29-Oct-68 1\n", + "04-Apr-03 1\n", + "19-Sep-95 1\n", + "26-Dec-1860 1\n", + "16-Sep-45 1\n", + "26-Aug-65 1\n", + "02-Dec-89 1\n", + "Reported 20-Nov-2011 1\n", + "13-Jun-1881 1\n", + "22-Jan-04 1\n", + "13-Jan-22 1\n", + "03-Apr-08 1\n", + " 11-Mar-1877 1\n", + "16-Jan-44 1\n", + "29-May-60 1\n", + "17-Apr-05 1\n", + "18-Nov-64 1\n", + "07-Jun-62 1\n", + "28-Jul-1873 1\n", + "18-Jul-08 1\n", + "Reported 13-Mar-1948 \"Bitten last weekend 1\n", + "Early 1963 1\n", + "No date (3 days after preceding incident) & prior to 19-Jul-1913 1\n", + "13-Apr-16 1\n", + "13-Jun-82 1\n", + "21-Dec-47 1\n", + " 03-Feb-1914 1\n", + "03-Jan-94 1\n", + "Reported 22-Aug-1960 1\n", + "20-Aug-56 1\n", + "Aug-60 1\n", + " 22-Sep-1879 1\n", + "17-Jun-38 1\n", + "Before 2006 1\n", + "26-Oct-87 1\n", + "21-Aug-60 1\n", + " Jan-1970 1\n", + "29-Aug-72 1\n", + "23-May-81 1\n", + "07-Jul-36 1\n", + "12-Jul-06 1\n", + "Reported 28-Oct-1995 1\n", + "09-May-42 1\n", + "Reported 09-Jan-1858 1\n", + "1899 1\n", + "21-Jul-92 1\n", + "Reported 02-April 1906 1\n", + "11-Dec-10 1\n", + "20-Aug-44 1\n", + "31-Oct-13 1\n", + "11-Sep-1942 to 16-Sep-1942 1\n", + "15-Aug-12 1\n", + "14-Jul-14 1\n", + "20-Nov-54 1\n", + "15-Mar-06 1\n", + "03-May-10 1\n", + "23-Jun-44 1\n", + "14-Nov-58 1\n", + "11-Sep-05 1\n", + "04-Mar-12 1\n", + "01-Sep-67 1\n", + "19-Aug-88 1\n", + "02-Dec-13 1\n", + "Reported 09-Jan-1970 1\n", + "14-Jan-98 1\n", + "27-Jun-09 1\n", + "30-Jul-45 1\n", + "01-Apr-02 1\n", + "09-Jan-74 1\n", + "27-Oct-71 1\n", + "Reported 28-Aug-1884 1\n", + "20-Jul-03 1\n", + "20-Apr-97 1\n", + "13-Sep-14 1\n", + "26-Sep-61 1\n", + "Reported 29-Aug-1871 1\n", + "Reported 11-Dec-1932 1\n", + "19-Oct-05 1\n", + "Reported 16-Sep-1999 1\n", + "11-Mar-80 1\n", + "12-Aug-14 1\n", + "19-Oct-14 1\n", + "19-Jul-85 1\n", + "1844 1\n", + "29-Jul-67 1\n", + "26-Jan-62 1\n", + " 16-Feb-1910 1\n", + "15-Mar-51 1\n", + "31-Dec-72 1\n", + "08-Apr-66 1\n", + "06-Nov-08 1\n", + "07-Jun-14 1\n", + "03-Feb-00 1\n", + "08-Sep-66 1\n", + "14-May-08 1\n", + "06-Oct-05 1\n", + "30-Nov-30 1\n", + "Reported 17-Aug-1890 1\n", + "09-Jul-08 1\n", + "No date, Before 1975 1\n", + "12-Jan-86 1\n", + "06-Aug-12 1\n", + "24-Jun-90 1\n", + "13-Feb-1878 1\n", + "05-Mar-12 1\n", + "13-Dec-30 1\n", + "13-Sep-01 1\n", + "25-Oct-05 1\n", + "27-Nov-60 1\n", + "03-Jul-99 1\n", + "Reported 06-Sep-1894 1\n", + "09-Oct-00 1\n", + "04-Mar-36 1\n", + "16-Aug-61 1\n", + "26-May-74 1\n", + "23-Jul-26 1\n", + "25-Jun-50 1\n", + "06-Jun-36 1\n", + "04-May-11 1\n", + "13-Apr-1898 1\n", + "13-Jan-80 1\n", + "27-Jun-05 1\n", + "07-Jan-46 1\n", + "Name: Date, dtype: int64" + ] + }, + "execution_count": 63, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test.value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "metadata": {}, + "outputs": [], + "source": [ + "#test = test.replace(\"Reported \", \"\")" + ] + }, + { + "cell_type": "code", + "execution_count": 65, + "metadata": {}, + "outputs": [], + "source": [ + "#test.value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 66, + "metadata": {}, + "outputs": [], + "source": [ + "test = pd.to_datetime(test, errors = \"coerce\")" + ] + }, + { + "cell_type": "code", + "execution_count": 67, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "857" + ] + }, + "execution_count": 67, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test.isnull().sum()" + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "5135" + ] + }, + "execution_count": 68, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test.value_counts().sum()" + ] + }, + { + "cell_type": "code", + "execution_count": 71, + "metadata": {}, + "outputs": [], + "source": [ + "test = pd.to_datetime(df1[\"Date\"], errors = \"coerce\")" + ] + }, + { + "cell_type": "code", + "execution_count": 86, + "metadata": {}, + "outputs": [], + "source": [ + "df[\"Date\"] = test" + ] + }, + { + "cell_type": "code", + "execution_count": 87, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
    \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
    Case_NumberDateYearTypeCountryAreaLocationActivityNameSexAgeInjuryFatalTimeSpeciesInvestigator_or_SourceSource
    Orginal_Order
    1ND.0001NaT0UnprovokedSRI LANKAEastern ProvinceBelow the English fort, TrincomaleeSwimmingmaleM15FATAL. \"Shark bit him in half, carrying away the lower extremities\"YNaNNaNS.W. BakerND-0001-Ceylon.pdf
    2ND.0002NaT0UnprovokedPANAMANaNPanama Bay 8ºN, 79ºWNaNJules PattersonMNaNFATALYNaNNaNThe Sun, 10/20/1938ND-0002-JulesPatterson.pdf
    3ND.0003NaT0UnprovokedUSANorth CarolinaOcracoke InletSwimmingCoast Guard personnelMNaNFATALYNaNNaNF. Schwartz, p.23; C. Creswell, GSAFND-0003-Ocracoke_1900-1905.pdf
    4ND.0004NaT0UnprovokedAUSTRALIAWestern AustraliaNaNPearl divingAhmunMNaNFATALYNaNNaNH. Taunton; N. Bartlett, pp. 233-234ND-0004-Ahmun.pdf
    5ND.0005NaT0UnprovokedAUSTRALIAWestern AustraliaRoebuck BayDivingmaleMNaNFATALYNaNNaNH. Taunton; N. Bartlett, p. 234ND-0005-RoebuckBay.pdf
    ......................................................
    59882016.09.152016-09-162016UnprovokedAUSTRALIAVictoriaBells BeachSurfingmaleMNaNNo injury: Knocked off board by sharkNNaN2 m sharkThe Age, 9/16/20162016.09.16-BellsBeach.pdf
    59892016.09.172016-09-172016UnprovokedAUSTRALIAVictoriaThirteenth BeachSurfingRory AngiolellaMNaNStruck by fin on chest & legNNaNNaNThe Age, 9/18/20162016.09.17-Angiolella.pdf
    59902016.09.18.a2016-09-182016UnprovokedUSAFloridaNew Smyrna Beach, Volusia CountySurfingmaleM43Lacerations to lower legN10h43NaNOrlando Sentinel, 9/19/20162016.09.18.a-NSB.pdf
    59912016.09.18.b2016-09-182016UnprovokedUSAFloridaNew Smyrna Beach, Volusia CountySurfingChucky LucianoM36Lacerations to handsN11h00NaNOrlando Sentinel, 9/19/20162016.09.18.b-Luciano.pdf
    59922016.09.18.c2016-09-182016UnprovokedUSAFloridaNew Smyrna Beach, Volusia CountySurfingmaleM16Minor injury to thighN13h00NaNOrlando Sentinel, 9/19/20162016.09.18.c-NSB.pdf
    \n", + "

    5992 rows × 17 columns

    \n", + "
    " + ], + "text/plain": [ + " Case_Number Date Year Type Country \\\n", + "Orginal_Order \n", + "1 ND.0001 NaT 0 Unprovoked SRI LANKA \n", + "2 ND.0002 NaT 0 Unprovoked PANAMA \n", + "3 ND.0003 NaT 0 Unprovoked USA \n", + "4 ND.0004 NaT 0 Unprovoked AUSTRALIA \n", + "5 ND.0005 NaT 0 Unprovoked AUSTRALIA \n", + "... ... ... ... ... ... \n", + "5988 2016.09.15 2016-09-16 2016 Unprovoked AUSTRALIA \n", + "5989 2016.09.17 2016-09-17 2016 Unprovoked AUSTRALIA \n", + "5990 2016.09.18.a 2016-09-18 2016 Unprovoked USA \n", + "5991 2016.09.18.b 2016-09-18 2016 Unprovoked USA \n", + "5992 2016.09.18.c 2016-09-18 2016 Unprovoked USA \n", + "\n", + " Area Location \\\n", + "Orginal_Order \n", + "1 Eastern Province Below the English fort, Trincomalee \n", + "2 NaN Panama Bay 8ºN, 79ºW \n", + "3 North Carolina Ocracoke Inlet \n", + "4 Western Australia NaN \n", + "5 Western Australia Roebuck Bay \n", + "... ... ... \n", + "5988 Victoria Bells Beach \n", + "5989 Victoria Thirteenth Beach \n", + "5990 Florida New Smyrna Beach, Volusia County \n", + "5991 Florida New Smyrna Beach, Volusia County \n", + "5992 Florida New Smyrna Beach, Volusia County \n", + "\n", + " Activity Name Sex Age \\\n", + "Orginal_Order \n", + "1 Swimming male M 15 \n", + "2 NaN Jules Patterson M NaN \n", + "3 Swimming Coast Guard personnel M NaN \n", + "4 Pearl diving Ahmun M NaN \n", + "5 Diving male M NaN \n", + "... ... ... .. ... \n", + "5988 Surfing male M NaN \n", + "5989 Surfing Rory Angiolella M NaN \n", + "5990 Surfing male M 43 \n", + "5991 Surfing Chucky Luciano M 36 \n", + "5992 Surfing male M 16 \n", + "\n", + " Injury \\\n", + "Orginal_Order \n", + "1 FATAL. \"Shark bit him in half, carrying away the lower extremities\" \n", + "2 FATAL \n", + "3 FATAL \n", + "4 FATAL \n", + "5 FATAL \n", + "... ... \n", + "5988 No injury: Knocked off board by shark \n", + "5989 Struck by fin on chest & leg \n", + "5990 Lacerations to lower leg \n", + "5991 Lacerations to hands \n", + "5992 Minor injury to thigh \n", + "\n", + " Fatal Time Species Investigator_or_Source \\\n", + "Orginal_Order \n", + "1 Y NaN NaN S.W. Baker \n", + "2 Y NaN NaN The Sun, 10/20/1938 \n", + "3 Y NaN NaN F. Schwartz, p.23; C. Creswell, GSAF \n", + "4 Y NaN NaN H. Taunton; N. Bartlett, pp. 233-234 \n", + "5 Y NaN NaN H. Taunton; N. Bartlett, p. 234 \n", + "... ... ... ... ... \n", + "5988 N NaN 2 m shark The Age, 9/16/2016 \n", + "5989 N NaN NaN The Age, 9/18/2016 \n", + "5990 N 10h43 NaN Orlando Sentinel, 9/19/2016 \n", + "5991 N 11h00 NaN Orlando Sentinel, 9/19/2016 \n", + "5992 N 13h00 NaN Orlando Sentinel, 9/19/2016 \n", + "\n", + " Source \n", + "Orginal_Order \n", + "1 ND-0001-Ceylon.pdf \n", + "2 ND-0002-JulesPatterson.pdf \n", + "3 ND-0003-Ocracoke_1900-1905.pdf \n", + "4 ND-0004-Ahmun.pdf \n", + "5 ND-0005-RoebuckBay.pdf \n", + "... ... \n", + "5988 2016.09.16-BellsBeach.pdf \n", + "5989 2016.09.17-Angiolella.pdf \n", + "5990 2016.09.18.a-NSB.pdf \n", + "5991 2016.09.18.b-Luciano.pdf \n", + "5992 2016.09.18.c-NSB.pdf \n", + "\n", + "[5992 rows x 17 columns]" + ] + }, + "execution_count": 87, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 74, + "metadata": {}, + "outputs": [], + "source": [ + "#df1.dropna(axis = 'index' , subset = df1[\"Date\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 75, + "metadata": {}, + "outputs": [], + "source": [ + "#df1[\"Date\"] = df1.index.values \n", + "#df1 = df1[df1.Date.notnull()] \n", + "#df1.drop([\"Date\"], axis=1, inplace=True).copy" + ] + }, + { + "cell_type": "code", + "execution_count": 88, + "metadata": {}, + "outputs": [], + "source": [ + "#reg = df[\"Date\"].replace(\"(.)\" , \"(\\d{2}[-][\\d\\D]{2,3}[-]\\d{2,4})\", regex=True)\n", + "import re" + ] + }, + { + "cell_type": "code", + "execution_count": 78, + "metadata": {}, + "outputs": [], + "source": [ + "#pat_old = re.compile(\"(.)\")" + ] + }, + { + "cell_type": "code", + "execution_count": 79, + "metadata": {}, + "outputs": [], + "source": [ + "#pat_old" + ] + }, + { + "cell_type": "code", + "execution_count": 80, + "metadata": {}, + "outputs": [], + "source": [ + "#type(pat_old)" + ] + }, + { + "cell_type": "code", + "execution_count": 81, + "metadata": {}, + "outputs": [], + "source": [ + "#pat_new = re.compile(r'(\\d{2}[-][\\d\\D]{2,3}[-]\\d{2,4})')" + ] + }, + { + "cell_type": "code", + "execution_count": 82, + "metadata": {}, + "outputs": [], + "source": [ + "#type(pat_new)" + ] + }, + { + "cell_type": "raw", + "metadata": {}, + "source": [] + }, + { + "cell_type": "code", + "execution_count": 83, + "metadata": {}, + "outputs": [], + "source": [ + "#type(pat_new)" + ] + }, + { + "cell_type": "code", + "execution_count": 84, + "metadata": {}, + "outputs": [], + "source": [ + "#reg = df[\"Date\"].replace(pat_old , pat_new, regex=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 85, + "metadata": {}, + "outputs": [], + "source": [ + "#reg" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 89, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
    \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
    Case_NumberDateYearTypeCountryAreaLocationActivityNameSexAgeInjuryFatalTimeSpeciesInvestigator_or_SourceSource
    Orginal_Order
    1ND.0001NaT0UnprovokedSRI LANKAEastern ProvinceBelow the English fort, TrincomaleeSwimmingmaleM15FATAL. \"Shark bit him in half, carrying away the lower extremities\"YNaNNaNS.W. BakerND-0001-Ceylon.pdf
    2ND.0002NaT0UnprovokedPANAMANaNPanama Bay 8ºN, 79ºWNaNJules PattersonMNaNFATALYNaNNaNThe Sun, 10/20/1938ND-0002-JulesPatterson.pdf
    3ND.0003NaT0UnprovokedUSANorth CarolinaOcracoke InletSwimmingCoast Guard personnelMNaNFATALYNaNNaNF. Schwartz, p.23; C. Creswell, GSAFND-0003-Ocracoke_1900-1905.pdf
    4ND.0004NaT0UnprovokedAUSTRALIAWestern AustraliaNaNPearl divingAhmunMNaNFATALYNaNNaNH. Taunton; N. Bartlett, pp. 233-234ND-0004-Ahmun.pdf
    5ND.0005NaT0UnprovokedAUSTRALIAWestern AustraliaRoebuck BayDivingmaleMNaNFATALYNaNNaNH. Taunton; N. Bartlett, p. 234ND-0005-RoebuckBay.pdf
    ......................................................
    59882016.09.152016-09-162016UnprovokedAUSTRALIAVictoriaBells BeachSurfingmaleMNaNNo injury: Knocked off board by sharkNNaN2 m sharkThe Age, 9/16/20162016.09.16-BellsBeach.pdf
    59892016.09.172016-09-172016UnprovokedAUSTRALIAVictoriaThirteenth BeachSurfingRory AngiolellaMNaNStruck by fin on chest & legNNaNNaNThe Age, 9/18/20162016.09.17-Angiolella.pdf
    59902016.09.18.a2016-09-182016UnprovokedUSAFloridaNew Smyrna Beach, Volusia CountySurfingmaleM43Lacerations to lower legN10h43NaNOrlando Sentinel, 9/19/20162016.09.18.a-NSB.pdf
    59912016.09.18.b2016-09-182016UnprovokedUSAFloridaNew Smyrna Beach, Volusia CountySurfingChucky LucianoM36Lacerations to handsN11h00NaNOrlando Sentinel, 9/19/20162016.09.18.b-Luciano.pdf
    59922016.09.18.c2016-09-182016UnprovokedUSAFloridaNew Smyrna Beach, Volusia CountySurfingmaleM16Minor injury to thighN13h00NaNOrlando Sentinel, 9/19/20162016.09.18.c-NSB.pdf
    \n", + "

    5992 rows × 17 columns

    \n", + "
    " + ], + "text/plain": [ + " Case_Number Date Year Type Country \\\n", + "Orginal_Order \n", + "1 ND.0001 NaT 0 Unprovoked SRI LANKA \n", + "2 ND.0002 NaT 0 Unprovoked PANAMA \n", + "3 ND.0003 NaT 0 Unprovoked USA \n", + "4 ND.0004 NaT 0 Unprovoked AUSTRALIA \n", + "5 ND.0005 NaT 0 Unprovoked AUSTRALIA \n", + "... ... ... ... ... ... \n", + "5988 2016.09.15 2016-09-16 2016 Unprovoked AUSTRALIA \n", + "5989 2016.09.17 2016-09-17 2016 Unprovoked AUSTRALIA \n", + "5990 2016.09.18.a 2016-09-18 2016 Unprovoked USA \n", + "5991 2016.09.18.b 2016-09-18 2016 Unprovoked USA \n", + "5992 2016.09.18.c 2016-09-18 2016 Unprovoked USA \n", + "\n", + " Area Location \\\n", + "Orginal_Order \n", + "1 Eastern Province Below the English fort, Trincomalee \n", + "2 NaN Panama Bay 8ºN, 79ºW \n", + "3 North Carolina Ocracoke Inlet \n", + "4 Western Australia NaN \n", + "5 Western Australia Roebuck Bay \n", + "... ... ... \n", + "5988 Victoria Bells Beach \n", + "5989 Victoria Thirteenth Beach \n", + "5990 Florida New Smyrna Beach, Volusia County \n", + "5991 Florida New Smyrna Beach, Volusia County \n", + "5992 Florida New Smyrna Beach, Volusia County \n", + "\n", + " Activity Name Sex Age \\\n", + "Orginal_Order \n", + "1 Swimming male M 15 \n", + "2 NaN Jules Patterson M NaN \n", + "3 Swimming Coast Guard personnel M NaN \n", + "4 Pearl diving Ahmun M NaN \n", + "5 Diving male M NaN \n", + "... ... ... .. ... \n", + "5988 Surfing male M NaN \n", + "5989 Surfing Rory Angiolella M NaN \n", + "5990 Surfing male M 43 \n", + "5991 Surfing Chucky Luciano M 36 \n", + "5992 Surfing male M 16 \n", + "\n", + " Injury \\\n", + "Orginal_Order \n", + "1 FATAL. \"Shark bit him in half, carrying away the lower extremities\" \n", + "2 FATAL \n", + "3 FATAL \n", + "4 FATAL \n", + "5 FATAL \n", + "... ... \n", + "5988 No injury: Knocked off board by shark \n", + "5989 Struck by fin on chest & leg \n", + "5990 Lacerations to lower leg \n", + "5991 Lacerations to hands \n", + "5992 Minor injury to thigh \n", + "\n", + " Fatal Time Species Investigator_or_Source \\\n", + "Orginal_Order \n", + "1 Y NaN NaN S.W. Baker \n", + "2 Y NaN NaN The Sun, 10/20/1938 \n", + "3 Y NaN NaN F. Schwartz, p.23; C. Creswell, GSAF \n", + "4 Y NaN NaN H. Taunton; N. Bartlett, pp. 233-234 \n", + "5 Y NaN NaN H. Taunton; N. Bartlett, p. 234 \n", + "... ... ... ... ... \n", + "5988 N NaN 2 m shark The Age, 9/16/2016 \n", + "5989 N NaN NaN The Age, 9/18/2016 \n", + "5990 N 10h43 NaN Orlando Sentinel, 9/19/2016 \n", + "5991 N 11h00 NaN Orlando Sentinel, 9/19/2016 \n", + "5992 N 13h00 NaN Orlando Sentinel, 9/19/2016 \n", + "\n", + " Source \n", + "Orginal_Order \n", + "1 ND-0001-Ceylon.pdf \n", + "2 ND-0002-JulesPatterson.pdf \n", + "3 ND-0003-Ocracoke_1900-1905.pdf \n", + "4 ND-0004-Ahmun.pdf \n", + "5 ND-0005-RoebuckBay.pdf \n", + "... ... \n", + "5988 2016.09.16-BellsBeach.pdf \n", + "5989 2016.09.17-Angiolella.pdf \n", + "5990 2016.09.18.a-NSB.pdf \n", + "5991 2016.09.18.b-Luciano.pdf \n", + "5992 2016.09.18.c-NSB.pdf \n", + "\n", + "[5992 rows x 17 columns]" + ] + }, + "execution_count": 89, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +}