diff --git a/sum23/lecture_materials/11_Dictionaries/lec11_dictionaries_notes.ipynb b/sum23/lecture_materials/11_Dictionaries/lec11_dictionaries_notes.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..df2fddc47a2251ea24572d862f57901ff3055fe6 --- /dev/null +++ b/sum23/lecture_materials/11_Dictionaries/lec11_dictionaries_notes.ipynb @@ -0,0 +1,12928 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Dictionaries" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "import csv" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Lecture 11 Announcements\n", + "* Quiz 4 is due today (covers iteration, strings, lists)\n", + "* Quiz 5 is assigned today and due Friday (covers lists (including topics like sets and `sorted` vs `sort` from Lab 6), CSV files, and half of this lecture, dictionaries)\n", + " * I recommend waiting until after Lab 7 to take this quiz, because Lab 7 will give you extra practice on working with CSV files and Dictionaries\n", + "* Please take the *Midterm Course Feedback Survey* by Friday. A link was emailed to you with the subject line \"Please Complete Your UW-Madison Course Evaluation Survey\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Warmup 1: Read in the file 'cs220_survey_data.csv' into a lists of lists `csv_data`" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "# inspired by https://automatetheboringstuff.com/2e/chapter16/\n", + "def process_csv(filename):\n", + " example_file = open(filename, encoding=\"utf-8\")\n", + " example_reader = csv.reader(example_file)\n", + " example_data = list(example_reader)\n", + " example_file.close()\n", + " \n", + " return example_data" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "993" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "csv_data = process_csv('cs220_survey_data.csv') \n", + "\n", + "# TODO: compute the length of this list of lists \n", + "len(csv_data)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Warmup 2: store the first row in a variable called `cs220_header`" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Lecture',\n", + " 'Age',\n", + " 'Major',\n", + " 'Zip Code',\n", + " 'Latitude',\n", + " 'Longitude',\n", + " 'Pizza topping',\n", + " 'Pet preference',\n", + " 'Runner',\n", + " 'Sleep habit',\n", + " 'Procrastinator']" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "cs220_header = csv_data[0] # TODO: change this\n", + "cs220_header" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Warmup 3: store the rest of the data in a variable called `cs220_data`" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['LEC001',\n", + " '22',\n", + " 'Engineering: Biomedical',\n", + " '53703',\n", + " '43.073051',\n", + " '-89.40123',\n", + " 'none (just cheese)',\n", + " 'neither',\n", + " 'No',\n", + " 'no preference',\n", + " 'Maybe']" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "cs220_data = csv_data[1:] # TODO: change this\n", + "cs220_data[0]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Warmup 4: show the last 3 rows of data" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[['LEC001',\n", + " '18',\n", + " 'Undecided',\n", + " '53706',\n", + " '44.8341',\n", + " '87.377',\n", + " 'basil/spinach',\n", + " 'dog',\n", + " 'No',\n", + " 'no preference',\n", + " 'Yes'],\n", + " ['LEC003',\n", + " '19',\n", + " 'Engineering: Mechanical',\n", + " '53705',\n", + " '46.589146',\n", + " '-112.039108',\n", + " 'none (just cheese)',\n", + " 'cat',\n", + " 'No',\n", + " 'night owl',\n", + " 'Yes'],\n", + " ['LEC001',\n", + " '20',\n", + " 'Economics',\n", + " '53703',\n", + " '39.631506',\n", + " '118.143239',\n", + " 'pineapple',\n", + " 'dog',\n", + " 'No',\n", + " 'night owl',\n", + " 'Maybe']]" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "cs220_data[-3:]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Warmup 5: what is the output of `cs220_data[-1:]`\n", + "\n", + "- Be careful with slicing.\n", + "- Slicing a string gives a new string\n", + "- Slicing a list gives a new list\n", + "- Slicing a list of list will always give a new list of list (even if your slice only contains one of the inner lists)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[['LEC001',\n", + " '20',\n", + " 'Economics',\n", + " '53703',\n", + " '39.631506',\n", + " '118.143239',\n", + " 'pineapple',\n", + " 'dog',\n", + " 'No',\n", + " 'night owl',\n", + " 'Maybe']]" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "cs220_data[-1:] # slicing, returns a list of lists (in this case)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['LEC001',\n", + " '20',\n", + " 'Economics',\n", + " '53703',\n", + " '39.631506',\n", + " '118.143239',\n", + " 'pineapple',\n", + " 'dog',\n", + " 'No',\n", + " 'night owl',\n", + " 'Maybe']" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "cs220_data[-1] # indexing, returns a list (in this case)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Warmup 6: Write a function that counts the frequency of a value in a column" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [], + "source": [ + "def column_frequency(value, col_name):\n", + " ''' Returns the frequency of value in col_name. '''\n", + " count = 0\n", + " for row in cs220_data:\n", + " if row[cs220_header.index(col_name)].lower() == value.lower():\n", + " count += 1\n", + " return count" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "112" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Test your function\n", + "column_frequency(\"pineapple\", \"Pizza topping\")" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "331" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Try other test cases\n", + "column_frequency(\"53703\", \"Zip Code\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### TODO: Discuss: Is there an easy way to count *every* topping's frequency?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Learning Objectives:\n", + "\n", + "- Use correct dictionary syntax \n", + " - to create a dictionary using either {} or dict()\n", + " - to lookup, insert, update, and pop key-value pairs\n", + "- Use a for loop, the in operator, and common methods when working with dictionaries.\n", + "- Write code that uses a dictionary\n", + " - to store frequencies\n", + " - to iterate through all key-value pairs\n", + "\n", + " - Handle key errors with get and pop using default values\n", + " - Understand the idea of nesting data structures\n", + " - Use a dictionary of lists to put rows of data into \"buckets\"\n", + " - Use a list of dictionaries to represent a table of data.\n", + " - Create a dictionary of dictionaries" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 1: Dictionary intro" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Data Structure \n", + "A data structure is a collection of data values, the relationships among them, and the functions or operations that can be applied to the data (source: Wikipedia).\n", + "\n", + "<div>\n", + "<img src=\"attachment:Lists.png\" width=\"500\"/>\n", + "</div>" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Python contains built-in Data Structures called Collections\n", + "\n", + "<div>\n", + "<img src=\"attachment:Collections.png\" width=\"500\"/>\n", + "</div>\n", + "\n", + "Today we'll learn how store data and perform various operations in Dictionaries. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Mappings\n", + "\n", + "Common data structure approach:\n", + "- store many values\n", + "- give each value a label\n", + "- use labels to lookup values\n", + "\n", + "`list` is an example of a mapping-based data structure" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "400" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# index 0 1 2 3\n", + "nums_list = [300, 200, 400, 100]\n", + "nums_list[2] # lookup using index label" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Labels in a list are inflexible. They can only be consecutive `int`s starting at label 0." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Dictionary\n", + "\n", + "A dictionary (`dict`) is like a `list`, but more general. In a list, the indices have to be integers; but a dictionary they can be any **immutable** type. Just like lists, values can be anything.\n", + "\n", + "You can think of a dictionary as a mapping between a set of indices (which are called keys) and a set of values. Each key maps to a value. The association of a key and a value is called a key-value pair or sometimes an item. \n", + "\n", + "(from Think Python, Chapter 11)" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [], + "source": [ + "# empty dictionary\n", + "some_dict = {} # we use curly braces to create a dictionary\n", + "# We'll shortly discuss about dict versus set\n", + "\n", + "# empty dictionary\n", + "some_other_dict = dict()" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "dict" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "type(some_dict)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Just like a `list`, `dict` key-value pairs are separated by a `,`.\n", + "\n", + "The `key` and the `value` are separated by a `:`. That is `key:value`." + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[300, 200, 400, 100]\n", + "{0: 300, 1: 200, 2: 400, 3: 100}\n" + ] + } + ], + "source": [ + "# TODO: let's define nums_dict\n", + "\n", + "nums_list = [300, 200, 400, 100]\n", + "print(nums_list)\n", + "\n", + "nums_dict = {0 : 300, 1: 200, 2: 400, 3:100}\n", + "print(nums_dict)" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'broccoli': 3.95,\n", + " 'spinach': 1.5,\n", + " 'donut': 1.25,\n", + " 'muffin': 2.25,\n", + " 'brownie': 3.15,\n", + " 'cookie': 0.79,\n", + " 'milk': 1.65,\n", + " 'loaf': 5.99,\n", + " 'cauliflower': 3.99}" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# a dictionary that stores prices of bakery items\n", + "# Notice that a dict can span over more than one line, indentation doesn't matter\n", + "\n", + "price_dict = { 'broccoli': 3.95, \n", + " 'spinach': 1.50, \n", + " 'donut': 1.25, 'muffin': 2.25,\n", + " 'brownie': 3.15,\n", + " 'cookie': 0.79, 'milk': 1.65, 'loaf': 5.99,\n", + " 'cauliflower': 3.99} # feel free to add some of your own here\n", + "price_dict" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "3.95" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# indexing with lists\n", + "items = ['broccoli', 'spinach', 'donut']\n", + "price_list = [3.95, 1.50, 1.25]\n", + "\n", + "price_list[ items.index('broccoli') ]" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "3.95" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "price_dict['broccoli']" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Dictionaries maintain insertion based ordering in recent versions of Python (3.7 and above versions).\n", + "\n", + "- Go back to the previous cell and add 'ice cream': 3.99 key-value pair before 'brownie': 3.15. Re-run the cell to see how the `dict` definition changes with respect to insertion order." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Dictionary lookups\n", + "\n", + "- same syntax as `list` indexing\n", + "- `some_dict[key]`" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Lookup price of 'brownie', 'cookie', and 'ice cream'." + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3.15\n", + "0.79\n" + ] + }, + { + "ename": "KeyError", + "evalue": "'ice cream'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[31], line 3\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[38;5;28mprint\u001b[39m(price_dict[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mbrownie\u001b[39m\u001b[38;5;124m'\u001b[39m])\n\u001b[1;32m 2\u001b[0m \u001b[38;5;28mprint\u001b[39m(price_dict[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mcookie\u001b[39m\u001b[38;5;124m'\u001b[39m])\n\u001b[0;32m----> 3\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[43mprice_dict\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mice cream\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m]\u001b[49m)\n", + "\u001b[0;31mKeyError\u001b[0m: 'ice cream'" + ] + } + ], + "source": [ + "print(price_dict['brownie'])\n", + "print(price_dict['cookie'])\n", + "print(price_dict['ice cream'])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Lookup price of 'sugar'." + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [ + { + "ename": "KeyError", + "evalue": "'sugar'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[32], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[43mprice_dict\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43msugar\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m]\u001b[49m)\n", + "\u001b[0;31mKeyError\u001b[0m: 'sugar'" + ] + } + ], + "source": [ + "print(price_dict['sugar'])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Can you perform lookup using values? Answer is no, the mapping is one-way, that is key to value and not vice versa." + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [ + { + "ename": "KeyError", + "evalue": "0.79", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[33], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[43mprice_dict\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;241;43m0.79\u001b[39;49m\u001b[43m]\u001b[49m) \u001b[38;5;66;03m# KeyError\u001b[39;00m\n", + "\u001b[0;31mKeyError\u001b[0m: 0.79" + ] + } + ], + "source": [ + "print(price_dict[0.79]) # KeyError" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "<div>\n", + "<img src=\"attachment:Parenthetical_characters_1.png\" width=\"700\"/>\n", + "</div>" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "<div>\n", + "<img src=\"attachment:Parenthetical_characters_2.png\" width=\"500\"/>\n", + "</div>" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Dictionaries are Mutable\n", + "\n", + "- update existing key's value\n", + "- insert a new key-value pair\n", + "- pop method to delete a key-value pair" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'broccoli': 3.95,\n", + " 'spinach': 1.5,\n", + " 'donut': 1.25,\n", + " 'muffin': 2.25,\n", + " 'brownie': 3.15,\n", + " 'cookie': 0.79,\n", + " 'milk': 1.65,\n", + " 'loaf': 5.99,\n", + " 'cauliflower': 2.99}" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# TODO: change price of 'cauliflower' to 2.99\n", + "\n", + "price_dict['cauliflower'] = 2.99\n", + "price_dict" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'broccoli': 3.95,\n", + " 'spinach': 1.5,\n", + " 'donut': 1.25,\n", + " 'muffin': 2.25,\n", + " 'brownie': 3.15,\n", + " 'cookie': 0.79,\n", + " 'milk': 1.65,\n", + " 'loaf': 5.99,\n", + " 'cauliflower': 2.99,\n", + " 'carrot': 1.99}" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# TODO: insert new key-value pair 'carrot' mapping to 1.99\n", + "\n", + "price_dict['carrot'] = 1.99\n", + "price_dict" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[10, 20, 30, 40]" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# indices. 0. 1. 2 \n", + "nums_list = [10, 20, 30]\n", + "# nums_list[3] = 40 # Recall that this doesn't work on a list due to IndexError\n", + "\n", + "# TODO: comment out line 2 and use proper syntax to add item 40 to nums_list\n", + "nums_list.append(40)\n", + "\n", + "nums_list" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [ + { + "ename": "KeyError", + "evalue": "'pizza'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[39], line 8\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[38;5;28;01mdel\u001b[39;00m(price_dict[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mdonut\u001b[39m\u001b[38;5;124m'\u001b[39m])\n\u001b[1;32m 7\u001b[0m \u001b[38;5;66;03m# try deleting someting that is not there\u001b[39;00m\n\u001b[0;32m----> 8\u001b[0m \u001b[43mprice_dict\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpop\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mpizza\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m)\u001b[49m \u001b[38;5;66;03m# KeyError\u001b[39;00m\n", + "\u001b[0;31mKeyError\u001b[0m: 'pizza'" + ] + } + ], + "source": [ + "# use pop to delete the 'spinach' key-value pair\n", + "price_dict.pop('spinach')\n", + "\n", + "# Alternate\n", + "del(price_dict['donut'])\n", + "\n", + "# try deleting someting that is not there\n", + "price_dict.pop('pizza') # KeyError" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'broccoli': 3.95,\n", + " 'muffin': 2.25,\n", + " 'brownie': 3.15,\n", + " 'cookie': 0.79,\n", + " 'milk': 1.65,\n", + " 'loaf': 5.99,\n", + " 'cauliflower': 2.99,\n", + " 'carrot': 1.99}" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "price_dict" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### `in` operator enables us to check whether a key exists in the dictionary" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "40 in nums_list" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Oops couldn't find it!\n" + ] + } + ], + "source": [ + "# TODO: fix the above example with a conditional\n", + "if 'pizza' in price_dict:\n", + " price_dict.pop('pizza')\n", + "else:\n", + " print(\"Oops couldn't find it!\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### `len` built-in function returns the number of key-value pairs in a dictionary" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "8" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# TODO: print length of price_dict\n", + "len(price_dict)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### `for` loop enables us to iterate over keys in a dictionary" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "broccoli 3.95\n", + "muffin 2.25\n", + "brownie 3.15\n", + "cookie 0.79\n", + "milk 1.65\n", + "loaf 5.99\n", + "cauliflower 2.99\n", + "carrot 1.99\n" + ] + } + ], + "source": [ + "# TODO: iterate over price_dict and print each key-value pair in its own line\n", + "for key in price_dict:\n", + " print(key, price_dict[key])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### `keys` method\n", + "\n", + "- retrieves keys of a dictionary\n", + "- can be converted into a list" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "dict_keys(['broccoli', 'muffin', 'brownie', 'cookie', 'milk', 'loaf', 'cauliflower', 'carrot'])\n", + "<class 'dict_keys'>\n" + ] + } + ], + "source": [ + "# get all keys and convert to a list\n", + "print(price_dict.keys())\n", + "print(type(price_dict.keys()))" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "broccoli 3.95\n", + "muffin 2.25\n", + "brownie 3.15\n", + "cookie 0.79\n", + "milk 1.65\n", + "loaf 5.99\n", + "cauliflower 2.99\n", + "carrot 1.99\n" + ] + } + ], + "source": [ + "for key in price_dict.keys():\n", + " print(key, price_dict[key])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### `values` method\n", + "\n", + "- retrieves values of a dictionary\n", + "- can be converted into a list" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "dict_values([3.95, 2.25, 3.15, 0.79, 1.65, 5.99, 2.99, 1.99])\n" + ] + } + ], + "source": [ + "# get all values and convert to a list\n", + "print(price_dict.values())" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "False\n", + "False\n", + "False\n", + "True\n" + ] + } + ], + "source": [ + "# use 'in' price_dict, price_dict.keys(), price_dict.values()\n", + "\n", + "print('donut' in price_dict) # default is to check the keys\n", + "print(9.95 in price_dict) # default is NOT values\n", + "print('apple' in price_dict.keys()) # can call out the keys\n", + "print(3.95 in price_dict.values()) # can check the values" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Example 1: find total cost of shopping order" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['pie', 'donut', 'milk', 'cookie', 'tofu']\n", + "Couldn't find pie in price list!\n", + "Couldn't find donut in price list!\n", + "Couldn't find tofu in price list!\n", + "Your total cost is $2.44\n" + ] + } + ], + "source": [ + "order = ['pie', 'donut', 'milk', 'cookie', 'tofu'] # add more items to the order\n", + "print(order)\n", + "\n", + "total_cost = 0\n", + "for key in order:\n", + " # TODO: check if item is a key in price_dict\n", + " # if yes, retrieve the value and add it to total_cost\n", + " if key in price_dict:\n", + " value = price_dict[key]\n", + " total_cost += value\n", + " # if not, display \"Couldn't find <item> in price list!\"\n", + " else:\n", + " print(\"Couldn't find\", key, \"in price list!\")\n", + " \n", + "# find the total of the items in the order\n", + "print (\"Your total cost is ${:.2f}\".format(total_cost))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Example 2a: find the letter that occurred the most in a sentence" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'M': 1, 'e': 6, 't': 6, 'm': 1, 'a': 5, 'h': 2, 'b': 1, 'i': 1, 'k': 2, 'r': 2, 'c': 2, 's': 2, 'f': 1, 'o': 3, 'l': 1, 'd': 1, 'y': 1}\n" + ] + } + ], + "source": [ + "# start with an empty dictionary\n", + "letter_freq = {} # KEY: unique letter; VALUE: count of unique letter\n", + "\n", + "sentence = \"Meet me at the bike racks after school at 3:30 today.\"\n", + "\n", + "for letter in sentence:\n", + " if letter in [' ', ':', '.', '3', '0']:\n", + " continue\n", + " # TODO: check if letter is a key in letter_freq\n", + " if letter in letter_freq.keys():\n", + " letter_freq[letter] += 1\n", + " # shorthand for:\n", + " # letter_freq[letter] = letter_freq[letter] + 1\n", + " # if yes, increment letter frequency by 1\n", + " else:\n", + " letter_freq[letter] = 1\n", + " # if no, insert a new key-value pair\n", + "\n", + "print(letter_freq)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Example 2b: find the letter that occurred the most" + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The character \"e\" appeared 6 times.\n" + ] + } + ], + "source": [ + "most_used_key = None \n", + "max_value = None\n", + "\n", + "for letter in letter_freq:\n", + " # TODO: you already know how to use a for loop to compute max\n", + " if max_value is None or letter_freq[letter]>max_value:\n", + " most_used_key = letter\n", + " max_value = letter_freq[letter]\n", + "\n", + "print(\"The character \\\"{}\\\" appeared {} times.\".format(str(most_used_key), max_value))" + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n", + "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" + ] + } + ], + "source": [ + "# TODO: discuss: why not use range-based for loop?\n", + "\n", + "for i in range(len(letter_freq)):\n", + " print(i) # can you do anything with i in this letter_freq dictionary?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Example 3a: Survey dataset: count every primary major's frequency" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "major_freq = {} # KEY: ???; VALUE: ???\n", + "\n", + "# TODO: iterate over each student's data from cs220_data\n", + "# TODO: extract \"Primary major\" column's value \n", + "# TODO: check if current student's major already a key in major_freq\n", + "# - if yes, increase the corresponding value by 1\n", + "# - if no, insert a new key-value pair\n", + "\n", + "major_freq" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Example 3b: find primary major with highest frequency" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Example 3b: use the algorithm from 2b to find the major with the highest frequency\n", + "\n", + "\n", + "print(\"The major \\\"{}\\\" appeared {} times.\".format(str(most_used_key), max_value))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "End of material for Quiz 5" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### After Lecture Practice" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Organize your data structure notes ...\n", + "\n", + "<div>\n", + "<img src=\"attachment:DataStructure_notes.png\" width=\"700\"/>\n", + "</div>" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Review slide deck" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Review this summary of common dictionary methods:\n", + "https://www.w3schools.com/python/python_ref_dictionary.asp" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 2: Operations and Nesting" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Default values with `get` and `pop` methods." + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'broccoli': 3.95,\n", + " 'muffin': 2.25,\n", + " 'brownie': 3.15,\n", + " 'cookie': 0.79,\n", + " 'milk': 1.65,\n", + " 'loaf': 5.99,\n", + " 'cauliflower': 2.99,\n", + " 'carrot': 1.99}" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# the following two statements are equivalent\n", + "price_dict.get('broccoli')\n", + "price_dict['broccoli']" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "st\n", + "None\n" + ] + }, + { + "ename": "KeyError", + "evalue": "4", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[61], line 8\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[38;5;28mprint\u001b[39m(suffix\u001b[38;5;241m.\u001b[39mget(\u001b[38;5;241m4\u001b[39m))\n\u001b[1;32m 7\u001b[0m \u001b[38;5;66;03m# TODO: what happens whey you try to pop a key that is not there? Try it.\u001b[39;00m\n\u001b[0;32m----> 8\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[43msuffix\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpop\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m4\u001b[39;49m\u001b[43m)\u001b[49m)\n", + "\u001b[0;31mKeyError\u001b[0m: 4" + ] + } + ], + "source": [ + "suffix = {1: \"st\", 2: 'nd', 3: \"rd\"}\n", + "print(suffix.get(1))\n", + "\n", + "# TODO: what happens when you try to get a key that is not there? Try it.\n", + "print(suffix.get(4))\n", + "\n", + "# TODO: what happens whey you try to pop a key that is not there? Try it.\n", + "print(suffix.pop(4))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "`get` and `pop` methods accept a second argument, which will be the default value if the first argument (key) does not exist.\n", + "\n", + "Syntax:\n", + "- `some_dict.get(some_key, default_value)`\n", + "- `some_dict.pop(some_key, default_value)`" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "rd\n", + "th\n", + "th\n", + "nd\n", + "{1: 'st', 3: 'rd'}\n" + ] + } + ], + "source": [ + "# get(key, default value) \n", + "print(suffix.get(3, 'th'))\n", + "print(suffix.get(5, 'th')) #default value, but does not add the key-value pair to the dict\n", + "\n", + "# pop(key, default value)\n", + "print(suffix.pop(7, 'th')) # no key-value pair to remove\n", + "print(suffix.pop(2, 'th'))\n", + "print(suffix)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### What are nested data structures?\n", + "A data structure containing another data structure as item is called as nest data structure." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Nesting part 1: Bucketizing/Binning" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "<div>\n", + "<img src=\"attachment:Buckets.png\" width=\"600\"/>\n", + "</div>" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "<div>\n", + "<img src=\"attachment:Binning_step1.png\" width=\"600\"/>\n", + "</div>" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "<div>\n", + "<img src=\"attachment:Binning_step2.png\" width=\"600\"/>\n", + "</div>" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Bucketizing/Binning process objective: build dict of list of lists data structure\n", + "- Initialize an empty `dict`\n", + "- Iterate over every row in your dataset\n", + " - Retrieve value of the column based on which you want to bucketize\n", + " - Check if bucketizing column is already a key in your `dict`:\n", + " - if no, insert a new key-value pair:\n", + " - key: unique value of bucktizing column\n", + " - value: initialize a new list, append current row as an item into the list, thereby creating a list of list data structure\n", + " - if yes, append current row to the list of list data structure (value of the key).\n", + "\n", + "After this process, each row ends up in a bin, based on the value of the bucketize column.\n", + "Number of bins = number of unique values in the bucketize column\n", + "\n", + "Why bucketize data?\n", + "- A way to organize our data, without losing information in the process" + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Lecture',\n", + " 'Age',\n", + " 'Major',\n", + " 'Zip Code',\n", + " 'Latitude',\n", + " 'Longitude',\n", + " 'Pizza topping',\n", + " 'Pet preference',\n", + " 'Runner',\n", + " 'Sleep habit',\n", + " 'Procrastinator']" + ] + }, + "execution_count": 63, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Let's take another look at our 'cs220_survey_data.csv'\n", + "cs220_header" + ] + }, + { + "cell_type": "code", + "execution_count": 71, + "metadata": {}, + "outputs": [], + "source": [ + "# Let's bucketize the data\n", + "buckets = dict() # Key: unique bucketize column value; Value: list of lists (rows having that unique column value)\n", + "for row in cs220_data:\n", + " lecture = row[cs220_header.index('Lecture')]\n", + " if not lecture in buckets:\n", + " buckets[lecture] = []\n", + " buckets[lecture].append(row)\n", + "# buckets" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let's convert the above code into a function called 'bucketize'." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def col_avg(data, header, col_name, min_bound, max_bound):\n", + " \"\"\"\n", + " data: list of list data structure representing rows\n", + " col_name: name of the column for which we want to compute average\n", + " min_bound, max_bound: bounds for the data (data cleaning)\n", + " Returns average of that column.\n", + " \n", + " Assumes the data in col_name is numerical (float or int)\n", + " \"\"\"\n", + " buckets = dict() # Key: unique bucketize column value; Value: list of lists (rows having that unique column value)\n", + " for row in data:\n", + " lecture = row[header.index(col_name)]\n", + " if lecture < min_bound or lecture > max_bound:\n", + " continue\n", + " if not lecture in buckets:\n", + " buckets[lecture] = []\n", + " buckets[lecture].append(row)\n", + " \n", + " \n", + " return buckets\n", + "\n", + "min_age = 0\n", + "max_age = 118\n", + "col_avg(cs220_data, cs220_header, \"Age\", min_age, max_age)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Average per bucket" + ] + }, + { + "cell_type": "code", + "execution_count": 80, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'LEC001': 20.049180327868854,\n", + " 'LEC006': 18.63157894736842,\n", + " 'LEC004': 19.98941798941799,\n", + " 'LEC005': 19.42222222222222,\n", + " 'LEC002': 255.91573033707866,\n", + " 'LEC003': 19.137096774193548}" + ] + }, + "execution_count": 80, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "def avg_per_bucket(buckets, avg_col_name, header):\n", + " \"\"\"\n", + " Computes and returns column average per bucket\n", + " \"\"\"\n", + " bucket_avg = {}\n", + " for bucket in buckets:\n", + " # TODO find average age\n", + " num_students = 0\n", + " total_age = 0\n", + " for row in buckets[bucket]:\n", + " age = row[header.index(avg_col_name)]\n", + " if age != '':\n", + " total_age += int(age)\n", + " num_students += 1\n", + " bucket_avg[bucket] = total_age/num_students\n", + " return bucket_avg\n", + "avg_per_bucket(buckets, \"Age\", cs220_header) " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### What is the average student age per lecture?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### What is the average student age in each major?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Nesting part 2: Tables\n", + "#### Use a list of dictionaries to represent a table of data.\n", + "\n", + "<div>\n", + "<img src=\"attachment:table_rep.png\" width=\"600\"/>\n", + "</div>\n", + "\n", + "Steps (build a list of dictionaries)\n", + "- Start with an empty list\n", + "- Each row of data is one dictionary\n", + " - keys are the column names\n", + " - values are the data in each cell\n", + "\n", + "Why put data in table form?\n", + "- It seems redundant, but is used often in Web apps for storing info.\n", + "- Its a little easier to access subsets of the data without worrying about the header index method." + ] + }, + { + "cell_type": "code", + "execution_count": 81, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Lecture',\n", + " 'Age',\n", + " 'Major',\n", + " 'Zip Code',\n", + " 'Latitude',\n", + " 'Longitude',\n", + " 'Pizza topping',\n", + " 'Pet preference',\n", + " 'Runner',\n", + " 'Sleep habit',\n", + " 'Procrastinator']" + ] + }, + "execution_count": 81, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Let's put the student survey data into a list of dictionaries\n", + "cs220_header" + ] + }, + { + "cell_type": "code", + "execution_count": 87, + "metadata": {}, + "outputs": [], + "source": [ + "def transform(header, data):\n", + " \"\"\"\n", + " Transform data into a list of dictionaries\n", + " \"\"\"\n", + " list_of_dicts = []\n", + " for row in data:\n", + " row_dict = {}\n", + " for col_name in header:\n", + " row_dict[col_name] = row[ header.index(col_name) ]\n", + " # alternate for loop option (both work):\n", + "# for i in range(len(header)):\n", + "# col_name = header[i]\n", + "# row_dict[col_name] = row[i]\n", + " list_of_dicts.append(row_dict) \n", + " return list_of_dicts\n", + " \n", + "transformed_data = transform(cs220_header, cs220_data)" + ] + }, + { + "cell_type": "code", + "execution_count": 88, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[{'Lecture': 'LEC001',\n", + " 'Age': '22',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '',\n", + " 'Major': 'Undecided',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '',\n", + " 'Major': 'Undecided',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '',\n", + " 'Major': 'Undecided',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Other|Engineering: Computer',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '',\n", + " 'Major': 'Undecided',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '35.4',\n", + " 'Longitude': '119.11',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '44',\n", + " 'Longitude': '-93',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '21',\n", + " 'Major': 'Engineering: Other',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '24.713552',\n", + " 'Longitude': '46.675297',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '24.6806',\n", + " 'Longitude': '46.57936',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '24',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43',\n", + " 'Longitude': '-89',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '36.102371',\n", + " 'Longitude': '-115.174553',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '22',\n", + " 'Major': 'Psychology',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '31.78',\n", + " 'Longitude': '119.95',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '37.8',\n", + " 'Longitude': '112.5',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '24',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '46.872131',\n", + " 'Longitude': '-113.994019',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '17',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '46.6242',\n", + " 'Longitude': '8.0414',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '57303',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '31.230391',\n", + " 'Longitude': '121.473701',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53558',\n", + " 'Latitude': '40.712776',\n", + " 'Longitude': '-74.005974',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Economics (Mathematical Emphasis)',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '48.86',\n", + " 'Longitude': '2.3522',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '24.7',\n", + " 'Longitude': '46.7',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '37.338207',\n", + " 'Longitude': '-121.88633',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53558',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '38.9072',\n", + " 'Longitude': '-77.0369',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '20',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '21',\n", + " 'Major': 'Science: Other|Political Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '31.768318',\n", + " 'Longitude': '35.213711',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '19.075983',\n", + " 'Longitude': '72.877655',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '23',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '43.073929',\n", + " 'Longitude': '-89.385239',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '21',\n", + " 'Major': 'Business: Other',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '25.761681',\n", + " 'Longitude': '-80.191788',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Other|Real Estate',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '117',\n", + " 'Longitude': '33',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '47.037872',\n", + " 'Longitude': '-122.900696',\n", + " 'Pizza topping': 'tater tots',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '24',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '23.12911',\n", + " 'Longitude': '113.264381',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '64.49796',\n", + " 'Longitude': '165.40998',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '25',\n", + " 'Longitude': '47',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Other|Engineering Physics: Scientific Computing',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.4',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '48.856613',\n", + " 'Longitude': '2.352222',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '43.04156',\n", + " 'Longitude': '87.91006',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '21',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53713',\n", + " 'Latitude': '29.868336',\n", + " 'Longitude': '121.543991',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '40.712776',\n", + " 'Longitude': '-74.005974',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '5.93876',\n", + " 'Longitude': '80.48433',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53704',\n", + " 'Latitude': '38.7',\n", + " 'Longitude': '-77',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Other',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '36.169941',\n", + " 'Longitude': '-115.139832',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.078104',\n", + " 'Longitude': '-89.431698',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53051',\n", + " 'Latitude': '33.6846',\n", + " 'Longitude': '117.8265',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '22',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53719',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '26.2992',\n", + " 'Longitude': '87.2625',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '24',\n", + " 'Major': 'Business: Information Systems',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.04049',\n", + " 'Longitude': '-87.91732',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '34.052235',\n", + " 'Longitude': '-118.243683',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '40.7128',\n", + " 'Longitude': '74.006',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '23',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '37.5',\n", + " 'Longitude': '126.97',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '21',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '52.370216',\n", + " 'Longitude': '4.895168',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Undecided',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '38.56247',\n", + " 'Longitude': '-121.70411',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40.712776',\n", + " 'Longitude': '40.712776',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '21',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '45',\n", + " 'Longitude': '-93',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '21',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53717',\n", + " 'Latitude': '40.6461',\n", + " 'Longitude': '-111.498',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '26',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.902782',\n", + " 'Longitude': '12.496365',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '25',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '40.712776',\n", + " 'Longitude': '-74.005974',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '31.230391',\n", + " 'Longitude': '121.473701',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '48.855709',\n", + " 'Longitude': '2.29889',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '17',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '-18.766947',\n", + " 'Longitude': '46.869106',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Information Systems',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '38.893452',\n", + " 'Longitude': '-77.014709',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '21',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '16.306652',\n", + " 'Longitude': '80.436539',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '35.689487',\n", + " 'Longitude': '139.691711',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '17.385044',\n", + " 'Longitude': '78.486671',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '37.774929',\n", + " 'Longitude': '-122.419418',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '26.2644',\n", + " 'Longitude': '20.3052',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40.712776',\n", + " 'Longitude': '-74.005974',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '36',\n", + " 'Longitude': '117',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '50703',\n", + " 'Latitude': '42.360081',\n", + " 'Longitude': '-71.058884',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '36.569666',\n", + " 'Longitude': '112.218744',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '37.54443',\n", + " 'Longitude': '-121.95269',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '20',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '32.0853',\n", + " 'Longitude': '34.781769',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '42.701847',\n", + " 'Longitude': '-84.48217',\n", + " 'Pizza topping': 'tater tots',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40.179188',\n", + " 'Longitude': '44.499104',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '2.81375',\n", + " 'Longitude': '101.504272',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '30.733315',\n", + " 'Longitude': '76.779419',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '21',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53590',\n", + " 'Latitude': '7.9519',\n", + " 'Longitude': '98.3381',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '35.69',\n", + " 'Longitude': '139.69',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53704',\n", + " 'Latitude': '26.473308',\n", + " 'Longitude': '50.048218',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '22',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '34.052235',\n", + " 'Longitude': '-118.243683',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '19.075983',\n", + " 'Longitude': '72.877655',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '',\n", + " 'Major': 'Business: Actuarial',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '39.6336',\n", + " 'Longitude': '118.16',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '52.370216',\n", + " 'Longitude': '4.895168',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '52.368944',\n", + " 'Longitude': '4.891663',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Science: Physics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '32',\n", + " 'Longitude': '118',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '17.384716',\n", + " 'Longitude': '78.409424',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '3.1569',\n", + " 'Longitude': '101.7123',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.769562',\n", + " 'Longitude': '11.255814',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Business: Actuarial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '48.856613',\n", + " 'Longitude': '2.352222',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Business: Actuarial',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '40.7128',\n", + " 'Longitude': '74.006',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '44.67082',\n", + " 'Longitude': '-93.24432',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '46.786671',\n", + " 'Longitude': '-92.100487',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '48.856613',\n", + " 'Longitude': '2.352222',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40.409264',\n", + " 'Longitude': '49.867092',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '21',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '27.993828',\n", + " 'Longitude': '120.699364',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '35.6762',\n", + " 'Longitude': '139.6503',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Economics (Mathematical Emphasis)',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.073929',\n", + " 'Longitude': '-89.385239',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '21',\n", + " 'Major': 'Business: Information Systems',\n", + " 'Zip Code': '53713',\n", + " 'Latitude': '43.03638',\n", + " 'Longitude': '-89.40292',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '45.31625',\n", + " 'Longitude': '-92.59181',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '21',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '43.073929',\n", + " 'Longitude': '-89.385239',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '35.689487',\n", + " 'Longitude': '139.691711',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '51.500153',\n", + " 'Longitude': '-0.1262362',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '22',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '42.360081',\n", + " 'Longitude': '-71.058884',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '32.8328',\n", + " 'Longitude': '117.2713',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '44.834',\n", + " 'Longitude': '-87.376',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '21',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.902782',\n", + " 'Longitude': '12.496365',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '25',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '34.693737',\n", + " 'Longitude': '135.502167',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '17',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '19.075983',\n", + " 'Longitude': '72.877655',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Psychology',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '30.5928',\n", + " 'Longitude': '114.3052',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '51.507351',\n", + " 'Longitude': '-0.127758',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '17',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '55.953251',\n", + " 'Longitude': '-3.188267',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '21',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '37.566536',\n", + " 'Longitude': '126.977966',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Undecided',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '48.775845',\n", + " 'Longitude': '9.182932',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43',\n", + " 'Longitude': '-89',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '21',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '36',\n", + " 'Longitude': '117',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Information Systems',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '42.360081',\n", + " 'Longitude': '-71.058884',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '-8.340539',\n", + " 'Longitude': '115.091949',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '20',\n", + " 'Major': 'Business: Information Systems',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '',\n", + " 'Major': 'Science: Other',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '39.904202',\n", + " 'Longitude': '116.407394',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.0707',\n", + " 'Longitude': '12.6196',\n", + " 'Pizza topping': 'tater tots',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '21',\n", + " 'Major': 'Business: Other|Accounting',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.8781',\n", + " 'Longitude': '87.6298',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '17',\n", + " 'Major': 'Undecided',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '33.742185',\n", + " 'Longitude': '-84.386124',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53558',\n", + " 'Latitude': '40.73061',\n", + " 'Longitude': '-73.935242',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '25',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.385239',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '37.34163',\n", + " 'Longitude': '-122.05411',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '19.21833',\n", + " 'Longitude': '72.978088',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '',\n", + " 'Major': 'Business: Other|business analytics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '31.230391',\n", + " 'Longitude': '121.473701',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '35.719312',\n", + " 'Longitude': '139.784546',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '47.141041',\n", + " 'Longitude': '9.52145',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '41.8781',\n", + " 'Longitude': '87.6298',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '26',\n", + " 'Major': 'Science: Other|animal sciences',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '25.204849',\n", + " 'Longitude': '55.270782',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '21',\n", + " 'Major': 'Mathematics',\n", + " 'Zip Code': '53704',\n", + " 'Latitude': '61.218056',\n", + " 'Longitude': '-149.900284',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '22',\n", + " 'Major': 'Engineering: Other',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '49.28273',\n", + " 'Longitude': '-123.120735',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Other',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.902782',\n", + " 'Longitude': '12.496365',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '39.81059',\n", + " 'Longitude': '-74.71795',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '21',\n", + " 'Major': 'Health Promotion and Health Equity',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '37.2982',\n", + " 'Longitude': '113.0263',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '38.722252',\n", + " 'Longitude': '-9.139337',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53714',\n", + " 'Latitude': '43',\n", + " 'Longitude': '-89.4',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.878',\n", + " 'Longitude': '-87.63',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '19.655041',\n", + " 'Longitude': '-101.169891',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '26.147',\n", + " 'Longitude': '-81.795',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Business: Other',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '51.507',\n", + " 'Longitude': '-0.128',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Other',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43',\n", + " 'Longitude': '-89',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '34.869709',\n", + " 'Longitude': '-111.760902',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '21',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '3.15443',\n", + " 'Longitude': '101.715103',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '44.655991',\n", + " 'Longitude': '-93.242752',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Art',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '36.25',\n", + " 'Longitude': '138.25',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '41.94288',\n", + " 'Longitude': '-87.68667',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '44.2795',\n", + " 'Longitude': '73.9799',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '37.80718',\n", + " 'Longitude': '23.734864',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '35.689487',\n", + " 'Longitude': '139.691711',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.0826',\n", + " 'Longitude': '-97.16051',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Other',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '37.441883',\n", + " 'Longitude': '-122.143021',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '44.883',\n", + " 'Longitude': '-87.86291',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40.73598',\n", + " 'Longitude': '-74.37531',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Business: Actuarial',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '42.28',\n", + " 'Longitude': '-83.74',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '17',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '37.98381',\n", + " 'Longitude': '23.727539',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40.27385',\n", + " 'Longitude': '-74.75972',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '90.1994',\n", + " 'Longitude': '38.627',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '21',\n", + " 'Major': 'Mathematics, Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '30.572815',\n", + " 'Longitude': '104.066803',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53717',\n", + " 'Latitude': '36',\n", + " 'Longitude': '139',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '19',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '45.289143',\n", + " 'Longitude': '-87.021847',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '21',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '20.878332',\n", + " 'Longitude': '-156.682495',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '22',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '44.481586',\n", + " 'Longitude': '-88.005981',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '30.733315',\n", + " 'Longitude': '76.779419',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '38.837702',\n", + " 'Longitude': '-238.449497',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53593',\n", + " 'Latitude': '50.116322',\n", + " 'Longitude': '-122.957359',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.059023',\n", + " 'Longitude': '-89.296875',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '22.2255',\n", + " 'Longitude': '-159.4835',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53593',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '41.283211',\n", + " 'Longitude': '-70.099228',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '25.26741',\n", + " 'Longitude': '55.292679',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Other',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '43.038902',\n", + " 'Longitude': '-87.906471',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '',\n", + " 'Major': 'Undecided',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '30.5723',\n", + " 'Longitude': '104.0665',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '30.2672',\n", + " 'Longitude': '97.7431',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '20',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '36.731651',\n", + " 'Longitude': '-119.785858',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.038902',\n", + " 'Longitude': '-87.906471',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '33.8688',\n", + " 'Longitude': '151.2093',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Science: Other|Science: Genetics and Genomics',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '44.90767',\n", + " 'Longitude': '-93.183594',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '-33.448891',\n", + " 'Longitude': '-70.669266',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '17',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.296482',\n", + " 'Longitude': '5.36978',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '21',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '30.572815',\n", + " 'Longitude': '104.066803',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.99884',\n", + " 'Longitude': '-87.68828',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Information Systems',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '39.481655',\n", + " 'Longitude': '-106.038353',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.883228',\n", + " 'Longitude': '-87.632401',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '41.878113',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '28.228209',\n", + " 'Longitude': '112.938812',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '89451',\n", + " 'Latitude': '34.42083',\n", + " 'Longitude': '-119.698189',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.3874',\n", + " 'Longitude': '2.1686',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '32.05196',\n", + " 'Longitude': '118.77803',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '50.075539',\n", + " 'Longitude': '14.4378',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '20',\n", + " 'Major': 'Statistics (actuarial route)',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.134315',\n", + " 'Longitude': '-88.220062',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '17.385044',\n", + " 'Longitude': '78.486671',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '53707',\n", + " 'Longitude': '-88.415382',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '45.440845',\n", + " 'Longitude': '12.315515',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '55.953251',\n", + " 'Longitude': '-3.188267',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '33.8902',\n", + " 'Longitude': '-118.39848',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Business: Other|Business: Accounting',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '31.230391',\n", + " 'Longitude': '121.473701',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '39.512611',\n", + " 'Longitude': '116.677063',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Undecided',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.256538',\n", + " 'Longitude': '95.934502',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '19.075983',\n", + " 'Longitude': '72.877655',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '22',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '40.753685',\n", + " 'Longitude': '-73.999161',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '51.507351',\n", + " 'Longitude': '-0.127758',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '42.44817',\n", + " 'Longitude': '-71.224716',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '17',\n", + " 'Major': 'Engineering: Other|Computer Engineering',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '42.36',\n", + " 'Longitude': '-71.059',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '21',\n", + " 'Major': 'Business: Actuarial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '32.715736',\n", + " 'Longitude': '-117.161087',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '',\n", + " 'Major': 'Engineering: Other|Computer engineering',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '35.689487',\n", + " 'Longitude': '139.691711',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '41.385063',\n", + " 'Longitude': '2.173404',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '20',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '30.274084',\n", + " 'Longitude': '120.155067',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '51.507351',\n", + " 'Longitude': '-0.127758',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '45.45676',\n", + " 'Longitude': '15.29662',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '18.92421',\n", + " 'Longitude': '-99.221565',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Other|Material Science Engineering',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '38.941631',\n", + " 'Longitude': '-119.977219',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '21',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '25.03841',\n", + " 'Longitude': '121.5637',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '',\n", + " 'Major': 'Civil engineering - hydropower engineering',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '34',\n", + " 'Longitude': '113',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40.7',\n", + " 'Longitude': '-74.005',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '35.142441',\n", + " 'Longitude': '-223.154297',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.05891',\n", + " 'Longitude': '-88.007462',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '37.566536',\n", + " 'Longitude': '126.977966',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '36.393154',\n", + " 'Longitude': '25.46151',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '19.8968',\n", + " 'Longitude': '155.5828',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '48.494904',\n", + " 'Longitude': '-113.979034',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.88998',\n", + " 'Longitude': '12.49426',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '17',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '-7.257472',\n", + " 'Longitude': '112.75209',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '40.592331',\n", + " 'Longitude': '-111.820152',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53704',\n", + " 'Latitude': '38.722252',\n", + " 'Longitude': '-9.139337',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '64.963051',\n", + " 'Longitude': '-19.020836',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.769562',\n", + " 'Longitude': '11.255814',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Business: Actuarial',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '44.834209',\n", + " 'Longitude': '-87.376266',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '21',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '37.751824',\n", + " 'Longitude': '-122.420105',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '22',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '56.490669',\n", + " 'Longitude': '4.202646',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '44.9058',\n", + " 'Longitude': '-93.28535',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '21',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.21518',\n", + " 'Longitude': '-87.94241',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '24',\n", + " 'Major': 'Science: Chemistry',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '32.715736',\n", + " 'Longitude': '-117.161087',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '39.412327',\n", + " 'Longitude': '-77.425461',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.07391',\n", + " 'Longitude': '-89.39356',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '21',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '38.178127',\n", + " 'Longitude': '-92.781052',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '35.689487',\n", + " 'Longitude': '139.691711',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '60521',\n", + " 'Latitude': '41.9',\n", + " 'Longitude': '87.6',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '23',\n", + " 'Major': 'Business: Information Systems',\n", + " 'Zip Code': '53558',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.739507',\n", + " 'Longitude': '7.426706',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '21',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '25',\n", + " 'Longitude': '121',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Business: Information Systems',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '41.385063',\n", + " 'Longitude': '2.173404',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Communication arts',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '22.543097',\n", + " 'Longitude': '114.057861',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '22',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '47.497913',\n", + " 'Longitude': '19.040236',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '54706',\n", + " 'Latitude': '34.05',\n", + " 'Longitude': '-118.24',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '46.818188',\n", + " 'Longitude': '8.227512',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '42.36',\n", + " 'Longitude': '-71.058884',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '21',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '36.4',\n", + " 'Longitude': '117',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53704',\n", + " 'Latitude': '35.6762',\n", + " 'Longitude': '139.6503',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '44.885',\n", + " 'Longitude': '-93.147',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Health Promotion and Health Equity',\n", + " 'Zip Code': '53704',\n", + " 'Latitude': '48.8566',\n", + " 'Longitude': '2.349014',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Business andministration',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '37.389091',\n", + " 'Longitude': '-5.984459',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '23',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '24.88',\n", + " 'Longitude': '102.8',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '44.389',\n", + " 'Longitude': '12.9908',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Education',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.38',\n", + " 'Longitude': '2.17',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Pre-business',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.8781',\n", + " 'Longitude': '87.6298',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.10475',\n", + " 'Longitude': '-80.64916',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '42.360081',\n", + " 'Longitude': '-71.058884',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '24.5554',\n", + " 'Longitude': '81.7842',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '38.72',\n", + " 'Longitude': '75.07',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '30.572815',\n", + " 'Longitude': '104.066803',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '20',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '43.07199',\n", + " 'Longitude': '-89.42629',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '48',\n", + " 'Longitude': '7.85',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '40.7128',\n", + " 'Longitude': '74.006',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Business: Actuarial',\n", + " 'Zip Code': '53719',\n", + " 'Latitude': '14.599512',\n", + " 'Longitude': '120.984222',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '17',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '37.38522',\n", + " 'Longitude': '-122.114128',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '37.386051',\n", + " 'Longitude': '-122.083855',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '23',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '31.230391',\n", + " 'Longitude': '121.473701',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '21',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '37.94048',\n", + " 'Longitude': '-78.63664',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '21',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '42.360081',\n", + " 'Longitude': '-71.058884',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '40.712776',\n", + " 'Longitude': '-74.005974',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '22',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '36.97447',\n", + " 'Longitude': '122.02899',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '36.651199',\n", + " 'Longitude': '117.120094',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '46.482525',\n", + " 'Longitude': '30.723309',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '42.102901',\n", + " 'Longitude': '-88.368896',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '-31.959153',\n", + " 'Longitude': '-244.161255',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '24',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '30.704852',\n", + " 'Longitude': '104.003904',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '40.712776',\n", + " 'Longitude': '-74.005974',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '22',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '39.758161',\n", + " 'Longitude': '39.758161',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41',\n", + " 'Longitude': '87',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '58.2996',\n", + " 'Longitude': '14.4444',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53562',\n", + " 'Latitude': '1.3521',\n", + " 'Longitude': '103.8198',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '44.46534',\n", + " 'Longitude': '-72.684303',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '43.038902',\n", + " 'Longitude': '-87.906471',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Business: Actuarial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '45.464203',\n", + " 'Longitude': '9.189982',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '30.58198',\n", + " 'Longitude': '114.268066',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40.416775',\n", + " 'Longitude': '-3.70379',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Science: Other|Environmental Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '22',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '42',\n", + " 'Longitude': '-71',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '24',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '40',\n", + " 'Longitude': '-90',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Information Systems',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '40.712776',\n", + " 'Longitude': '-74.005974',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '33.4942',\n", + " 'Longitude': '89.4959',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.02833',\n", + " 'Longitude': '-87.971467',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40.416775',\n", + " 'Longitude': '-3.70379',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.07',\n", + " 'Longitude': '-89.4',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '46.683334',\n", + " 'Longitude': '7.85',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '31.046051',\n", + " 'Longitude': '34.851612',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '31.23',\n", + " 'Longitude': '121.47',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '42.00741',\n", + " 'Longitude': '-87.69384',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '37',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53718',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '20',\n", + " 'Major': 'History',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '31.62',\n", + " 'Longitude': '74.8765',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '38.627003',\n", + " 'Longitude': '-90.199402',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '40',\n", + " 'Longitude': '-74',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '23.7275',\n", + " 'Longitude': '37.9838',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '34.746613',\n", + " 'Longitude': '113.625328',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '21',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '30.572351',\n", + " 'Longitude': '121.776761',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '35.72',\n", + " 'Longitude': '-78.89',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Information science',\n", + " 'Zip Code': '53590',\n", + " 'Latitude': '44.92556',\n", + " 'Longitude': '-89.51539',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '22',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53704',\n", + " 'Latitude': '40.76078',\n", + " 'Longitude': '-111.891045',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '22',\n", + " 'Major': 'consumer behavior and marketplace studies',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.653225',\n", + " 'Longitude': '-79.383186',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '22',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '10.315699',\n", + " 'Longitude': '123.885437',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Conservation Biology',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '40.16573',\n", + " 'Longitude': '-105.101189',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '39.4817',\n", + " 'Longitude': '106.0384',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '48.85',\n", + " 'Longitude': '2.35',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '30.572815',\n", + " 'Longitude': '104.066803',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '24',\n", + " 'Major': 'Business: Information Systems',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '37.566536',\n", + " 'Longitude': '126.977966',\n", + " 'Pizza topping': 'tater tots',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '52.877491',\n", + " 'Longitude': '-118.08239',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '21',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '28.538336',\n", + " 'Longitude': '-81.379234',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.4',\n", + " 'Longitude': '-81.9',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '21',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.038902',\n", + " 'Longitude': '-87.906471',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '21',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '3.86',\n", + " 'Longitude': '-54.2',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '39.952583',\n", + " 'Longitude': '-75.165222',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Science: Other',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '21.3099',\n", + " 'Longitude': '157.8581',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '21',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '48823',\n", + " 'Latitude': '11.451419',\n", + " 'Longitude': '19.81',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '41',\n", + " 'Longitude': '-87',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '21',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '42.3601',\n", + " 'Longitude': '71.0589',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '48.856613',\n", + " 'Longitude': '2.352222',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '17',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.0722',\n", + " 'Longitude': '89.4008',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '27.99942',\n", + " 'Longitude': '120.66682',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '45.85038',\n", + " 'Longitude': '-84.616989',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '40.842358',\n", + " 'Longitude': '111.749992',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '39.738449',\n", + " 'Longitude': '-104.984848',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '21',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '60540',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '40.6263',\n", + " 'Longitude': '14.3758',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '22',\n", + " 'Major': 'Engineering: Other|Chemical Engineering',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '48.13913',\n", + " 'Longitude': '11.58022',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '21',\n", + " 'Major': 'Economics (Mathematical Emphasis)',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '52.520008',\n", + " 'Longitude': '13.404954',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '25',\n", + " 'Major': 'Science: Other|Biophysics PhD',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '30.21161',\n", + " 'Longitude': '-97.80999',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53716',\n", + " 'Latitude': '25.49443',\n", + " 'Longitude': '-103.59581',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '64.963051',\n", + " 'Longitude': '-19.020836',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '23',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.07348',\n", + " 'Longitude': '-89.38089',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '29',\n", + " 'Major': 'Business: Other|Technology Strategy/ Product Management',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '37.386051',\n", + " 'Longitude': '-122.083855',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '14.34836',\n", + " 'Longitude': '100.576271',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Undecided',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '37.566536',\n", + " 'Longitude': '126.977966',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '27.993828',\n", + " 'Longitude': '120.699364',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '25.032969',\n", + " 'Longitude': '121.565414',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '32.060253',\n", + " 'Longitude': '118.796875',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '',\n", + " 'Major': 'Business: Other',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '50.07553',\n", + " 'Longitude': '14.4378',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '21',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '57303',\n", + " 'Latitude': '32.715736',\n", + " 'Longitude': '-117.161087',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '45.5579',\n", + " 'Longitude': '94.1632',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '38.571739',\n", + " 'Longitude': '-109.550797',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.902782',\n", + " 'Longitude': '12.496365',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '21',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '120',\n", + " 'Longitude': '30',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40.014984',\n", + " 'Longitude': '-105.270546',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '53.2779',\n", + " 'Longitude': '6.1058',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '17',\n", + " 'Major': 'Science: Physics',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '50.088153',\n", + " 'Longitude': '14.399437',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '35.084385',\n", + " 'Longitude': '-106.650421',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '44.501343',\n", + " 'Longitude': '-88.06221',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '45.659302',\n", + " 'Longitude': '-92.466164',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '16.896721',\n", + " 'Longitude': '42.5536',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '23.885942',\n", + " 'Longitude': '45.079163',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '55.953251',\n", + " 'Longitude': '-3.188267',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '30',\n", + " 'Major': 'Business: Other',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '43.07175',\n", + " 'Longitude': '-89.46498',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Political Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '39.640263',\n", + " 'Longitude': '-106.374191',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '23',\n", + " 'Major': 'Business: Information Systems',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '27.99',\n", + " 'Longitude': '120.69',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Graphic Design',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40.713051',\n", + " 'Longitude': '-74.007233',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '21',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '37.369171',\n", + " 'Longitude': '-122.112473',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '21.3099',\n", + " 'Longitude': '157.8581',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Other|Marketing',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '59.913868',\n", + " 'Longitude': '10.752245',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '20',\n", + " 'Major': 'Cartography and GIS',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '43.0722',\n", + " 'Longitude': '89.4008',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '21',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '25.032969',\n", + " 'Longitude': '120.960518',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '42.03992',\n", + " 'Longitude': '87.67732',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '35.443081',\n", + " 'Longitude': '139.362488',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '22',\n", + " 'Major': 'Sociology',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '53.483959',\n", + " 'Longitude': '-2.244644',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Undecided',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '-37.81',\n", + " 'Longitude': '144.96',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '21',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '22.542883',\n", + " 'Longitude': '114.062996',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '23',\n", + " 'Longitude': '113',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Business: Other|Consumer Behavior and Marketplace Studies',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '40.76078',\n", + " 'Longitude': '-111.891045',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '21',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '40.712776',\n", + " 'Longitude': '-74.005974',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '26.345631',\n", + " 'Longitude': '-81.779083',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '40.62632',\n", + " 'Longitude': '14.37574',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Other',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40.73061',\n", + " 'Longitude': '-73.9808',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Atmospheric Sciences',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '39.74',\n", + " 'Longitude': '-104.99',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '32.7157',\n", + " 'Longitude': '117.1611',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '51.507351',\n", + " 'Longitude': '-0.127758',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Education',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '32.715736',\n", + " 'Longitude': '-117.161087',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '26',\n", + " 'Major': 'Languages',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '50.11',\n", + " 'Longitude': '8.68',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '21',\n", + " 'Major': 'Economics (Mathematical Emphasis)',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '55.676098',\n", + " 'Longitude': '12.568337',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '53',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53555',\n", + " 'Latitude': '47.6',\n", + " 'Longitude': '-122.3',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '17',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering Mechanics (Aerospace Engineering)',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.038902',\n", + " 'Longitude': '-87.906471',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '23.7157',\n", + " 'Longitude': '117.1611',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '22',\n", + " 'Major': 'Science: Other|Psychology',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '37.82034',\n", + " 'Longitude': '-122.47872',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '22',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '34.052235',\n", + " 'Longitude': '-118.243683',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '26',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '33.962425',\n", + " 'Longitude': '-83.378622',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '24',\n", + " 'Major': 'Engineering: Other|Civil and Environmental Engineering',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '47.5',\n", + " 'Longitude': '19.04',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '40.712776',\n", + " 'Longitude': '74.005974',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43',\n", + " 'Longitude': '-90',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '94707',\n", + " 'Latitude': '37.566536',\n", + " 'Longitude': '126.977966',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '20',\n", + " 'Major': 'Undecided',\n", + " 'Zip Code': '53719',\n", + " 'Latitude': '62.2001',\n", + " 'Longitude': '58.9638',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '44.977753',\n", + " 'Longitude': '-93.265015',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Business: Information Systems',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '34.385204',\n", + " 'Longitude': '132.455292',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.8781',\n", + " 'Longitude': '87.6298',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '37.98381',\n", + " 'Longitude': '23.727539',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40',\n", + " 'Longitude': '74',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '41.95881',\n", + " 'Longitude': '-85.32536',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '32.715736',\n", + " 'Longitude': '-117.161087',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Undecided',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.060791',\n", + " 'Longitude': '-88.119217',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '21',\n", + " 'Major': 'Science: Other',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '27.963989',\n", + " 'Longitude': '-82.799957',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '1.352083',\n", + " 'Longitude': '103.819839',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '-33.92487',\n", + " 'Longitude': '18.424055',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '22',\n", + " 'Major': 'International Studies',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '48.13913',\n", + " 'Longitude': '11.58022',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Other',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '38.331581',\n", + " 'Longitude': '-75.086159',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Information Systems',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '44.5',\n", + " 'Longitude': '-88',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '21.59143',\n", + " 'Longitude': '-158.01743',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53593',\n", + " 'Latitude': '45.813042',\n", + " 'Longitude': '9.080931',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '21',\n", + " 'Major': 'Business: Information Systems',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.612255',\n", + " 'Longitude': '-110.705429',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '21',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.00824',\n", + " 'Longitude': '28.978359',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '17.385044',\n", + " 'Longitude': '78.486671',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '21',\n", + " 'Major': 'Political Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '45.512',\n", + " 'Longitude': '-122.658',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.902782',\n", + " 'Longitude': '12.496365',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '-36.848461',\n", + " 'Longitude': '174.763336',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53713',\n", + " 'Latitude': '30.316496',\n", + " 'Longitude': '78.032188',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '',\n", + " 'Major': 'Business: Information Systems',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '35.689487',\n", + " 'Longitude': '139.691711',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '52.520008',\n", + " 'Longitude': '13.404954',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.3784',\n", + " 'Longitude': '2.1686',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '23',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '17.05423',\n", + " 'Longitude': '-96.713226',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.77195',\n", + " 'Longitude': '-88.43383',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '42.92',\n", + " 'Longitude': '-87.96',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '29.424122',\n", + " 'Longitude': '-98.493629',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '30.267153',\n", + " 'Longitude': '-97.743057',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '44.9778',\n", + " 'Longitude': '93.265',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Science: Other',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '41.9028',\n", + " 'Longitude': '12.4964',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '61.2176',\n", + " 'Longitude': '149.8997',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Agricultural and Applied Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '-22.932924',\n", + " 'Longitude': '-47.073845',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '52.370216',\n", + " 'Longitude': '4.895168',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '5.838715',\n", + " 'Longitude': '3.603516',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '48.502281',\n", + " 'Longitude': '-113.988533',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '41',\n", + " 'Major': 'Languages',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '29.654839',\n", + " 'Longitude': '91.140549',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '21',\n", + " 'Major': 'Business: Other|MHR',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '44',\n", + " 'Longitude': '125',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '24',\n", + " 'Major': 'Business: Other',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Undecided',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '46.786671',\n", + " 'Longitude': '-92.100487',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '35.689487',\n", + " 'Longitude': '139.691711',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '25',\n", + " 'Major': 'Medicine',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '48.38203',\n", + " 'Longitude': '-123.537827',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '46.009991',\n", + " 'Longitude': '-91.482094',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '21',\n", + " 'Major': 'Science: Other|Personal Finance',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '28.228209',\n", + " 'Longitude': '112.938812',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '35.689487',\n", + " 'Longitude': '139.691711',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '21',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Environmental science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '31.224361',\n", + " 'Longitude': '121.46917',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40.712776',\n", + " 'Longitude': '-74.005974',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Business: Other|Real Estate',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '51.5',\n", + " 'Longitude': '0.128',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40',\n", + " 'Longitude': '-74',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '44',\n", + " 'Longitude': '-94',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '40.712776',\n", + " 'Longitude': '-74.005974',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.385063',\n", + " 'Longitude': '2.173404',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '22.3',\n", + " 'Longitude': '91.8',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '24',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '13.100485',\n", + " 'Longitude': '77.594009',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '36.778259',\n", + " 'Longitude': '-119.417931',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '21',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '40.016869',\n", + " 'Longitude': '-105.279617',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Economics (Mathematical Emphasis)',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '31.230391',\n", + " 'Longitude': '121.473701',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '22.270979',\n", + " 'Longitude': '113.576675',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '21',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '28',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '7.190708',\n", + " 'Longitude': '125.455338',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '60.472023',\n", + " 'Longitude': '8.468946',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '41.73993',\n", + " 'Longitude': '-88.09423',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '21',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '26.074301',\n", + " 'Longitude': '119.296539',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '2.188477',\n", + " 'Longitude': '41.379179',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '21',\n", + " 'Major': 'Science: Other|Environmental Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '20.8',\n", + " 'Longitude': '-156.3',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '25.204849',\n", + " 'Longitude': '55.270782',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '42.360081',\n", + " 'Longitude': '-71.058884',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '23',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '38.82097',\n", + " 'Longitude': '-104.78163',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '47.606209',\n", + " 'Longitude': '-122.332069',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '19',\n", + " 'Major': 'Sociology',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.05977',\n", + " 'Longitude': '-87.88491',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '38.8951',\n", + " 'Longitude': '-77.0364',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.881832',\n", + " 'Longitude': '87.6298',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '46.453825',\n", + " 'Longitude': '7.436478',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '30.49996',\n", + " 'Longitude': '117.050003',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '21',\n", + " 'Major': 'Science: Other|Psychology',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '23.12911',\n", + " 'Longitude': '113.264381',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40.7831',\n", + " 'Longitude': '73.9712',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '',\n", + " 'Major': 'Business: Information Systems',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '18.52043',\n", + " 'Longitude': '73.856743',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '29.424122',\n", + " 'Longitude': '-98.493629',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.05995',\n", + " 'Longitude': '-80.32312',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '19',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '3.139003',\n", + " 'Longitude': '101.686852',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '52.370216',\n", + " 'Longitude': '4.895168',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Business: Information Systems',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '25.032969',\n", + " 'Longitude': '121.565414',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '17',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '21.027763',\n", + " 'Longitude': '105.83416',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Business: Information Systems',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '45.046799',\n", + " 'Longitude': '-87.298149',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '25',\n", + " 'Major': 'Engineering: Other',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '32.7157',\n", + " 'Longitude': '-117.1611',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '19.896767',\n", + " 'Longitude': '-155.582779',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '1.28217',\n", + " 'Longitude': '103.865196',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '44.977753',\n", + " 'Longitude': '-93.265015',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '23',\n", + " 'Longitude': '90',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '45.259546',\n", + " 'Longitude': '-84.938476',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '21',\n", + " 'Major': 'Science: Other',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Information science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '40.712776',\n", + " 'Longitude': '-74.005974',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '64.126518',\n", + " 'Longitude': '-21.817438',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '',\n", + " 'Major': 'Business: Other',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '42.360081',\n", + " 'Longitude': '-71.058884',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '31',\n", + " 'Major': 'Geoscience',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '-41.126621',\n", + " 'Longitude': '-73.059303',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '45.17099',\n", + " 'Longitude': '-87.16494',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '37.774929',\n", + " 'Longitude': '-122.419418',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '39.70698',\n", + " 'Longitude': '-86.0862',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '44.276402',\n", + " 'Longitude': '-88.26989',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '51.492519',\n", + " 'Longitude': '-0.25852',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '37.6',\n", + " 'Longitude': '14.0154',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '46.685631',\n", + " 'Longitude': '7.8562',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '22',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.385063',\n", + " 'Longitude': '2.173404',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '21',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '51.507351',\n", + " 'Longitude': '-0.127758',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.077747',\n", + " 'Longitude': '1.131593',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.526',\n", + " 'Longitude': '5.445',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '22',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.085369',\n", + " 'Longitude': '-88.912086',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.769562',\n", + " 'Longitude': '11.255814',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '20.880947',\n", + " 'Longitude': '-156.681862',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '64.963051',\n", + " 'Longitude': '-19.020836',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Undecided',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.073929',\n", + " 'Longitude': '-89.385239',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Business: Information Systems',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '25.204849',\n", + " 'Longitude': '55.270782',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '21',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '39.904',\n", + " 'Longitude': '116.407',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '39.739235',\n", + " 'Longitude': '-104.99025',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '21',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '43',\n", + " 'Longitude': '89',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Other|accounting',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.38',\n", + " 'Longitude': '-87.9',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40.122',\n", + " 'Longitude': '25.4988',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '39.904202',\n", + " 'Longitude': '116.407394',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '-37.813629',\n", + " 'Longitude': '144.963058',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '21',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '46.81',\n", + " 'Longitude': '-71.21',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '52.370216',\n", + " 'Longitude': '4.895168',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '21',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '34.29006',\n", + " 'Longitude': '108.932941',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '21',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '43.804801',\n", + " 'Longitude': '-91.226075',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '32.715736',\n", + " 'Longitude': '-117.161087',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '20.92674',\n", + " 'Longitude': '-156.69386',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '47.606209',\n", + " 'Longitude': '-122.332069',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '21',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.07515',\n", + " 'Longitude': '-89.3958',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53562',\n", + " 'Latitude': '43.096851',\n", + " 'Longitude': '-89.511528',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '20.924325',\n", + " 'Longitude': '-156.690102',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '25.0838',\n", + " 'Longitude': '77.3212',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '21',\n", + " 'Major': 'Business: Actuarial',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '31.469279',\n", + " 'Longitude': '119.765621',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.769562',\n", + " 'Longitude': '11.255814',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '21',\n", + " 'Major': 'Science: Chemistry',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '38.892059',\n", + " 'Longitude': '-77.019913',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '42.360081',\n", + " 'Longitude': '-71.058884',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '24.713552',\n", + " 'Longitude': '46.675297',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Actuarial',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '60.391262',\n", + " 'Longitude': '5.322054',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '23.697809',\n", + " 'Longitude': '120.960518',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40.712776',\n", + " 'Longitude': '74.005974',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '45.126887',\n", + " 'Longitude': '-94.528067',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '21',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '48.208176',\n", + " 'Longitude': '16.373819',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '44.0628',\n", + " 'Longitude': '-121.30451',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '21',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '31.230391',\n", + " 'Longitude': '121.473701',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '21',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '47.62772',\n", + " 'Longitude': '-122.51368',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '65.68204',\n", + " 'Longitude': '-18.090534',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '21',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '48.856613',\n", + " 'Longitude': '2.352222',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '33.501324',\n", + " 'Longitude': '-111.925278',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '14.77046',\n", + " 'Longitude': '-91.183189',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '10.480594',\n", + " 'Longitude': '-66.903603',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '21',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '48.856613',\n", + " 'Longitude': '2.352222',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '20.788602',\n", + " 'Longitude': '-156.003662',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '36.59239',\n", + " 'Longitude': '-121.86875',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '47.6',\n", + " 'Longitude': '-122.33',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '23.885942',\n", + " 'Longitude': '45.079163',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53532',\n", + " 'Latitude': '47.606209',\n", + " 'Longitude': '-122.332069',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '17',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '39.5755',\n", + " 'Longitude': '-106.100403',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '39.904202',\n", + " 'Longitude': '116.407394',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'tater tots',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Political Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '55.679626',\n", + " 'Longitude': '12.581921',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '28.538336',\n", + " 'Longitude': '-81.379234',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '29',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53704',\n", + " 'Latitude': '50.064651',\n", + " 'Longitude': '19.944981',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Other',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.385063',\n", + " 'Longitude': '2.173404',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '44.977753',\n", + " 'Longitude': '-93.265015',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '32',\n", + " 'Major': 'Design Studies',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '48.856613',\n", + " 'Longitude': '2.352222',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.28347',\n", + " 'Longitude': '-70.099449',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '41.73849',\n", + " 'Longitude': '-71.30418',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '31.230391',\n", + " 'Longitude': '121.473701',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '37.9838',\n", + " 'Longitude': '23.7275',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '47.497913',\n", + " 'Longitude': '19.040236',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '13.756331',\n", + " 'Longitude': '100.501762',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '3.864255',\n", + " 'Longitude': '73.388672',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '32.715736',\n", + " 'Longitude': '-117.161087',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Actuarial',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '18.32431',\n", + " 'Longitude': '64.941612',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '22',\n", + " 'Major': 'Psychology',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '43.055333',\n", + " 'Longitude': '-89.425946',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40.744678',\n", + " 'Longitude': '-73.758072',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '38.9784',\n", + " 'Longitude': '76.4922',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Science: Other',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '55.675758',\n", + " 'Longitude': '12.56902',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '40.713051',\n", + " 'Longitude': '-74.007233',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '51.507351',\n", + " 'Longitude': '-0.127758',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '25',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '38.736946',\n", + " 'Longitude': '-9.142685',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '22.543097',\n", + " 'Longitude': '114.057861',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '25',\n", + " 'Major': 'Science: Chemistry',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '37.566536',\n", + " 'Longitude': '126.977966',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '26.338',\n", + " 'Longitude': '-81.775',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '33.448376',\n", + " 'Longitude': '-112.074036',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '26.647661',\n", + " 'Longitude': '106.63015',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Undecided',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.2967',\n", + " 'Longitude': '87.9876',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Science: Physics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '78.225',\n", + " 'Longitude': '15.626',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '',\n", + " 'Major': 'Science: Other|Environmetal Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '52.973558',\n", + " 'Longitude': '-9.425102',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '19',\n", + " 'Major': 'Economics (Mathematical Emphasis)',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '37.774929',\n", + " 'Longitude': '-122.419418',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '40.7128',\n", + " 'Longitude': '74.006',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '21',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '44.794',\n", + " 'Longitude': '-93.148',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '36.17',\n", + " 'Longitude': '-115.14',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '21.161907',\n", + " 'Longitude': '-86.851524',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '48.856613',\n", + " 'Longitude': '2.352222',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '48.137',\n", + " 'Longitude': '11.576',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.07393',\n", + " 'Longitude': '-89.38524',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Science: Other',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '35.6762',\n", + " 'Longitude': '139.6503',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.902782',\n", + " 'Longitude': '12.496365',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Science: Other|Atmospheric and Oceanic Sciences (AOS)',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '49.299171',\n", + " 'Longitude': '19.94902',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.380898',\n", + " 'Longitude': '2.12282',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '48.257919',\n", + " 'Longitude': '4.03073',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '35.0844',\n", + " 'Longitude': '106.6504',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '23',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '121',\n", + " 'Longitude': '5',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Business: Actuarial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '21.306944',\n", + " 'Longitude': '-157.858337',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43',\n", + " 'Longitude': '-87.9',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '23',\n", + " 'Major': 'Business: Other|Business Analytics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '31.230391',\n", + " 'Longitude': '121.473701',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '22',\n", + " 'Major': 'Psychology',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '25.032969',\n", + " 'Longitude': '121.565414',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.0722',\n", + " 'Longitude': '89.4008',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '52.370216',\n", + " 'Longitude': '4.895168',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '35.726212',\n", + " 'Longitude': '-83.491226',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '27',\n", + " 'Longitude': '153',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '56.117017',\n", + " 'Longitude': '-3.879547',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '45.983964',\n", + " 'Longitude': '9.262161',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '21',\n", + " 'Major': 'Psychology',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.038902',\n", + " 'Longitude': '-87.906471',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.38879',\n", + " 'Longitude': '2.15084',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '47.48',\n", + " 'Longitude': '-122.28',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '21',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '34.746613',\n", + " 'Longitude': '113.625328',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '21',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '38.240946',\n", + " 'Longitude': '-85.757571',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.07291',\n", + " 'Longitude': '-89.39439',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '56.373482',\n", + " 'Longitude': '-3.84306',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.381717',\n", + " 'Longitude': '2.177925',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53714',\n", + " 'Latitude': '43.089199',\n", + " 'Longitude': '87.8876',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Other',\n", + " 'Zip Code': '53590',\n", + " 'Latitude': '38.4',\n", + " 'Longitude': '11.2',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '25.761681',\n", + " 'Longitude': '-80.191788',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '44.5133',\n", + " 'Longitude': '88.0133',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.8781',\n", + " 'Longitude': '87.6298',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '38.98378',\n", + " 'Longitude': '-77.20871',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '22.9068',\n", + " 'Longitude': '43.1729',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '23',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.083321',\n", + " 'Longitude': '-89.372475',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '17',\n", + " 'Major': 'Business: Actuarial',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '34.746613',\n", + " 'Longitude': '113.625328',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '46.58276',\n", + " 'Longitude': '7.08058',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '39.904202',\n", + " 'Longitude': '116.407394',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '35.96691',\n", + " 'Longitude': '-75.627823',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '21',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '13.756331',\n", + " 'Longitude': '100.501762',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '28.538336',\n", + " 'Longitude': '-81.379234',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '44.822783',\n", + " 'Longitude': '-93.370743',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '42.15',\n", + " 'Longitude': '-87.96',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Journalism',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '41.3874',\n", + " 'Longitude': '2.1686',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '42.864552',\n", + " 'Longitude': '-88.333199',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '17',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40.7128',\n", + " 'Longitude': '74.006',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Science: Other|Politcal Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '40.7831',\n", + " 'Longitude': '73.9712',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43',\n", + " 'Longitude': '87.9',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '38.900497',\n", + " 'Longitude': '-77.007507',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '45.440845',\n", + " 'Longitude': '12.315515',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '25.73403',\n", + " 'Longitude': '-80.24697',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Political Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '42.360081',\n", + " 'Longitude': '-71.058884',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '55088',\n", + " 'Latitude': '48.135124',\n", + " 'Longitude': '11.581981',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '23',\n", + " 'Major': 'Business: Information Systems',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '37.566536',\n", + " 'Longitude': '126.977966',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '17',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '49.2827',\n", + " 'Longitude': '123.1207',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '40.712776',\n", + " 'Longitude': '-74.005974',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '48.856613',\n", + " 'Longitude': '2.352222',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '32',\n", + " 'Major': 'Communication Sciences and Disorder',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '37.566536',\n", + " 'Longitude': '126.977966',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '17',\n", + " 'Major': 'Business: Information Systems',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '-6.17511',\n", + " 'Longitude': '106.865036',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '25',\n", + " 'Major': 'Science: Other|Geoscience',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '46.947975',\n", + " 'Longitude': '7.447447',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '46.7867',\n", + " 'Longitude': '92.1005',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '21',\n", + " 'Major': 'Business: Other|Marketing',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '20.878332',\n", + " 'Longitude': '-156.682495',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '52.370216',\n", + " 'Longitude': '4.895168',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '35.689487',\n", + " 'Longitude': '139.691711',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '22',\n", + " 'Major': 'Science: Other|Atmospheric and oceanic science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '26.1224',\n", + " 'Longitude': '80.1373',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '21.306944',\n", + " 'Longitude': '-157.858337',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '21',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.11339',\n", + " 'Longitude': '-89.37726',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '',\n", + " 'Major': 'Business: Other',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '22.396427',\n", + " 'Longitude': '114.109497',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.2',\n", + " 'Longitude': '96',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '49.74609',\n", + " 'Longitude': '7.4609',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Science: Other|Environmental Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43',\n", + " 'Longitude': '-89',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '39.7392',\n", + " 'Longitude': '104.9903',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.67566',\n", + " 'Longitude': '-86.28645',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Business: Other',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '33.88509',\n", + " 'Longitude': '-118.409714',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '41.8781',\n", + " 'Longitude': '87.6298',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '10.97285',\n", + " 'Longitude': '106.477707',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '36.16156',\n", + " 'Longitude': '-75.752441',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Business: Other|Marketing',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '35.689487',\n", + " 'Longitude': '139.691711',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Other|Engineering Mechanics',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '35.689487',\n", + " 'Longitude': '139.691711',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '21',\n", + " 'Major': 'Economics (Mathematical Emphasis)',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '46.25872',\n", + " 'Longitude': '-91.745583',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Mathematics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '39.904202',\n", + " 'Longitude': '116.407394',\n", + " 'Pizza topping': 'tater tots',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '40.706067',\n", + " 'Longitude': '-74.030063',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Pre-Business',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '39.60502',\n", + " 'Longitude': '-106.51641',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '35.106766',\n", + " 'Longitude': '-106.629181',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '20',\n", + " 'Major': 'Science: Physics',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '64.963051',\n", + " 'Longitude': '-19.020836',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '31.298973',\n", + " 'Longitude': '120.585289',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '48.856613',\n", + " 'Longitude': '2.352222',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '21',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '40.712776',\n", + " 'Longitude': '-74.005974',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '45.914',\n", + " 'Longitude': '-89.255',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '20',\n", + " 'Longitude': '110',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '48.8566',\n", + " 'Longitude': '2.3522',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Industrial Engineering',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '48.856613',\n", + " 'Longitude': '2.352222',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '31.224361',\n", + " 'Longitude': '121.46917',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '35.689487',\n", + " 'Longitude': '139.691711',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '25.03841',\n", + " 'Longitude': '121.563698',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.06827',\n", + " 'Longitude': '-89.40263',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43',\n", + " 'Longitude': '89.4',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '',\n", + " 'Major': 'Mechanical Engineering',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.8781',\n", + " 'Longitude': '87.6298',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '26',\n", + " 'Major': 'Science: Other',\n", + " 'Zip Code': '57075',\n", + " 'Latitude': '42.76093',\n", + " 'Longitude': '-89.9589',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '21',\n", + " 'Major': 'Science: Other|Environmental science',\n", + " 'Zip Code': '53714',\n", + " 'Latitude': '47.606209',\n", + " 'Longitude': '-122.332069',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '35.69',\n", + " 'Longitude': '139.69',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '42.807091',\n", + " 'Longitude': '-86.01886',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '45.892099',\n", + " 'Longitude': '8.997803',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '40.755645',\n", + " 'Longitude': '-74.034119',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53066',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '21.306944',\n", + " 'Longitude': '-157.858337',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '32.0853',\n", + " 'Longitude': '34.781769',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '46.786671',\n", + " 'Longitude': '-92.100487',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '42.590519',\n", + " 'Longitude': '-88.435287',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '23',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '37',\n", + " 'Longitude': '127',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.06875',\n", + " 'Longitude': '-89.39434',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.499321',\n", + " 'Longitude': '-81.694359',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '21',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '38.969021',\n", + " 'Longitude': '-0.18516',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '50.85',\n", + " 'Longitude': '4.35',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '36.39619',\n", + " 'Longitude': '10.61412',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '30',\n", + " 'Major': 'Life Sciences Communication',\n", + " 'Zip Code': '53562',\n", + " 'Latitude': '52.399448',\n", + " 'Longitude': '0.25979',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.878',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '31.2304',\n", + " 'Longitude': '121.4737',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '22',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '48.135124',\n", + " 'Longitude': '11.581981',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '51.5',\n", + " 'Longitude': '0.1276',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '31.298973',\n", + " 'Longitude': '120.585289',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '37',\n", + " 'Longitude': '-97',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'International Studies',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '8.25115',\n", + " 'Longitude': '34.588348',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.038902',\n", + " 'Longitude': '-87.906471',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Science: Other|Atmospheric and Oceanic Sciences',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '48.856613',\n", + " 'Longitude': '2.352222',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Undecided',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '39.3823',\n", + " 'Longitude': '87.2971',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '21',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '31.230391',\n", + " 'Longitude': '121.473701',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '32.776474',\n", + " 'Longitude': '-79.931053',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Science: Physics',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '35.689487',\n", + " 'Longitude': '139.691711',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '50.8',\n", + " 'Longitude': '-1.085',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '21',\n", + " 'Major': 'Languages',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '37.389091',\n", + " 'Longitude': '-5.984459',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Rehabilitation Psychology',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '36.204823',\n", + " 'Longitude': '138.25293',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '37.5741',\n", + " 'Longitude': '122.3794',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Undecided',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '26.452',\n", + " 'Longitude': '-81.9481',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Actuarial',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '37.774929',\n", + " 'Longitude': '-122.419418',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Undecided',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '55.676098',\n", + " 'Longitude': '12.568337',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40.713051',\n", + " 'Longitude': '-74.007233',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '21',\n", + " 'Major': 'Languages',\n", + " 'Zip Code': '53511',\n", + " 'Latitude': '39.952583',\n", + " 'Longitude': '-75.165222',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '12.523579',\n", + " 'Longitude': '-70.03355',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53701',\n", + " 'Latitude': '40.37336',\n", + " 'Longitude': '88.231483',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '51.5072',\n", + " 'Longitude': '0.1276',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '47.987289',\n", + " 'Longitude': '0.22367',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Actuarial',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '45.17963',\n", + " 'Longitude': '-87.150009',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '21',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '21.23556',\n", + " 'Longitude': '-86.73142',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '21',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '48.8566',\n", + " 'Longitude': '2.3522',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '49.28273',\n", + " 'Longitude': '-123.120735',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '37.23082',\n", + " 'Longitude': '-107.59529',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '26.20047',\n", + " 'Longitude': '127.728577',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '32.060253',\n", + " 'Longitude': '118.796875',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Business: Information Systems',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '52.520008',\n", + " 'Longitude': '13.404954',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Undecided',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.038902',\n", + " 'Longitude': '-87.906471',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Accounting',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '32.79649',\n", + " 'Longitude': '-117.192123',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '19',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '21.315603',\n", + " 'Longitude': '-157.858093',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '13.756331',\n", + " 'Longitude': '100.501762',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Business: Other',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '42.818878',\n", + " 'Longitude': '-89.494115',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '44.9778',\n", + " 'Longitude': '93.265',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.3874',\n", + " 'Longitude': '2.1686',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '37',\n", + " 'Major': 'Engineering: Other|Civil- Intelligent Transportation System',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '23.810331',\n", + " 'Longitude': '90.412521',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Science: Physics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '42.696842',\n", + " 'Longitude': '-89.026932',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '53.266479',\n", + " 'Longitude': '-9.052602',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '45.19356',\n", + " 'Longitude': '-87.118767',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '21.306944',\n", + " 'Longitude': '-157.858337',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '40.678177',\n", + " 'Longitude': '-73.94416',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '44.513317',\n", + " 'Longitude': '-88.013298',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '40.712776',\n", + " 'Longitude': '-74.005974',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '22',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '37.6',\n", + " 'Longitude': '127',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '39.359772',\n", + " 'Longitude': '-111.584167',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '31.298973',\n", + " 'Longitude': '120.585289',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '25',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '37.566536',\n", + " 'Longitude': '126.977966',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '36.169941',\n", + " 'Longitude': '-115.139832',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '44.834209',\n", + " 'Longitude': '87.376266',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.17854',\n", + " 'Longitude': '-89.163391',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.93101',\n", + " 'Longitude': '-87.64987',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '11.89',\n", + " 'Longitude': '-85',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '33.873417',\n", + " 'Longitude': '-115.900993',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '22',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '42.360081',\n", + " 'Longitude': '-71.058884',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '34.04018',\n", + " 'Longitude': '-118.48849',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '42069',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53704',\n", + " 'Latitude': '43',\n", + " 'Longitude': '-89',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '38.71049',\n", + " 'Longitude': '-75.07657',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '21',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '44.261799',\n", + " 'Longitude': '-88.407249',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '26',\n", + " 'Major': 'Science: Other|Animal and Dairy Science',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '53.270668',\n", + " 'Longitude': '-9.05679',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.355099',\n", + " 'Longitude': '11.02956',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '45.40857',\n", + " 'Longitude': '-91.73542',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '22',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '55.864239',\n", + " 'Longitude': '-4.251806',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '50.808712',\n", + " 'Longitude': '-0.1604',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '13.35433',\n", + " 'Longitude': '103.77549',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '24',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '40.7',\n", + " 'Longitude': '-74',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Interior Architecture',\n", + " 'Zip Code': '53532',\n", + " 'Latitude': '27.683536',\n", + " 'Longitude': '-82.736092',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Science: Chemistry',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '40.7',\n", + " 'Longitude': '-74',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '-33.86882',\n", + " 'Longitude': '151.20929',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '26.614149',\n", + " 'Longitude': '-81.825768',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '45.440845',\n", + " 'Longitude': '12.315515',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '43.0766',\n", + " 'Longitude': '89.4125',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '33.684566',\n", + " 'Longitude': '-117.826508',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '21',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '26617',\n", + " 'Latitude': '22.396427',\n", + " 'Longitude': '114.109497',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '-33.86882',\n", + " 'Longitude': '151.20929',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '21',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '1.53897',\n", + " 'Longitude': '103.58007',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53558',\n", + " 'Latitude': '41.877541',\n", + " 'Longitude': '-88.066727',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '17',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '25.204849',\n", + " 'Longitude': '55.270782',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '19.7',\n", + " 'Longitude': '-155',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '39.904202',\n", + " 'Longitude': '116.407394',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Science: Physics',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '43.038902',\n", + " 'Longitude': '-87.906471',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.902782',\n", + " 'Longitude': '12.496366',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '47.60323',\n", + " 'Longitude': '-122.330276',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40.7',\n", + " 'Longitude': '74',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '34.052235',\n", + " 'Longitude': '-118.243683',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Science: Other|Atmospheric & Oceanic Sciences',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '40.412776',\n", + " 'Longitude': '-74.005974',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '37.774929',\n", + " 'Longitude': '-122.419418',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '44.78441',\n", + " 'Longitude': '-93.17308',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '22',\n", + " 'Major': 'Engineering: Other',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '39.48214',\n", + " 'Longitude': '-106.048691',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '21',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '33.68',\n", + " 'Longitude': '-117.82',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '17',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '25.204849',\n", + " 'Longitude': '55.270782',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.917519',\n", + " 'Longitude': '-87.694771',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '42.361145',\n", + " 'Longitude': '-71.057083',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.073929',\n", + " 'Longitude': '-89.385239',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '30.20241',\n", + " 'Longitude': '120.226822',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.198496',\n", + " 'Longitude': '0.773436',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '39.739235',\n", + " 'Longitude': '-104.99025',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Science: Chemistry',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '32.16761',\n", + " 'Longitude': '120.012444',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.0722',\n", + " 'Longitude': '89.4008',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '',\n", + " 'Major': 'Business: Information Systems',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '42.360081',\n", + " 'Longitude': '-71.058884',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '21',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '44.513317',\n", + " 'Longitude': '-88.013298',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53132',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Business: Actuarial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '48.856613',\n", + " 'Longitude': '2.352222',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Political Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '48.135124',\n", + " 'Longitude': '11.581981',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41',\n", + " 'Longitude': '-74',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Psychology',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.083321',\n", + " 'Longitude': '-89.372475',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science and Statistics',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '36.162663',\n", + " 'Longitude': '-86.781601',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '25.88',\n", + " 'Longitude': '-80.16',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '46.947975',\n", + " 'Longitude': '7.447447',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Information Systems',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.17555',\n", + " 'Longitude': '73.64731',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Political Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '45.018269',\n", + " 'Longitude': '-93.473892',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '',\n", + " 'Major': 'Business analytics',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '45.50169',\n", + " 'Longitude': '-73.567253',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '21',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '32.060253',\n", + " 'Longitude': '118.796875',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '35.806',\n", + " 'Longitude': '-78.68483',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '31.230391',\n", + " 'Longitude': '121.473701',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '27.35741',\n", + " 'Longitude': '-82.615471',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '35.726212',\n", + " 'Longitude': '-83.491226',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Undecided',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.769562',\n", + " 'Longitude': '11.255814',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Actuarial',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.040433',\n", + " 'Longitude': '-87.897423',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '5',\n", + " 'Latitude': '25.034281',\n", + " 'Longitude': '-77.396278',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '34.052235',\n", + " 'Longitude': '-118.243683',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '20.798363',\n", + " 'Longitude': '-156.331924',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '51.1784',\n", + " 'Longitude': '115.5708',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.05367',\n", + " 'Longitude': '-88.44062',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '36.110168',\n", + " 'Longitude': '-97.058571',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '21',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.07016',\n", + " 'Longitude': '-89.39386',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.038902',\n", + " 'Longitude': '-87.906471',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '24',\n", + " 'Major': 'Engineering: Other',\n", + " 'Zip Code': '53718',\n", + " 'Latitude': '46.77954',\n", + " 'Longitude': '-90.78511',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '22.57',\n", + " 'Longitude': '88.36',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '35.016956',\n", + " 'Longitude': '-224.24911',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '47.606209',\n", + " 'Longitude': '-122.332069',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '21.28482',\n", + " 'Longitude': '-157.83245',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '40.63',\n", + " 'Longitude': '14.6',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Legal Studies',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '20.798363',\n", + " 'Longitude': '-156.331924',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '32.060253',\n", + " 'Longitude': '118.796875',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '18',\n", + " 'Major': 'Journalism',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '31',\n", + " 'Longitude': '103',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '147',\n", + " 'Longitude': '32.5',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53701',\n", + " 'Latitude': '43.038902',\n", + " 'Longitude': '-87.906471',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '20815',\n", + " 'Latitude': '39.640259',\n", + " 'Longitude': '-106.370872',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '41',\n", + " 'Longitude': '12',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Journalism: Strategic Comm./Advertising',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43',\n", + " 'Longitude': '-87.9',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '32.715736',\n", + " 'Longitude': '117.161087',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'History',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '42.19381',\n", + " 'Longitude': '-73.362877',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '39.290386',\n", + " 'Longitude': '-76.61219',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '40.416775',\n", + " 'Longitude': '-3.70379',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '46.870899',\n", + " 'Longitude': '-89.313789',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53151',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '35.1796',\n", + " 'Longitude': '129.0756',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '37.568291',\n", + " 'Longitude': '126.99778',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '17',\n", + " 'Major': 'Statistics',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '31.23',\n", + " 'Longitude': '121.47',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Undecided',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.041069',\n", + " 'Longitude': '-87.909416',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '47.606209',\n", + " 'Longitude': '-122.332069',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '21',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '40.76078',\n", + " 'Longitude': '-111.891045',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '43',\n", + " 'Longitude': '-88.27',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '20',\n", + " 'Major': 'Business: Other|Accounting',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '43',\n", + " 'Longitude': '-89',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Other',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '64.147209',\n", + " 'Longitude': '-21.9424',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53562',\n", + " 'Latitude': '42.66544',\n", + " 'Longitude': '21.165319',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '22',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '39.738449',\n", + " 'Longitude': '-104.984848',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '33.748997',\n", + " 'Longitude': '-84.387985',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53717',\n", + " 'Latitude': '41.2224',\n", + " 'Longitude': '86.413',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Actuarial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '39.299236',\n", + " 'Longitude': '-76.609383',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '32.776665',\n", + " 'Longitude': '-96.796989',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.878113',\n", + " 'Longitude': '-87.629799',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '26',\n", + " 'Major': 'Master of Public Affairs',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '48.118145',\n", + " 'Longitude': '-123.43074',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '-12.12168',\n", + " 'Longitude': '-45.013481',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '31.230391',\n", + " 'Longitude': '121.473701',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '21',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '1.352083',\n", + " 'Longitude': '103.819839',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '40.712776',\n", + " 'Longitude': '-74.005974',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '37.98381',\n", + " 'Longitude': '23.727539',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Business: Actuarial',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '45.003288',\n", + " 'Longitude': '-90.329788',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '21',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.902782',\n", + " 'Longitude': '12.496365',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '45.4894',\n", + " 'Longitude': '93.2476',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.2708',\n", + " 'Longitude': '89.7221',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '45.87128',\n", + " 'Longitude': '-89.711632',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '42.360081',\n", + " 'Longitude': '-71.058884',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '45.056389',\n", + " 'Longitude': '-92.960793',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.07',\n", + " 'Longitude': '-89.4',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Business: Finance',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '22.20315',\n", + " 'Longitude': '-159.495651',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '44.74931',\n", + " 'Longitude': '-92.80088',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '21',\n", + " 'Major': 'Business: Actuarial',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '38.874341',\n", + " 'Longitude': '-77.032013',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '18.34791',\n", + " 'Longitude': '-64.71424',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '27.5041',\n", + " 'Longitude': '82.7145',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '36.462',\n", + " 'Longitude': '25.375465',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '27',\n", + " 'Major': 'Environment & Resources',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '37.389091',\n", + " 'Longitude': '-5.984459',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Business: Actuarial',\n", + " 'Zip Code': '53726',\n", + " 'Latitude': '32',\n", + " 'Longitude': '-117',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '20',\n", + " 'Major': 'Science: Physics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '46.2833',\n", + " 'Longitude': '-89.73',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '40.712776',\n", + " 'Longitude': '-74.005974',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40.712776',\n", + " 'Longitude': '-74.005974',\n", + " 'Pizza topping': 'Other',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '21',\n", + " 'Major': 'Business: Actuarial',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '39.19067',\n", + " 'Longitude': '-106.819199',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '37.743042',\n", + " 'Longitude': '-122.415642',\n", + " 'Pizza topping': 'green pepper',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '20',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '22.54',\n", + " 'Longitude': '114.05',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '59.93428',\n", + " 'Longitude': '30.335098',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '45.10994',\n", + " 'Longitude': '-87.209793',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC002',\n", + " 'Age': '20',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '51.507351',\n", + " 'Longitude': '-0.127758',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Environmental Studies',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '42.360081',\n", + " 'Longitude': '-71.058884',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '45',\n", + " 'Longitude': '-87',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '48.137',\n", + " 'Longitude': '11.575',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '48.856613',\n", + " 'Longitude': '2.352222',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Science: Other',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '48.410648',\n", + " 'Longitude': '-114.338188',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '18',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '24.585445',\n", + " 'Longitude': '73.712479',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '36.974117',\n", + " 'Longitude': '-122.030792',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Computer Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '40.79254',\n", + " 'Longitude': '-98.70807',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53711',\n", + " 'Latitude': '30.572815',\n", + " 'Longitude': '104.066803',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '21',\n", + " 'Major': 'Science: Chemistry',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '3.139003',\n", + " 'Longitude': '101.686852',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC006',\n", + " 'Age': '18',\n", + " 'Major': 'Data Science',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40.46',\n", + " 'Longitude': '-90.67',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Science: Other|Environmental Science',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '43.073051',\n", + " 'Longitude': '-89.40123',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '20',\n", + " 'Major': 'Engineering: Biomedical',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '30.328227',\n", + " 'Longitude': '-86.136975',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '21',\n", + " 'Major': 'Science: Biology/Life',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.385063',\n", + " 'Longitude': '2.173404',\n", + " 'Pizza topping': 'macaroni/pasta',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '18',\n", + " 'Major': 'Mathematics/AMEP',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '42.99571',\n", + " 'Longitude': '-90',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC004',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '41.385063',\n", + " 'Longitude': '2.173404',\n", + " 'Pizza topping': 'sausage',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '40.7128',\n", + " 'Longitude': '74.006',\n", + " 'Pizza topping': 'pepperoni',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC005',\n", + " 'Age': '18',\n", + " 'Major': 'Psychology',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '9.167414',\n", + " 'Longitude': '77.876747',\n", + " 'Pizza topping': 'mushroom',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'No'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Industrial',\n", + " 'Zip Code': '53715',\n", + " 'Latitude': '24.713552',\n", + " 'Longitude': '46.675297',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'neither',\n", + " 'Runner': 'Yes',\n", + " 'Sleep habit': 'early bird',\n", + " 'Procrastinator': 'Maybe'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '18',\n", + " 'Major': 'Undecided',\n", + " 'Zip Code': '53706',\n", + " 'Latitude': '44.8341',\n", + " 'Longitude': '87.377',\n", + " 'Pizza topping': 'basil/spinach',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'no preference',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC003',\n", + " 'Age': '19',\n", + " 'Major': 'Engineering: Mechanical',\n", + " 'Zip Code': '53705',\n", + " 'Latitude': '46.589146',\n", + " 'Longitude': '-112.039108',\n", + " 'Pizza topping': 'none (just cheese)',\n", + " 'Pet preference': 'cat',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Yes'},\n", + " {'Lecture': 'LEC001',\n", + " 'Age': '20',\n", + " 'Major': 'Economics',\n", + " 'Zip Code': '53703',\n", + " 'Latitude': '39.631506',\n", + " 'Longitude': '118.143239',\n", + " 'Pizza topping': 'pineapple',\n", + " 'Pet preference': 'dog',\n", + " 'Runner': 'No',\n", + " 'Sleep habit': 'night owl',\n", + " 'Procrastinator': 'Maybe'}]" + ] + }, + "execution_count": 88, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "transformed_data" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### What `Lecture` is the first student part of?" + ] + }, + { + "cell_type": "code", + "execution_count": 91, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "LEC001\n", + "LEC001\n" + ] + } + ], + "source": [ + "print(transformed_data[0]['Lecture'])\n", + "print(transformed_data[0].get('Lecture'))\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### What is the `Major` of the last student?" + ] + }, + { + "cell_type": "code", + "execution_count": 92, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Economics\n" + ] + } + ], + "source": [ + "print(transformed_data[-1]['Major'])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Nesting part 3: Dictionary of Dictionaries" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "https://www.w3schools.com/python/python_dictionaries_nested.asp" + ] + }, + { + "cell_type": "code", + "execution_count": 93, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'shenanigans': {'definition': 'silly or high-spirited behavior; mischief.',\n", + " 'usage': 'widespread financial shenanigans had ruined the fortunes of many',\n", + " 'fun_to_say': 7},\n", + " 'bamboozle': {'definition': 'fool or cheat (someone).',\n", + " 'usage': 'Tom Sawyer bamboozled the neighborhood boys into painting for him',\n", + " 'fun_to_say': 8},\n", + " 'gubbins': {'definition': '(objects) of little to no value.',\n", + " 'usage': 'I cleared all the gubbins off my desk before I started working',\n", + " 'fun_to_say': 10},\n", + " 'malarkey': {'definition': 'meaningless talk; nonsense.',\n", + " 'usage': \"don't give me that malarkey\",\n", + " 'fun_to_say': 5},\n", + " 'gnarly': {'definition': 'gnarled.',\n", + " 'usage': 'twisted trees and gnarly roots',\n", + " 'fun_to_say': 2},\n", + " 'apple': {'definition': 'a round, red fruit',\n", + " 'usage': 'I ate an apple as a snack',\n", + " 'fun_to_say': 6}}" + ] + }, + "execution_count": 93, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# dict of dicts example:\n", + "\n", + "nested_english_dict = {\n", + " \"shenanigans\": {\n", + " \"definition\": \"silly or high-spirited behavior; mischief.\",\n", + " \"usage\": \"widespread financial shenanigans had ruined the fortunes of many\",\n", + " \"fun_to_say\": 7 # on a scale of 1-10\n", + " },\n", + " \"bamboozle\": {\n", + " \"definition\": \"fool or cheat (someone).\",\n", + " \"usage\": \"Tom Sawyer bamboozled the neighborhood boys into painting for him\",\n", + " \"fun_to_say\": 8 # on a scale of 1-10\n", + " },\n", + " \"gubbins\": {\n", + " \"definition\": \"(objects) of little to no value.\",\n", + " \"usage\": \"I cleared all the gubbins off my desk before I started working\",\n", + " \"fun_to_say\": 10 # on a scale of 1-10\n", + " },\n", + " \"malarkey\": {\n", + " \"definition\": \"meaningless talk; nonsense.\",\n", + " \"usage\": \"don't give me that malarkey\",\n", + " \"fun_to_say\": 5 # on a scale of 1-10\n", + " },\n", + " \"gnarly\": {\n", + " \"definition\": \"gnarled.\",\n", + " \"usage\": \"twisted trees and gnarly roots\",\n", + " \"fun_to_say\": 2 # on a scale of 1-10\n", + " }\n", + "}\n", + "\n", + "# TODO: pick a word and add an inner dict\n", + "nested_english_dict['apple'] = {\n", + " 'definition': 'a round, red fruit',\n", + " 'usage': 'I ate an apple as a snack',\n", + " 'fun_to_say': 6\n", + "}\n", + "nested_english_dict" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### How can we use \"bamboozle\"?" + ] + }, + { + "cell_type": "code", + "execution_count": 95, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Tom Sawyer bamboozled the neighborhood boys into painting for him'" + ] + }, + "execution_count": 95, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "nested_english_dict['bamboozle']['usage']" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Create a list of words with fun_to_say score greater than 7." + ] + }, + { + "cell_type": "code", + "execution_count": 98, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['bamboozle', 'gubbins']" + ] + }, + "execution_count": 98, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "fun_words = []\n", + "for word in nested_english_dict:\n", + " if nested_english_dict[word]['fun_to_say'] > 7:\n", + " fun_words.append(word)\n", + "fun_words" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.10.6" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +}